From 70f10dca0c919e6184c4e37ac80ffa36bd327612 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Mon, 15 Jul 2019 17:12:30 -0400 Subject: [PATCH 01/56] fixed bug concerning guest sessions. --- includes/utils/class-ql-session-handler.php | 26 ++++++++++----------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/includes/utils/class-ql-session-handler.php b/includes/utils/class-ql-session-handler.php index 634d10684..444bd77e5 100644 --- a/includes/utils/class-ql-session-handler.php +++ b/includes/utils/class-ql-session-handler.php @@ -62,20 +62,18 @@ private function get_server_key( $string ) { * @param bool $set Should the session cookie be set. */ public function set_customer_session_cookie( $set ) { - if ( $set ) { - $to_hash = $this->_customer_id . '|' . $this->_session_expiration; - $cookie_hash = hash_hmac( 'md5', $to_hash, wp_hash( $to_hash ) ); - $cookie_value = $this->_customer_id . '||' . $this->_session_expiration . '||' . $this->_session_expiring . '||' . $cookie_hash; - $this->_has_cookie = true; - if ( ! isset( $_SERVER[ $this->_cookie ] ) || $_SERVER[ $this->_cookie ] !== $cookie_value ) { - add_filter( - 'graphql_response_headers_to_send', - function( $headers ) use ( $cookie_value ) { - $headers[ $this->_cookie ] = $this->crypt( $cookie_value, 'e' ); - return $headers; - } - ); - } + $to_hash = $this->_customer_id . '|' . $this->_session_expiration; + $cookie_hash = hash_hmac( 'md5', $to_hash, wp_hash( $to_hash ) ); + $cookie_value = $this->_customer_id . '||' . $this->_session_expiration . '||' . $this->_session_expiring . '||' . $cookie_hash; + $this->_has_cookie = true; + if ( ! isset( $_SERVER[ $this->_cookie ] ) || $_SERVER[ $this->_cookie ] !== $cookie_value ) { + add_filter( + 'graphql_response_headers_to_send', + function( $headers ) use ( $cookie_value ) { + $headers[ $this->_cookie ] = $this->crypt( $cookie_value, 'e' ); + return $headers; + } + ); } } From f3c23a27f39b9fc9bfb21289380cf96027f7a114 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Wed, 17 Jul 2019 20:02:41 -0400 Subject: [PATCH 02/56] docker script added for e2e testing support --- Dockerfile | 4 + bin/install-wp-tests.sh | 7 +- codeception.docker.yml | 72 + codeception.yml | 42 + composer.json | 2 +- docker-compose.yml | 32 + includes/class-wp-graphql-woocommerce.php | 2 +- tests/_data/config.php | 2 +- tests/acceptance.suite.dist.yml | 21 +- tests/acceptance/testUserPlayingOrderCept.php | 3 + tests/functional.suite.dist.yml | 27 +- tests/functional/QLSessionHandlerCest.php | 102 + tests/wpunit.suite.dist.yml | 17 +- tests/wpunit/CartMutationsTest.php | 4 +- tests/wpunit/CartQueriesTest.php | 5 +- tests/wpunit/CheckoutMutationTest.php | 4 +- tests/wpunit/CouponQueriesTest.php | 4 +- tests/wpunit/CustomerMutationsTest.php | 4 +- tests/wpunit/CustomerQueriesTest.php | 4 +- tests/wpunit/OrderItemQueriesTest.php | 5 +- tests/wpunit/OrderMutationsTest.php | 4 +- tests/wpunit/OrderQueriesTest.php | 4 +- tests/wpunit/ProductAttributeQueriesTest.php | 4 +- tests/wpunit/ProductQueriesTest.php | 4 +- tests/wpunit/ProductVariationQueriesTest.php | 4 +- tests/wpunit/RefundQueriesTest.php | 4 +- tests/wpunit/ShippingMethodQueriesTest.php | 4 +- tests/wpunit/TaxRateQueriesTest.php | 4 +- .../wpunit/VariationAttributeQueriesTest.php | 4 +- vendor/autoload.php | 2 +- vendor/composer/ClassLoader.php | 2 +- .../composer/autoload_commands_classmap.php | 108 - vendor/composer/autoload_commands_real.php | 34 - .../composer/autoload_framework_classmap.php | 2671 ----------------- vendor/composer/autoload_framework_real.php | 34 - vendor/composer/autoload_real.php | 8 +- vendor/composer/autoload_static.php | 8 +- 37 files changed, 313 insertions(+), 2953 deletions(-) create mode 100644 Dockerfile create mode 100644 codeception.docker.yml create mode 100644 docker-compose.yml create mode 100644 tests/acceptance/testUserPlayingOrderCept.php create mode 100644 tests/functional/QLSessionHandlerCest.php delete mode 100644 vendor/composer/autoload_commands_classmap.php delete mode 100644 vendor/composer/autoload_commands_real.php delete mode 100644 vendor/composer/autoload_framework_classmap.php delete mode 100644 vendor/composer/autoload_framework_real.php diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..9472ac3d8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM ryanshoover/wp-browser + +RUN a2enmod rewrite && \ +service apache2 restart \ No newline at end of file diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index cc6ee5491..1052dfbfa 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -188,12 +188,15 @@ configure_wordpress() { } setup_woocommerce() { - echo "Installing & Activating WordPress Importer" - wp plugin install wordpress-importer --activate echo "Installing & Activating WooCommerce" wp plugin install woocommerce --activate echo "Upgrading database" wp wc update + echo "Installing & Activating WordPress Importer" + wp plugin install wordpress-importer + wp plugin activate wordpress-importer + echo "Import sample products" + wp import $WP_CORE_DIR/wp-content/plugins/woocommerce/sample-data/sample_products.xml --authors=skip --path=$WP_CORE_DIR } setup_wpgraphql() { diff --git a/codeception.docker.yml b/codeception.docker.yml new file mode 100644 index 000000000..1592e97b2 --- /dev/null +++ b/codeception.docker.yml @@ -0,0 +1,72 @@ +paths: + tests: tests + output: tests/_output + data: tests/_data + support: tests/_support + envs: tests/_envs +params: + - env +actor_suffix: Tester +settings: + colors: true + memory_limit: 1024M +coverage: + enabled: true + whitelist: + include: + - wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php + - wp-content/plugins/wp-graphql-woocommerce/access-functions.php + - wp-content/plugins/wp-graphql-woocommerce/class-inflect.php + - wp-content/plugins/wp-graphql-woocommerce/includes/*.php +extensions: + enabled: + - Codeception\Extension\RunFailed + commands: + - Codeception\Command\GenerateWPUnit + - Codeception\Command\GenerateWPRestApi + - Codeception\Command\GenerateWPRestController + - Codeception\Command\GenerateWPRestPostTypeController + - Codeception\Command\GenerateWPAjax + - Codeception\Command\GenerateWPCanonical + - Codeception\Command\GenerateWPXMLRPC +modules: + config: + WPDb: + dsn: 'mysql:host=%DB_HOST%;dbname=%DB_NAME%' + user: '%DB_USER%' + password: '%DB_PASSWORD%' + populator: 'mysql -u $user -p$password -h $host $dbname < $dump' + dump: 'tests/_data/dump.sql' + populate: true + cleanup: true + url: '%WP_URL%' + urlReplacement: true + tablePrefix: '%WP_TABLE_PREFIX%' + WPBrowser: + url: 'http://localhost' + wpRootFolder: '%WP_ROOT_FOLDER%' + adminUsername: '%ADMIN_USERNAME%' + adminPassword: '%ADMIN_PASSWORD%' + adminPath: '/wp-admin' + REST: + depends: WPBrowser + url: 'http://localhost' + WPFilesystem: + wpRootFolder: '%WP_ROOT_FOLDER%' + plugins: '/wp-content/plugins' + mu-plugins: '/wp-content/mu-plugins' + themes: '/wp-content/themes' + uploads: '/wp-content/uploads' + WPLoader: + wpRootFolder: "%WP_ROOT_FOLDER%" + dbName: "%DB_NAME%" + dbHost: "%DB_HOST%" + dbUser: "%DB_USER%" + dbPassword: "%DB_PASSWORD%" + tablePrefix: "%WP_TABLE_PREFIX%" + domain: "%WP_DOMAIN%" + adminEmail: "%ADMIN_EMAIL%" + title: "Test" + plugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] + activatePlugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] + configFile: "tests/_data/config.php" diff --git a/codeception.yml b/codeception.yml index bcf3770cb..25924fa0c 100644 --- a/codeception.yml +++ b/codeception.yml @@ -29,3 +29,45 @@ extensions: - Codeception\Command\GenerateWPXMLRPC params: - .env +modules: + config: + WPDb: + dsn: 'mysql:host=%TEST_SITE_DB_HOST%;dbname=%TEST_SITE_DB_NAME%' + user: '%TEST_SITE_DB_USER%' + password: '%TEST_SITE_DB_PASSWORD%' + dump: 'tests/_data/dump.sql' + #import the dump before the tests; this means the test site database will be repopulated before the tests. + populate: true + # re-import the dump between tests; this means the test site database will be repopulated between the tests. + cleanup: true + waitlock: 0 + url: '%TEST_SITE_WP_URL%' + urlReplacement: true #replace the hardcoded dump URL with the one above + tablePrefix: '%TEST_SITE_TABLE_PREFIX%' + WPBrowser: + url: '%TEST_SITE_WP_URL%' + adminUsername: '%TEST_SITE_ADMIN_USERNAME%' + adminPassword: '%TEST_SITE_ADMIN_PASSWORD%' + adminPath: '%TEST_SITE_WP_ADMIN_PATH%' + REST: + depends: WPBrowser + url: '%TEST_SITE_WP_URL%' + WPFilesystem: + wpRootFolder: '%WP_ROOT_FOLDER%' + plugins: '/wp-content/plugins' + mu-plugins: '/wp-content/mu-plugins' + themes: '/wp-content/themes' + uploads: '/wp-content/uploads' + WPLoader: + wpRootFolder: "%WP_ROOT_FOLDER%" + dbName: "%TEST_DB_NAME%" + dbHost: "%TEST_DB_HOST%" + dbUser: "%TEST_DB_USER%" + dbPassword: "%TEST_DB_PASSWORD%" + tablePrefix: "%TEST_TABLE_PREFIX%" + domain: "%TEST_SITE_WP_DOMAIN%" + adminEmail: "%TEST_SITE_ADMIN_EMAIL%" + title: "Test" + plugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] + activatePlugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] + configFile: "tests/_data/config.php" diff --git a/composer.json b/composer.json index ded53a9ab..840d916a7 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ } ], "require-dev": { - "lucatume/wp-browser": ">=2.2.1 <2.2.8" + "lucatume/wp-browser": "^2.2" }, "config": { "optimize-autoloader": true diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 000000000..93a725ecb --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,32 @@ +version: '3.3' + +services: + + wpbrowser: + build: . + image: kidunot89/wp-browser + links: + - db:mysql + volumes: + - "/tmp/wordpress/wp-content:/var/www/html/wp-content" + - "./tests:/var/www/html/tests" + - "./codeception.docker.yml:/var/www/config/codeception.dist.yml" + - ".:/var/www/html/wp-content/plugins/wp-graphql-woocommerce" + command: bash -c "codecept run functional && codecept run acceptance && codecept run wpunit" + environment: + DB_NAME: wordpress + DB_HOST: db + DB_USER: wordpress + DB_PASSWORD: wordpress + WPGRAPHQL_WOOCOMMERCE_AUTOLOAD: 1 + ports: + - 8080:80 + + db: + image: mysql:5.7 + restart: always + environment: + MYSQL_ROOT_PASSWORD: root + MYSQL_DATABASE: wordpress + MYSQL_USER: wordpress + MYSQL_PASSWORD: wordpress \ No newline at end of file diff --git a/includes/class-wp-graphql-woocommerce.php b/includes/class-wp-graphql-woocommerce.php index 34fb1a4b2..6508eea76 100644 --- a/includes/class-wp-graphql-woocommerce.php +++ b/includes/class-wp-graphql-woocommerce.php @@ -131,7 +131,7 @@ private function includes() { /** * Autoload Required Classes */ - if ( defined( 'WPGRAPHQL_WOOCOMMERCE_AUTOLOAD' ) && true === WPGRAPHQL_WOOCOMMERCE_AUTOLOAD ) { + if ( defined( 'WPGRAPHQL_WOOCOMMERCE_AUTOLOAD' ) && false !== WPGRAPHQL_WOOCOMMERCE_AUTOLOAD ) { require_once WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR . 'vendor/autoload.php'; } diff --git a/tests/_data/config.php b/tests/_data/config.php index 1338b52d2..02faae340 100644 --- a/tests/_data/config.php +++ b/tests/_data/config.php @@ -5,4 +5,4 @@ * fatal errors when the autoloader is loaded twice */ define( 'GRAPHQL_DEBUG', true ); -define( 'WPGRAPHQL_WOOCOMMERCE_AUTOLOAD', false ); \ No newline at end of file +define( 'WPGRAPHQL_WOOCOMMERCE_AUTOLOAD', getenv( 'WPGRAPHQL_WOOCOMMERCE_AUTOLOAD' ) ); \ No newline at end of file diff --git a/tests/acceptance.suite.dist.yml b/tests/acceptance.suite.dist.yml index daff91506..471ada029 100644 --- a/tests/acceptance.suite.dist.yml +++ b/tests/acceptance.suite.dist.yml @@ -11,22 +11,5 @@ modules: - WPDb - WPBrowser - \Helper\Acceptance - config: - WPDb: - dsn: 'mysql:host=%TEST_SITE_DB_HOST%;dbname=%TEST_SITE_DB_NAME%' - user: '%TEST_SITE_DB_USER%' - password: '%TEST_SITE_DB_PASSWORD%' - dump: 'tests/_data/dump.sql' - #import the dump before the tests; this means the test site database will be repopulated before the tests. - populate: true - # re-import the dump between tests; this means the test site database will be repopulated between the tests. - cleanup: true - waitlock: 0 - url: '%TEST_SITE_WP_URL%' - urlReplacement: true #replace the hardcoded dump URL with the one above - tablePrefix: '%TEST_SITE_TABLE_PREFIX%' - WPBrowser: - url: '%TEST_SITE_WP_URL%' - adminUsername: '%TEST_SITE_ADMIN_USERNAME%' - adminPassword: '%TEST_SITE_ADMIN_PASSWORD%' - adminPath: '%TEST_SITE_WP_ADMIN_PATH%' \ No newline at end of file + disabled: + - WPLoader \ No newline at end of file diff --git a/tests/acceptance/testUserPlayingOrderCept.php b/tests/acceptance/testUserPlayingOrderCept.php new file mode 100644 index 000000000..bd763a835 --- /dev/null +++ b/tests/acceptance/testUserPlayingOrderCept.php @@ -0,0 +1,3 @@ +wantTo('perform actions and see result'); diff --git a/tests/functional.suite.dist.yml b/tests/functional.suite.dist.yml index 9a4b5f77e..9c2ef1c6b 100644 --- a/tests/functional.suite.dist.yml +++ b/tests/functional.suite.dist.yml @@ -6,31 +6,10 @@ actor: FunctionalTester modules: enabled: + - REST - WPDb - WPBrowser - # - WPFilesystem - Asserts - \Helper\Functional - config: - WPDb: - dsn: 'mysql:host=%TEST_SITE_DB_HOST%;dbname=%TEST_SITE_DB_NAME%' - user: '%TEST_SITE_DB_USER%' - password: '%TEST_SITE_DB_PASSWORD%' - dump: 'tests/_data/dump.sql' - populate: true - cleanup: true - waitlock: 0 - url: '%WP_URL%' - urlReplacement: true - tablePrefix: '%TABLE_SITE_PREFIX%' - WPBrowser: - url: '%WP_URL%' - adminUsername: '%ADMIN_USERNAME%' - adminPassword: '%ADMIN_PASSWORD%' - adminPath: '%WP_ADMIN_PATH%' - WPFilesystem: - wpRootFolder: '%WP_ROOT_FOLDER%' - plugins: '/wp-content/plugins' - mu-plugins: '/wp-content/mu-plugins' - themes: '/wp-content/themes' - uploads: '/wp-content/uploads' \ No newline at end of file + disabled: + - WPLoader \ No newline at end of file diff --git a/tests/functional/QLSessionHandlerCest.php b/tests/functional/QLSessionHandlerCest.php new file mode 100644 index 000000000..57239844e --- /dev/null +++ b/tests/functional/QLSessionHandlerCest.php @@ -0,0 +1,102 @@ +loginAsAdmin(); + $I->amOnPluginsPage(); + $I->activatePlugin( + array( + 'woocommerce', + 'wp-graphql', + 'wp-graphql-jwt-authentication', + 'wp-graphql-woocommerce', + ) + ); + } + + // tests + public function test_session_update( FunctionalTester $I ) { + $product_id = $I->havePostInDatabase( array( + 'post_type' => 'product', + 'post_title' => 't-shirt', + 'meta_input' => array( + '_visibility' => 'visible', + '_sku' => '', + '_price' => '100', + '_regular_price' => '100', + '_sale_price' => '', + '_sale_date_on_sale_from' => null, + '_sale_date_on_sale_to' => null, + 'total_sales' => '0', + '_tax_status' => 'taxable', + '_tax_class' => '', + '_manage_stock' => false, + '_stock_quantity' => null, + '_stock_status' => 'instock', + '_backorders' => 'no', + '_low_stock_amount' => '', + '_sold_individually' => false, + '_weight' => '', + '_length' => '', + '_width' => '', + '_height' => '', + '_upsell_ids' => array(), + '_cross_sell_ids' => array(), + '_purchase_note' => '', + '_default_attributes' => array(), + '_product_attributes' => array(), + '_virtual' => false, + '_downloadable' => false, + '_download_limit' => -1, + '_download_expiry' => -1, + '_featured' => false, + '_wc_rating_counts' => array(), + '_wc_average_rating' => 0, + '_wc_review_count' => 0, + ), + )); + + + $mutation = ' + mutation addToCart( $input: AddToCartInput! ) { + addToCart( input: $input ) { + clientMutationId + cartItem { + key + product { + id + } + variation { + id + } + quantity + subtotal + subtotalTax + total + tax + } + } + } + '; + + $input = array( + 'clientMutationId' => 'someId', + 'productId' => $product_id, + 'quantity' => 2, + ); + + $I->sendPOST( + '/graphql', + json_encode( + array( + 'query' => $mutation, + 'variables' => array( 'input' => $input ), + ) + ) + ); + + $I->seeResponseCodeIs( 200 ); + $response = $I->canSeeHttpHeader( 'woocommerce-session' ); + + } +} diff --git a/tests/wpunit.suite.dist.yml b/tests/wpunit.suite.dist.yml index 4e8139697..09b017ee9 100644 --- a/tests/wpunit.suite.dist.yml +++ b/tests/wpunit.suite.dist.yml @@ -7,17 +7,6 @@ modules: enabled: - WPLoader - \Helper\Wpunit - config: - WPLoader: - wpRootFolder: "%WP_ROOT_FOLDER%" - dbName: "%TEST_DB_NAME%" - dbHost: "%TEST_DB_HOST%" - dbUser: "%TEST_DB_USER%" - dbPassword: "%TEST_DB_PASSWORD%" - tablePrefix: "%TEST_TABLE_PREFIX%" - domain: "%TEST_SITE_WP_DOMAIN%" - adminEmail: "%TEST_SITE_ADMIN_EMAIL%" - title: "Test" - plugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] - activatePlugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] - configFile: "tests/_data/config.php" \ No newline at end of file + disabled: + - WPDb + - WPBrowser \ No newline at end of file diff --git a/tests/wpunit/CartMutationsTest.php b/tests/wpunit/CartMutationsTest.php index 944ab179a..52a02f41e 100644 --- a/tests/wpunit/CartMutationsTest.php +++ b/tests/wpunit/CartMutationsTest.php @@ -8,7 +8,7 @@ class CartMutationsTest extends \Codeception\TestCase\WPTestCase { private $variation; private $cart; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -22,7 +22,7 @@ public function setUp() { WC()->cart->empty_cart( true ); } - public function tearDown() { + public function tearDown(): void { \WC()->cart->empty_cart(); parent::tearDown(); diff --git a/tests/wpunit/CartQueriesTest.php b/tests/wpunit/CartQueriesTest.php index f3dcc7c0a..b01e6a8a0 100644 --- a/tests/wpunit/CartQueriesTest.php +++ b/tests/wpunit/CartQueriesTest.php @@ -8,7 +8,7 @@ class CartQueriesTest extends \Codeception\TestCase\WPTestCase { private $coupon_helper; private $helper; - public function setUp() { + public function setUp(): void { // before parent::setUp(); @@ -23,8 +23,7 @@ public function setUp() { WC()->cart->empty_cart( true ); } - public function tearDown() - { + public function tearDown(): void { // your tear down methods here // then diff --git a/tests/wpunit/CheckoutMutationTest.php b/tests/wpunit/CheckoutMutationTest.php index f2e9be3de..0c749f1e4 100644 --- a/tests/wpunit/CheckoutMutationTest.php +++ b/tests/wpunit/CheckoutMutationTest.php @@ -3,7 +3,7 @@ use WPGraphQL\Type\WPEnumType; class CheckoutMutationTest extends \Codeception\TestCase\WPTestCase { - public function setUp() { + public function setUp(): void { // before parent::setUp(); @@ -69,7 +69,7 @@ function() { wp_logout(); } - public function tearDown() { + public function tearDown(): void { // your tear down methods here // then diff --git a/tests/wpunit/CouponQueriesTest.php b/tests/wpunit/CouponQueriesTest.php index 1b1968c96..945517fe6 100644 --- a/tests/wpunit/CouponQueriesTest.php +++ b/tests/wpunit/CouponQueriesTest.php @@ -7,7 +7,7 @@ class CouponQueriesTest extends \Codeception\TestCase\WPTestCase { private $coupon; private $helper; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -22,7 +22,7 @@ public function setUp() { ); } - public function tearDown() { + public function tearDown(): void { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/CustomerMutationsTest.php b/tests/wpunit/CustomerMutationsTest.php index f6a7bac88..1adfaecea 100644 --- a/tests/wpunit/CustomerMutationsTest.php +++ b/tests/wpunit/CustomerMutationsTest.php @@ -1,7 +1,7 @@ new_customer = $this->helper->create(); } - public function tearDown() { + public function tearDown(): void { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/OrderItemQueriesTest.php b/tests/wpunit/OrderItemQueriesTest.php index b1cc45f2c..94d219658 100644 --- a/tests/wpunit/OrderItemQueriesTest.php +++ b/tests/wpunit/OrderItemQueriesTest.php @@ -10,7 +10,7 @@ class OrderItemQueriesTest extends \Codeception\TestCase\WPTestCase { private $item_helper; private $order_helper; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -20,8 +20,7 @@ public function setUp() { $this->order = $this->order_helper->create(); } - public function tearDown() - { + public function tearDown(): void { // your tear down methods here // then diff --git a/tests/wpunit/OrderMutationsTest.php b/tests/wpunit/OrderMutationsTest.php index b259f13cf..39167f324 100644 --- a/tests/wpunit/OrderMutationsTest.php +++ b/tests/wpunit/OrderMutationsTest.php @@ -4,7 +4,7 @@ class OrderMutationsTest extends \Codeception\TestCase\WPTestCase { - public function setUp() { + public function setUp(): void { // before parent::setUp(); @@ -42,7 +42,7 @@ public function setUp() { $this->order_id = $this->order->create(); } - public function tearDown() { + public function tearDown(): void { // your tear down methods here // then diff --git a/tests/wpunit/OrderQueriesTest.php b/tests/wpunit/OrderQueriesTest.php index 50475d10d..75a72922f 100644 --- a/tests/wpunit/OrderQueriesTest.php +++ b/tests/wpunit/OrderQueriesTest.php @@ -10,7 +10,7 @@ class OrderQueriesTest extends \Codeception\TestCase\WPTestCase { private $product_helper; private $customer_helper; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -21,7 +21,7 @@ public function setUp() { $this->order = $this->order_helper->create(); } - public function tearDown() { + public function tearDown(): void { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/ProductAttributeQueriesTest.php b/tests/wpunit/ProductAttributeQueriesTest.php index 11ddde08d..b31ab302b 100644 --- a/tests/wpunit/ProductAttributeQueriesTest.php +++ b/tests/wpunit/ProductAttributeQueriesTest.php @@ -8,7 +8,7 @@ class ProductAttributeQueriesTest extends \Codeception\TestCase\WPTestCase { private $product_id; private $variation_ids; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -20,7 +20,7 @@ public function setUp() { } - public function tearDown() { + public function tearDown(): void { parent::tearDown(); } diff --git a/tests/wpunit/ProductQueriesTest.php b/tests/wpunit/ProductQueriesTest.php index 48b1069d4..796cf809b 100644 --- a/tests/wpunit/ProductQueriesTest.php +++ b/tests/wpunit/ProductQueriesTest.php @@ -9,7 +9,7 @@ class ProductQueriesTest extends \Codeception\TestCase\WPTestCase { private $product_tag; private $product_cat; - public function setUp() { + public function setUp(): void { // before parent::setUp(); @@ -44,7 +44,7 @@ public function setUp() { update_term_meta( $category_id, 'thumbnail_id', $this->image_id ); } - public function tearDown() { + public function tearDown(): void { // your tear down methods here $product = \WC()->product_factory->get_product( $this->product ); $product->delete( true ); diff --git a/tests/wpunit/ProductVariationQueriesTest.php b/tests/wpunit/ProductVariationQueriesTest.php index 5477f69fc..500480ec8 100644 --- a/tests/wpunit/ProductVariationQueriesTest.php +++ b/tests/wpunit/ProductVariationQueriesTest.php @@ -7,7 +7,7 @@ class ProductVariationQueriesTest extends \Codeception\TestCase\WPTestCase { private $customer; private $products; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -17,7 +17,7 @@ public function setUp() { $this->products = $this->helper->create( $this->product_helper->create_variable() ); } - public function tearDown() { + public function tearDown(): void { // your tear down methods here // then diff --git a/tests/wpunit/RefundQueriesTest.php b/tests/wpunit/RefundQueriesTest.php index 6c096d4c5..a63af3c79 100644 --- a/tests/wpunit/RefundQueriesTest.php +++ b/tests/wpunit/RefundQueriesTest.php @@ -9,7 +9,7 @@ class RefundQueriesTest extends \Codeception\TestCase\WPTestCase { private $order; private $refund; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -20,7 +20,7 @@ public function setUp() { $this->refund = $this->refund_helper->create( $this->order ); } - public function tearDown() { + public function tearDown(): void { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/ShippingMethodQueriesTest.php b/tests/wpunit/ShippingMethodQueriesTest.php index dc8dab69b..a30df21ab 100644 --- a/tests/wpunit/ShippingMethodQueriesTest.php +++ b/tests/wpunit/ShippingMethodQueriesTest.php @@ -8,7 +8,7 @@ class ShippingMethodQueriesTest extends \Codeception\TestCase\WPTestCase { private $method; private $helper; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -17,7 +17,7 @@ public function setUp() { $this->method = 'flat_rate'; } - public function tearDown() { + public function tearDown(): void { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/TaxRateQueriesTest.php b/tests/wpunit/TaxRateQueriesTest.php index 10f8e12e6..e680d014d 100644 --- a/tests/wpunit/TaxRateQueriesTest.php +++ b/tests/wpunit/TaxRateQueriesTest.php @@ -8,7 +8,7 @@ class TaxRateQueriesTest extends \Codeception\TestCase\WPTestCase { private $rate; private $helper; - public function setUp() { + public function setUp(): void { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -17,7 +17,7 @@ public function setUp() { $this->rate = $this->helper->create(); } - public function tearDown() { + public function tearDown(): void { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/VariationAttributeQueriesTest.php b/tests/wpunit/VariationAttributeQueriesTest.php index 74a6a7de1..5c25c6d8b 100644 --- a/tests/wpunit/VariationAttributeQueriesTest.php +++ b/tests/wpunit/VariationAttributeQueriesTest.php @@ -6,7 +6,7 @@ class VariationAttributeQueriesTest extends \Codeception\TestCase\WPTestCase { private $product_id; private $variation_id; - public function setUp() { + public function setUp(): void { // before parent::setUp(); @@ -19,7 +19,7 @@ public function setUp() { $this->variation_id = $ids['variations'][0]; } - public function tearDown() { + public function tearDown(): void { // your tear down methods here // then diff --git a/vendor/autoload.php b/vendor/autoload.php index b22f162b0..95f2e0e0c 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInitee0d17af17b841ed3a93c4a0e5cc5e5f::getLoader(); +return ComposerAutoloaderInitd35e1b6619456855afe82a91b3f422de::getLoader(); diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index fce8549f0..95f7e0978 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -279,7 +279,7 @@ public function isClassMapAuthoritative() */ public function setApcuPrefix($apcuPrefix) { - $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; + $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; } /** diff --git a/vendor/composer/autoload_commands_classmap.php b/vendor/composer/autoload_commands_classmap.php deleted file mode 100644 index 4631bfcb2..000000000 --- a/vendor/composer/autoload_commands_classmap.php +++ /dev/null @@ -1,108 +0,0 @@ - $vendorDir . '/wp-cli/wp-cli/php/commands/src/CLI_Command.php', - 'Cache_Command' => $vendorDir . '/wp-cli/cache-command/src/Cache_Command.php', - 'Capabilities_Command' => $vendorDir . '/wp-cli/role-command/src/Capabilities_Command.php', - 'Checksum_Base_Command' => $vendorDir . '/wp-cli/checksum-command/src/Checksum_Base_Command.php', - 'Checksum_Core_Command' => $vendorDir . '/wp-cli/checksum-command/src/Checksum_Core_Command.php', - 'Checksum_Plugin_Command' => $vendorDir . '/wp-cli/checksum-command/src/Checksum_Plugin_Command.php', - 'Comment_Command' => $vendorDir . '/wp-cli/entity-command/src/Comment_Command.php', - 'Comment_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Comment_Meta_Command.php', - 'Config_Command' => $vendorDir . '/wp-cli/config-command/src/Config_Command.php', - 'Core_Command' => $vendorDir . '/wp-cli/core-command/src/Core_Command.php', - 'Core_Language_Command' => $vendorDir . '/wp-cli/language-command/src/Core_Language_Command.php', - 'Cron_Command' => $vendorDir . '/wp-cli/cron-command/src/Cron_Command.php', - 'Cron_Event_Command' => $vendorDir . '/wp-cli/cron-command/src/Cron_Event_Command.php', - 'Cron_Schedule_Command' => $vendorDir . '/wp-cli/cron-command/src/Cron_Schedule_Command.php', - 'DB_Command' => $vendorDir . '/wp-cli/db-command/src/DB_Command.php', - 'EvalFile_Command' => $vendorDir . '/wp-cli/eval-command/src/EvalFile_Command.php', - 'Eval_Command' => $vendorDir . '/wp-cli/eval-command/src/Eval_Command.php', - 'Export_Command' => $vendorDir . '/wp-cli/export-command/src/Export_Command.php', - 'Import_Command' => $vendorDir . '/wp-cli/import-command/src/Import_Command.php', - 'Language_Namespace' => $vendorDir . '/wp-cli/language-command/src/Language_Namespace.php', - 'Media_Command' => $vendorDir . '/wp-cli/media-command/src/Media_Command.php', - 'Menu_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Command.php', - 'Menu_Item_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Item_Command.php', - 'Menu_Location_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Location_Command.php', - 'Network_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Network_Meta_Command.php', - 'Network_Namespace' => $vendorDir . '/wp-cli/entity-command/src/Network_Namespace.php', - 'Option_Command' => $vendorDir . '/wp-cli/entity-command/src/Option_Command.php', - 'Package_Command' => $vendorDir . '/wp-cli/package-command/src/Package_Command.php', - 'Plugin_Command' => $vendorDir . '/wp-cli/extension-command/src/Plugin_Command.php', - 'Post_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Command.php', - 'Post_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Meta_Command.php', - 'Post_Term_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Term_Command.php', - 'Post_Type_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Type_Command.php', - 'Rewrite_Command' => $vendorDir . '/wp-cli/rewrite-command/src/Rewrite_Command.php', - 'Role_Command' => $vendorDir . '/wp-cli/role-command/src/Role_Command.php', - 'Scaffold_Command' => $vendorDir . '/wp-cli/scaffold-command/src/Scaffold_Command.php', - 'Search_Replace_Command' => $vendorDir . '/wp-cli/search-replace-command/src/Search_Replace_Command.php', - 'Server_Command' => $vendorDir . '/wp-cli/server-command/src/Server_Command.php', - 'Shell_Command' => $vendorDir . '/wp-cli/shell-command/src/Shell_Command.php', - 'Sidebar_Command' => $vendorDir . '/wp-cli/widget-command/src/Sidebar_Command.php', - 'Site_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Command.php', - 'Site_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Meta_Command.php', - 'Site_Option_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Option_Command.php', - 'Super_Admin_Command' => $vendorDir . '/wp-cli/super-admin-command/src/Super_Admin_Command.php', - 'Taxonomy_Command' => $vendorDir . '/wp-cli/entity-command/src/Taxonomy_Command.php', - 'Term_Command' => $vendorDir . '/wp-cli/entity-command/src/Term_Command.php', - 'Term_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Term_Meta_Command.php', - 'Theme_Command' => $vendorDir . '/wp-cli/extension-command/src/Theme_Command.php', - 'Theme_Mod_Command' => $vendorDir . '/wp-cli/extension-command/src/Theme_Mod_Command.php', - 'Transient_Command' => $vendorDir . '/wp-cli/cache-command/src/Transient_Command.php', - 'User_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Command.php', - 'User_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Meta_Command.php', - 'User_Session_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Session_Command.php', - 'User_Term_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Term_Command.php', - 'WP_CLI\\CommandWithDBObject' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithDBObject.php', - 'WP_CLI\\CommandWithMeta' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithMeta.php', - 'WP_CLI\\CommandWithTerms' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithTerms.php', - 'WP_CLI\\CommandWithTranslation' => $vendorDir . '/wp-cli/language-command/src/WP_CLI/CommandWithTranslation.php', - 'WP_CLI\\CommandWithUpgrade' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/CommandWithUpgrade.php', - 'WP_CLI\\CoreUpgrader' => $vendorDir . '/wp-cli/core-command/src/WP_CLI/CoreUpgrader.php', - 'WP_CLI\\DestructivePluginUpgrader' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/DestructivePluginUpgrader.php', - 'WP_CLI\\DestructiveThemeUpgrader' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/DestructiveThemeUpgrader.php', - 'WP_CLI\\Embeds\\Cache_Command' => $vendorDir . '/wp-cli/embed-command/src/Cache_Command.php', - 'WP_CLI\\Embeds\\Embeds_Namespace' => $vendorDir . '/wp-cli/embed-command/src/Embeds_Namespace.php', - 'WP_CLI\\Embeds\\Fetch_Command' => $vendorDir . '/wp-cli/embed-command/src/Fetch_Command.php', - 'WP_CLI\\Embeds\\Handler_Command' => $vendorDir . '/wp-cli/embed-command/src/Handler_Command.php', - 'WP_CLI\\Embeds\\Provider_Command' => $vendorDir . '/wp-cli/embed-command/src/Provider_Command.php', - 'WP_CLI\\Embeds\\oEmbed' => $vendorDir . '/wp-cli/embed-command/src/oEmbed.php', - 'WP_CLI\\Entity\\NonExistentKeyException' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Entity/NonExistentKeyException.php', - 'WP_CLI\\Entity\\RecursiveDataStructureTraverser' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Entity/RecursiveDataStructureTraverser.php', - 'WP_CLI\\Entity\\Utils' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Entity/Utils.php', - 'WP_CLI\\Fetchers\\Comment' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Comment.php', - 'WP_CLI\\Fetchers\\Plugin' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/Fetchers/Plugin.php', - 'WP_CLI\\Fetchers\\Post' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Post.php', - 'WP_CLI\\Fetchers\\Site' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Site.php', - 'WP_CLI\\Fetchers\\Theme' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/Fetchers/Theme.php', - 'WP_CLI\\Fetchers\\UnfilteredPlugin' => $vendorDir . '/wp-cli/checksum-command/src/WP_CLI/Fetchers/UnfilteredPlugin.php', - 'WP_CLI\\Fetchers\\User' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/User.php', - 'WP_CLI\\Inflector' => $vendorDir . '/wp-cli/scaffold-command/src/WP_CLI/Inflector.php', - 'WP_CLI\\JsonManipulator' => $vendorDir . '/wp-cli/package-command/src/WP_CLI/JsonManipulator.php', - 'WP_CLI\\LanguagePackUpgrader' => $vendorDir . '/wp-cli/language-command/src/WP_CLI/LanguagePackUpgrader.php', - 'WP_CLI\\NonDestructiveCoreUpgrader' => $vendorDir . '/wp-cli/core-command/src/WP_CLI/NonDestructiveCoreUpgrader.php', - 'WP_CLI\\REPL' => $vendorDir . '/wp-cli/shell-command/src/WP_CLI/REPL.php', - 'WP_CLI\\SearchReplacer' => $vendorDir . '/wp-cli/search-replace-command/src/WP_CLI/SearchReplacer.php', - 'WP_Export_Base_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Base_Writer.php', - 'WP_Export_Exception' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Exception.php', - 'WP_Export_File_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_File_Writer.php', - 'WP_Export_Oxymel' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Oxymel.php', - 'WP_Export_Query' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Query.php', - 'WP_Export_Returner' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Returner.php', - 'WP_Export_Split_Files_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Split_Files_Writer.php', - 'WP_Export_Stdout_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Stdout_Writer.php', - 'WP_Export_Term_Exception' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Term_Exception.php', - 'WP_Export_WXR_Formatter' => $vendorDir . '/wp-cli/export-command/src/WP_Export_WXR_Formatter.php', - 'WP_Export_XML_Over_HTTP' => $vendorDir . '/wp-cli/export-command/src/WP_Export_XML_Over_HTTP.php', - 'WP_Iterator_Exception' => $vendorDir . '/wp-cli/export-command/src/WP_Iterator_Exception.php', - 'WP_Map_Iterator' => $vendorDir . '/wp-cli/export-command/src/WP_Map_Iterator.php', - 'WP_Post_IDs_Iterator' => $vendorDir . '/wp-cli/export-command/src/WP_Post_IDs_Iterator.php', - 'Widget_Command' => $vendorDir . '/wp-cli/widget-command/src/Widget_Command.php', -); diff --git a/vendor/composer/autoload_commands_real.php b/vendor/composer/autoload_commands_real.php deleted file mode 100644 index 66b261464..000000000 --- a/vendor/composer/autoload_commands_real.php +++ /dev/null @@ -1,34 +0,0 @@ -addClassMap($classMap); - } - $loader->register(true); - - return $loader; - } -} diff --git a/vendor/composer/autoload_framework_classmap.php b/vendor/composer/autoload_framework_classmap.php deleted file mode 100644 index 599d56b92..000000000 --- a/vendor/composer/autoload_framework_classmap.php +++ /dev/null @@ -1,2671 +0,0 @@ - $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Filter/Slugify.php', - 'BaconStringUtils\\Filter\\SlugifyFactory' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Filter/SlugifyFactory.php', - 'BaconStringUtils\\Module' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Module.php', - 'BaconStringUtils\\Slugifier' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Slugifier.php', - 'BaconStringUtils\\SlugifierFactory' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/SlugifierFactory.php', - 'BaconStringUtils\\UniDecoder' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/UniDecoder.php', - 'Behat\\Gherkin\\Cache\\CacheInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Cache/CacheInterface.php', - 'Behat\\Gherkin\\Cache\\FileCache' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Cache/FileCache.php', - 'Behat\\Gherkin\\Cache\\MemoryCache' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Cache/MemoryCache.php', - 'Behat\\Gherkin\\Exception\\CacheException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/CacheException.php', - 'Behat\\Gherkin\\Exception\\Exception' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/Exception.php', - 'Behat\\Gherkin\\Exception\\LexerException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/LexerException.php', - 'Behat\\Gherkin\\Exception\\NodeException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/NodeException.php', - 'Behat\\Gherkin\\Exception\\ParserException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/ParserException.php', - 'Behat\\Gherkin\\Filter\\ComplexFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/ComplexFilter.php', - 'Behat\\Gherkin\\Filter\\ComplexFilterInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/ComplexFilterInterface.php', - 'Behat\\Gherkin\\Filter\\FeatureFilterInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/FeatureFilterInterface.php', - 'Behat\\Gherkin\\Filter\\FilterInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/FilterInterface.php', - 'Behat\\Gherkin\\Filter\\LineFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/LineFilter.php', - 'Behat\\Gherkin\\Filter\\LineRangeFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/LineRangeFilter.php', - 'Behat\\Gherkin\\Filter\\NameFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/NameFilter.php', - 'Behat\\Gherkin\\Filter\\NarrativeFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/NarrativeFilter.php', - 'Behat\\Gherkin\\Filter\\PathsFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/PathsFilter.php', - 'Behat\\Gherkin\\Filter\\RoleFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/RoleFilter.php', - 'Behat\\Gherkin\\Filter\\SimpleFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/SimpleFilter.php', - 'Behat\\Gherkin\\Filter\\TagFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/TagFilter.php', - 'Behat\\Gherkin\\Gherkin' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Gherkin.php', - 'Behat\\Gherkin\\Keywords\\ArrayKeywords' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/ArrayKeywords.php', - 'Behat\\Gherkin\\Keywords\\CachedArrayKeywords' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/CachedArrayKeywords.php', - 'Behat\\Gherkin\\Keywords\\CucumberKeywords' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/CucumberKeywords.php', - 'Behat\\Gherkin\\Keywords\\KeywordsDumper' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/KeywordsDumper.php', - 'Behat\\Gherkin\\Keywords\\KeywordsInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/KeywordsInterface.php', - 'Behat\\Gherkin\\Lexer' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Lexer.php', - 'Behat\\Gherkin\\Loader\\AbstractFileLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/AbstractFileLoader.php', - 'Behat\\Gherkin\\Loader\\ArrayLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/ArrayLoader.php', - 'Behat\\Gherkin\\Loader\\DirectoryLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/DirectoryLoader.php', - 'Behat\\Gherkin\\Loader\\FileLoaderInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/FileLoaderInterface.php', - 'Behat\\Gherkin\\Loader\\GherkinFileLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/GherkinFileLoader.php', - 'Behat\\Gherkin\\Loader\\LoaderInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/LoaderInterface.php', - 'Behat\\Gherkin\\Loader\\YamlFileLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/YamlFileLoader.php', - 'Behat\\Gherkin\\Node\\ArgumentInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ArgumentInterface.php', - 'Behat\\Gherkin\\Node\\BackgroundNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/BackgroundNode.php', - 'Behat\\Gherkin\\Node\\ExampleNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ExampleNode.php', - 'Behat\\Gherkin\\Node\\ExampleTableNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ExampleTableNode.php', - 'Behat\\Gherkin\\Node\\FeatureNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/FeatureNode.php', - 'Behat\\Gherkin\\Node\\KeywordNodeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/KeywordNodeInterface.php', - 'Behat\\Gherkin\\Node\\NodeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/NodeInterface.php', - 'Behat\\Gherkin\\Node\\OutlineNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/OutlineNode.php', - 'Behat\\Gherkin\\Node\\PyStringNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/PyStringNode.php', - 'Behat\\Gherkin\\Node\\ScenarioInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioInterface.php', - 'Behat\\Gherkin\\Node\\ScenarioLikeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioLikeInterface.php', - 'Behat\\Gherkin\\Node\\ScenarioNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioNode.php', - 'Behat\\Gherkin\\Node\\StepContainerInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/StepContainerInterface.php', - 'Behat\\Gherkin\\Node\\StepNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/StepNode.php', - 'Behat\\Gherkin\\Node\\TableNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/TableNode.php', - 'Behat\\Gherkin\\Node\\TaggedNodeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/TaggedNodeInterface.php', - 'Behat\\Gherkin\\Parser' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Parser.php', - 'Carbon\\Carbon' => $vendorDir . '/nesbot/carbon/src/Carbon/Carbon.php', - 'Carbon\\CarbonImmutable' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonImmutable.php', - 'Carbon\\CarbonInterface' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonInterface.php', - 'Carbon\\CarbonInterval' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonInterval.php', - 'Carbon\\CarbonPeriod' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonPeriod.php', - 'Carbon\\CarbonTimeZone' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonTimeZone.php', - 'Carbon\\Exceptions\\InvalidDateException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php', - 'Carbon\\Factory' => $vendorDir . '/nesbot/carbon/src/Carbon/Factory.php', - 'Carbon\\FactoryImmutable' => $vendorDir . '/nesbot/carbon/src/Carbon/FactoryImmutable.php', - 'Carbon\\Language' => $vendorDir . '/nesbot/carbon/src/Carbon/Language.php', - 'Carbon\\Laravel\\ServiceProvider' => $vendorDir . '/nesbot/carbon/src/Carbon/Laravel/ServiceProvider.php', - 'Carbon\\Traits\\Boundaries' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Boundaries.php', - 'Carbon\\Traits\\Comparison' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Comparison.php', - 'Carbon\\Traits\\Converter' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Converter.php', - 'Carbon\\Traits\\Creator' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Creator.php', - 'Carbon\\Traits\\Date' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Date.php', - 'Carbon\\Traits\\Difference' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Difference.php', - 'Carbon\\Traits\\Localization' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Localization.php', - 'Carbon\\Traits\\Macro' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Macro.php', - 'Carbon\\Traits\\Modifiers' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Modifiers.php', - 'Carbon\\Traits\\Mutability' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Mutability.php', - 'Carbon\\Traits\\Options' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Options.php', - 'Carbon\\Traits\\Rounding' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Rounding.php', - 'Carbon\\Traits\\Serialization' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Serialization.php', - 'Carbon\\Traits\\Test' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Test.php', - 'Carbon\\Traits\\Timestamp' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Timestamp.php', - 'Carbon\\Traits\\Units' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Units.php', - 'Carbon\\Traits\\Week' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Week.php', - 'Carbon\\Translator' => $vendorDir . '/nesbot/carbon/src/Carbon/Translator.php', - 'Codeception\\Actor' => $vendorDir . '/codeception/codeception/src/Codeception/Actor.php', - 'Codeception\\Application' => $vendorDir . '/codeception/codeception/src/Codeception/Application.php', - 'Codeception\\Codecept' => $vendorDir . '/codeception/codeception/src/Codeception/Codecept.php', - 'Codeception\\Command\\Bootstrap' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Bootstrap.php', - 'Codeception\\Command\\Build' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Build.php', - 'Codeception\\Command\\Clean' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Clean.php', - 'Codeception\\Command\\Completion' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Completion.php', - 'Codeception\\Command\\CompletionFallback' => $vendorDir . '/codeception/codeception/src/Codeception/Command/CompletionFallback.php', - 'Codeception\\Command\\ConfigValidate' => $vendorDir . '/codeception/codeception/src/Codeception/Command/ConfigValidate.php', - 'Codeception\\Command\\Console' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Console.php', - 'Codeception\\Command\\DryRun' => $vendorDir . '/codeception/codeception/src/Codeception/Command/DryRun.php', - 'Codeception\\Command\\GenerateCept' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateCept.php', - 'Codeception\\Command\\GenerateCest' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateCest.php', - 'Codeception\\Command\\GenerateEnvironment' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateEnvironment.php', - 'Codeception\\Command\\GenerateFeature' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateFeature.php', - 'Codeception\\Command\\GenerateGroup' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateGroup.php', - 'Codeception\\Command\\GenerateHelper' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateHelper.php', - 'Codeception\\Command\\GeneratePageObject' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GeneratePageObject.php', - 'Codeception\\Command\\GenerateScenarios' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateScenarios.php', - 'Codeception\\Command\\GenerateSnapshot' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateSnapshot.php', - 'Codeception\\Command\\GenerateStepObject' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateStepObject.php', - 'Codeception\\Command\\GenerateSuite' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateSuite.php', - 'Codeception\\Command\\GenerateTest' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateTest.php', - 'Codeception\\Command\\GenerateWPAjax' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPAjax.php', - 'Codeception\\Command\\GenerateWPCanonical' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPCanonical.php', - 'Codeception\\Command\\GenerateWPRestApi' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestApi.php', - 'Codeception\\Command\\GenerateWPRestController' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestController.php', - 'Codeception\\Command\\GenerateWPRestPostTypeController' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestPostTypeController.php', - 'Codeception\\Command\\GenerateWPUnit' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPUnit.php', - 'Codeception\\Command\\GenerateWPXMLRPC' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPXMLRPC.php', - 'Codeception\\Command\\GherkinSnippets' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GherkinSnippets.php', - 'Codeception\\Command\\GherkinSteps' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GherkinSteps.php', - 'Codeception\\Command\\Init' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Init.php', - 'Codeception\\Command\\Run' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Run.php', - 'Codeception\\Command\\SelfUpdate' => $vendorDir . '/codeception/codeception/src/Codeception/Command/SelfUpdate.php', - 'Codeception\\Command\\Shared\\Config' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Shared/Config.php', - 'Codeception\\Command\\Shared\\FileSystem' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Shared/FileSystem.php', - 'Codeception\\Command\\Shared\\Style' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Shared/Style.php', - 'Codeception\\Configuration' => $vendorDir . '/codeception/codeception/src/Codeception/Configuration.php', - 'Codeception\\Coverage\\Filter' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Filter.php', - 'Codeception\\Coverage\\Subscriber\\Local' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/Local.php', - 'Codeception\\Coverage\\Subscriber\\LocalServer' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/LocalServer.php', - 'Codeception\\Coverage\\Subscriber\\Printer' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/Printer.php', - 'Codeception\\Coverage\\Subscriber\\RemoteServer' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/RemoteServer.php', - 'Codeception\\Coverage\\SuiteSubscriber' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/SuiteSubscriber.php', - 'Codeception\\CustomCommandInterface' => $vendorDir . '/codeception/codeception/src/Codeception/CustomCommandInterface.php', - 'Codeception\\Event\\FailEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/FailEvent.php', - 'Codeception\\Event\\PrintResultEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/PrintResultEvent.php', - 'Codeception\\Event\\StepEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/StepEvent.php', - 'Codeception\\Event\\SuiteEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/SuiteEvent.php', - 'Codeception\\Event\\TestEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/TestEvent.php', - 'Codeception\\Events' => $vendorDir . '/codeception/codeception/src/Codeception/Events.php', - 'Codeception\\Example' => $vendorDir . '/codeception/codeception/src/Codeception/Example.php', - 'Codeception\\Exception\\ConditionalAssertionFailed' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ConditionalAssertionFailed.php', - 'Codeception\\Exception\\ConfigurationException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ConfigurationException.php', - 'Codeception\\Exception\\ConnectionException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ConnectionException.php', - 'Codeception\\Exception\\ContentNotFound' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ContentNotFound.php', - 'Codeception\\Exception\\ElementNotFound' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ElementNotFound.php', - 'Codeception\\Exception\\ExtensionException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ExtensionException.php', - 'Codeception\\Exception\\ExternalUrlException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ExternalUrlException.php', - 'Codeception\\Exception\\Fail' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/Fail.php', - 'Codeception\\Exception\\Incomplete' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/Incomplete.php', - 'Codeception\\Exception\\InjectionException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/InjectionException.php', - 'Codeception\\Exception\\MalformedLocatorException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/MalformedLocatorException.php', - 'Codeception\\Exception\\ModuleConfigException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleConfigException.php', - 'Codeception\\Exception\\ModuleConflictException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleConflictException.php', - 'Codeception\\Exception\\ModuleException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleException.php', - 'Codeception\\Exception\\ModuleRequireException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleRequireException.php', - 'Codeception\\Exception\\ParseException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ParseException.php', - 'Codeception\\Exception\\RemoteException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/RemoteException.php', - 'Codeception\\Exception\\Skip' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/Skip.php', - 'Codeception\\Exception\\TestParseException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/TestParseException.php', - 'Codeception\\Exception\\TestRuntimeException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/TestRuntimeException.php', - 'Codeception\\Extension' => $vendorDir . '/codeception/codeception/src/Codeception/Extension.php', - 'Codeception\\Extension\\DotReporter' => $vendorDir . '/codeception/codeception/ext/DotReporter.php', - 'Codeception\\Extension\\Logger' => $vendorDir . '/codeception/codeception/ext/Logger.php', - 'Codeception\\Extension\\Recorder' => $vendorDir . '/codeception/codeception/ext/Recorder.php', - 'Codeception\\Extension\\RunBefore' => $vendorDir . '/codeception/codeception/ext/RunBefore.php', - 'Codeception\\Extension\\RunFailed' => $vendorDir . '/codeception/codeception/ext/RunFailed.php', - 'Codeception\\Extension\\RunProcess' => $vendorDir . '/codeception/codeception/ext/RunProcess.php', - 'Codeception\\Extension\\SimpleReporter' => $vendorDir . '/codeception/codeception/ext/SimpleReporter.php', - 'Codeception\\GroupObject' => $vendorDir . '/codeception/codeception/src/Codeception/GroupObject.php', - 'Codeception\\InitTemplate' => $vendorDir . '/codeception/codeception/src/Codeception/InitTemplate.php', - 'Codeception\\Lib\\Actor\\Shared\\Comment' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Actor/Shared/Comment.php', - 'Codeception\\Lib\\Actor\\Shared\\Friend' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Actor/Shared/Friend.php', - 'Codeception\\Lib\\Connector\\Guzzle' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Guzzle.php', - 'Codeception\\Lib\\Connector\\Guzzle6' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Guzzle6.php', - 'Codeception\\Lib\\Connector\\Laravel5' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Laravel5.php', - 'Codeception\\Lib\\Connector\\Laravel5\\ExceptionHandlerDecorator' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Laravel5/ExceptionHandlerDecorator.php', - 'Codeception\\Lib\\Connector\\Lumen' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Lumen.php', - 'Codeception\\Lib\\Connector\\Lumen\\DummyKernel' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Lumen/DummyKernel.php', - 'Codeception\\Lib\\Connector\\Phalcon' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Phalcon.php', - 'Codeception\\Lib\\Connector\\Phalcon\\MemorySession' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Phalcon/MemorySession.php', - 'Codeception\\Lib\\Connector\\Shared\\LaravelCommon' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Shared/LaravelCommon.php', - 'Codeception\\Lib\\Connector\\Shared\\PhpSuperGlobalsConverter' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Shared/PhpSuperGlobalsConverter.php', - 'Codeception\\Lib\\Connector\\Symfony' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Symfony.php', - 'Codeception\\Lib\\Connector\\Universal' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Universal.php', - 'Codeception\\Lib\\Connector\\Yii1' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii1.php', - 'Codeception\\Lib\\Connector\\Yii2' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2.php', - 'Codeception\\Lib\\Connector\\Yii2\\ConnectionWatcher' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/ConnectionWatcher.php', - 'Codeception\\Lib\\Connector\\Yii2\\FixturesStore' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/FixturesStore.php', - 'Codeception\\Lib\\Connector\\Yii2\\Logger' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/Logger.php', - 'Codeception\\Lib\\Connector\\Yii2\\TestMailer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/TestMailer.php', - 'Codeception\\Lib\\Connector\\Yii2\\TransactionForcer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/TransactionForcer.php', - 'Codeception\\Lib\\Connector\\ZF1' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZF1.php', - 'Codeception\\Lib\\Connector\\ZF2' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZF2.php', - 'Codeception\\Lib\\Connector\\ZF2\\PersistentServiceManager' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZF2/PersistentServiceManager.php', - 'Codeception\\Lib\\Connector\\ZendExpressive' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZendExpressive.php', - 'Codeception\\Lib\\Connector\\ZendExpressive\\ResponseCollector' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZendExpressive/ResponseCollector.php', - 'Codeception\\Lib\\Console\\Colorizer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/Colorizer.php', - 'Codeception\\Lib\\Console\\DiffFactory' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/DiffFactory.php', - 'Codeception\\Lib\\Console\\Message' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/Message.php', - 'Codeception\\Lib\\Console\\MessageFactory' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/MessageFactory.php', - 'Codeception\\Lib\\Console\\Output' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/Output.php', - 'Codeception\\Lib\\DbPopulator' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/DbPopulator.php', - 'Codeception\\Lib\\Di' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Di.php', - 'Codeception\\Lib\\Driver\\AmazonSQS' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/AmazonSQS.php', - 'Codeception\\Lib\\Driver\\Beanstalk' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Beanstalk.php', - 'Codeception\\Lib\\Driver\\Db' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Db.php', - 'Codeception\\Lib\\Driver\\ExtendedDbDriver' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Driver/ExtendedDbDriver.php', - 'Codeception\\Lib\\Driver\\ExtendedMySql' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Driver/ExtendedMySql.php', - 'Codeception\\Lib\\Driver\\Facebook' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Facebook.php', - 'Codeception\\Lib\\Driver\\Iron' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Iron.php', - 'Codeception\\Lib\\Driver\\MongoDb' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/MongoDb.php', - 'Codeception\\Lib\\Driver\\MySql' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/MySql.php', - 'Codeception\\Lib\\Driver\\Oci' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Oci.php', - 'Codeception\\Lib\\Driver\\PostgreSql' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/PostgreSql.php', - 'Codeception\\Lib\\Driver\\SqlSrv' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/SqlSrv.php', - 'Codeception\\Lib\\Driver\\Sqlite' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Sqlite.php', - 'Codeception\\Lib\\Framework' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Framework.php', - 'Codeception\\Lib\\Friend' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Friend.php', - 'Codeception\\Lib\\Generator\\AbstractGenerator' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/AbstractGenerator.php', - 'Codeception\\Lib\\Generator\\AcceptanceSuiteConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/AcceptanceSuiteConfig.php', - 'Codeception\\Lib\\Generator\\Actions' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Actions.php', - 'Codeception\\Lib\\Generator\\Actor' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Actor.php', - 'Codeception\\Lib\\Generator\\Cept' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Cept.php', - 'Codeception\\Lib\\Generator\\Cest' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Cest.php', - 'Codeception\\Lib\\Generator\\Feature' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Feature.php', - 'Codeception\\Lib\\Generator\\FunctionalSuiteConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/FunctionalSuiteConfig.php', - 'Codeception\\Lib\\Generator\\GeneratorInterface' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/GeneratorInterface.php', - 'Codeception\\Lib\\Generator\\GherkinSnippets' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/GherkinSnippets.php', - 'Codeception\\Lib\\Generator\\Group' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Group.php', - 'Codeception\\Lib\\Generator\\Helper' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Helper.php', - 'Codeception\\Lib\\Generator\\IntegrationSuiteConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/IntegrationSuiteConfig.php', - 'Codeception\\Lib\\Generator\\IntegrationSuiteThemeConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/IntegrationSuiteThemeConfig.php', - 'Codeception\\Lib\\Generator\\PageObject' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/PageObject.php', - 'Codeception\\Lib\\Generator\\Shared\\Classname' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Shared/Classname.php', - 'Codeception\\Lib\\Generator\\Snapshot' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Snapshot.php', - 'Codeception\\Lib\\Generator\\StepObject' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/StepObject.php', - 'Codeception\\Lib\\Generator\\Test' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Test.php', - 'Codeception\\Lib\\Generator\\WPUnit' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/WPUnit.php', - 'Codeception\\Lib\\GroupManager' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/GroupManager.php', - 'Codeception\\Lib\\InnerBrowser' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/InnerBrowser.php', - 'Codeception\\Lib\\Interfaces\\API' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/API.php', - 'Codeception\\Lib\\Interfaces\\ActiveRecord' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ActiveRecord.php', - 'Codeception\\Lib\\Interfaces\\ConflictsWithModule' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ConflictsWithModule.php', - 'Codeception\\Lib\\Interfaces\\DataMapper' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/DataMapper.php', - 'Codeception\\Lib\\Interfaces\\Db' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Db.php', - 'Codeception\\Lib\\Interfaces\\DependsOnModule' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/DependsOnModule.php', - 'Codeception\\Lib\\Interfaces\\DoctrineProvider' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/DoctrineProvider.php', - 'Codeception\\Lib\\Interfaces\\ElementLocator' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ElementLocator.php', - 'Codeception\\Lib\\Interfaces\\MultiSession' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/MultiSession.php', - 'Codeception\\Lib\\Interfaces\\ORM' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ORM.php', - 'Codeception\\Lib\\Interfaces\\PageSourceSaver' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/PageSourceSaver.php', - 'Codeception\\Lib\\Interfaces\\PartedModule' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/PartedModule.php', - 'Codeception\\Lib\\Interfaces\\Queue' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Queue.php', - 'Codeception\\Lib\\Interfaces\\Remote' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Remote.php', - 'Codeception\\Lib\\Interfaces\\RequiresPackage' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/RequiresPackage.php', - 'Codeception\\Lib\\Interfaces\\ScreenshotSaver' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ScreenshotSaver.php', - 'Codeception\\Lib\\Interfaces\\SessionSnapshot' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/SessionSnapshot.php', - 'Codeception\\Lib\\Interfaces\\Web' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Web.php', - 'Codeception\\Lib\\ModuleContainer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/ModuleContainer.php', - 'Codeception\\Lib\\Notification' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Notification.php', - 'Codeception\\Lib\\ParamsLoader' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/ParamsLoader.php', - 'Codeception\\Lib\\Parser' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Parser.php', - 'Codeception\\Lib\\Shared\\LaravelCommon' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Shared/LaravelCommon.php', - 'Codeception\\Module' => $vendorDir . '/codeception/codeception/src/Codeception/Module.php', - 'Codeception\\Module\\AMQP' => $vendorDir . '/codeception/codeception/src/Codeception/Module/AMQP.php', - 'Codeception\\Module\\AngularJS' => $vendorDir . '/codeception/codeception/src/Codeception/Module/AngularJS.php', - 'Codeception\\Module\\Apc' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Apc.php', - 'Codeception\\Module\\Asserts' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Asserts.php', - 'Codeception\\Module\\Cli' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Cli.php', - 'Codeception\\Module\\DataFactory' => $vendorDir . '/codeception/codeception/src/Codeception/Module/DataFactory.php', - 'Codeception\\Module\\Db' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Db.php', - 'Codeception\\Module\\Doctrine2' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Doctrine2.php', - 'Codeception\\Module\\FTP' => $vendorDir . '/codeception/codeception/src/Codeception/Module/FTP.php', - 'Codeception\\Module\\Facebook' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Facebook.php', - 'Codeception\\Module\\Filesystem' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Filesystem.php', - 'Codeception\\Module\\Laravel5' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Laravel5.php', - 'Codeception\\Module\\Lumen' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Lumen.php', - 'Codeception\\Module\\Memcache' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Memcache.php', - 'Codeception\\Module\\MongoDb' => $vendorDir . '/codeception/codeception/src/Codeception/Module/MongoDb.php', - 'Codeception\\Module\\Phalcon' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Phalcon.php', - 'Codeception\\Module\\PhpBrowser' => $vendorDir . '/codeception/codeception/src/Codeception/Module/PhpBrowser.php', - 'Codeception\\Module\\Queue' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Queue.php', - 'Codeception\\Module\\REST' => $vendorDir . '/codeception/codeception/src/Codeception/Module/REST.php', - 'Codeception\\Module\\Redis' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Redis.php', - 'Codeception\\Module\\SOAP' => $vendorDir . '/codeception/codeception/src/Codeception/Module/SOAP.php', - 'Codeception\\Module\\Sequence' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Sequence.php', - 'Codeception\\Module\\Silex' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Silex.php', - 'Codeception\\Module\\Symfony' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Symfony.php', - 'Codeception\\Module\\WPBrowser' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPBrowser.php', - 'Codeception\\Module\\WPBrowserMethods' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPBrowserMethods.php', - 'Codeception\\Module\\WPCLI' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPCLI.php', - 'Codeception\\Module\\WPDb' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPDb.php', - 'Codeception\\Module\\WPFilesystem' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPFilesystem.php', - 'Codeception\\Module\\WPLoader' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPLoader.php', - 'Codeception\\Module\\WPQueries' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPQueries.php', - 'Codeception\\Module\\WPWebDriver' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPWebDriver.php', - 'Codeception\\Module\\WebDriver' => $vendorDir . '/codeception/codeception/src/Codeception/Module/WebDriver.php', - 'Codeception\\Module\\WordPress' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WordPress.php', - 'Codeception\\Module\\XMLRPC' => $vendorDir . '/codeception/codeception/src/Codeception/Module/XMLRPC.php', - 'Codeception\\Module\\Yii1' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Yii1.php', - 'Codeception\\Module\\Yii2' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Yii2.php', - 'Codeception\\Module\\ZF1' => $vendorDir . '/codeception/codeception/src/Codeception/Module/ZF1.php', - 'Codeception\\Module\\ZF2' => $vendorDir . '/codeception/codeception/src/Codeception/Module/ZF2.php', - 'Codeception\\Module\\ZendExpressive' => $vendorDir . '/codeception/codeception/src/Codeception/Module/ZendExpressive.php', - 'Codeception\\PHPUnit\\ConsolePrinter' => $vendorDir . '/codeception/phpunit-wrapper/src/ConsolePrinter.php', - 'Codeception\\PHPUnit\\Constraint\\Crawler' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/Crawler.php', - 'Codeception\\PHPUnit\\Constraint\\CrawlerNot' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/CrawlerNot.php', - 'Codeception\\PHPUnit\\Constraint\\JsonContains' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/JsonContains.php', - 'Codeception\\PHPUnit\\Constraint\\JsonType' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/JsonType.php', - 'Codeception\\PHPUnit\\Constraint\\Page' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/Page.php', - 'Codeception\\PHPUnit\\Constraint\\WebDriver' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/WebDriver.php', - 'Codeception\\PHPUnit\\Constraint\\WebDriverNot' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/WebDriverNot.php', - 'Codeception\\PHPUnit\\FilterTest' => $vendorDir . '/codeception/phpunit-wrapper/src/FilterTest.php', - 'Codeception\\PHPUnit\\Init' => $vendorDir . '/codeception/phpunit-wrapper/src/Init.php', - 'Codeception\\PHPUnit\\Listener' => $vendorDir . '/codeception/phpunit-wrapper/src/Listener.php', - 'Codeception\\PHPUnit\\Log\\JUnit' => $vendorDir . '/codeception/phpunit-wrapper/src/Log/JUnit.php', - 'Codeception\\PHPUnit\\ResultPrinter' => $vendorDir . '/codeception/phpunit-wrapper/src/ResultPrinter.php', - 'Codeception\\PHPUnit\\ResultPrinter\\HTML' => $vendorDir . '/codeception/phpunit-wrapper/src/ResultPrinter/HTML.php', - 'Codeception\\PHPUnit\\ResultPrinter\\Report' => $vendorDir . '/codeception/phpunit-wrapper/src/ResultPrinter/Report.php', - 'Codeception\\PHPUnit\\ResultPrinter\\UI' => $vendorDir . '/codeception/phpunit-wrapper/src/ResultPrinter/UI.php', - 'Codeception\\PHPUnit\\Runner' => $vendorDir . '/codeception/phpunit-wrapper/src/Runner.php', - 'Codeception\\Scenario' => $vendorDir . '/codeception/codeception/src/Codeception/Scenario.php', - 'Codeception\\Snapshot' => $vendorDir . '/codeception/codeception/src/Codeception/Snapshot.php', - 'Codeception\\Step' => $vendorDir . '/codeception/codeception/src/Codeception/Step.php', - 'Codeception\\Step\\Action' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Action.php', - 'Codeception\\Step\\Argument\\FormattedOutput' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Argument/FormattedOutput.php', - 'Codeception\\Step\\Argument\\PasswordArgument' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Argument/PasswordArgument.php', - 'Codeception\\Step\\Assertion' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Assertion.php', - 'Codeception\\Step\\Comment' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Comment.php', - 'Codeception\\Step\\Condition' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Condition.php', - 'Codeception\\Step\\ConditionalAssertion' => $vendorDir . '/codeception/codeception/src/Codeception/Step/ConditionalAssertion.php', - 'Codeception\\Step\\Executor' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Executor.php', - 'Codeception\\Step\\Incomplete' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Incomplete.php', - 'Codeception\\Step\\Meta' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Meta.php', - 'Codeception\\Step\\Skip' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Skip.php', - 'Codeception\\Stub' => $vendorDir . '/codeception/stub/src/Stub.php', - 'Codeception\\Stub\\ConsecutiveMap' => $vendorDir . '/codeception/stub/src/Stub/ConsecutiveMap.php', - 'Codeception\\Stub\\Expected' => $vendorDir . '/codeception/stub/src/Stub/Expected.php', - 'Codeception\\Stub\\StubMarshaler' => $vendorDir . '/codeception/stub/src/Stub/StubMarshaler.php', - 'Codeception\\Subscriber\\AutoRebuild' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/AutoRebuild.php', - 'Codeception\\Subscriber\\BeforeAfterTest' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/BeforeAfterTest.php', - 'Codeception\\Subscriber\\Bootstrap' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Bootstrap.php', - 'Codeception\\Subscriber\\Console' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Console.php', - 'Codeception\\Subscriber\\Dependencies' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Dependencies.php', - 'Codeception\\Subscriber\\ErrorHandler' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/ErrorHandler.php', - 'Codeception\\Subscriber\\ExtensionLoader' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/ExtensionLoader.php', - 'Codeception\\Subscriber\\FailFast' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/FailFast.php', - 'Codeception\\Subscriber\\GracefulTermination' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/GracefulTermination.php', - 'Codeception\\Subscriber\\Module' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Module.php', - 'Codeception\\Subscriber\\PrepareTest' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/PrepareTest.php', - 'Codeception\\Subscriber\\Shared\\StaticEvents' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Shared/StaticEvents.php', - 'Codeception\\Suite' => $vendorDir . '/codeception/codeception/src/Codeception/Suite.php', - 'Codeception\\SuiteManager' => $vendorDir . '/codeception/codeception/src/Codeception/SuiteManager.php', - 'Codeception\\Template\\Acceptance' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Acceptance.php', - 'Codeception\\Template\\Api' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Api.php', - 'Codeception\\Template\\Bootstrap' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Bootstrap.php', - 'Codeception\\Template\\Unit' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Unit.php', - 'Codeception\\Template\\Wpbrowser' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Template/Wpbrowser.php', - 'Codeception\\TestCase\\WPAjaxTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPAjaxTestCase.php', - 'Codeception\\TestCase\\WPCanonicalTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPCanonicalTestCase.php', - 'Codeception\\TestCase\\WPRestApiTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestApiTestCase.php', - 'Codeception\\TestCase\\WPRestControllerTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestControllerTestCase.php', - 'Codeception\\TestCase\\WPRestPostTypeControllerTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestPostTypeControllerTestCase.php', - 'Codeception\\TestCase\\WPTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPTestCase.php', - 'Codeception\\TestCase\\WPXMLRPCTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPXMLRPCTestCase.php', - 'Codeception\\TestInterface' => $vendorDir . '/codeception/codeception/src/Codeception/TestInterface.php', - 'Codeception\\Test\\Cept' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Cept.php', - 'Codeception\\Test\\Cest' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Cest.php', - 'Codeception\\Test\\Descriptor' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Descriptor.php', - 'Codeception\\Test\\Feature\\AssertionCounter' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/AssertionCounter.php', - 'Codeception\\Test\\Feature\\CodeCoverage' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/CodeCoverage.php', - 'Codeception\\Test\\Feature\\ErrorLogger' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/ErrorLogger.php', - 'Codeception\\Test\\Feature\\IgnoreIfMetadataBlocked' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/IgnoreIfMetadataBlocked.php', - 'Codeception\\Test\\Feature\\MetadataCollector' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/MetadataCollector.php', - 'Codeception\\Test\\Feature\\ScenarioLoader' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/ScenarioLoader.php', - 'Codeception\\Test\\Feature\\Stub' => $vendorDir . '/codeception/stub/src/Test/Feature/Stub.php', - 'Codeception\\Test\\Gherkin' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Gherkin.php', - 'Codeception\\Test\\Interfaces\\Dependent' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Dependent.php', - 'Codeception\\Test\\Interfaces\\Descriptive' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Descriptive.php', - 'Codeception\\Test\\Interfaces\\Plain' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Plain.php', - 'Codeception\\Test\\Interfaces\\Reported' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Reported.php', - 'Codeception\\Test\\Interfaces\\ScenarioDriven' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/ScenarioDriven.php', - 'Codeception\\Test\\Interfaces\\StrictCoverage' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/StrictCoverage.php', - 'Codeception\\Test\\Loader' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader.php', - 'Codeception\\Test\\Loader\\Cept' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Cept.php', - 'Codeception\\Test\\Loader\\Cest' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Cest.php', - 'Codeception\\Test\\Loader\\Gherkin' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Gherkin.php', - 'Codeception\\Test\\Loader\\LoaderInterface' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/LoaderInterface.php', - 'Codeception\\Test\\Loader\\Unit' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Unit.php', - 'Codeception\\Test\\Metadata' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Metadata.php', - 'Codeception\\Test\\Test' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Test.php', - 'Codeception\\Test\\Unit' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Unit.php', - 'Codeception\\Util\\ActionSequence' => $vendorDir . '/codeception/codeception/src/Codeception/Util/ActionSequence.php', - 'Codeception\\Util\\Annotation' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Annotation.php', - 'Codeception\\Util\\ArrayContainsComparator' => $vendorDir . '/codeception/codeception/src/Codeception/Util/ArrayContainsComparator.php', - 'Codeception\\Util\\Autoload' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Autoload.php', - 'Codeception\\Util\\Debug' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Debug.php', - 'Codeception\\Util\\FileSystem' => $vendorDir . '/codeception/codeception/src/Codeception/Util/FileSystem.php', - 'Codeception\\Util\\Fixtures' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Fixtures.php', - 'Codeception\\Util\\HttpCode' => $vendorDir . '/codeception/codeception/src/Codeception/Util/HttpCode.php', - 'Codeception\\Util\\JsonArray' => $vendorDir . '/codeception/codeception/src/Codeception/Util/JsonArray.php', - 'Codeception\\Util\\JsonType' => $vendorDir . '/codeception/codeception/src/Codeception/Util/JsonType.php', - 'Codeception\\Util\\Locator' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Locator.php', - 'Codeception\\Util\\Maybe' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Maybe.php', - 'Codeception\\Util\\PathResolver' => $vendorDir . '/codeception/codeception/src/Codeception/Util/PathResolver.php', - 'Codeception\\Util\\PropertyAccess' => $vendorDir . '/codeception/codeception/src/Codeception/Util/PropertyAccess.php', - 'Codeception\\Util\\ReflectionHelper' => $vendorDir . '/codeception/codeception/src/Codeception/Util/ReflectionHelper.php', - 'Codeception\\Util\\Shared\\Asserts' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Shared/Asserts.php', - 'Codeception\\Util\\Shared\\Namespaces' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Shared/Namespaces.php', - 'Codeception\\Util\\Soap' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Soap.php', - 'Codeception\\Util\\Stub' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Stub.php', - 'Codeception\\Util\\Template' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Template.php', - 'Codeception\\Util\\Uri' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Uri.php', - 'Codeception\\Util\\Xml' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Xml.php', - 'Codeception\\Util\\XmlBuilder' => $vendorDir . '/codeception/codeception/src/Codeception/Util/XmlBuilder.php', - 'Codeception\\Util\\XmlStructure' => $vendorDir . '/codeception/codeception/src/Codeception/Util/XmlStructure.php', - 'Composer\\Autoload\\AutoloadGenerator' => $vendorDir . '/composer/composer/src/Composer/Autoload/AutoloadGenerator.php', - 'Composer\\Autoload\\ClassLoader' => $vendorDir . '/composer/composer/src/Composer/Autoload/ClassLoader.php', - 'Composer\\Autoload\\ClassMapGenerator' => $vendorDir . '/composer/composer/src/Composer/Autoload/ClassMapGenerator.php', - 'Composer\\CaBundle\\CaBundle' => $vendorDir . '/composer/ca-bundle/src/CaBundle.php', - 'Composer\\Cache' => $vendorDir . '/composer/composer/src/Composer/Cache.php', - 'Composer\\Command\\AboutCommand' => $vendorDir . '/composer/composer/src/Composer/Command/AboutCommand.php', - 'Composer\\Command\\ArchiveCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ArchiveCommand.php', - 'Composer\\Command\\BaseCommand' => $vendorDir . '/composer/composer/src/Composer/Command/BaseCommand.php', - 'Composer\\Command\\BaseDependencyCommand' => $vendorDir . '/composer/composer/src/Composer/Command/BaseDependencyCommand.php', - 'Composer\\Command\\CheckPlatformReqsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php', - 'Composer\\Command\\ClearCacheCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ClearCacheCommand.php', - 'Composer\\Command\\ConfigCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ConfigCommand.php', - 'Composer\\Command\\CreateProjectCommand' => $vendorDir . '/composer/composer/src/Composer/Command/CreateProjectCommand.php', - 'Composer\\Command\\DependsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/DependsCommand.php', - 'Composer\\Command\\DiagnoseCommand' => $vendorDir . '/composer/composer/src/Composer/Command/DiagnoseCommand.php', - 'Composer\\Command\\DumpAutoloadCommand' => $vendorDir . '/composer/composer/src/Composer/Command/DumpAutoloadCommand.php', - 'Composer\\Command\\ExecCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ExecCommand.php', - 'Composer\\Command\\GlobalCommand' => $vendorDir . '/composer/composer/src/Composer/Command/GlobalCommand.php', - 'Composer\\Command\\HomeCommand' => $vendorDir . '/composer/composer/src/Composer/Command/HomeCommand.php', - 'Composer\\Command\\InitCommand' => $vendorDir . '/composer/composer/src/Composer/Command/InitCommand.php', - 'Composer\\Command\\InstallCommand' => $vendorDir . '/composer/composer/src/Composer/Command/InstallCommand.php', - 'Composer\\Command\\LicensesCommand' => $vendorDir . '/composer/composer/src/Composer/Command/LicensesCommand.php', - 'Composer\\Command\\OutdatedCommand' => $vendorDir . '/composer/composer/src/Composer/Command/OutdatedCommand.php', - 'Composer\\Command\\ProhibitsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ProhibitsCommand.php', - 'Composer\\Command\\RemoveCommand' => $vendorDir . '/composer/composer/src/Composer/Command/RemoveCommand.php', - 'Composer\\Command\\RequireCommand' => $vendorDir . '/composer/composer/src/Composer/Command/RequireCommand.php', - 'Composer\\Command\\RunScriptCommand' => $vendorDir . '/composer/composer/src/Composer/Command/RunScriptCommand.php', - 'Composer\\Command\\ScriptAliasCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ScriptAliasCommand.php', - 'Composer\\Command\\SearchCommand' => $vendorDir . '/composer/composer/src/Composer/Command/SearchCommand.php', - 'Composer\\Command\\SelfUpdateCommand' => $vendorDir . '/composer/composer/src/Composer/Command/SelfUpdateCommand.php', - 'Composer\\Command\\ShowCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ShowCommand.php', - 'Composer\\Command\\StatusCommand' => $vendorDir . '/composer/composer/src/Composer/Command/StatusCommand.php', - 'Composer\\Command\\SuggestsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/SuggestsCommand.php', - 'Composer\\Command\\UpdateCommand' => $vendorDir . '/composer/composer/src/Composer/Command/UpdateCommand.php', - 'Composer\\Command\\ValidateCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ValidateCommand.php', - 'Composer\\Compiler' => $vendorDir . '/composer/composer/src/Composer/Compiler.php', - 'Composer\\Composer' => $vendorDir . '/composer/composer/src/Composer/Composer.php', - 'Composer\\Config' => $vendorDir . '/composer/composer/src/Composer/Config.php', - 'Composer\\Config\\ConfigSourceInterface' => $vendorDir . '/composer/composer/src/Composer/Config/ConfigSourceInterface.php', - 'Composer\\Config\\JsonConfigSource' => $vendorDir . '/composer/composer/src/Composer/Config/JsonConfigSource.php', - 'Composer\\Console\\Application' => $vendorDir . '/composer/composer/src/Composer/Console/Application.php', - 'Composer\\Console\\HtmlOutputFormatter' => $vendorDir . '/composer/composer/src/Composer/Console/HtmlOutputFormatter.php', - 'Composer\\DependencyResolver\\Decisions' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Decisions.php', - 'Composer\\DependencyResolver\\DefaultPolicy' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/DefaultPolicy.php', - 'Composer\\DependencyResolver\\GenericRule' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/GenericRule.php', - 'Composer\\DependencyResolver\\Operation\\InstallOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/InstallOperation.php', - 'Composer\\DependencyResolver\\Operation\\MarkAliasInstalledOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php', - 'Composer\\DependencyResolver\\Operation\\MarkAliasUninstalledOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php', - 'Composer\\DependencyResolver\\Operation\\OperationInterface' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/OperationInterface.php', - 'Composer\\DependencyResolver\\Operation\\SolverOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/SolverOperation.php', - 'Composer\\DependencyResolver\\Operation\\UninstallOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/UninstallOperation.php', - 'Composer\\DependencyResolver\\Operation\\UpdateOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/UpdateOperation.php', - 'Composer\\DependencyResolver\\PolicyInterface' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php', - 'Composer\\DependencyResolver\\Pool' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Pool.php', - 'Composer\\DependencyResolver\\Problem' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Problem.php', - 'Composer\\DependencyResolver\\Request' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Request.php', - 'Composer\\DependencyResolver\\Rule' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Rule.php', - 'Composer\\DependencyResolver\\Rule2Literals' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Rule2Literals.php', - 'Composer\\DependencyResolver\\RuleSet' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleSet.php', - 'Composer\\DependencyResolver\\RuleSetGenerator' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleSetGenerator.php', - 'Composer\\DependencyResolver\\RuleSetIterator' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleSetIterator.php', - 'Composer\\DependencyResolver\\RuleWatchChain' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleWatchChain.php', - 'Composer\\DependencyResolver\\RuleWatchGraph' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleWatchGraph.php', - 'Composer\\DependencyResolver\\RuleWatchNode' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleWatchNode.php', - 'Composer\\DependencyResolver\\Solver' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Solver.php', - 'Composer\\DependencyResolver\\SolverBugException' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/SolverBugException.php', - 'Composer\\DependencyResolver\\SolverProblemsException' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/SolverProblemsException.php', - 'Composer\\DependencyResolver\\Transaction' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Transaction.php', - 'Composer\\Downloader\\ArchiveDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/ArchiveDownloader.php', - 'Composer\\Downloader\\ChangeReportInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/ChangeReportInterface.php', - 'Composer\\Downloader\\DownloadManager' => $vendorDir . '/composer/composer/src/Composer/Downloader/DownloadManager.php', - 'Composer\\Downloader\\DownloaderInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/DownloaderInterface.php', - 'Composer\\Downloader\\DvcsDownloaderInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/DvcsDownloaderInterface.php', - 'Composer\\Downloader\\FileDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/FileDownloader.php', - 'Composer\\Downloader\\FilesystemException' => $vendorDir . '/composer/composer/src/Composer/Downloader/FilesystemException.php', - 'Composer\\Downloader\\FossilDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/FossilDownloader.php', - 'Composer\\Downloader\\GitDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/GitDownloader.php', - 'Composer\\Downloader\\GzipDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/GzipDownloader.php', - 'Composer\\Downloader\\HgDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/HgDownloader.php', - 'Composer\\Downloader\\PathDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/PathDownloader.php', - 'Composer\\Downloader\\PearPackageExtractor' => $vendorDir . '/composer/composer/src/Composer/Downloader/PearPackageExtractor.php', - 'Composer\\Downloader\\PerforceDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/PerforceDownloader.php', - 'Composer\\Downloader\\PharDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/PharDownloader.php', - 'Composer\\Downloader\\RarDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/RarDownloader.php', - 'Composer\\Downloader\\SvnDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/SvnDownloader.php', - 'Composer\\Downloader\\TarDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/TarDownloader.php', - 'Composer\\Downloader\\TransportException' => $vendorDir . '/composer/composer/src/Composer/Downloader/TransportException.php', - 'Composer\\Downloader\\VcsCapableDownloaderInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/VcsCapableDownloaderInterface.php', - 'Composer\\Downloader\\VcsDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/VcsDownloader.php', - 'Composer\\Downloader\\XzDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/XzDownloader.php', - 'Composer\\Downloader\\ZipDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/ZipDownloader.php', - 'Composer\\EventDispatcher\\Event' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/Event.php', - 'Composer\\EventDispatcher\\EventDispatcher' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/EventDispatcher.php', - 'Composer\\EventDispatcher\\EventSubscriberInterface' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/EventSubscriberInterface.php', - 'Composer\\EventDispatcher\\ScriptExecutionException' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/ScriptExecutionException.php', - 'Composer\\Exception\\NoSslException' => $vendorDir . '/composer/composer/src/Composer/Exception/NoSslException.php', - 'Composer\\Factory' => $vendorDir . '/composer/composer/src/Composer/Factory.php', - 'Composer\\IO\\BaseIO' => $vendorDir . '/composer/composer/src/Composer/IO/BaseIO.php', - 'Composer\\IO\\BufferIO' => $vendorDir . '/composer/composer/src/Composer/IO/BufferIO.php', - 'Composer\\IO\\ConsoleIO' => $vendorDir . '/composer/composer/src/Composer/IO/ConsoleIO.php', - 'Composer\\IO\\IOInterface' => $vendorDir . '/composer/composer/src/Composer/IO/IOInterface.php', - 'Composer\\IO\\NullIO' => $vendorDir . '/composer/composer/src/Composer/IO/NullIO.php', - 'Composer\\Installer' => $vendorDir . '/composer/composer/src/Composer/Installer.php', - 'Composer\\Installer\\BinaryInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/BinaryInstaller.php', - 'Composer\\Installer\\BinaryPresenceInterface' => $vendorDir . '/composer/composer/src/Composer/Installer/BinaryPresenceInterface.php', - 'Composer\\Installer\\InstallationManager' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallationManager.php', - 'Composer\\Installer\\InstallerEvent' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallerEvent.php', - 'Composer\\Installer\\InstallerEvents' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallerEvents.php', - 'Composer\\Installer\\InstallerInterface' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallerInterface.php', - 'Composer\\Installer\\LibraryInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/LibraryInstaller.php', - 'Composer\\Installer\\MetapackageInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/MetapackageInstaller.php', - 'Composer\\Installer\\NoopInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/NoopInstaller.php', - 'Composer\\Installer\\PackageEvent' => $vendorDir . '/composer/composer/src/Composer/Installer/PackageEvent.php', - 'Composer\\Installer\\PackageEvents' => $vendorDir . '/composer/composer/src/Composer/Installer/PackageEvents.php', - 'Composer\\Installer\\PearBinaryInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/PearBinaryInstaller.php', - 'Composer\\Installer\\PearInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/PearInstaller.php', - 'Composer\\Installer\\PluginInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/PluginInstaller.php', - 'Composer\\Installer\\ProjectInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/ProjectInstaller.php', - 'Composer\\Installer\\SuggestedPackagesReporter' => $vendorDir . '/composer/composer/src/Composer/Installer/SuggestedPackagesReporter.php', - 'Composer\\Json\\JsonFile' => $vendorDir . '/composer/composer/src/Composer/Json/JsonFile.php', - 'Composer\\Json\\JsonFormatter' => $vendorDir . '/composer/composer/src/Composer/Json/JsonFormatter.php', - 'Composer\\Json\\JsonManipulator' => $vendorDir . '/composer/composer/src/Composer/Json/JsonManipulator.php', - 'Composer\\Json\\JsonValidationException' => $vendorDir . '/composer/composer/src/Composer/Json/JsonValidationException.php', - 'Composer\\Package\\AliasPackage' => $vendorDir . '/composer/composer/src/Composer/Package/AliasPackage.php', - 'Composer\\Package\\Archiver\\ArchivableFilesFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFilter.php', - 'Composer\\Package\\Archiver\\ArchivableFilesFinder' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFinder.php', - 'Composer\\Package\\Archiver\\ArchiveManager' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchiveManager.php', - 'Composer\\Package\\Archiver\\ArchiverInterface' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php', - 'Composer\\Package\\Archiver\\BaseExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/BaseExcludeFilter.php', - 'Composer\\Package\\Archiver\\ComposerExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ComposerExcludeFilter.php', - 'Composer\\Package\\Archiver\\GitExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/GitExcludeFilter.php', - 'Composer\\Package\\Archiver\\HgExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/HgExcludeFilter.php', - 'Composer\\Package\\Archiver\\PharArchiver' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/PharArchiver.php', - 'Composer\\Package\\Archiver\\ZipArchiver' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ZipArchiver.php', - 'Composer\\Package\\BasePackage' => $vendorDir . '/composer/composer/src/Composer/Package/BasePackage.php', - 'Composer\\Package\\Comparer\\Comparer' => $vendorDir . '/composer/composer/src/Composer/Package/Comparer/Comparer.php', - 'Composer\\Package\\CompletePackage' => $vendorDir . '/composer/composer/src/Composer/Package/CompletePackage.php', - 'Composer\\Package\\CompletePackageInterface' => $vendorDir . '/composer/composer/src/Composer/Package/CompletePackageInterface.php', - 'Composer\\Package\\Dumper\\ArrayDumper' => $vendorDir . '/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php', - 'Composer\\Package\\Link' => $vendorDir . '/composer/composer/src/Composer/Package/Link.php', - 'Composer\\Package\\LinkConstraint\\EmptyConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/EmptyConstraint.php', - 'Composer\\Package\\LinkConstraint\\LinkConstraintInterface' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/LinkConstraintInterface.php', - 'Composer\\Package\\LinkConstraint\\MultiConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/MultiConstraint.php', - 'Composer\\Package\\LinkConstraint\\SpecificConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/SpecificConstraint.php', - 'Composer\\Package\\LinkConstraint\\VersionConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/VersionConstraint.php', - 'Composer\\Package\\Loader\\ArrayLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/ArrayLoader.php', - 'Composer\\Package\\Loader\\InvalidPackageException' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/InvalidPackageException.php', - 'Composer\\Package\\Loader\\JsonLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/JsonLoader.php', - 'Composer\\Package\\Loader\\LoaderInterface' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/LoaderInterface.php', - 'Composer\\Package\\Loader\\RootPackageLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/RootPackageLoader.php', - 'Composer\\Package\\Loader\\ValidatingArrayLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php', - 'Composer\\Package\\Locker' => $vendorDir . '/composer/composer/src/Composer/Package/Locker.php', - 'Composer\\Package\\Package' => $vendorDir . '/composer/composer/src/Composer/Package/Package.php', - 'Composer\\Package\\PackageInterface' => $vendorDir . '/composer/composer/src/Composer/Package/PackageInterface.php', - 'Composer\\Package\\RootAliasPackage' => $vendorDir . '/composer/composer/src/Composer/Package/RootAliasPackage.php', - 'Composer\\Package\\RootPackage' => $vendorDir . '/composer/composer/src/Composer/Package/RootPackage.php', - 'Composer\\Package\\RootPackageInterface' => $vendorDir . '/composer/composer/src/Composer/Package/RootPackageInterface.php', - 'Composer\\Package\\Version\\VersionGuesser' => $vendorDir . '/composer/composer/src/Composer/Package/Version/VersionGuesser.php', - 'Composer\\Package\\Version\\VersionParser' => $vendorDir . '/composer/composer/src/Composer/Package/Version/VersionParser.php', - 'Composer\\Package\\Version\\VersionSelector' => $vendorDir . '/composer/composer/src/Composer/Package/Version/VersionSelector.php', - 'Composer\\Plugin\\Capability\\Capability' => $vendorDir . '/composer/composer/src/Composer/Plugin/Capability/Capability.php', - 'Composer\\Plugin\\Capability\\CommandProvider' => $vendorDir . '/composer/composer/src/Composer/Plugin/Capability/CommandProvider.php', - 'Composer\\Plugin\\Capable' => $vendorDir . '/composer/composer/src/Composer/Plugin/Capable.php', - 'Composer\\Plugin\\CommandEvent' => $vendorDir . '/composer/composer/src/Composer/Plugin/CommandEvent.php', - 'Composer\\Plugin\\PluginEvents' => $vendorDir . '/composer/composer/src/Composer/Plugin/PluginEvents.php', - 'Composer\\Plugin\\PluginInterface' => $vendorDir . '/composer/composer/src/Composer/Plugin/PluginInterface.php', - 'Composer\\Plugin\\PluginManager' => $vendorDir . '/composer/composer/src/Composer/Plugin/PluginManager.php', - 'Composer\\Plugin\\PreCommandRunEvent' => $vendorDir . '/composer/composer/src/Composer/Plugin/PreCommandRunEvent.php', - 'Composer\\Plugin\\PreFileDownloadEvent' => $vendorDir . '/composer/composer/src/Composer/Plugin/PreFileDownloadEvent.php', - 'Composer\\Question\\StrictConfirmationQuestion' => $vendorDir . '/composer/composer/src/Composer/Question/StrictConfirmationQuestion.php', - 'Composer\\Repository\\ArrayRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/ArrayRepository.php', - 'Composer\\Repository\\ArtifactRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/ArtifactRepository.php', - 'Composer\\Repository\\BaseRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/BaseRepository.php', - 'Composer\\Repository\\ComposerRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/ComposerRepository.php', - 'Composer\\Repository\\CompositeRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/CompositeRepository.php', - 'Composer\\Repository\\ConfigurableRepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/ConfigurableRepositoryInterface.php', - 'Composer\\Repository\\FilesystemRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/FilesystemRepository.php', - 'Composer\\Repository\\InstalledArrayRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/InstalledArrayRepository.php', - 'Composer\\Repository\\InstalledFilesystemRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/InstalledFilesystemRepository.php', - 'Composer\\Repository\\InstalledRepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/InstalledRepositoryInterface.php', - 'Composer\\Repository\\InvalidRepositoryException' => $vendorDir . '/composer/composer/src/Composer/Repository/InvalidRepositoryException.php', - 'Composer\\Repository\\PackageRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PackageRepository.php', - 'Composer\\Repository\\PathRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PathRepository.php', - 'Composer\\Repository\\PearRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PearRepository.php', - 'Composer\\Repository\\Pear\\BaseChannelReader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/BaseChannelReader.php', - 'Composer\\Repository\\Pear\\ChannelInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelInfo.php', - 'Composer\\Repository\\Pear\\ChannelReader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelReader.php', - 'Composer\\Repository\\Pear\\ChannelRest10Reader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelRest10Reader.php', - 'Composer\\Repository\\Pear\\ChannelRest11Reader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelRest11Reader.php', - 'Composer\\Repository\\Pear\\DependencyConstraint' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/DependencyConstraint.php', - 'Composer\\Repository\\Pear\\DependencyInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/DependencyInfo.php', - 'Composer\\Repository\\Pear\\PackageDependencyParser' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/PackageDependencyParser.php', - 'Composer\\Repository\\Pear\\PackageInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/PackageInfo.php', - 'Composer\\Repository\\Pear\\ReleaseInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ReleaseInfo.php', - 'Composer\\Repository\\PlatformRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PlatformRepository.php', - 'Composer\\Repository\\RepositoryFactory' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositoryFactory.php', - 'Composer\\Repository\\RepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositoryInterface.php', - 'Composer\\Repository\\RepositoryManager' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositoryManager.php', - 'Composer\\Repository\\RepositorySecurityException' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositorySecurityException.php', - 'Composer\\Repository\\VcsRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/VcsRepository.php', - 'Composer\\Repository\\Vcs\\BitbucketDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/BitbucketDriver.php', - 'Composer\\Repository\\Vcs\\FossilDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php', - 'Composer\\Repository\\Vcs\\GitBitbucketDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitBitbucketDriver.php', - 'Composer\\Repository\\Vcs\\GitDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitDriver.php', - 'Composer\\Repository\\Vcs\\GitHubDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php', - 'Composer\\Repository\\Vcs\\GitLabDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php', - 'Composer\\Repository\\Vcs\\HgBitbucketDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/HgBitbucketDriver.php', - 'Composer\\Repository\\Vcs\\HgDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/HgDriver.php', - 'Composer\\Repository\\Vcs\\PerforceDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php', - 'Composer\\Repository\\Vcs\\SvnDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/SvnDriver.php', - 'Composer\\Repository\\Vcs\\VcsDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/VcsDriver.php', - 'Composer\\Repository\\Vcs\\VcsDriverInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/VcsDriverInterface.php', - 'Composer\\Repository\\VersionCacheInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/VersionCacheInterface.php', - 'Composer\\Repository\\WritableArrayRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/WritableArrayRepository.php', - 'Composer\\Repository\\WritableRepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/WritableRepositoryInterface.php', - 'Composer\\Script\\CommandEvent' => $vendorDir . '/composer/composer/src/Composer/Script/CommandEvent.php', - 'Composer\\Script\\Event' => $vendorDir . '/composer/composer/src/Composer/Script/Event.php', - 'Composer\\Script\\PackageEvent' => $vendorDir . '/composer/composer/src/Composer/Script/PackageEvent.php', - 'Composer\\Script\\ScriptEvents' => $vendorDir . '/composer/composer/src/Composer/Script/ScriptEvents.php', - 'Composer\\SelfUpdate\\Keys' => $vendorDir . '/composer/composer/src/Composer/SelfUpdate/Keys.php', - 'Composer\\SelfUpdate\\Versions' => $vendorDir . '/composer/composer/src/Composer/SelfUpdate/Versions.php', - 'Composer\\Semver\\Comparator' => $vendorDir . '/composer/semver/src/Comparator.php', - 'Composer\\Semver\\Constraint\\AbstractConstraint' => $vendorDir . '/composer/semver/src/Constraint/AbstractConstraint.php', - 'Composer\\Semver\\Constraint\\Constraint' => $vendorDir . '/composer/semver/src/Constraint/Constraint.php', - 'Composer\\Semver\\Constraint\\ConstraintInterface' => $vendorDir . '/composer/semver/src/Constraint/ConstraintInterface.php', - 'Composer\\Semver\\Constraint\\EmptyConstraint' => $vendorDir . '/composer/semver/src/Constraint/EmptyConstraint.php', - 'Composer\\Semver\\Constraint\\MultiConstraint' => $vendorDir . '/composer/semver/src/Constraint/MultiConstraint.php', - 'Composer\\Semver\\Semver' => $vendorDir . '/composer/semver/src/Semver.php', - 'Composer\\Semver\\VersionParser' => $vendorDir . '/composer/semver/src/VersionParser.php', - 'Composer\\Spdx\\SpdxLicenses' => $vendorDir . '/composer/spdx-licenses/src/SpdxLicenses.php', - 'Composer\\Util\\AuthHelper' => $vendorDir . '/composer/composer/src/Composer/Util/AuthHelper.php', - 'Composer\\Util\\Bitbucket' => $vendorDir . '/composer/composer/src/Composer/Util/Bitbucket.php', - 'Composer\\Util\\ComposerMirror' => $vendorDir . '/composer/composer/src/Composer/Util/ComposerMirror.php', - 'Composer\\Util\\ConfigValidator' => $vendorDir . '/composer/composer/src/Composer/Util/ConfigValidator.php', - 'Composer\\Util\\ErrorHandler' => $vendorDir . '/composer/composer/src/Composer/Util/ErrorHandler.php', - 'Composer\\Util\\Filesystem' => $vendorDir . '/composer/composer/src/Composer/Util/Filesystem.php', - 'Composer\\Util\\Git' => $vendorDir . '/composer/composer/src/Composer/Util/Git.php', - 'Composer\\Util\\GitHub' => $vendorDir . '/composer/composer/src/Composer/Util/GitHub.php', - 'Composer\\Util\\GitLab' => $vendorDir . '/composer/composer/src/Composer/Util/GitLab.php', - 'Composer\\Util\\Hg' => $vendorDir . '/composer/composer/src/Composer/Util/Hg.php', - 'Composer\\Util\\IniHelper' => $vendorDir . '/composer/composer/src/Composer/Util/IniHelper.php', - 'Composer\\Util\\NoProxyPattern' => $vendorDir . '/composer/composer/src/Composer/Util/NoProxyPattern.php', - 'Composer\\Util\\Perforce' => $vendorDir . '/composer/composer/src/Composer/Util/Perforce.php', - 'Composer\\Util\\Platform' => $vendorDir . '/composer/composer/src/Composer/Util/Platform.php', - 'Composer\\Util\\ProcessExecutor' => $vendorDir . '/composer/composer/src/Composer/Util/ProcessExecutor.php', - 'Composer\\Util\\RemoteFilesystem' => $vendorDir . '/composer/composer/src/Composer/Util/RemoteFilesystem.php', - 'Composer\\Util\\Silencer' => $vendorDir . '/composer/composer/src/Composer/Util/Silencer.php', - 'Composer\\Util\\SpdxLicense' => $vendorDir . '/composer/composer/src/Composer/Util/SpdxLicense.php', - 'Composer\\Util\\StreamContextFactory' => $vendorDir . '/composer/composer/src/Composer/Util/StreamContextFactory.php', - 'Composer\\Util\\Svn' => $vendorDir . '/composer/composer/src/Composer/Util/Svn.php', - 'Composer\\Util\\TlsHelper' => $vendorDir . '/composer/composer/src/Composer/Util/TlsHelper.php', - 'Composer\\Util\\Url' => $vendorDir . '/composer/composer/src/Composer/Util/Url.php', - 'Composer\\XdebugHandler' => $vendorDir . '/composer/composer/src/Composer/XdebugHandler.php', - 'Composer\\XdebugHandler\\PhpConfig' => $vendorDir . '/composer/xdebug-handler/src/PhpConfig.php', - 'Composer\\XdebugHandler\\Process' => $vendorDir . '/composer/xdebug-handler/src/Process.php', - 'Composer\\XdebugHandler\\Status' => $vendorDir . '/composer/xdebug-handler/src/Status.php', - 'Composer\\XdebugHandler\\XdebugHandler' => $vendorDir . '/composer/xdebug-handler/src/XdebugHandler.php', - 'DeepCopy\\DeepCopy' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/DeepCopy.php', - 'DeepCopy\\Exception\\CloneException' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Exception/CloneException.php', - 'DeepCopy\\Exception\\PropertyException' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Exception/PropertyException.php', - 'DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php', - 'DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php', - 'DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php', - 'DeepCopy\\Filter\\Filter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php', - 'DeepCopy\\Filter\\KeepFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php', - 'DeepCopy\\Filter\\ReplaceFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/ReplaceFilter.php', - 'DeepCopy\\Filter\\SetNullFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/SetNullFilter.php', - 'DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php', - 'DeepCopy\\Matcher\\Matcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php', - 'DeepCopy\\Matcher\\PropertyMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyMatcher.php', - 'DeepCopy\\Matcher\\PropertyNameMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyNameMatcher.php', - 'DeepCopy\\Matcher\\PropertyTypeMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php', - 'DeepCopy\\Reflection\\ReflectionHelper' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php', - 'DeepCopy\\TypeFilter\\Date\\DateIntervalFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DateIntervalFilter.php', - 'DeepCopy\\TypeFilter\\ReplaceFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php', - 'DeepCopy\\TypeFilter\\ShallowCopyFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php', - 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php', - 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedListFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php', - 'DeepCopy\\TypeFilter\\TypeFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php', - 'DeepCopy\\TypeMatcher\\TypeMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeMatcher/TypeMatcher.php', - 'Doctrine\\Common\\Inflector\\Inflector' => $vendorDir . '/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php', - 'Doctrine\\Instantiator\\Exception\\ExceptionInterface' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php', - 'Doctrine\\Instantiator\\Exception\\InvalidArgumentException' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php', - 'Doctrine\\Instantiator\\Exception\\UnexpectedValueException' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php', - 'Doctrine\\Instantiator\\Instantiator' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php', - 'Doctrine\\Instantiator\\InstantiatorInterface' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php', - 'Dotenv\\Dotenv' => $vendorDir . '/vlucas/phpdotenv/src/Dotenv.php', - 'Dotenv\\Environment\\AbstractVariables' => $vendorDir . '/vlucas/phpdotenv/src/Environment/AbstractVariables.php', - 'Dotenv\\Environment\\Adapter\\AdapterInterface' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/AdapterInterface.php', - 'Dotenv\\Environment\\Adapter\\ApacheAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/ApacheAdapter.php', - 'Dotenv\\Environment\\Adapter\\ArrayAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/ArrayAdapter.php', - 'Dotenv\\Environment\\Adapter\\EnvConstAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/EnvConstAdapter.php', - 'Dotenv\\Environment\\Adapter\\PutenvAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/PutenvAdapter.php', - 'Dotenv\\Environment\\Adapter\\ServerConstAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/ServerConstAdapter.php', - 'Dotenv\\Environment\\DotenvFactory' => $vendorDir . '/vlucas/phpdotenv/src/Environment/DotenvFactory.php', - 'Dotenv\\Environment\\DotenvVariables' => $vendorDir . '/vlucas/phpdotenv/src/Environment/DotenvVariables.php', - 'Dotenv\\Environment\\FactoryInterface' => $vendorDir . '/vlucas/phpdotenv/src/Environment/FactoryInterface.php', - 'Dotenv\\Environment\\VariablesInterface' => $vendorDir . '/vlucas/phpdotenv/src/Environment/VariablesInterface.php', - 'Dotenv\\Exception\\ExceptionInterface' => $vendorDir . '/vlucas/phpdotenv/src/Exception/ExceptionInterface.php', - 'Dotenv\\Exception\\InvalidFileException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidFileException.php', - 'Dotenv\\Exception\\InvalidPathException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidPathException.php', - 'Dotenv\\Exception\\ValidationException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/ValidationException.php', - 'Dotenv\\Lines' => $vendorDir . '/vlucas/phpdotenv/src/Lines.php', - 'Dotenv\\Loader' => $vendorDir . '/vlucas/phpdotenv/src/Loader.php', - 'Dotenv\\Parser' => $vendorDir . '/vlucas/phpdotenv/src/Parser.php', - 'Dotenv\\Regex\\Error' => $vendorDir . '/vlucas/phpdotenv/src/Regex/Error.php', - 'Dotenv\\Regex\\Regex' => $vendorDir . '/vlucas/phpdotenv/src/Regex/Regex.php', - 'Dotenv\\Regex\\Result' => $vendorDir . '/vlucas/phpdotenv/src/Regex/Result.php', - 'Dotenv\\Regex\\Success' => $vendorDir . '/vlucas/phpdotenv/src/Regex/Success.php', - 'Dotenv\\Validator' => $vendorDir . '/vlucas/phpdotenv/src/Validator.php', - 'Facebook\\WebDriver\\Chrome\\ChromeDriver' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeDriver.php', - 'Facebook\\WebDriver\\Chrome\\ChromeDriverService' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeDriverService.php', - 'Facebook\\WebDriver\\Chrome\\ChromeOptions' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeOptions.php', - 'Facebook\\WebDriver\\Cookie' => $vendorDir . '/facebook/webdriver/lib/Cookie.php', - 'Facebook\\WebDriver\\Exception\\ElementNotSelectableException' => $vendorDir . '/facebook/webdriver/lib/Exception/ElementNotSelectableException.php', - 'Facebook\\WebDriver\\Exception\\ElementNotVisibleException' => $vendorDir . '/facebook/webdriver/lib/Exception/ElementNotVisibleException.php', - 'Facebook\\WebDriver\\Exception\\ExpectedException' => $vendorDir . '/facebook/webdriver/lib/Exception/ExpectedException.php', - 'Facebook\\WebDriver\\Exception\\IMEEngineActivationFailedException' => $vendorDir . '/facebook/webdriver/lib/Exception/IMEEngineActivationFailedException.php', - 'Facebook\\WebDriver\\Exception\\IMENotAvailableException' => $vendorDir . '/facebook/webdriver/lib/Exception/IMENotAvailableException.php', - 'Facebook\\WebDriver\\Exception\\IndexOutOfBoundsException' => $vendorDir . '/facebook/webdriver/lib/Exception/IndexOutOfBoundsException.php', - 'Facebook\\WebDriver\\Exception\\InvalidCookieDomainException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidCookieDomainException.php', - 'Facebook\\WebDriver\\Exception\\InvalidCoordinatesException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidCoordinatesException.php', - 'Facebook\\WebDriver\\Exception\\InvalidElementStateException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidElementStateException.php', - 'Facebook\\WebDriver\\Exception\\InvalidSelectorException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidSelectorException.php', - 'Facebook\\WebDriver\\Exception\\MoveTargetOutOfBoundsException' => $vendorDir . '/facebook/webdriver/lib/Exception/MoveTargetOutOfBoundsException.php', - 'Facebook\\WebDriver\\Exception\\NoAlertOpenException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoAlertOpenException.php', - 'Facebook\\WebDriver\\Exception\\NoCollectionException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoCollectionException.php', - 'Facebook\\WebDriver\\Exception\\NoScriptResultException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoScriptResultException.php', - 'Facebook\\WebDriver\\Exception\\NoStringException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoStringException.php', - 'Facebook\\WebDriver\\Exception\\NoStringLengthException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoStringLengthException.php', - 'Facebook\\WebDriver\\Exception\\NoStringWrapperException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoStringWrapperException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchCollectionException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchCollectionException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchDocumentException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchDocumentException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchDriverException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchDriverException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchElementException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchElementException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchFrameException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchFrameException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchWindowException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchWindowException.php', - 'Facebook\\WebDriver\\Exception\\NullPointerException' => $vendorDir . '/facebook/webdriver/lib/Exception/NullPointerException.php', - 'Facebook\\WebDriver\\Exception\\ScriptTimeoutException' => $vendorDir . '/facebook/webdriver/lib/Exception/ScriptTimeoutException.php', - 'Facebook\\WebDriver\\Exception\\SessionNotCreatedException' => $vendorDir . '/facebook/webdriver/lib/Exception/SessionNotCreatedException.php', - 'Facebook\\WebDriver\\Exception\\StaleElementReferenceException' => $vendorDir . '/facebook/webdriver/lib/Exception/StaleElementReferenceException.php', - 'Facebook\\WebDriver\\Exception\\TimeOutException' => $vendorDir . '/facebook/webdriver/lib/Exception/TimeOutException.php', - 'Facebook\\WebDriver\\Exception\\UnableToSetCookieException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnableToSetCookieException.php', - 'Facebook\\WebDriver\\Exception\\UnexpectedAlertOpenException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnexpectedAlertOpenException.php', - 'Facebook\\WebDriver\\Exception\\UnexpectedJavascriptException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnexpectedJavascriptException.php', - 'Facebook\\WebDriver\\Exception\\UnexpectedTagNameException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnexpectedTagNameException.php', - 'Facebook\\WebDriver\\Exception\\UnknownCommandException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnknownCommandException.php', - 'Facebook\\WebDriver\\Exception\\UnknownServerException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnknownServerException.php', - 'Facebook\\WebDriver\\Exception\\UnrecognizedExceptionException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnrecognizedExceptionException.php', - 'Facebook\\WebDriver\\Exception\\UnsupportedOperationException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnsupportedOperationException.php', - 'Facebook\\WebDriver\\Exception\\WebDriverCurlException' => $vendorDir . '/facebook/webdriver/lib/Exception/WebDriverCurlException.php', - 'Facebook\\WebDriver\\Exception\\WebDriverException' => $vendorDir . '/facebook/webdriver/lib/Exception/WebDriverException.php', - 'Facebook\\WebDriver\\Exception\\XPathLookupException' => $vendorDir . '/facebook/webdriver/lib/Exception/XPathLookupException.php', - 'Facebook\\WebDriver\\Firefox\\FirefoxDriver' => $vendorDir . '/facebook/webdriver/lib/Firefox/FirefoxDriver.php', - 'Facebook\\WebDriver\\Firefox\\FirefoxPreferences' => $vendorDir . '/facebook/webdriver/lib/Firefox/FirefoxPreferences.php', - 'Facebook\\WebDriver\\Firefox\\FirefoxProfile' => $vendorDir . '/facebook/webdriver/lib/Firefox/FirefoxProfile.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverButtonReleaseAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverButtonReleaseAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverClickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverClickAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverClickAndHoldAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverClickAndHoldAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverContextClickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverContextClickAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverCoordinates' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverCoordinates.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverDoubleClickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverDoubleClickAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeyDownAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeyDownAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeyUpAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeyUpAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeysRelatedAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeysRelatedAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMouseAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMouseAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMouseMoveAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMouseMoveAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMoveToOffsetAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMoveToOffsetAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverSendKeysAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverSendKeysAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverSingleKeyAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverSingleKeyAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverDoubleTapAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverDoubleTapAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverDownAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverDownAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverFlickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverFlickAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverFlickFromElementAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverFlickFromElementAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverLongPressAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverLongPressAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverMoveAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverMoveAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverScrollAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverScrollAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverScrollFromElementAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverScrollFromElementAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTapAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTapAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTouchAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTouchAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTouchScreen' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTouchScreen.php', - 'Facebook\\WebDriver\\Interactions\\WebDriverActions' => $vendorDir . '/facebook/webdriver/lib/Interactions/WebDriverActions.php', - 'Facebook\\WebDriver\\Interactions\\WebDriverCompositeAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/WebDriverCompositeAction.php', - 'Facebook\\WebDriver\\Interactions\\WebDriverTouchActions' => $vendorDir . '/facebook/webdriver/lib/Interactions/WebDriverTouchActions.php', - 'Facebook\\WebDriver\\Internal\\WebDriverLocatable' => $vendorDir . '/facebook/webdriver/lib/Internal/WebDriverLocatable.php', - 'Facebook\\WebDriver\\JavaScriptExecutor' => $vendorDir . '/facebook/webdriver/lib/JavaScriptExecutor.php', - 'Facebook\\WebDriver\\Net\\URLChecker' => $vendorDir . '/facebook/webdriver/lib/Net/URLChecker.php', - 'Facebook\\WebDriver\\Remote\\DesiredCapabilities' => $vendorDir . '/facebook/webdriver/lib/Remote/DesiredCapabilities.php', - 'Facebook\\WebDriver\\Remote\\DriverCommand' => $vendorDir . '/facebook/webdriver/lib/Remote/DriverCommand.php', - 'Facebook\\WebDriver\\Remote\\ExecuteMethod' => $vendorDir . '/facebook/webdriver/lib/Remote/ExecuteMethod.php', - 'Facebook\\WebDriver\\Remote\\FileDetector' => $vendorDir . '/facebook/webdriver/lib/Remote/FileDetector.php', - 'Facebook\\WebDriver\\Remote\\HttpCommandExecutor' => $vendorDir . '/facebook/webdriver/lib/Remote/HttpCommandExecutor.php', - 'Facebook\\WebDriver\\Remote\\LocalFileDetector' => $vendorDir . '/facebook/webdriver/lib/Remote/LocalFileDetector.php', - 'Facebook\\WebDriver\\Remote\\RemoteExecuteMethod' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteExecuteMethod.php', - 'Facebook\\WebDriver\\Remote\\RemoteKeyboard' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteKeyboard.php', - 'Facebook\\WebDriver\\Remote\\RemoteMouse' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteMouse.php', - 'Facebook\\WebDriver\\Remote\\RemoteTargetLocator' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteTargetLocator.php', - 'Facebook\\WebDriver\\Remote\\RemoteTouchScreen' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteTouchScreen.php', - 'Facebook\\WebDriver\\Remote\\RemoteWebDriver' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteWebDriver.php', - 'Facebook\\WebDriver\\Remote\\RemoteWebElement' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteWebElement.php', - 'Facebook\\WebDriver\\Remote\\Service\\DriverCommandExecutor' => $vendorDir . '/facebook/webdriver/lib/Remote/Service/DriverCommandExecutor.php', - 'Facebook\\WebDriver\\Remote\\Service\\DriverService' => $vendorDir . '/facebook/webdriver/lib/Remote/Service/DriverService.php', - 'Facebook\\WebDriver\\Remote\\UselessFileDetector' => $vendorDir . '/facebook/webdriver/lib/Remote/UselessFileDetector.php', - 'Facebook\\WebDriver\\Remote\\WebDriverBrowserType' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverBrowserType.php', - 'Facebook\\WebDriver\\Remote\\WebDriverCapabilityType' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverCapabilityType.php', - 'Facebook\\WebDriver\\Remote\\WebDriverCommand' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverCommand.php', - 'Facebook\\WebDriver\\Remote\\WebDriverResponse' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverResponse.php', - 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriver' => $vendorDir . '/facebook/webdriver/lib/Support/Events/EventFiringWebDriver.php', - 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriverNavigation' => $vendorDir . '/facebook/webdriver/lib/Support/Events/EventFiringWebDriverNavigation.php', - 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebElement' => $vendorDir . '/facebook/webdriver/lib/Support/Events/EventFiringWebElement.php', - 'Facebook\\WebDriver\\Support\\XPathEscaper' => $vendorDir . '/facebook/webdriver/lib/Support/XPathEscaper.php', - 'Facebook\\WebDriver\\WebDriver' => $vendorDir . '/facebook/webdriver/lib/WebDriver.php', - 'Facebook\\WebDriver\\WebDriverAction' => $vendorDir . '/facebook/webdriver/lib/WebDriverAction.php', - 'Facebook\\WebDriver\\WebDriverAlert' => $vendorDir . '/facebook/webdriver/lib/WebDriverAlert.php', - 'Facebook\\WebDriver\\WebDriverBy' => $vendorDir . '/facebook/webdriver/lib/WebDriverBy.php', - 'Facebook\\WebDriver\\WebDriverCapabilities' => $vendorDir . '/facebook/webdriver/lib/WebDriverCapabilities.php', - 'Facebook\\WebDriver\\WebDriverCommandExecutor' => $vendorDir . '/facebook/webdriver/lib/WebDriverCommandExecutor.php', - 'Facebook\\WebDriver\\WebDriverDimension' => $vendorDir . '/facebook/webdriver/lib/WebDriverDimension.php', - 'Facebook\\WebDriver\\WebDriverDispatcher' => $vendorDir . '/facebook/webdriver/lib/WebDriverDispatcher.php', - 'Facebook\\WebDriver\\WebDriverElement' => $vendorDir . '/facebook/webdriver/lib/WebDriverElement.php', - 'Facebook\\WebDriver\\WebDriverEventListener' => $vendorDir . '/facebook/webdriver/lib/WebDriverEventListener.php', - 'Facebook\\WebDriver\\WebDriverExpectedCondition' => $vendorDir . '/facebook/webdriver/lib/WebDriverExpectedCondition.php', - 'Facebook\\WebDriver\\WebDriverHasInputDevices' => $vendorDir . '/facebook/webdriver/lib/WebDriverHasInputDevices.php', - 'Facebook\\WebDriver\\WebDriverKeyboard' => $vendorDir . '/facebook/webdriver/lib/WebDriverKeyboard.php', - 'Facebook\\WebDriver\\WebDriverKeys' => $vendorDir . '/facebook/webdriver/lib/WebDriverKeys.php', - 'Facebook\\WebDriver\\WebDriverMouse' => $vendorDir . '/facebook/webdriver/lib/WebDriverMouse.php', - 'Facebook\\WebDriver\\WebDriverNavigation' => $vendorDir . '/facebook/webdriver/lib/WebDriverNavigation.php', - 'Facebook\\WebDriver\\WebDriverOptions' => $vendorDir . '/facebook/webdriver/lib/WebDriverOptions.php', - 'Facebook\\WebDriver\\WebDriverPlatform' => $vendorDir . '/facebook/webdriver/lib/WebDriverPlatform.php', - 'Facebook\\WebDriver\\WebDriverPoint' => $vendorDir . '/facebook/webdriver/lib/WebDriverPoint.php', - 'Facebook\\WebDriver\\WebDriverSearchContext' => $vendorDir . '/facebook/webdriver/lib/WebDriverSearchContext.php', - 'Facebook\\WebDriver\\WebDriverSelect' => $vendorDir . '/facebook/webdriver/lib/WebDriverSelect.php', - 'Facebook\\WebDriver\\WebDriverSelectInterface' => $vendorDir . '/facebook/webdriver/lib/WebDriverSelectInterface.php', - 'Facebook\\WebDriver\\WebDriverTargetLocator' => $vendorDir . '/facebook/webdriver/lib/WebDriverTargetLocator.php', - 'Facebook\\WebDriver\\WebDriverTimeouts' => $vendorDir . '/facebook/webdriver/lib/WebDriverTimeouts.php', - 'Facebook\\WebDriver\\WebDriverUpAction' => $vendorDir . '/facebook/webdriver/lib/WebDriverUpAction.php', - 'Facebook\\WebDriver\\WebDriverWait' => $vendorDir . '/facebook/webdriver/lib/WebDriverWait.php', - 'Facebook\\WebDriver\\WebDriverWindow' => $vendorDir . '/facebook/webdriver/lib/WebDriverWindow.php', - 'File_Iterator' => $vendorDir . '/phpunit/php-file-iterator/src/Iterator.php', - 'File_Iterator_Facade' => $vendorDir . '/phpunit/php-file-iterator/src/Facade.php', - 'File_Iterator_Factory' => $vendorDir . '/phpunit/php-file-iterator/src/Factory.php', - 'Gumlet\\ImageResize' => $vendorDir . '/gumlet/php-image-resize/lib/ImageResize.php', - 'Gumlet\\ImageResizeException' => $vendorDir . '/gumlet/php-image-resize/lib/ImageResizeException.php', - 'GuzzleHttp\\Client' => $vendorDir . '/guzzlehttp/guzzle/src/Client.php', - 'GuzzleHttp\\ClientInterface' => $vendorDir . '/guzzlehttp/guzzle/src/ClientInterface.php', - 'GuzzleHttp\\Cookie\\CookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php', - 'GuzzleHttp\\Cookie\\CookieJarInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php', - 'GuzzleHttp\\Cookie\\FileCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php', - 'GuzzleHttp\\Cookie\\SessionCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php', - 'GuzzleHttp\\Cookie\\SetCookie' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php', - 'GuzzleHttp\\Exception\\BadResponseException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php', - 'GuzzleHttp\\Exception\\ClientException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ClientException.php', - 'GuzzleHttp\\Exception\\ConnectException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ConnectException.php', - 'GuzzleHttp\\Exception\\GuzzleException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php', - 'GuzzleHttp\\Exception\\RequestException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/RequestException.php', - 'GuzzleHttp\\Exception\\SeekException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/SeekException.php', - 'GuzzleHttp\\Exception\\ServerException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ServerException.php', - 'GuzzleHttp\\Exception\\TooManyRedirectsException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php', - 'GuzzleHttp\\Exception\\TransferException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TransferException.php', - 'GuzzleHttp\\HandlerStack' => $vendorDir . '/guzzlehttp/guzzle/src/HandlerStack.php', - 'GuzzleHttp\\Handler\\CurlFactory' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php', - 'GuzzleHttp\\Handler\\CurlFactoryInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php', - 'GuzzleHttp\\Handler\\CurlHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php', - 'GuzzleHttp\\Handler\\CurlMultiHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php', - 'GuzzleHttp\\Handler\\EasyHandle' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php', - 'GuzzleHttp\\Handler\\MockHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/MockHandler.php', - 'GuzzleHttp\\Handler\\Proxy' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/Proxy.php', - 'GuzzleHttp\\Handler\\StreamHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php', - 'GuzzleHttp\\MessageFormatter' => $vendorDir . '/guzzlehttp/guzzle/src/MessageFormatter.php', - 'GuzzleHttp\\Middleware' => $vendorDir . '/guzzlehttp/guzzle/src/Middleware.php', - 'GuzzleHttp\\Pool' => $vendorDir . '/guzzlehttp/guzzle/src/Pool.php', - 'GuzzleHttp\\PrepareBodyMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php', - 'GuzzleHttp\\Promise\\AggregateException' => $vendorDir . '/guzzlehttp/promises/src/AggregateException.php', - 'GuzzleHttp\\Promise\\CancellationException' => $vendorDir . '/guzzlehttp/promises/src/CancellationException.php', - 'GuzzleHttp\\Promise\\Coroutine' => $vendorDir . '/guzzlehttp/promises/src/Coroutine.php', - 'GuzzleHttp\\Promise\\EachPromise' => $vendorDir . '/guzzlehttp/promises/src/EachPromise.php', - 'GuzzleHttp\\Promise\\FulfilledPromise' => $vendorDir . '/guzzlehttp/promises/src/FulfilledPromise.php', - 'GuzzleHttp\\Promise\\Promise' => $vendorDir . '/guzzlehttp/promises/src/Promise.php', - 'GuzzleHttp\\Promise\\PromiseInterface' => $vendorDir . '/guzzlehttp/promises/src/PromiseInterface.php', - 'GuzzleHttp\\Promise\\PromisorInterface' => $vendorDir . '/guzzlehttp/promises/src/PromisorInterface.php', - 'GuzzleHttp\\Promise\\RejectedPromise' => $vendorDir . '/guzzlehttp/promises/src/RejectedPromise.php', - 'GuzzleHttp\\Promise\\RejectionException' => $vendorDir . '/guzzlehttp/promises/src/RejectionException.php', - 'GuzzleHttp\\Promise\\TaskQueue' => $vendorDir . '/guzzlehttp/promises/src/TaskQueue.php', - 'GuzzleHttp\\Promise\\TaskQueueInterface' => $vendorDir . '/guzzlehttp/promises/src/TaskQueueInterface.php', - 'GuzzleHttp\\Psr7\\AppendStream' => $vendorDir . '/guzzlehttp/psr7/src/AppendStream.php', - 'GuzzleHttp\\Psr7\\BufferStream' => $vendorDir . '/guzzlehttp/psr7/src/BufferStream.php', - 'GuzzleHttp\\Psr7\\CachingStream' => $vendorDir . '/guzzlehttp/psr7/src/CachingStream.php', - 'GuzzleHttp\\Psr7\\DroppingStream' => $vendorDir . '/guzzlehttp/psr7/src/DroppingStream.php', - 'GuzzleHttp\\Psr7\\FnStream' => $vendorDir . '/guzzlehttp/psr7/src/FnStream.php', - 'GuzzleHttp\\Psr7\\InflateStream' => $vendorDir . '/guzzlehttp/psr7/src/InflateStream.php', - 'GuzzleHttp\\Psr7\\LazyOpenStream' => $vendorDir . '/guzzlehttp/psr7/src/LazyOpenStream.php', - 'GuzzleHttp\\Psr7\\LimitStream' => $vendorDir . '/guzzlehttp/psr7/src/LimitStream.php', - 'GuzzleHttp\\Psr7\\MessageTrait' => $vendorDir . '/guzzlehttp/psr7/src/MessageTrait.php', - 'GuzzleHttp\\Psr7\\MultipartStream' => $vendorDir . '/guzzlehttp/psr7/src/MultipartStream.php', - 'GuzzleHttp\\Psr7\\NoSeekStream' => $vendorDir . '/guzzlehttp/psr7/src/NoSeekStream.php', - 'GuzzleHttp\\Psr7\\PumpStream' => $vendorDir . '/guzzlehttp/psr7/src/PumpStream.php', - 'GuzzleHttp\\Psr7\\Request' => $vendorDir . '/guzzlehttp/psr7/src/Request.php', - 'GuzzleHttp\\Psr7\\Response' => $vendorDir . '/guzzlehttp/psr7/src/Response.php', - 'GuzzleHttp\\Psr7\\Rfc7230' => $vendorDir . '/guzzlehttp/psr7/src/Rfc7230.php', - 'GuzzleHttp\\Psr7\\ServerRequest' => $vendorDir . '/guzzlehttp/psr7/src/ServerRequest.php', - 'GuzzleHttp\\Psr7\\Stream' => $vendorDir . '/guzzlehttp/psr7/src/Stream.php', - 'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => $vendorDir . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php', - 'GuzzleHttp\\Psr7\\StreamWrapper' => $vendorDir . '/guzzlehttp/psr7/src/StreamWrapper.php', - 'GuzzleHttp\\Psr7\\UploadedFile' => $vendorDir . '/guzzlehttp/psr7/src/UploadedFile.php', - 'GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php', - 'GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/guzzlehttp/psr7/src/UriNormalizer.php', - 'GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/guzzlehttp/psr7/src/UriResolver.php', - 'GuzzleHttp\\RedirectMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RedirectMiddleware.php', - 'GuzzleHttp\\RequestOptions' => $vendorDir . '/guzzlehttp/guzzle/src/RequestOptions.php', - 'GuzzleHttp\\RetryMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RetryMiddleware.php', - 'GuzzleHttp\\TransferStats' => $vendorDir . '/guzzlehttp/guzzle/src/TransferStats.php', - 'GuzzleHttp\\UriTemplate' => $vendorDir . '/guzzlehttp/guzzle/src/UriTemplate.php', - 'Handlebars\\Arguments' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Arguments.php', - 'Handlebars\\Autoloader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Autoloader.php', - 'Handlebars\\BaseString' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/BaseString.php', - 'Handlebars\\Cache' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache.php', - 'Handlebars\\Cache\\APC' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache/APC.php', - 'Handlebars\\Cache\\Disk' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache/Disk.php', - 'Handlebars\\Cache\\Dummy' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache/Dummy.php', - 'Handlebars\\ChildContext' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/ChildContext.php', - 'Handlebars\\Context' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Context.php', - 'Handlebars\\Handlebars' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Handlebars.php', - 'Handlebars\\Helper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper.php', - 'Handlebars\\Helper\\BindAttrHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/BindAttrHelper.php', - 'Handlebars\\Helper\\EachHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/EachHelper.php', - 'Handlebars\\Helper\\IfHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/IfHelper.php', - 'Handlebars\\Helper\\UnlessHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/UnlessHelper.php', - 'Handlebars\\Helper\\WithHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/WithHelper.php', - 'Handlebars\\Helpers' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helpers.php', - 'Handlebars\\Loader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader.php', - 'Handlebars\\Loader\\ArrayLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/ArrayLoader.php', - 'Handlebars\\Loader\\FilesystemLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/FilesystemLoader.php', - 'Handlebars\\Loader\\InlineLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/InlineLoader.php', - 'Handlebars\\Loader\\StringLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/StringLoader.php', - 'Handlebars\\Parser' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Parser.php', - 'Handlebars\\SafeString' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/SafeString.php', - 'Handlebars\\String' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/String.php', - 'Handlebars\\StringWrapper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/StringWrapper.php', - 'Handlebars\\Template' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Template.php', - 'Handlebars\\Tokenizer' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Tokenizer.php', - 'Hautelook\\Phpass\\PasswordHash' => $vendorDir . '/hautelook/phpass/src/Hautelook/Phpass/PasswordHash.php', - 'Illuminate\\Contracts\\Auth\\Access\\Authorizable' => $vendorDir . '/illuminate/contracts/Auth/Access/Authorizable.php', - 'Illuminate\\Contracts\\Auth\\Access\\Gate' => $vendorDir . '/illuminate/contracts/Auth/Access/Gate.php', - 'Illuminate\\Contracts\\Auth\\Authenticatable' => $vendorDir . '/illuminate/contracts/Auth/Authenticatable.php', - 'Illuminate\\Contracts\\Auth\\CanResetPassword' => $vendorDir . '/illuminate/contracts/Auth/CanResetPassword.php', - 'Illuminate\\Contracts\\Auth\\Factory' => $vendorDir . '/illuminate/contracts/Auth/Factory.php', - 'Illuminate\\Contracts\\Auth\\Guard' => $vendorDir . '/illuminate/contracts/Auth/Guard.php', - 'Illuminate\\Contracts\\Auth\\MustVerifyEmail' => $vendorDir . '/illuminate/contracts/Auth/MustVerifyEmail.php', - 'Illuminate\\Contracts\\Auth\\PasswordBroker' => $vendorDir . '/illuminate/contracts/Auth/PasswordBroker.php', - 'Illuminate\\Contracts\\Auth\\PasswordBrokerFactory' => $vendorDir . '/illuminate/contracts/Auth/PasswordBrokerFactory.php', - 'Illuminate\\Contracts\\Auth\\StatefulGuard' => $vendorDir . '/illuminate/contracts/Auth/StatefulGuard.php', - 'Illuminate\\Contracts\\Auth\\SupportsBasicAuth' => $vendorDir . '/illuminate/contracts/Auth/SupportsBasicAuth.php', - 'Illuminate\\Contracts\\Auth\\UserProvider' => $vendorDir . '/illuminate/contracts/Auth/UserProvider.php', - 'Illuminate\\Contracts\\Broadcasting\\Broadcaster' => $vendorDir . '/illuminate/contracts/Broadcasting/Broadcaster.php', - 'Illuminate\\Contracts\\Broadcasting\\Factory' => $vendorDir . '/illuminate/contracts/Broadcasting/Factory.php', - 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcast' => $vendorDir . '/illuminate/contracts/Broadcasting/ShouldBroadcast.php', - 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcastNow' => $vendorDir . '/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php', - 'Illuminate\\Contracts\\Bus\\Dispatcher' => $vendorDir . '/illuminate/contracts/Bus/Dispatcher.php', - 'Illuminate\\Contracts\\Bus\\QueueingDispatcher' => $vendorDir . '/illuminate/contracts/Bus/QueueingDispatcher.php', - 'Illuminate\\Contracts\\Cache\\Factory' => $vendorDir . '/illuminate/contracts/Cache/Factory.php', - 'Illuminate\\Contracts\\Cache\\Lock' => $vendorDir . '/illuminate/contracts/Cache/Lock.php', - 'Illuminate\\Contracts\\Cache\\LockProvider' => $vendorDir . '/illuminate/contracts/Cache/LockProvider.php', - 'Illuminate\\Contracts\\Cache\\LockTimeoutException' => $vendorDir . '/illuminate/contracts/Cache/LockTimeoutException.php', - 'Illuminate\\Contracts\\Cache\\Repository' => $vendorDir . '/illuminate/contracts/Cache/Repository.php', - 'Illuminate\\Contracts\\Cache\\Store' => $vendorDir . '/illuminate/contracts/Cache/Store.php', - 'Illuminate\\Contracts\\Config\\Repository' => $vendorDir . '/illuminate/contracts/Config/Repository.php', - 'Illuminate\\Contracts\\Console\\Application' => $vendorDir . '/illuminate/contracts/Console/Application.php', - 'Illuminate\\Contracts\\Console\\Kernel' => $vendorDir . '/illuminate/contracts/Console/Kernel.php', - 'Illuminate\\Contracts\\Container\\BindingResolutionException' => $vendorDir . '/illuminate/contracts/Container/BindingResolutionException.php', - 'Illuminate\\Contracts\\Container\\Container' => $vendorDir . '/illuminate/contracts/Container/Container.php', - 'Illuminate\\Contracts\\Container\\ContextualBindingBuilder' => $vendorDir . '/illuminate/contracts/Container/ContextualBindingBuilder.php', - 'Illuminate\\Contracts\\Cookie\\Factory' => $vendorDir . '/illuminate/contracts/Cookie/Factory.php', - 'Illuminate\\Contracts\\Cookie\\QueueingFactory' => $vendorDir . '/illuminate/contracts/Cookie/QueueingFactory.php', - 'Illuminate\\Contracts\\Database\\Events\\MigrationEvent' => $vendorDir . '/illuminate/contracts/Database/Events/MigrationEvent.php', - 'Illuminate\\Contracts\\Database\\ModelIdentifier' => $vendorDir . '/illuminate/contracts/Database/ModelIdentifier.php', - 'Illuminate\\Contracts\\Debug\\ExceptionHandler' => $vendorDir . '/illuminate/contracts/Debug/ExceptionHandler.php', - 'Illuminate\\Contracts\\Encryption\\DecryptException' => $vendorDir . '/illuminate/contracts/Encryption/DecryptException.php', - 'Illuminate\\Contracts\\Encryption\\EncryptException' => $vendorDir . '/illuminate/contracts/Encryption/EncryptException.php', - 'Illuminate\\Contracts\\Encryption\\Encrypter' => $vendorDir . '/illuminate/contracts/Encryption/Encrypter.php', - 'Illuminate\\Contracts\\Events\\Dispatcher' => $vendorDir . '/illuminate/contracts/Events/Dispatcher.php', - 'Illuminate\\Contracts\\Filesystem\\Cloud' => $vendorDir . '/illuminate/contracts/Filesystem/Cloud.php', - 'Illuminate\\Contracts\\Filesystem\\Factory' => $vendorDir . '/illuminate/contracts/Filesystem/Factory.php', - 'Illuminate\\Contracts\\Filesystem\\FileExistsException' => $vendorDir . '/illuminate/contracts/Filesystem/FileExistsException.php', - 'Illuminate\\Contracts\\Filesystem\\FileNotFoundException' => $vendorDir . '/illuminate/contracts/Filesystem/FileNotFoundException.php', - 'Illuminate\\Contracts\\Filesystem\\Filesystem' => $vendorDir . '/illuminate/contracts/Filesystem/Filesystem.php', - 'Illuminate\\Contracts\\Foundation\\Application' => $vendorDir . '/illuminate/contracts/Foundation/Application.php', - 'Illuminate\\Contracts\\Hashing\\Hasher' => $vendorDir . '/illuminate/contracts/Hashing/Hasher.php', - 'Illuminate\\Contracts\\Http\\Kernel' => $vendorDir . '/illuminate/contracts/Http/Kernel.php', - 'Illuminate\\Contracts\\Mail\\MailQueue' => $vendorDir . '/illuminate/contracts/Mail/MailQueue.php', - 'Illuminate\\Contracts\\Mail\\Mailable' => $vendorDir . '/illuminate/contracts/Mail/Mailable.php', - 'Illuminate\\Contracts\\Mail\\Mailer' => $vendorDir . '/illuminate/contracts/Mail/Mailer.php', - 'Illuminate\\Contracts\\Notifications\\Dispatcher' => $vendorDir . '/illuminate/contracts/Notifications/Dispatcher.php', - 'Illuminate\\Contracts\\Notifications\\Factory' => $vendorDir . '/illuminate/contracts/Notifications/Factory.php', - 'Illuminate\\Contracts\\Pagination\\LengthAwarePaginator' => $vendorDir . '/illuminate/contracts/Pagination/LengthAwarePaginator.php', - 'Illuminate\\Contracts\\Pagination\\Paginator' => $vendorDir . '/illuminate/contracts/Pagination/Paginator.php', - 'Illuminate\\Contracts\\Pipeline\\Hub' => $vendorDir . '/illuminate/contracts/Pipeline/Hub.php', - 'Illuminate\\Contracts\\Pipeline\\Pipeline' => $vendorDir . '/illuminate/contracts/Pipeline/Pipeline.php', - 'Illuminate\\Contracts\\Queue\\EntityNotFoundException' => $vendorDir . '/illuminate/contracts/Queue/EntityNotFoundException.php', - 'Illuminate\\Contracts\\Queue\\EntityResolver' => $vendorDir . '/illuminate/contracts/Queue/EntityResolver.php', - 'Illuminate\\Contracts\\Queue\\Factory' => $vendorDir . '/illuminate/contracts/Queue/Factory.php', - 'Illuminate\\Contracts\\Queue\\Job' => $vendorDir . '/illuminate/contracts/Queue/Job.php', - 'Illuminate\\Contracts\\Queue\\Monitor' => $vendorDir . '/illuminate/contracts/Queue/Monitor.php', - 'Illuminate\\Contracts\\Queue\\Queue' => $vendorDir . '/illuminate/contracts/Queue/Queue.php', - 'Illuminate\\Contracts\\Queue\\QueueableCollection' => $vendorDir . '/illuminate/contracts/Queue/QueueableCollection.php', - 'Illuminate\\Contracts\\Queue\\QueueableEntity' => $vendorDir . '/illuminate/contracts/Queue/QueueableEntity.php', - 'Illuminate\\Contracts\\Queue\\ShouldQueue' => $vendorDir . '/illuminate/contracts/Queue/ShouldQueue.php', - 'Illuminate\\Contracts\\Redis\\Connection' => $vendorDir . '/illuminate/contracts/Redis/Connection.php', - 'Illuminate\\Contracts\\Redis\\Factory' => $vendorDir . '/illuminate/contracts/Redis/Factory.php', - 'Illuminate\\Contracts\\Redis\\LimiterTimeoutException' => $vendorDir . '/illuminate/contracts/Redis/LimiterTimeoutException.php', - 'Illuminate\\Contracts\\Routing\\BindingRegistrar' => $vendorDir . '/illuminate/contracts/Routing/BindingRegistrar.php', - 'Illuminate\\Contracts\\Routing\\Registrar' => $vendorDir . '/illuminate/contracts/Routing/Registrar.php', - 'Illuminate\\Contracts\\Routing\\ResponseFactory' => $vendorDir . '/illuminate/contracts/Routing/ResponseFactory.php', - 'Illuminate\\Contracts\\Routing\\UrlGenerator' => $vendorDir . '/illuminate/contracts/Routing/UrlGenerator.php', - 'Illuminate\\Contracts\\Routing\\UrlRoutable' => $vendorDir . '/illuminate/contracts/Routing/UrlRoutable.php', - 'Illuminate\\Contracts\\Session\\Session' => $vendorDir . '/illuminate/contracts/Session/Session.php', - 'Illuminate\\Contracts\\Support\\Arrayable' => $vendorDir . '/illuminate/contracts/Support/Arrayable.php', - 'Illuminate\\Contracts\\Support\\DeferrableProvider' => $vendorDir . '/illuminate/contracts/Support/DeferrableProvider.php', - 'Illuminate\\Contracts\\Support\\Htmlable' => $vendorDir . '/illuminate/contracts/Support/Htmlable.php', - 'Illuminate\\Contracts\\Support\\Jsonable' => $vendorDir . '/illuminate/contracts/Support/Jsonable.php', - 'Illuminate\\Contracts\\Support\\MessageBag' => $vendorDir . '/illuminate/contracts/Support/MessageBag.php', - 'Illuminate\\Contracts\\Support\\MessageProvider' => $vendorDir . '/illuminate/contracts/Support/MessageProvider.php', - 'Illuminate\\Contracts\\Support\\Renderable' => $vendorDir . '/illuminate/contracts/Support/Renderable.php', - 'Illuminate\\Contracts\\Support\\Responsable' => $vendorDir . '/illuminate/contracts/Support/Responsable.php', - 'Illuminate\\Contracts\\Translation\\HasLocalePreference' => $vendorDir . '/illuminate/contracts/Translation/HasLocalePreference.php', - 'Illuminate\\Contracts\\Translation\\Loader' => $vendorDir . '/illuminate/contracts/Translation/Loader.php', - 'Illuminate\\Contracts\\Translation\\Translator' => $vendorDir . '/illuminate/contracts/Translation/Translator.php', - 'Illuminate\\Contracts\\Validation\\Factory' => $vendorDir . '/illuminate/contracts/Validation/Factory.php', - 'Illuminate\\Contracts\\Validation\\ImplicitRule' => $vendorDir . '/illuminate/contracts/Validation/ImplicitRule.php', - 'Illuminate\\Contracts\\Validation\\Rule' => $vendorDir . '/illuminate/contracts/Validation/Rule.php', - 'Illuminate\\Contracts\\Validation\\ValidatesWhenResolved' => $vendorDir . '/illuminate/contracts/Validation/ValidatesWhenResolved.php', - 'Illuminate\\Contracts\\Validation\\Validator' => $vendorDir . '/illuminate/contracts/Validation/Validator.php', - 'Illuminate\\Contracts\\View\\Engine' => $vendorDir . '/illuminate/contracts/View/Engine.php', - 'Illuminate\\Contracts\\View\\Factory' => $vendorDir . '/illuminate/contracts/View/Factory.php', - 'Illuminate\\Contracts\\View\\View' => $vendorDir . '/illuminate/contracts/View/View.php', - 'Illuminate\\Support\\AggregateServiceProvider' => $vendorDir . '/illuminate/support/AggregateServiceProvider.php', - 'Illuminate\\Support\\Arr' => $vendorDir . '/illuminate/support/Arr.php', - 'Illuminate\\Support\\Carbon' => $vendorDir . '/illuminate/support/Carbon.php', - 'Illuminate\\Support\\Collection' => $vendorDir . '/illuminate/support/Collection.php', - 'Illuminate\\Support\\Composer' => $vendorDir . '/illuminate/support/Composer.php', - 'Illuminate\\Support\\ConfigurationUrlParser' => $vendorDir . '/illuminate/support/ConfigurationUrlParser.php', - 'Illuminate\\Support\\DateFactory' => $vendorDir . '/illuminate/support/DateFactory.php', - 'Illuminate\\Support\\Facades\\App' => $vendorDir . '/illuminate/support/Facades/App.php', - 'Illuminate\\Support\\Facades\\Artisan' => $vendorDir . '/illuminate/support/Facades/Artisan.php', - 'Illuminate\\Support\\Facades\\Auth' => $vendorDir . '/illuminate/support/Facades/Auth.php', - 'Illuminate\\Support\\Facades\\Blade' => $vendorDir . '/illuminate/support/Facades/Blade.php', - 'Illuminate\\Support\\Facades\\Broadcast' => $vendorDir . '/illuminate/support/Facades/Broadcast.php', - 'Illuminate\\Support\\Facades\\Bus' => $vendorDir . '/illuminate/support/Facades/Bus.php', - 'Illuminate\\Support\\Facades\\Cache' => $vendorDir . '/illuminate/support/Facades/Cache.php', - 'Illuminate\\Support\\Facades\\Config' => $vendorDir . '/illuminate/support/Facades/Config.php', - 'Illuminate\\Support\\Facades\\Cookie' => $vendorDir . '/illuminate/support/Facades/Cookie.php', - 'Illuminate\\Support\\Facades\\Crypt' => $vendorDir . '/illuminate/support/Facades/Crypt.php', - 'Illuminate\\Support\\Facades\\DB' => $vendorDir . '/illuminate/support/Facades/DB.php', - 'Illuminate\\Support\\Facades\\Date' => $vendorDir . '/illuminate/support/Facades/Date.php', - 'Illuminate\\Support\\Facades\\Event' => $vendorDir . '/illuminate/support/Facades/Event.php', - 'Illuminate\\Support\\Facades\\Facade' => $vendorDir . '/illuminate/support/Facades/Facade.php', - 'Illuminate\\Support\\Facades\\File' => $vendorDir . '/illuminate/support/Facades/File.php', - 'Illuminate\\Support\\Facades\\Gate' => $vendorDir . '/illuminate/support/Facades/Gate.php', - 'Illuminate\\Support\\Facades\\Hash' => $vendorDir . '/illuminate/support/Facades/Hash.php', - 'Illuminate\\Support\\Facades\\Input' => $vendorDir . '/illuminate/support/Facades/Input.php', - 'Illuminate\\Support\\Facades\\Lang' => $vendorDir . '/illuminate/support/Facades/Lang.php', - 'Illuminate\\Support\\Facades\\Log' => $vendorDir . '/illuminate/support/Facades/Log.php', - 'Illuminate\\Support\\Facades\\Mail' => $vendorDir . '/illuminate/support/Facades/Mail.php', - 'Illuminate\\Support\\Facades\\Notification' => $vendorDir . '/illuminate/support/Facades/Notification.php', - 'Illuminate\\Support\\Facades\\Password' => $vendorDir . '/illuminate/support/Facades/Password.php', - 'Illuminate\\Support\\Facades\\Queue' => $vendorDir . '/illuminate/support/Facades/Queue.php', - 'Illuminate\\Support\\Facades\\Redirect' => $vendorDir . '/illuminate/support/Facades/Redirect.php', - 'Illuminate\\Support\\Facades\\Redis' => $vendorDir . '/illuminate/support/Facades/Redis.php', - 'Illuminate\\Support\\Facades\\Request' => $vendorDir . '/illuminate/support/Facades/Request.php', - 'Illuminate\\Support\\Facades\\Response' => $vendorDir . '/illuminate/support/Facades/Response.php', - 'Illuminate\\Support\\Facades\\Route' => $vendorDir . '/illuminate/support/Facades/Route.php', - 'Illuminate\\Support\\Facades\\Schema' => $vendorDir . '/illuminate/support/Facades/Schema.php', - 'Illuminate\\Support\\Facades\\Session' => $vendorDir . '/illuminate/support/Facades/Session.php', - 'Illuminate\\Support\\Facades\\Storage' => $vendorDir . '/illuminate/support/Facades/Storage.php', - 'Illuminate\\Support\\Facades\\URL' => $vendorDir . '/illuminate/support/Facades/URL.php', - 'Illuminate\\Support\\Facades\\Validator' => $vendorDir . '/illuminate/support/Facades/Validator.php', - 'Illuminate\\Support\\Facades\\View' => $vendorDir . '/illuminate/support/Facades/View.php', - 'Illuminate\\Support\\Fluent' => $vendorDir . '/illuminate/support/Fluent.php', - 'Illuminate\\Support\\HigherOrderCollectionProxy' => $vendorDir . '/illuminate/support/HigherOrderCollectionProxy.php', - 'Illuminate\\Support\\HigherOrderTapProxy' => $vendorDir . '/illuminate/support/HigherOrderTapProxy.php', - 'Illuminate\\Support\\HtmlString' => $vendorDir . '/illuminate/support/HtmlString.php', - 'Illuminate\\Support\\InteractsWithTime' => $vendorDir . '/illuminate/support/InteractsWithTime.php', - 'Illuminate\\Support\\Manager' => $vendorDir . '/illuminate/support/Manager.php', - 'Illuminate\\Support\\MessageBag' => $vendorDir . '/illuminate/support/MessageBag.php', - 'Illuminate\\Support\\NamespacedItemResolver' => $vendorDir . '/illuminate/support/NamespacedItemResolver.php', - 'Illuminate\\Support\\Optional' => $vendorDir . '/illuminate/support/Optional.php', - 'Illuminate\\Support\\Pluralizer' => $vendorDir . '/illuminate/support/Pluralizer.php', - 'Illuminate\\Support\\ProcessUtils' => $vendorDir . '/illuminate/support/ProcessUtils.php', - 'Illuminate\\Support\\ServiceProvider' => $vendorDir . '/illuminate/support/ServiceProvider.php', - 'Illuminate\\Support\\Str' => $vendorDir . '/illuminate/support/Str.php', - 'Illuminate\\Support\\Testing\\Fakes\\BusFake' => $vendorDir . '/illuminate/support/Testing/Fakes/BusFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\EventFake' => $vendorDir . '/illuminate/support/Testing/Fakes/EventFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\MailFake' => $vendorDir . '/illuminate/support/Testing/Fakes/MailFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\NotificationFake' => $vendorDir . '/illuminate/support/Testing/Fakes/NotificationFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\PendingMailFake' => $vendorDir . '/illuminate/support/Testing/Fakes/PendingMailFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\QueueFake' => $vendorDir . '/illuminate/support/Testing/Fakes/QueueFake.php', - 'Illuminate\\Support\\Traits\\CapsuleManagerTrait' => $vendorDir . '/illuminate/support/Traits/CapsuleManagerTrait.php', - 'Illuminate\\Support\\Traits\\ForwardsCalls' => $vendorDir . '/illuminate/support/Traits/ForwardsCalls.php', - 'Illuminate\\Support\\Traits\\Localizable' => $vendorDir . '/illuminate/support/Traits/Localizable.php', - 'Illuminate\\Support\\Traits\\Macroable' => $vendorDir . '/illuminate/support/Traits/Macroable.php', - 'Illuminate\\Support\\Traits\\Tappable' => $vendorDir . '/illuminate/support/Traits/Tappable.php', - 'Illuminate\\Support\\ViewErrorBag' => $vendorDir . '/illuminate/support/ViewErrorBag.php', - 'JsonSchema\\Constraints\\BaseConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php', - 'JsonSchema\\Constraints\\CollectionConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php', - 'JsonSchema\\Constraints\\Constraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php', - 'JsonSchema\\Constraints\\ConstraintInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php', - 'JsonSchema\\Constraints\\EnumConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php', - 'JsonSchema\\Constraints\\Factory' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php', - 'JsonSchema\\Constraints\\FormatConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php', - 'JsonSchema\\Constraints\\NumberConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php', - 'JsonSchema\\Constraints\\ObjectConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php', - 'JsonSchema\\Constraints\\SchemaConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php', - 'JsonSchema\\Constraints\\StringConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php', - 'JsonSchema\\Constraints\\TypeCheck\\LooseTypeCheck' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php', - 'JsonSchema\\Constraints\\TypeCheck\\StrictTypeCheck' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php', - 'JsonSchema\\Constraints\\TypeCheck\\TypeCheckInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php', - 'JsonSchema\\Constraints\\TypeConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php', - 'JsonSchema\\Constraints\\UndefinedConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php', - 'JsonSchema\\Entity\\JsonPointer' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php', - 'JsonSchema\\Exception\\ExceptionInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php', - 'JsonSchema\\Exception\\InvalidArgumentException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php', - 'JsonSchema\\Exception\\InvalidConfigException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php', - 'JsonSchema\\Exception\\InvalidSchemaException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php', - 'JsonSchema\\Exception\\InvalidSchemaMediaTypeException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php', - 'JsonSchema\\Exception\\InvalidSourceUriException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php', - 'JsonSchema\\Exception\\JsonDecodingException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php', - 'JsonSchema\\Exception\\ResourceNotFoundException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php', - 'JsonSchema\\Exception\\RuntimeException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php', - 'JsonSchema\\Exception\\UnresolvableJsonPointerException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php', - 'JsonSchema\\Exception\\UriResolverException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php', - 'JsonSchema\\Exception\\ValidationException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php', - 'JsonSchema\\Iterator\\ObjectIterator' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php', - 'JsonSchema\\Rfc3339' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php', - 'JsonSchema\\SchemaStorage' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php', - 'JsonSchema\\SchemaStorageInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php', - 'JsonSchema\\UriResolverInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php', - 'JsonSchema\\UriRetrieverInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php', - 'JsonSchema\\Uri\\Retrievers\\AbstractRetriever' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php', - 'JsonSchema\\Uri\\Retrievers\\Curl' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php', - 'JsonSchema\\Uri\\Retrievers\\FileGetContents' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php', - 'JsonSchema\\Uri\\Retrievers\\PredefinedArray' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php', - 'JsonSchema\\Uri\\Retrievers\\UriRetrieverInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php', - 'JsonSchema\\Uri\\UriResolver' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php', - 'JsonSchema\\Uri\\UriRetriever' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php', - 'JsonSchema\\Validator' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Validator.php', - 'MikeMcLin\\WpPassword\\Contracts\\WpPassword' => $vendorDir . '/mikemclin/laravel-wp-password/src/Contracts/WpPassword.php', - 'MikeMcLin\\WpPassword\\Facades\\WpPassword' => $vendorDir . '/mikemclin/laravel-wp-password/src/Facades/WpPassword.php', - 'MikeMcLin\\WpPassword\\WpPassword' => $vendorDir . '/mikemclin/laravel-wp-password/src/WpPassword.php', - 'MikeMcLin\\WpPassword\\WpPasswordProvider' => $vendorDir . '/mikemclin/laravel-wp-password/src/WpPasswordProvider.php', - 'Mustache_Autoloader' => $vendorDir . '/mustache/mustache/src/Mustache/Autoloader.php', - 'Mustache_Cache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache.php', - 'Mustache_Cache_AbstractCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/AbstractCache.php', - 'Mustache_Cache_FilesystemCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/FilesystemCache.php', - 'Mustache_Cache_NoopCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/NoopCache.php', - 'Mustache_Compiler' => $vendorDir . '/mustache/mustache/src/Mustache/Compiler.php', - 'Mustache_Context' => $vendorDir . '/mustache/mustache/src/Mustache/Context.php', - 'Mustache_Engine' => $vendorDir . '/mustache/mustache/src/Mustache/Engine.php', - 'Mustache_Exception' => $vendorDir . '/mustache/mustache/src/Mustache/Exception.php', - 'Mustache_Exception_InvalidArgumentException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/InvalidArgumentException.php', - 'Mustache_Exception_LogicException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/LogicException.php', - 'Mustache_Exception_RuntimeException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/RuntimeException.php', - 'Mustache_Exception_SyntaxException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/SyntaxException.php', - 'Mustache_Exception_UnknownFilterException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownFilterException.php', - 'Mustache_Exception_UnknownHelperException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownHelperException.php', - 'Mustache_Exception_UnknownTemplateException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownTemplateException.php', - 'Mustache_HelperCollection' => $vendorDir . '/mustache/mustache/src/Mustache/HelperCollection.php', - 'Mustache_LambdaHelper' => $vendorDir . '/mustache/mustache/src/Mustache/LambdaHelper.php', - 'Mustache_Loader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader.php', - 'Mustache_Loader_ArrayLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/ArrayLoader.php', - 'Mustache_Loader_CascadingLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/CascadingLoader.php', - 'Mustache_Loader_FilesystemLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/FilesystemLoader.php', - 'Mustache_Loader_InlineLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/InlineLoader.php', - 'Mustache_Loader_MutableLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/MutableLoader.php', - 'Mustache_Loader_ProductionFilesystemLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/ProductionFilesystemLoader.php', - 'Mustache_Loader_StringLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/StringLoader.php', - 'Mustache_Logger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger.php', - 'Mustache_Logger_AbstractLogger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger/AbstractLogger.php', - 'Mustache_Logger_StreamLogger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger/StreamLogger.php', - 'Mustache_Parser' => $vendorDir . '/mustache/mustache/src/Mustache/Parser.php', - 'Mustache_Source' => $vendorDir . '/mustache/mustache/src/Mustache/Source.php', - 'Mustache_Source_FilesystemSource' => $vendorDir . '/mustache/mustache/src/Mustache/Source/FilesystemSource.php', - 'Mustache_Template' => $vendorDir . '/mustache/mustache/src/Mustache/Template.php', - 'Mustache_Tokenizer' => $vendorDir . '/mustache/mustache/src/Mustache/Tokenizer.php', - 'Mustangostang\\Spyc' => $vendorDir . '/wp-cli/mustangostang-spyc/src/Spyc.php', - 'MySQLDump' => $vendorDir . '/dg/mysql-dump/src/MySQLDump.php', - 'MySQLImport' => $vendorDir . '/dg/mysql-dump/src/MySQLImport.php', - 'Oxymel' => $vendorDir . '/nb/oxymel/Oxymel.php', - 'OxymelException' => $vendorDir . '/nb/oxymel/Oxymel.php', - 'OxymelTest' => $vendorDir . '/nb/oxymel/OxymelTest.php', - 'PHPUnit\\Framework\\Assert' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/Assert.php', - 'PHPUnit\\Framework\\AssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/AssertionFailedError.php', - 'PHPUnit\\Framework\\BaseTestListener' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/BaseTestListener.php', - 'PHPUnit\\Framework\\Test' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/Test.php', - 'PHPUnit\\Framework\\TestCase' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/TestCase.php', - 'PHPUnit\\Framework\\TestListener' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/TestListener.php', - 'PHPUnit\\Framework\\TestSuite' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/TestSuite.php', - 'PHPUnit_Exception' => $vendorDir . '/phpunit/phpunit/src/Exception.php', - 'PHPUnit_Extensions_GroupTestSuite' => $vendorDir . '/phpunit/phpunit/src/Extensions/GroupTestSuite.php', - 'PHPUnit_Extensions_PhptTestCase' => $vendorDir . '/phpunit/phpunit/src/Extensions/PhptTestCase.php', - 'PHPUnit_Extensions_PhptTestSuite' => $vendorDir . '/phpunit/phpunit/src/Extensions/PhptTestSuite.php', - 'PHPUnit_Extensions_RepeatedTest' => $vendorDir . '/phpunit/phpunit/src/Extensions/RepeatedTest.php', - 'PHPUnit_Extensions_TestDecorator' => $vendorDir . '/phpunit/phpunit/src/Extensions/TestDecorator.php', - 'PHPUnit_Extensions_TicketListener' => $vendorDir . '/phpunit/phpunit/src/Extensions/TicketListener.php', - 'PHPUnit_Framework_Assert' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert.php', - 'PHPUnit_Framework_AssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/Framework/AssertionFailedError.php', - 'PHPUnit_Framework_BaseTestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/BaseTestListener.php', - 'PHPUnit_Framework_CodeCoverageException' => $vendorDir . '/phpunit/phpunit/src/Framework/CodeCoverageException.php', - 'PHPUnit_Framework_Constraint' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint.php', - 'PHPUnit_Framework_Constraint_And' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/And.php', - 'PHPUnit_Framework_Constraint_ArrayHasKey' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArrayHasKey.php', - 'PHPUnit_Framework_Constraint_ArraySubset' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArraySubset.php', - 'PHPUnit_Framework_Constraint_Attribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Attribute.php', - 'PHPUnit_Framework_Constraint_Callback' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Callback.php', - 'PHPUnit_Framework_Constraint_ClassHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasAttribute.php', - 'PHPUnit_Framework_Constraint_ClassHasStaticAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasStaticAttribute.php', - 'PHPUnit_Framework_Constraint_Composite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Composite.php', - 'PHPUnit_Framework_Constraint_Count' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Count.php', - 'PHPUnit_Framework_Constraint_DirectoryExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/DirectoryExists.php', - 'PHPUnit_Framework_Constraint_Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception.php', - 'PHPUnit_Framework_Constraint_ExceptionCode' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionCode.php', - 'PHPUnit_Framework_Constraint_ExceptionMessage' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessage.php', - 'PHPUnit_Framework_Constraint_ExceptionMessageRegExp' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessageRegExp.php', - 'PHPUnit_Framework_Constraint_FileExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/FileExists.php', - 'PHPUnit_Framework_Constraint_GreaterThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/GreaterThan.php', - 'PHPUnit_Framework_Constraint_IsAnything' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php', - 'PHPUnit_Framework_Constraint_IsEmpty' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEmpty.php', - 'PHPUnit_Framework_Constraint_IsEqual' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEqual.php', - 'PHPUnit_Framework_Constraint_IsFalse' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFalse.php', - 'PHPUnit_Framework_Constraint_IsFinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFinite.php', - 'PHPUnit_Framework_Constraint_IsIdentical' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php', - 'PHPUnit_Framework_Constraint_IsInfinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInfinite.php', - 'PHPUnit_Framework_Constraint_IsInstanceOf' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInstanceOf.php', - 'PHPUnit_Framework_Constraint_IsJson' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsJson.php', - 'PHPUnit_Framework_Constraint_IsNan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNan.php', - 'PHPUnit_Framework_Constraint_IsNull' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNull.php', - 'PHPUnit_Framework_Constraint_IsReadable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsReadable.php', - 'PHPUnit_Framework_Constraint_IsTrue' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsTrue.php', - 'PHPUnit_Framework_Constraint_IsType' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsType.php', - 'PHPUnit_Framework_Constraint_IsWritable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsWritable.php', - 'PHPUnit_Framework_Constraint_JsonMatches' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php', - 'PHPUnit_Framework_Constraint_JsonMatches_ErrorMessageProvider' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches/ErrorMessageProvider.php', - 'PHPUnit_Framework_Constraint_LessThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LessThan.php', - 'PHPUnit_Framework_Constraint_Not' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Not.php', - 'PHPUnit_Framework_Constraint_ObjectHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ObjectHasAttribute.php', - 'PHPUnit_Framework_Constraint_Or' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Or.php', - 'PHPUnit_Framework_Constraint_PCREMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/PCREMatch.php', - 'PHPUnit_Framework_Constraint_SameSize' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/SameSize.php', - 'PHPUnit_Framework_Constraint_StringContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringContains.php', - 'PHPUnit_Framework_Constraint_StringEndsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringEndsWith.php', - 'PHPUnit_Framework_Constraint_StringMatches' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringMatches.php', - 'PHPUnit_Framework_Constraint_StringStartsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringStartsWith.php', - 'PHPUnit_Framework_Constraint_TraversableContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContains.php', - 'PHPUnit_Framework_Constraint_TraversableContainsOnly' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContainsOnly.php', - 'PHPUnit_Framework_Constraint_Xor' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Xor.php', - 'PHPUnit_Framework_CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/phpunit/src/Framework/CoveredCodeNotExecutedException.php', - 'PHPUnit_Framework_Error' => $vendorDir . '/phpunit/phpunit/src/Framework/Error.php', - 'PHPUnit_Framework_Error_Deprecated' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Deprecated.php', - 'PHPUnit_Framework_Error_Notice' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Notice.php', - 'PHPUnit_Framework_Error_Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Warning.php', - 'PHPUnit_Framework_Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception.php', - 'PHPUnit_Framework_ExceptionWrapper' => $vendorDir . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php', - 'PHPUnit_Framework_ExpectationFailedException' => $vendorDir . '/phpunit/phpunit/src/Framework/ExpectationFailedException.php', - 'PHPUnit_Framework_IncompleteTest' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTest.php', - 'PHPUnit_Framework_IncompleteTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php', - 'PHPUnit_Framework_IncompleteTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestError.php', - 'PHPUnit_Framework_InvalidCoversTargetException' => $vendorDir . '/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php', - 'PHPUnit_Framework_MissingCoversAnnotationException' => $vendorDir . '/phpunit/phpunit/src/Framework/MissingCoversAnnotationException.php', - 'PHPUnit_Framework_MockObject_BadMethodCallException' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Exception/BadMethodCallException.php', - 'PHPUnit_Framework_MockObject_Builder_Identity' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Identity.php', - 'PHPUnit_Framework_MockObject_Builder_InvocationMocker' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/InvocationMocker.php', - 'PHPUnit_Framework_MockObject_Builder_Match' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Match.php', - 'PHPUnit_Framework_MockObject_Builder_MethodNameMatch' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/MethodNameMatch.php', - 'PHPUnit_Framework_MockObject_Builder_Namespace' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Namespace.php', - 'PHPUnit_Framework_MockObject_Builder_ParametersMatch' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/ParametersMatch.php', - 'PHPUnit_Framework_MockObject_Builder_Stub' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/Stub.php', - 'PHPUnit_Framework_MockObject_Exception' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Exception/Exception.php', - 'PHPUnit_Framework_MockObject_Generator' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator.php', - 'PHPUnit_Framework_MockObject_Invocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation.php', - 'PHPUnit_Framework_MockObject_InvocationMocker' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/InvocationMocker.php', - 'PHPUnit_Framework_MockObject_Invocation_Object' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/Object.php', - 'PHPUnit_Framework_MockObject_Invocation_Static' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/Static.php', - 'PHPUnit_Framework_MockObject_Invokable' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invokable.php', - 'PHPUnit_Framework_MockObject_Matcher' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher.php', - 'PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/AnyInvokedCount.php', - 'PHPUnit_Framework_MockObject_Matcher_AnyParameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/AnyParameters.php', - 'PHPUnit_Framework_MockObject_Matcher_ConsecutiveParameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/ConsecutiveParameters.php', - 'PHPUnit_Framework_MockObject_Matcher_Invocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/Invocation.php', - 'PHPUnit_Framework_MockObject_Matcher_InvokedAtIndex' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtIndex.php', - 'PHPUnit_Framework_MockObject_Matcher_InvokedAtLeastCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtLeastCount.php', - 'PHPUnit_Framework_MockObject_Matcher_InvokedAtLeastOnce' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtLeastOnce.php', - 'PHPUnit_Framework_MockObject_Matcher_InvokedAtMostCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedAtMostCount.php', - 'PHPUnit_Framework_MockObject_Matcher_InvokedCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedCount.php', - 'PHPUnit_Framework_MockObject_Matcher_InvokedRecorder' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/InvokedRecorder.php', - 'PHPUnit_Framework_MockObject_Matcher_MethodName' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/MethodName.php', - 'PHPUnit_Framework_MockObject_Matcher_Parameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/Parameters.php', - 'PHPUnit_Framework_MockObject_Matcher_StatelessInvocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/StatelessInvocation.php', - 'PHPUnit_Framework_MockObject_MockBuilder' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/MockBuilder.php', - 'PHPUnit_Framework_MockObject_MockObject' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/MockObject.php', - 'PHPUnit_Framework_MockObject_RuntimeException' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Exception/RuntimeException.php', - 'PHPUnit_Framework_MockObject_Stub' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub.php', - 'PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ConsecutiveCalls.php', - 'PHPUnit_Framework_MockObject_Stub_Exception' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/Exception.php', - 'PHPUnit_Framework_MockObject_Stub_MatcherCollection' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/MatcherCollection.php', - 'PHPUnit_Framework_MockObject_Stub_Return' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/Return.php', - 'PHPUnit_Framework_MockObject_Stub_ReturnArgument' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnArgument.php', - 'PHPUnit_Framework_MockObject_Stub_ReturnCallback' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnCallback.php', - 'PHPUnit_Framework_MockObject_Stub_ReturnReference' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnReference.php', - 'PHPUnit_Framework_MockObject_Stub_ReturnSelf' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnSelf.php', - 'PHPUnit_Framework_MockObject_Stub_ReturnValueMap' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnValueMap.php', - 'PHPUnit_Framework_MockObject_Verifiable' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Framework/MockObject/Verifiable.php', - 'PHPUnit_Framework_OutputError' => $vendorDir . '/phpunit/phpunit/src/Framework/OutputError.php', - 'PHPUnit_Framework_RiskyTest' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTest.php', - 'PHPUnit_Framework_RiskyTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTestError.php', - 'PHPUnit_Framework_SelfDescribing' => $vendorDir . '/phpunit/phpunit/src/Framework/SelfDescribing.php', - 'PHPUnit_Framework_SkippedTest' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTest.php', - 'PHPUnit_Framework_SkippedTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestCase.php', - 'PHPUnit_Framework_SkippedTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestError.php', - 'PHPUnit_Framework_SkippedTestSuiteError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php', - 'PHPUnit_Framework_SyntheticError' => $vendorDir . '/phpunit/phpunit/src/Framework/SyntheticError.php', - 'PHPUnit_Framework_Test' => $vendorDir . '/phpunit/phpunit/src/Framework/Test.php', - 'PHPUnit_Framework_TestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/TestCase.php', - 'PHPUnit_Framework_TestFailure' => $vendorDir . '/phpunit/phpunit/src/Framework/TestFailure.php', - 'PHPUnit_Framework_TestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListener.php', - 'PHPUnit_Framework_TestResult' => $vendorDir . '/phpunit/phpunit/src/Framework/TestResult.php', - 'PHPUnit_Framework_TestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuite.php', - 'PHPUnit_Framework_TestSuite_DataProvider' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuite/DataProvider.php', - 'PHPUnit_Framework_UnintentionallyCoveredCodeError' => $vendorDir . '/phpunit/phpunit/src/Framework/UnintentionallyCoveredCodeError.php', - 'PHPUnit_Framework_Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Warning.php', - 'PHPUnit_Framework_WarningTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/WarningTestCase.php', - 'PHPUnit_Runner_BaseTestRunner' => $vendorDir . '/phpunit/phpunit/src/Runner/BaseTestRunner.php', - 'PHPUnit_Runner_Exception' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception.php', - 'PHPUnit_Runner_Filter_Factory' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Factory.php', - 'PHPUnit_Runner_Filter_GroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Group.php', - 'PHPUnit_Runner_Filter_Group_Exclude' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Group/Exclude.php', - 'PHPUnit_Runner_Filter_Group_Include' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Group/Include.php', - 'PHPUnit_Runner_Filter_Test' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Test.php', - 'PHPUnit_Runner_StandardTestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php', - 'PHPUnit_Runner_TestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php', - 'PHPUnit_Runner_Version' => $vendorDir . '/phpunit/phpunit/src/Runner/Version.php', - 'PHPUnit_TextUI_Command' => $vendorDir . '/phpunit/phpunit/src/TextUI/Command.php', - 'PHPUnit_TextUI_ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/ResultPrinter.php', - 'PHPUnit_TextUI_TestRunner' => $vendorDir . '/phpunit/phpunit/src/TextUI/TestRunner.php', - 'PHPUnit_Util_Blacklist' => $vendorDir . '/phpunit/phpunit/src/Util/Blacklist.php', - 'PHPUnit_Util_Configuration' => $vendorDir . '/phpunit/phpunit/src/Util/Configuration.php', - 'PHPUnit_Util_ConfigurationGenerator' => $vendorDir . '/phpunit/phpunit/src/Util/ConfigurationGenerator.php', - 'PHPUnit_Util_ErrorHandler' => $vendorDir . '/phpunit/phpunit/src/Util/ErrorHandler.php', - 'PHPUnit_Util_Fileloader' => $vendorDir . '/phpunit/phpunit/src/Util/Fileloader.php', - 'PHPUnit_Util_Filesystem' => $vendorDir . '/phpunit/phpunit/src/Util/Filesystem.php', - 'PHPUnit_Util_Filter' => $vendorDir . '/phpunit/phpunit/src/Util/Filter.php', - 'PHPUnit_Util_Getopt' => $vendorDir . '/phpunit/phpunit/src/Util/Getopt.php', - 'PHPUnit_Util_GlobalState' => $vendorDir . '/phpunit/phpunit/src/Util/GlobalState.php', - 'PHPUnit_Util_InvalidArgumentHelper' => $vendorDir . '/phpunit/phpunit/src/Util/InvalidArgumentHelper.php', - 'PHPUnit_Util_Log_JSON' => $vendorDir . '/phpunit/phpunit/src/Util/Log/JSON.php', - 'PHPUnit_Util_Log_JUnit' => $vendorDir . '/phpunit/phpunit/src/Util/Log/JUnit.php', - 'PHPUnit_Util_Log_TAP' => $vendorDir . '/phpunit/phpunit/src/Util/Log/TAP.php', - 'PHPUnit_Util_Log_TeamCity' => $vendorDir . '/phpunit/phpunit/src/Util/Log/TeamCity.php', - 'PHPUnit_Util_PHP' => $vendorDir . '/phpunit/phpunit/src/Util/PHP.php', - 'PHPUnit_Util_PHP_Default' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/Default.php', - 'PHPUnit_Util_PHP_Windows' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/Windows.php', - 'PHPUnit_Util_Printer' => $vendorDir . '/phpunit/phpunit/src/Util/Printer.php', - 'PHPUnit_Util_Regex' => $vendorDir . '/phpunit/phpunit/src/Util/Regex.php', - 'PHPUnit_Util_String' => $vendorDir . '/phpunit/phpunit/src/Util/String.php', - 'PHPUnit_Util_Test' => $vendorDir . '/phpunit/phpunit/src/Util/Test.php', - 'PHPUnit_Util_TestDox_NamePrettifier' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php', - 'PHPUnit_Util_TestDox_ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php', - 'PHPUnit_Util_TestDox_ResultPrinter_HTML' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter/HTML.php', - 'PHPUnit_Util_TestDox_ResultPrinter_Text' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter/Text.php', - 'PHPUnit_Util_TestDox_ResultPrinter_XML' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter/XML.php', - 'PHPUnit_Util_TestSuiteIterator' => $vendorDir . '/phpunit/phpunit/src/Util/TestSuiteIterator.php', - 'PHPUnit_Util_Type' => $vendorDir . '/phpunit/phpunit/src/Util/Type.php', - 'PHPUnit_Util_XML' => $vendorDir . '/phpunit/phpunit/src/Util/XML.php', - 'PHP_Timer' => $vendorDir . '/phpunit/php-timer/src/Timer.php', - 'PHP_Token' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_TokenWithScope' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_TokenWithScopeAndVisibility' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ABSTRACT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_AMPERSAND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_AND_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ARRAY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ARRAY_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_AS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ASYNC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_AT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_AWAIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BACKTICK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BAD_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BOOLEAN_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BOOLEAN_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BOOL_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BREAK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CALLABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CARET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CASE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CATCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLASS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLASS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLASS_NAME_CONSTANT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLONE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLOSE_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLOSE_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLOSE_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLOSE_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COALESCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COMMA' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COMPILER_HALT_OFFSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CONCAT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CONST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CONSTANT_ENCAPSED_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CONTINUE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CURLY_OPEN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DEC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DEFAULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DIR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DIV' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DIV_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOC_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOLLAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOLLAR_OPEN_CURLY_BRACES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOUBLE_ARROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOUBLE_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOUBLE_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOUBLE_QUOTES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ELLIPSIS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ELSE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ELSEIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EMPTY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENCAPSED_AND_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDDECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDFOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDFOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDSWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDWHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_END_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENUM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EQUALS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EVAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EXCLAMATION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EXIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EXTENDS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FINAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FINALLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FUNC_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_GLOBAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_GOTO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_HALT_COMPILER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IMPLEMENTS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INCLUDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INCLUDE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INLINE_HTML' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INSTANCEOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INSTEADOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INTERFACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ISSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_GREATER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_NOT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_NOT_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_SMALLER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_Includes' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_JOIN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LAMBDA_ARROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LAMBDA_CP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LAMBDA_OP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LINE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LIST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LOGICAL_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LOGICAL_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LOGICAL_XOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_METHOD_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MINUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MINUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MOD_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MUL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NAMESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NEW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NS_SEPARATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NULLSAFE_OBJECT_OPERATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NUM_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OBJECT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OBJECT_OPERATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ONUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_TAG_WITH_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PAAMAYIM_NEKUDOTAYIM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PERCENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PIPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PLUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PLUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_POW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_POW_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PRINT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PRIVATE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PROTECTED' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PUBLIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_QUESTION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_REQUIRE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_REQUIRE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_RETURN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SEMICOLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SHAPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SPACESHIP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_START_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_STATIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_STRING_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_STRING_VARNAME' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SUPER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_Stream' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream.php', - 'PHP_Token_Stream_CachingFactory' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php', - 'PHP_Token_THROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TILDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TRAIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TRAIT_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TRY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TYPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TYPELIST_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TYPELIST_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_UNSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_UNSET_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_USE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_USE_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_VAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_VARIABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_WHERE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_WHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_XHP_ATTRIBUTE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_XHP_CATEGORY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_XHP_CATEGORY_LABEL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_XHP_CHILDREN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_XHP_LABEL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_XHP_REQUIRED' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_XHP_TAG_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_XHP_TAG_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_XHP_TEXT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_XOR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_YIELD' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_YIELD_FROM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PhpOption\\LazyOption' => $vendorDir . '/phpoption/phpoption/src/PhpOption/LazyOption.php', - 'PhpOption\\None' => $vendorDir . '/phpoption/phpoption/src/PhpOption/None.php', - 'PhpOption\\Option' => $vendorDir . '/phpoption/phpoption/src/PhpOption/Option.php', - 'PhpOption\\Some' => $vendorDir . '/phpoption/phpoption/src/PhpOption/Some.php', - 'Prophecy\\Argument' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument.php', - 'Prophecy\\Argument\\ArgumentsWildcard' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/ArgumentsWildcard.php', - 'Prophecy\\Argument\\Token\\AnyValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValueToken.php', - 'Prophecy\\Argument\\Token\\AnyValuesToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php', - 'Prophecy\\Argument\\Token\\ApproximateValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ApproximateValueToken.php', - 'Prophecy\\Argument\\Token\\ArrayCountToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayCountToken.php', - 'Prophecy\\Argument\\Token\\ArrayEntryToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEntryToken.php', - 'Prophecy\\Argument\\Token\\ArrayEveryEntryToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEveryEntryToken.php', - 'Prophecy\\Argument\\Token\\CallbackToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/CallbackToken.php', - 'Prophecy\\Argument\\Token\\ExactValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ExactValueToken.php', - 'Prophecy\\Argument\\Token\\IdenticalValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/IdenticalValueToken.php', - 'Prophecy\\Argument\\Token\\LogicalAndToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalAndToken.php', - 'Prophecy\\Argument\\Token\\LogicalNotToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php', - 'Prophecy\\Argument\\Token\\ObjectStateToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ObjectStateToken.php', - 'Prophecy\\Argument\\Token\\StringContainsToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/StringContainsToken.php', - 'Prophecy\\Argument\\Token\\TokenInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/TokenInterface.php', - 'Prophecy\\Argument\\Token\\TypeToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/TypeToken.php', - 'Prophecy\\Call\\Call' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Call/Call.php', - 'Prophecy\\Call\\CallCenter' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Call/CallCenter.php', - 'Prophecy\\Comparator\\ClosureComparator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/ClosureComparator.php', - 'Prophecy\\Comparator\\Factory' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/Factory.php', - 'Prophecy\\Comparator\\ProphecyComparator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/ProphecyComparator.php', - 'Prophecy\\Doubler\\CachedDoubler' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/CachedDoubler.php', - 'Prophecy\\Doubler\\ClassPatch\\ClassPatchInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php', - 'Prophecy\\Doubler\\ClassPatch\\DisableConstructorPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\HhvmExceptionPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\KeywordPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/KeywordPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\MagicCallPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/MagicCallPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\ProphecySubjectPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\ReflectionClassNewInstancePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php', - 'Prophecy\\Doubler\\ClassPatch\\SplFileInfoPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/SplFileInfoPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\ThrowablePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ThrowablePatch.php', - 'Prophecy\\Doubler\\ClassPatch\\TraversablePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/TraversablePatch.php', - 'Prophecy\\Doubler\\DoubleInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/DoubleInterface.php', - 'Prophecy\\Doubler\\Doubler' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Doubler.php', - 'Prophecy\\Doubler\\Generator\\ClassCodeGenerator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCodeGenerator.php', - 'Prophecy\\Doubler\\Generator\\ClassCreator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCreator.php', - 'Prophecy\\Doubler\\Generator\\ClassMirror' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassMirror.php', - 'Prophecy\\Doubler\\Generator\\Node\\ArgumentNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ArgumentNode.php', - 'Prophecy\\Doubler\\Generator\\Node\\ClassNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ClassNode.php', - 'Prophecy\\Doubler\\Generator\\Node\\MethodNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/MethodNode.php', - 'Prophecy\\Doubler\\Generator\\ReflectionInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ReflectionInterface.php', - 'Prophecy\\Doubler\\Generator\\TypeHintReference' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/TypeHintReference.php', - 'Prophecy\\Doubler\\LazyDouble' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/LazyDouble.php', - 'Prophecy\\Doubler\\NameGenerator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/NameGenerator.php', - 'Prophecy\\Exception\\Call\\UnexpectedCallException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Call/UnexpectedCallException.php', - 'Prophecy\\Exception\\Doubler\\ClassCreatorException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassCreatorException.php', - 'Prophecy\\Exception\\Doubler\\ClassMirrorException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassMirrorException.php', - 'Prophecy\\Exception\\Doubler\\ClassNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php', - 'Prophecy\\Exception\\Doubler\\DoubleException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.php', - 'Prophecy\\Exception\\Doubler\\DoublerException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php', - 'Prophecy\\Exception\\Doubler\\InterfaceNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/InterfaceNotFoundException.php', - 'Prophecy\\Exception\\Doubler\\MethodNotExtendableException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotExtendableException.php', - 'Prophecy\\Exception\\Doubler\\MethodNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php', - 'Prophecy\\Exception\\Doubler\\ReturnByReferenceException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ReturnByReferenceException.php', - 'Prophecy\\Exception\\Exception' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Exception.php', - 'Prophecy\\Exception\\InvalidArgumentException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php', - 'Prophecy\\Exception\\Prediction\\AggregateException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/AggregateException.php', - 'Prophecy\\Exception\\Prediction\\FailedPredictionException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/FailedPredictionException.php', - 'Prophecy\\Exception\\Prediction\\NoCallsException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/NoCallsException.php', - 'Prophecy\\Exception\\Prediction\\PredictionException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/PredictionException.php', - 'Prophecy\\Exception\\Prediction\\UnexpectedCallsCountException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsCountException.php', - 'Prophecy\\Exception\\Prediction\\UnexpectedCallsException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsException.php', - 'Prophecy\\Exception\\Prophecy\\MethodProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/MethodProphecyException.php', - 'Prophecy\\Exception\\Prophecy\\ObjectProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ObjectProphecyException.php', - 'Prophecy\\Exception\\Prophecy\\ProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php', - 'Prophecy\\PhpDocumentor\\ClassAndInterfaceTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php', - 'Prophecy\\PhpDocumentor\\ClassTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassTagRetriever.php', - 'Prophecy\\PhpDocumentor\\LegacyClassTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php', - 'Prophecy\\PhpDocumentor\\MethodTagRetrieverInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php', - 'Prophecy\\Prediction\\CallPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallPrediction.php', - 'Prophecy\\Prediction\\CallTimesPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallTimesPrediction.php', - 'Prophecy\\Prediction\\CallbackPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallbackPrediction.php', - 'Prophecy\\Prediction\\NoCallsPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/NoCallsPrediction.php', - 'Prophecy\\Prediction\\PredictionInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/PredictionInterface.php', - 'Prophecy\\Promise\\CallbackPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/CallbackPromise.php', - 'Prophecy\\Promise\\PromiseInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/PromiseInterface.php', - 'Prophecy\\Promise\\ReturnArgumentPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ReturnArgumentPromise.php', - 'Prophecy\\Promise\\ReturnPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ReturnPromise.php', - 'Prophecy\\Promise\\ThrowPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ThrowPromise.php', - 'Prophecy\\Prophecy\\MethodProphecy' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/MethodProphecy.php', - 'Prophecy\\Prophecy\\ObjectProphecy' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php', - 'Prophecy\\Prophecy\\ProphecyInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecyInterface.php', - 'Prophecy\\Prophecy\\ProphecySubjectInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecySubjectInterface.php', - 'Prophecy\\Prophecy\\Revealer' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/Revealer.php', - 'Prophecy\\Prophecy\\RevealerInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/RevealerInterface.php', - 'Prophecy\\Prophet' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophet.php', - 'Prophecy\\Util\\ExportUtil' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Util/ExportUtil.php', - 'Prophecy\\Util\\StringUtil' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Util/StringUtil.php', - 'Psr\\Container\\ContainerExceptionInterface' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php', - 'Psr\\Container\\ContainerInterface' => $vendorDir . '/psr/container/src/ContainerInterface.php', - 'Psr\\Container\\NotFoundExceptionInterface' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php', - 'Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/psr/http-message/src/MessageInterface.php', - 'Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/psr/http-message/src/RequestInterface.php', - 'Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/psr/http-message/src/ResponseInterface.php', - 'Psr\\Http\\Message\\ServerRequestInterface' => $vendorDir . '/psr/http-message/src/ServerRequestInterface.php', - 'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php', - 'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php', - 'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php', - 'Psr\\Log\\AbstractLogger' => $vendorDir . '/psr/log/Psr/Log/AbstractLogger.php', - 'Psr\\Log\\InvalidArgumentException' => $vendorDir . '/psr/log/Psr/Log/InvalidArgumentException.php', - 'Psr\\Log\\LogLevel' => $vendorDir . '/psr/log/Psr/Log/LogLevel.php', - 'Psr\\Log\\LoggerAwareInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareInterface.php', - 'Psr\\Log\\LoggerAwareTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareTrait.php', - 'Psr\\Log\\LoggerInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerInterface.php', - 'Psr\\Log\\LoggerTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerTrait.php', - 'Psr\\Log\\NullLogger' => $vendorDir . '/psr/log/Psr/Log/NullLogger.php', - 'Psr\\Log\\Test\\DummyTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', - 'Psr\\Log\\Test\\LoggerInterfaceTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', - 'Psr\\Log\\Test\\TestLogger' => $vendorDir . '/psr/log/Psr/Log/Test/TestLogger.php', - 'Psr\\SimpleCache\\CacheException' => $vendorDir . '/psr/simple-cache/src/CacheException.php', - 'Psr\\SimpleCache\\CacheInterface' => $vendorDir . '/psr/simple-cache/src/CacheInterface.php', - 'Psr\\SimpleCache\\InvalidArgumentException' => $vendorDir . '/psr/simple-cache/src/InvalidArgumentException.php', - 'Requests' => $vendorDir . '/rmccue/requests/library/Requests.php', - 'Requests_Auth' => $vendorDir . '/rmccue/requests/library/Requests/Auth.php', - 'Requests_Auth_Basic' => $vendorDir . '/rmccue/requests/library/Requests/Auth/Basic.php', - 'Requests_Cookie' => $vendorDir . '/rmccue/requests/library/Requests/Cookie.php', - 'Requests_Cookie_Jar' => $vendorDir . '/rmccue/requests/library/Requests/Cookie/Jar.php', - 'Requests_Exception' => $vendorDir . '/rmccue/requests/library/Requests/Exception.php', - 'Requests_Exception_HTTP' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP.php', - 'Requests_Exception_HTTP_304' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/304.php', - 'Requests_Exception_HTTP_305' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/305.php', - 'Requests_Exception_HTTP_306' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/306.php', - 'Requests_Exception_HTTP_400' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/400.php', - 'Requests_Exception_HTTP_401' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/401.php', - 'Requests_Exception_HTTP_402' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/402.php', - 'Requests_Exception_HTTP_403' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/403.php', - 'Requests_Exception_HTTP_404' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/404.php', - 'Requests_Exception_HTTP_405' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/405.php', - 'Requests_Exception_HTTP_406' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/406.php', - 'Requests_Exception_HTTP_407' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/407.php', - 'Requests_Exception_HTTP_408' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/408.php', - 'Requests_Exception_HTTP_409' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/409.php', - 'Requests_Exception_HTTP_410' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/410.php', - 'Requests_Exception_HTTP_411' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/411.php', - 'Requests_Exception_HTTP_412' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/412.php', - 'Requests_Exception_HTTP_413' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/413.php', - 'Requests_Exception_HTTP_414' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/414.php', - 'Requests_Exception_HTTP_415' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/415.php', - 'Requests_Exception_HTTP_416' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/416.php', - 'Requests_Exception_HTTP_417' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/417.php', - 'Requests_Exception_HTTP_418' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/418.php', - 'Requests_Exception_HTTP_428' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/428.php', - 'Requests_Exception_HTTP_429' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/429.php', - 'Requests_Exception_HTTP_431' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/431.php', - 'Requests_Exception_HTTP_500' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/500.php', - 'Requests_Exception_HTTP_501' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/501.php', - 'Requests_Exception_HTTP_502' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/502.php', - 'Requests_Exception_HTTP_503' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/503.php', - 'Requests_Exception_HTTP_504' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/504.php', - 'Requests_Exception_HTTP_505' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/505.php', - 'Requests_Exception_HTTP_511' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/511.php', - 'Requests_Exception_HTTP_Unknown' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/Unknown.php', - 'Requests_Exception_Transport' => $vendorDir . '/rmccue/requests/library/Requests/Exception/Transport.php', - 'Requests_Exception_Transport_cURL' => $vendorDir . '/rmccue/requests/library/Requests/Exception/Transport/cURL.php', - 'Requests_Hooker' => $vendorDir . '/rmccue/requests/library/Requests/Hooker.php', - 'Requests_Hooks' => $vendorDir . '/rmccue/requests/library/Requests/Hooks.php', - 'Requests_IDNAEncoder' => $vendorDir . '/rmccue/requests/library/Requests/IDNAEncoder.php', - 'Requests_IPv6' => $vendorDir . '/rmccue/requests/library/Requests/IPv6.php', - 'Requests_IRI' => $vendorDir . '/rmccue/requests/library/Requests/IRI.php', - 'Requests_Proxy' => $vendorDir . '/rmccue/requests/library/Requests/Proxy.php', - 'Requests_Proxy_HTTP' => $vendorDir . '/rmccue/requests/library/Requests/Proxy/HTTP.php', - 'Requests_Response' => $vendorDir . '/rmccue/requests/library/Requests/Response.php', - 'Requests_Response_Headers' => $vendorDir . '/rmccue/requests/library/Requests/Response/Headers.php', - 'Requests_SSL' => $vendorDir . '/rmccue/requests/library/Requests/SSL.php', - 'Requests_Session' => $vendorDir . '/rmccue/requests/library/Requests/Session.php', - 'Requests_Transport' => $vendorDir . '/rmccue/requests/library/Requests/Transport.php', - 'Requests_Transport_cURL' => $vendorDir . '/rmccue/requests/library/Requests/Transport/cURL.php', - 'Requests_Transport_fsockopen' => $vendorDir . '/rmccue/requests/library/Requests/Transport/fsockopen.php', - 'Requests_Utility_CaseInsensitiveDictionary' => $vendorDir . '/rmccue/requests/library/Requests/Utility/CaseInsensitiveDictionary.php', - 'Requests_Utility_FilteredIterator' => $vendorDir . '/rmccue/requests/library/Requests/Utility/FilteredIterator.php', - 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage.php', - 'SebastianBergmann\\CodeCoverage\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php', - 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Driver.php', - 'SebastianBergmann\\CodeCoverage\\Driver\\HHVM' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/HHVM.php', - 'SebastianBergmann\\CodeCoverage\\Driver\\PHPDBG' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/PHPDBG.php', - 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Xdebug.php', - 'SebastianBergmann\\CodeCoverage\\Exception' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/Exception.php', - 'SebastianBergmann\\CodeCoverage\\Filter' => $vendorDir . '/phpunit/php-code-coverage/src/Filter.php', - 'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php', - 'SebastianBergmann\\CodeCoverage\\MissingCoversAnnotationException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php', - 'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => $vendorDir . '/phpunit/php-code-coverage/src/Node/AbstractNode.php', - 'SebastianBergmann\\CodeCoverage\\Node\\Builder' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Builder.php', - 'SebastianBergmann\\CodeCoverage\\Node\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Directory.php', - 'SebastianBergmann\\CodeCoverage\\Node\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Node/File.php', - 'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Iterator.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Clover' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Clover.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Crap4j.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Facade.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php', - 'SebastianBergmann\\CodeCoverage\\Report\\PHP' => $vendorDir . '/phpunit/php-code-coverage/src/Report/PHP.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Text' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Text.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/File.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Method.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Node.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Project.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Report.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php', - 'SebastianBergmann\\CodeCoverage\\RuntimeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/RuntimeException.php', - 'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php', - 'SebastianBergmann\\CodeCoverage\\Util' => $vendorDir . '/phpunit/php-code-coverage/src/Util.php', - 'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => $vendorDir . '/sebastian/code-unit-reverse-lookup/src/Wizard.php', - 'SebastianBergmann\\Comparator\\ArrayComparator' => $vendorDir . '/sebastian/comparator/src/ArrayComparator.php', - 'SebastianBergmann\\Comparator\\Comparator' => $vendorDir . '/sebastian/comparator/src/Comparator.php', - 'SebastianBergmann\\Comparator\\ComparisonFailure' => $vendorDir . '/sebastian/comparator/src/ComparisonFailure.php', - 'SebastianBergmann\\Comparator\\DOMNodeComparator' => $vendorDir . '/sebastian/comparator/src/DOMNodeComparator.php', - 'SebastianBergmann\\Comparator\\DateTimeComparator' => $vendorDir . '/sebastian/comparator/src/DateTimeComparator.php', - 'SebastianBergmann\\Comparator\\DoubleComparator' => $vendorDir . '/sebastian/comparator/src/DoubleComparator.php', - 'SebastianBergmann\\Comparator\\ExceptionComparator' => $vendorDir . '/sebastian/comparator/src/ExceptionComparator.php', - 'SebastianBergmann\\Comparator\\Factory' => $vendorDir . '/sebastian/comparator/src/Factory.php', - 'SebastianBergmann\\Comparator\\MockObjectComparator' => $vendorDir . '/sebastian/comparator/src/MockObjectComparator.php', - 'SebastianBergmann\\Comparator\\NumericComparator' => $vendorDir . '/sebastian/comparator/src/NumericComparator.php', - 'SebastianBergmann\\Comparator\\ObjectComparator' => $vendorDir . '/sebastian/comparator/src/ObjectComparator.php', - 'SebastianBergmann\\Comparator\\ResourceComparator' => $vendorDir . '/sebastian/comparator/src/ResourceComparator.php', - 'SebastianBergmann\\Comparator\\ScalarComparator' => $vendorDir . '/sebastian/comparator/src/ScalarComparator.php', - 'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => $vendorDir . '/sebastian/comparator/src/SplObjectStorageComparator.php', - 'SebastianBergmann\\Comparator\\TypeComparator' => $vendorDir . '/sebastian/comparator/src/TypeComparator.php', - 'SebastianBergmann\\Diff\\Chunk' => $vendorDir . '/sebastian/diff/src/Chunk.php', - 'SebastianBergmann\\Diff\\Diff' => $vendorDir . '/sebastian/diff/src/Diff.php', - 'SebastianBergmann\\Diff\\Differ' => $vendorDir . '/sebastian/diff/src/Differ.php', - 'SebastianBergmann\\Diff\\LCS\\LongestCommonSubsequence' => $vendorDir . '/sebastian/diff/src/LCS/LongestCommonSubsequence.php', - 'SebastianBergmann\\Diff\\LCS\\MemoryEfficientImplementation' => $vendorDir . '/sebastian/diff/src/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php', - 'SebastianBergmann\\Diff\\LCS\\TimeEfficientImplementation' => $vendorDir . '/sebastian/diff/src/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php', - 'SebastianBergmann\\Diff\\Line' => $vendorDir . '/sebastian/diff/src/Line.php', - 'SebastianBergmann\\Diff\\Parser' => $vendorDir . '/sebastian/diff/src/Parser.php', - 'SebastianBergmann\\Environment\\Console' => $vendorDir . '/sebastian/environment/src/Console.php', - 'SebastianBergmann\\Environment\\Runtime' => $vendorDir . '/sebastian/environment/src/Runtime.php', - 'SebastianBergmann\\Exporter\\Exporter' => $vendorDir . '/sebastian/exporter/src/Exporter.php', - 'SebastianBergmann\\GlobalState\\Blacklist' => $vendorDir . '/sebastian/global-state/src/Blacklist.php', - 'SebastianBergmann\\GlobalState\\CodeExporter' => $vendorDir . '/sebastian/global-state/src/CodeExporter.php', - 'SebastianBergmann\\GlobalState\\Exception' => $vendorDir . '/sebastian/global-state/src/Exception.php', - 'SebastianBergmann\\GlobalState\\Restorer' => $vendorDir . '/sebastian/global-state/src/Restorer.php', - 'SebastianBergmann\\GlobalState\\RuntimeException' => $vendorDir . '/sebastian/global-state/src/RuntimeException.php', - 'SebastianBergmann\\GlobalState\\Snapshot' => $vendorDir . '/sebastian/global-state/src/Snapshot.php', - 'SebastianBergmann\\ObjectEnumerator\\Enumerator' => $vendorDir . '/sebastian/object-enumerator/src/Enumerator.php', - 'SebastianBergmann\\ObjectEnumerator\\Exception' => $vendorDir . '/sebastian/object-enumerator/src/Exception.php', - 'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => $vendorDir . '/sebastian/object-enumerator/src/InvalidArgumentException.php', - 'SebastianBergmann\\RecursionContext\\Context' => $vendorDir . '/sebastian/recursion-context/src/Context.php', - 'SebastianBergmann\\RecursionContext\\Exception' => $vendorDir . '/sebastian/recursion-context/src/Exception.php', - 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => $vendorDir . '/sebastian/recursion-context/src/InvalidArgumentException.php', - 'SebastianBergmann\\ResourceOperations\\ResourceOperations' => $vendorDir . '/sebastian/resource-operations/src/ResourceOperations.php', - 'SebastianBergmann\\Version' => $vendorDir . '/sebastian/version/src/Version.php', - 'Seld\\JsonLint\\DuplicateKeyException' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php', - 'Seld\\JsonLint\\JsonParser' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/JsonParser.php', - 'Seld\\JsonLint\\Lexer' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/Lexer.php', - 'Seld\\JsonLint\\ParsingException' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/ParsingException.php', - 'Seld\\JsonLint\\Undefined' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/Undefined.php', - 'Seld\\PharUtils\\Timestamps' => $vendorDir . '/seld/phar-utils/src/Timestamps.php', - 'Symfony\\Component\\BrowserKit\\AbstractBrowser' => $vendorDir . '/symfony/browser-kit/AbstractBrowser.php', - 'Symfony\\Component\\BrowserKit\\Client' => $vendorDir . '/symfony/browser-kit/Client.php', - 'Symfony\\Component\\BrowserKit\\Cookie' => $vendorDir . '/symfony/browser-kit/Cookie.php', - 'Symfony\\Component\\BrowserKit\\CookieJar' => $vendorDir . '/symfony/browser-kit/CookieJar.php', - 'Symfony\\Component\\BrowserKit\\Exception\\BadMethodCallException' => $vendorDir . '/symfony/browser-kit/Exception/BadMethodCallException.php', - 'Symfony\\Component\\BrowserKit\\History' => $vendorDir . '/symfony/browser-kit/History.php', - 'Symfony\\Component\\BrowserKit\\HttpBrowser' => $vendorDir . '/symfony/browser-kit/HttpBrowser.php', - 'Symfony\\Component\\BrowserKit\\Request' => $vendorDir . '/symfony/browser-kit/Request.php', - 'Symfony\\Component\\BrowserKit\\Response' => $vendorDir . '/symfony/browser-kit/Response.php', - 'Symfony\\Component\\BrowserKit\\Test\\Constraint\\BrowserCookieValueSame' => $vendorDir . '/symfony/browser-kit/Test/Constraint/BrowserCookieValueSame.php', - 'Symfony\\Component\\BrowserKit\\Test\\Constraint\\BrowserHasCookie' => $vendorDir . '/symfony/browser-kit/Test/Constraint/BrowserHasCookie.php', - 'Symfony\\Component\\Config\\ConfigCache' => $vendorDir . '/symfony/config/ConfigCache.php', - 'Symfony\\Component\\Config\\ConfigCacheFactory' => $vendorDir . '/symfony/config/ConfigCacheFactory.php', - 'Symfony\\Component\\Config\\ConfigCacheFactoryInterface' => $vendorDir . '/symfony/config/ConfigCacheFactoryInterface.php', - 'Symfony\\Component\\Config\\ConfigCacheInterface' => $vendorDir . '/symfony/config/ConfigCacheInterface.php', - 'Symfony\\Component\\Config\\Definition\\ArrayNode' => $vendorDir . '/symfony/config/Definition/ArrayNode.php', - 'Symfony\\Component\\Config\\Definition\\BaseNode' => $vendorDir . '/symfony/config/Definition/BaseNode.php', - 'Symfony\\Component\\Config\\Definition\\BooleanNode' => $vendorDir . '/symfony/config/Definition/BooleanNode.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\ArrayNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/ArrayNodeDefinition.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\BooleanNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/BooleanNodeDefinition.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\EnumNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/EnumNodeDefinition.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\ExprBuilder' => $vendorDir . '/symfony/config/Definition/Builder/ExprBuilder.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\FloatNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/FloatNodeDefinition.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\IntegerNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/IntegerNodeDefinition.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\MergeBuilder' => $vendorDir . '/symfony/config/Definition/Builder/MergeBuilder.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\NodeBuilder' => $vendorDir . '/symfony/config/Definition/Builder/NodeBuilder.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/NodeDefinition.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface' => $vendorDir . '/symfony/config/Definition/Builder/NodeParentInterface.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\NormalizationBuilder' => $vendorDir . '/symfony/config/Definition/Builder/NormalizationBuilder.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\NumericNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/NumericNodeDefinition.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\ParentNodeDefinitionInterface' => $vendorDir . '/symfony/config/Definition/Builder/ParentNodeDefinitionInterface.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\ScalarNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/ScalarNodeDefinition.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\TreeBuilder' => $vendorDir . '/symfony/config/Definition/Builder/TreeBuilder.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\ValidationBuilder' => $vendorDir . '/symfony/config/Definition/Builder/ValidationBuilder.php', - 'Symfony\\Component\\Config\\Definition\\Builder\\VariableNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/VariableNodeDefinition.php', - 'Symfony\\Component\\Config\\Definition\\ConfigurationInterface' => $vendorDir . '/symfony/config/Definition/ConfigurationInterface.php', - 'Symfony\\Component\\Config\\Definition\\Dumper\\XmlReferenceDumper' => $vendorDir . '/symfony/config/Definition/Dumper/XmlReferenceDumper.php', - 'Symfony\\Component\\Config\\Definition\\Dumper\\YamlReferenceDumper' => $vendorDir . '/symfony/config/Definition/Dumper/YamlReferenceDumper.php', - 'Symfony\\Component\\Config\\Definition\\EnumNode' => $vendorDir . '/symfony/config/Definition/EnumNode.php', - 'Symfony\\Component\\Config\\Definition\\Exception\\DuplicateKeyException' => $vendorDir . '/symfony/config/Definition/Exception/DuplicateKeyException.php', - 'Symfony\\Component\\Config\\Definition\\Exception\\Exception' => $vendorDir . '/symfony/config/Definition/Exception/Exception.php', - 'Symfony\\Component\\Config\\Definition\\Exception\\ForbiddenOverwriteException' => $vendorDir . '/symfony/config/Definition/Exception/ForbiddenOverwriteException.php', - 'Symfony\\Component\\Config\\Definition\\Exception\\InvalidConfigurationException' => $vendorDir . '/symfony/config/Definition/Exception/InvalidConfigurationException.php', - 'Symfony\\Component\\Config\\Definition\\Exception\\InvalidDefinitionException' => $vendorDir . '/symfony/config/Definition/Exception/InvalidDefinitionException.php', - 'Symfony\\Component\\Config\\Definition\\Exception\\InvalidTypeException' => $vendorDir . '/symfony/config/Definition/Exception/InvalidTypeException.php', - 'Symfony\\Component\\Config\\Definition\\Exception\\UnsetKeyException' => $vendorDir . '/symfony/config/Definition/Exception/UnsetKeyException.php', - 'Symfony\\Component\\Config\\Definition\\FloatNode' => $vendorDir . '/symfony/config/Definition/FloatNode.php', - 'Symfony\\Component\\Config\\Definition\\IntegerNode' => $vendorDir . '/symfony/config/Definition/IntegerNode.php', - 'Symfony\\Component\\Config\\Definition\\NodeInterface' => $vendorDir . '/symfony/config/Definition/NodeInterface.php', - 'Symfony\\Component\\Config\\Definition\\NumericNode' => $vendorDir . '/symfony/config/Definition/NumericNode.php', - 'Symfony\\Component\\Config\\Definition\\Processor' => $vendorDir . '/symfony/config/Definition/Processor.php', - 'Symfony\\Component\\Config\\Definition\\PrototypeNodeInterface' => $vendorDir . '/symfony/config/Definition/PrototypeNodeInterface.php', - 'Symfony\\Component\\Config\\Definition\\PrototypedArrayNode' => $vendorDir . '/symfony/config/Definition/PrototypedArrayNode.php', - 'Symfony\\Component\\Config\\Definition\\ScalarNode' => $vendorDir . '/symfony/config/Definition/ScalarNode.php', - 'Symfony\\Component\\Config\\Definition\\VariableNode' => $vendorDir . '/symfony/config/Definition/VariableNode.php', - 'Symfony\\Component\\Config\\DependencyInjection\\ConfigCachePass' => $vendorDir . '/symfony/config/DependencyInjection/ConfigCachePass.php', - 'Symfony\\Component\\Config\\Exception\\FileLoaderImportCircularReferenceException' => $vendorDir . '/symfony/config/Exception/FileLoaderImportCircularReferenceException.php', - 'Symfony\\Component\\Config\\Exception\\FileLoaderLoadException' => $vendorDir . '/symfony/config/Exception/FileLoaderLoadException.php', - 'Symfony\\Component\\Config\\Exception\\FileLocatorFileNotFoundException' => $vendorDir . '/symfony/config/Exception/FileLocatorFileNotFoundException.php', - 'Symfony\\Component\\Config\\FileLocator' => $vendorDir . '/symfony/config/FileLocator.php', - 'Symfony\\Component\\Config\\FileLocatorInterface' => $vendorDir . '/symfony/config/FileLocatorInterface.php', - 'Symfony\\Component\\Config\\Loader\\DelegatingLoader' => $vendorDir . '/symfony/config/Loader/DelegatingLoader.php', - 'Symfony\\Component\\Config\\Loader\\FileLoader' => $vendorDir . '/symfony/config/Loader/FileLoader.php', - 'Symfony\\Component\\Config\\Loader\\GlobFileLoader' => $vendorDir . '/symfony/config/Loader/GlobFileLoader.php', - 'Symfony\\Component\\Config\\Loader\\Loader' => $vendorDir . '/symfony/config/Loader/Loader.php', - 'Symfony\\Component\\Config\\Loader\\LoaderInterface' => $vendorDir . '/symfony/config/Loader/LoaderInterface.php', - 'Symfony\\Component\\Config\\Loader\\LoaderResolver' => $vendorDir . '/symfony/config/Loader/LoaderResolver.php', - 'Symfony\\Component\\Config\\Loader\\LoaderResolverInterface' => $vendorDir . '/symfony/config/Loader/LoaderResolverInterface.php', - 'Symfony\\Component\\Config\\ResourceCheckerConfigCache' => $vendorDir . '/symfony/config/ResourceCheckerConfigCache.php', - 'Symfony\\Component\\Config\\ResourceCheckerConfigCacheFactory' => $vendorDir . '/symfony/config/ResourceCheckerConfigCacheFactory.php', - 'Symfony\\Component\\Config\\ResourceCheckerInterface' => $vendorDir . '/symfony/config/ResourceCheckerInterface.php', - 'Symfony\\Component\\Config\\Resource\\ClassExistenceResource' => $vendorDir . '/symfony/config/Resource/ClassExistenceResource.php', - 'Symfony\\Component\\Config\\Resource\\ComposerResource' => $vendorDir . '/symfony/config/Resource/ComposerResource.php', - 'Symfony\\Component\\Config\\Resource\\DirectoryResource' => $vendorDir . '/symfony/config/Resource/DirectoryResource.php', - 'Symfony\\Component\\Config\\Resource\\FileExistenceResource' => $vendorDir . '/symfony/config/Resource/FileExistenceResource.php', - 'Symfony\\Component\\Config\\Resource\\FileResource' => $vendorDir . '/symfony/config/Resource/FileResource.php', - 'Symfony\\Component\\Config\\Resource\\GlobResource' => $vendorDir . '/symfony/config/Resource/GlobResource.php', - 'Symfony\\Component\\Config\\Resource\\ReflectionClassResource' => $vendorDir . '/symfony/config/Resource/ReflectionClassResource.php', - 'Symfony\\Component\\Config\\Resource\\ReflectionMethodHhvmWrapper' => $vendorDir . '/symfony/config/Resource/ReflectionClassResource.php', - 'Symfony\\Component\\Config\\Resource\\ReflectionParameterHhvmWrapper' => $vendorDir . '/symfony/config/Resource/ReflectionClassResource.php', - 'Symfony\\Component\\Config\\Resource\\ResourceInterface' => $vendorDir . '/symfony/config/Resource/ResourceInterface.php', - 'Symfony\\Component\\Config\\Resource\\SelfCheckingResourceChecker' => $vendorDir . '/symfony/config/Resource/SelfCheckingResourceChecker.php', - 'Symfony\\Component\\Config\\Resource\\SelfCheckingResourceInterface' => $vendorDir . '/symfony/config/Resource/SelfCheckingResourceInterface.php', - 'Symfony\\Component\\Config\\Util\\Exception\\InvalidXmlException' => $vendorDir . '/symfony/config/Util/Exception/InvalidXmlException.php', - 'Symfony\\Component\\Config\\Util\\Exception\\XmlParsingException' => $vendorDir . '/symfony/config/Util/Exception/XmlParsingException.php', - 'Symfony\\Component\\Config\\Util\\XmlUtils' => $vendorDir . '/symfony/config/Util/XmlUtils.php', - 'Symfony\\Component\\Console\\Application' => $vendorDir . '/symfony/console/Application.php', - 'Symfony\\Component\\Console\\CommandLoader\\CommandLoaderInterface' => $vendorDir . '/symfony/console/CommandLoader/CommandLoaderInterface.php', - 'Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader' => $vendorDir . '/symfony/console/CommandLoader/ContainerCommandLoader.php', - 'Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader' => $vendorDir . '/symfony/console/CommandLoader/FactoryCommandLoader.php', - 'Symfony\\Component\\Console\\Command\\Command' => $vendorDir . '/symfony/console/Command/Command.php', - 'Symfony\\Component\\Console\\Command\\HelpCommand' => $vendorDir . '/symfony/console/Command/HelpCommand.php', - 'Symfony\\Component\\Console\\Command\\ListCommand' => $vendorDir . '/symfony/console/Command/ListCommand.php', - 'Symfony\\Component\\Console\\Command\\LockableTrait' => $vendorDir . '/symfony/console/Command/LockableTrait.php', - 'Symfony\\Component\\Console\\ConsoleEvents' => $vendorDir . '/symfony/console/ConsoleEvents.php', - 'Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass' => $vendorDir . '/symfony/console/DependencyInjection/AddConsoleCommandPass.php', - 'Symfony\\Component\\Console\\Descriptor\\ApplicationDescription' => $vendorDir . '/symfony/console/Descriptor/ApplicationDescription.php', - 'Symfony\\Component\\Console\\Descriptor\\Descriptor' => $vendorDir . '/symfony/console/Descriptor/Descriptor.php', - 'Symfony\\Component\\Console\\Descriptor\\DescriptorInterface' => $vendorDir . '/symfony/console/Descriptor/DescriptorInterface.php', - 'Symfony\\Component\\Console\\Descriptor\\JsonDescriptor' => $vendorDir . '/symfony/console/Descriptor/JsonDescriptor.php', - 'Symfony\\Component\\Console\\Descriptor\\MarkdownDescriptor' => $vendorDir . '/symfony/console/Descriptor/MarkdownDescriptor.php', - 'Symfony\\Component\\Console\\Descriptor\\TextDescriptor' => $vendorDir . '/symfony/console/Descriptor/TextDescriptor.php', - 'Symfony\\Component\\Console\\Descriptor\\XmlDescriptor' => $vendorDir . '/symfony/console/Descriptor/XmlDescriptor.php', - 'Symfony\\Component\\Console\\EventListener\\ErrorListener' => $vendorDir . '/symfony/console/EventListener/ErrorListener.php', - 'Symfony\\Component\\Console\\Event\\ConsoleCommandEvent' => $vendorDir . '/symfony/console/Event/ConsoleCommandEvent.php', - 'Symfony\\Component\\Console\\Event\\ConsoleErrorEvent' => $vendorDir . '/symfony/console/Event/ConsoleErrorEvent.php', - 'Symfony\\Component\\Console\\Event\\ConsoleEvent' => $vendorDir . '/symfony/console/Event/ConsoleEvent.php', - 'Symfony\\Component\\Console\\Event\\ConsoleExceptionEvent' => $vendorDir . '/symfony/console/Event/ConsoleExceptionEvent.php', - 'Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent' => $vendorDir . '/symfony/console/Event/ConsoleTerminateEvent.php', - 'Symfony\\Component\\Console\\Exception\\CommandNotFoundException' => $vendorDir . '/symfony/console/Exception/CommandNotFoundException.php', - 'Symfony\\Component\\Console\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/console/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Console\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/console/Exception/InvalidArgumentException.php', - 'Symfony\\Component\\Console\\Exception\\InvalidOptionException' => $vendorDir . '/symfony/console/Exception/InvalidOptionException.php', - 'Symfony\\Component\\Console\\Exception\\LogicException' => $vendorDir . '/symfony/console/Exception/LogicException.php', - 'Symfony\\Component\\Console\\Exception\\RuntimeException' => $vendorDir . '/symfony/console/Exception/RuntimeException.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatter' => $vendorDir . '/symfony/console/Formatter/OutputFormatter.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterInterface.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyle.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleInterface.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleStack.php', - 'Symfony\\Component\\Console\\Helper\\DebugFormatterHelper' => $vendorDir . '/symfony/console/Helper/DebugFormatterHelper.php', - 'Symfony\\Component\\Console\\Helper\\DescriptorHelper' => $vendorDir . '/symfony/console/Helper/DescriptorHelper.php', - 'Symfony\\Component\\Console\\Helper\\FormatterHelper' => $vendorDir . '/symfony/console/Helper/FormatterHelper.php', - 'Symfony\\Component\\Console\\Helper\\Helper' => $vendorDir . '/symfony/console/Helper/Helper.php', - 'Symfony\\Component\\Console\\Helper\\HelperInterface' => $vendorDir . '/symfony/console/Helper/HelperInterface.php', - 'Symfony\\Component\\Console\\Helper\\HelperSet' => $vendorDir . '/symfony/console/Helper/HelperSet.php', - 'Symfony\\Component\\Console\\Helper\\InputAwareHelper' => $vendorDir . '/symfony/console/Helper/InputAwareHelper.php', - 'Symfony\\Component\\Console\\Helper\\ProcessHelper' => $vendorDir . '/symfony/console/Helper/ProcessHelper.php', - 'Symfony\\Component\\Console\\Helper\\ProgressBar' => $vendorDir . '/symfony/console/Helper/ProgressBar.php', - 'Symfony\\Component\\Console\\Helper\\ProgressIndicator' => $vendorDir . '/symfony/console/Helper/ProgressIndicator.php', - 'Symfony\\Component\\Console\\Helper\\QuestionHelper' => $vendorDir . '/symfony/console/Helper/QuestionHelper.php', - 'Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper' => $vendorDir . '/symfony/console/Helper/SymfonyQuestionHelper.php', - 'Symfony\\Component\\Console\\Helper\\Table' => $vendorDir . '/symfony/console/Helper/Table.php', - 'Symfony\\Component\\Console\\Helper\\TableCell' => $vendorDir . '/symfony/console/Helper/TableCell.php', - 'Symfony\\Component\\Console\\Helper\\TableSeparator' => $vendorDir . '/symfony/console/Helper/TableSeparator.php', - 'Symfony\\Component\\Console\\Helper\\TableStyle' => $vendorDir . '/symfony/console/Helper/TableStyle.php', - 'Symfony\\Component\\Console\\Input\\ArgvInput' => $vendorDir . '/symfony/console/Input/ArgvInput.php', - 'Symfony\\Component\\Console\\Input\\ArrayInput' => $vendorDir . '/symfony/console/Input/ArrayInput.php', - 'Symfony\\Component\\Console\\Input\\Input' => $vendorDir . '/symfony/console/Input/Input.php', - 'Symfony\\Component\\Console\\Input\\InputArgument' => $vendorDir . '/symfony/console/Input/InputArgument.php', - 'Symfony\\Component\\Console\\Input\\InputAwareInterface' => $vendorDir . '/symfony/console/Input/InputAwareInterface.php', - 'Symfony\\Component\\Console\\Input\\InputDefinition' => $vendorDir . '/symfony/console/Input/InputDefinition.php', - 'Symfony\\Component\\Console\\Input\\InputInterface' => $vendorDir . '/symfony/console/Input/InputInterface.php', - 'Symfony\\Component\\Console\\Input\\InputOption' => $vendorDir . '/symfony/console/Input/InputOption.php', - 'Symfony\\Component\\Console\\Input\\StreamableInputInterface' => $vendorDir . '/symfony/console/Input/StreamableInputInterface.php', - 'Symfony\\Component\\Console\\Input\\StringInput' => $vendorDir . '/symfony/console/Input/StringInput.php', - 'Symfony\\Component\\Console\\Logger\\ConsoleLogger' => $vendorDir . '/symfony/console/Logger/ConsoleLogger.php', - 'Symfony\\Component\\Console\\Output\\BufferedOutput' => $vendorDir . '/symfony/console/Output/BufferedOutput.php', - 'Symfony\\Component\\Console\\Output\\ConsoleOutput' => $vendorDir . '/symfony/console/Output/ConsoleOutput.php', - 'Symfony\\Component\\Console\\Output\\ConsoleOutputInterface' => $vendorDir . '/symfony/console/Output/ConsoleOutputInterface.php', - 'Symfony\\Component\\Console\\Output\\NullOutput' => $vendorDir . '/symfony/console/Output/NullOutput.php', - 'Symfony\\Component\\Console\\Output\\Output' => $vendorDir . '/symfony/console/Output/Output.php', - 'Symfony\\Component\\Console\\Output\\OutputInterface' => $vendorDir . '/symfony/console/Output/OutputInterface.php', - 'Symfony\\Component\\Console\\Output\\StreamOutput' => $vendorDir . '/symfony/console/Output/StreamOutput.php', - 'Symfony\\Component\\Console\\Question\\ChoiceQuestion' => $vendorDir . '/symfony/console/Question/ChoiceQuestion.php', - 'Symfony\\Component\\Console\\Question\\ConfirmationQuestion' => $vendorDir . '/symfony/console/Question/ConfirmationQuestion.php', - 'Symfony\\Component\\Console\\Question\\Question' => $vendorDir . '/symfony/console/Question/Question.php', - 'Symfony\\Component\\Console\\Style\\OutputStyle' => $vendorDir . '/symfony/console/Style/OutputStyle.php', - 'Symfony\\Component\\Console\\Style\\StyleInterface' => $vendorDir . '/symfony/console/Style/StyleInterface.php', - 'Symfony\\Component\\Console\\Style\\SymfonyStyle' => $vendorDir . '/symfony/console/Style/SymfonyStyle.php', - 'Symfony\\Component\\Console\\Terminal' => $vendorDir . '/symfony/console/Terminal.php', - 'Symfony\\Component\\Console\\Tester\\ApplicationTester' => $vendorDir . '/symfony/console/Tester/ApplicationTester.php', - 'Symfony\\Component\\Console\\Tester\\CommandTester' => $vendorDir . '/symfony/console/Tester/CommandTester.php', - 'Symfony\\Component\\CssSelector\\CssSelectorConverter' => $vendorDir . '/symfony/css-selector/CssSelectorConverter.php', - 'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/css-selector/Exception/ExceptionInterface.php', - 'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => $vendorDir . '/symfony/css-selector/Exception/ExpressionErrorException.php', - 'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => $vendorDir . '/symfony/css-selector/Exception/InternalErrorException.php', - 'Symfony\\Component\\CssSelector\\Exception\\ParseException' => $vendorDir . '/symfony/css-selector/Exception/ParseException.php', - 'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => $vendorDir . '/symfony/css-selector/Exception/SyntaxErrorException.php', - 'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => $vendorDir . '/symfony/css-selector/Node/AbstractNode.php', - 'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => $vendorDir . '/symfony/css-selector/Node/AttributeNode.php', - 'Symfony\\Component\\CssSelector\\Node\\ClassNode' => $vendorDir . '/symfony/css-selector/Node/ClassNode.php', - 'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => $vendorDir . '/symfony/css-selector/Node/CombinedSelectorNode.php', - 'Symfony\\Component\\CssSelector\\Node\\ElementNode' => $vendorDir . '/symfony/css-selector/Node/ElementNode.php', - 'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => $vendorDir . '/symfony/css-selector/Node/FunctionNode.php', - 'Symfony\\Component\\CssSelector\\Node\\HashNode' => $vendorDir . '/symfony/css-selector/Node/HashNode.php', - 'Symfony\\Component\\CssSelector\\Node\\NegationNode' => $vendorDir . '/symfony/css-selector/Node/NegationNode.php', - 'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => $vendorDir . '/symfony/css-selector/Node/NodeInterface.php', - 'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => $vendorDir . '/symfony/css-selector/Node/PseudoNode.php', - 'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => $vendorDir . '/symfony/css-selector/Node/SelectorNode.php', - 'Symfony\\Component\\CssSelector\\Node\\Specificity' => $vendorDir . '/symfony/css-selector/Node/Specificity.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/CommentHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => $vendorDir . '/symfony/css-selector/Parser/Handler/HandlerInterface.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/HashHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/NumberHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/StringHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Parser' => $vendorDir . '/symfony/css-selector/Parser/Parser.php', - 'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => $vendorDir . '/symfony/css-selector/Parser/ParserInterface.php', - 'Symfony\\Component\\CssSelector\\Parser\\Reader' => $vendorDir . '/symfony/css-selector/Parser/Reader.php', - 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ClassParser.php', - 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ElementParser.php', - 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php', - 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/HashParser.php', - 'Symfony\\Component\\CssSelector\\Parser\\Token' => $vendorDir . '/symfony/css-selector/Parser/Token.php', - 'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => $vendorDir . '/symfony/css-selector/Parser/TokenStream.php', - 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php', - 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php', - 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/AbstractExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/CombinationExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => $vendorDir . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/FunctionExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/HtmlExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/NodeExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Translator' => $vendorDir . '/symfony/css-selector/XPath/Translator.php', - 'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => $vendorDir . '/symfony/css-selector/XPath/TranslatorInterface.php', - 'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => $vendorDir . '/symfony/css-selector/XPath/XPathExpr.php', - 'Symfony\\Component\\Debug\\BufferingLogger' => $vendorDir . '/symfony/debug/BufferingLogger.php', - 'Symfony\\Component\\Debug\\Debug' => $vendorDir . '/symfony/debug/Debug.php', - 'Symfony\\Component\\Debug\\DebugClassLoader' => $vendorDir . '/symfony/debug/DebugClassLoader.php', - 'Symfony\\Component\\Debug\\ErrorHandler' => $vendorDir . '/symfony/debug/ErrorHandler.php', - 'Symfony\\Component\\Debug\\ExceptionHandler' => $vendorDir . '/symfony/debug/ExceptionHandler.php', - 'Symfony\\Component\\Debug\\Exception\\ClassNotFoundException' => $vendorDir . '/symfony/debug/Exception/ClassNotFoundException.php', - 'Symfony\\Component\\Debug\\Exception\\ContextErrorException' => $vendorDir . '/symfony/debug/Exception/ContextErrorException.php', - 'Symfony\\Component\\Debug\\Exception\\FatalErrorException' => $vendorDir . '/symfony/debug/Exception/FatalErrorException.php', - 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError' => $vendorDir . '/symfony/debug/Exception/FatalThrowableError.php', - 'Symfony\\Component\\Debug\\Exception\\FlattenException' => $vendorDir . '/symfony/debug/Exception/FlattenException.php', - 'Symfony\\Component\\Debug\\Exception\\OutOfMemoryException' => $vendorDir . '/symfony/debug/Exception/OutOfMemoryException.php', - 'Symfony\\Component\\Debug\\Exception\\SilencedErrorContext' => $vendorDir . '/symfony/debug/Exception/SilencedErrorContext.php', - 'Symfony\\Component\\Debug\\Exception\\UndefinedFunctionException' => $vendorDir . '/symfony/debug/Exception/UndefinedFunctionException.php', - 'Symfony\\Component\\Debug\\Exception\\UndefinedMethodException' => $vendorDir . '/symfony/debug/Exception/UndefinedMethodException.php', - 'Symfony\\Component\\Debug\\FatalErrorHandler\\ClassNotFoundFatalErrorHandler' => $vendorDir . '/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php', - 'Symfony\\Component\\Debug\\FatalErrorHandler\\FatalErrorHandlerInterface' => $vendorDir . '/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php', - 'Symfony\\Component\\Debug\\FatalErrorHandler\\UndefinedFunctionFatalErrorHandler' => $vendorDir . '/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php', - 'Symfony\\Component\\Debug\\FatalErrorHandler\\UndefinedMethodFatalErrorHandler' => $vendorDir . '/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php', - 'Symfony\\Component\\DependencyInjection\\Alias' => $vendorDir . '/symfony/dependency-injection/Alias.php', - 'Symfony\\Component\\DependencyInjection\\Argument\\ArgumentInterface' => $vendorDir . '/symfony/dependency-injection/Argument/ArgumentInterface.php', - 'Symfony\\Component\\DependencyInjection\\Argument\\BoundArgument' => $vendorDir . '/symfony/dependency-injection/Argument/BoundArgument.php', - 'Symfony\\Component\\DependencyInjection\\Argument\\IteratorArgument' => $vendorDir . '/symfony/dependency-injection/Argument/IteratorArgument.php', - 'Symfony\\Component\\DependencyInjection\\Argument\\RewindableGenerator' => $vendorDir . '/symfony/dependency-injection/Argument/RewindableGenerator.php', - 'Symfony\\Component\\DependencyInjection\\Argument\\ServiceClosureArgument' => $vendorDir . '/symfony/dependency-injection/Argument/ServiceClosureArgument.php', - 'Symfony\\Component\\DependencyInjection\\Argument\\TaggedIteratorArgument' => $vendorDir . '/symfony/dependency-injection/Argument/TaggedIteratorArgument.php', - 'Symfony\\Component\\DependencyInjection\\ChildDefinition' => $vendorDir . '/symfony/dependency-injection/ChildDefinition.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\AbstractRecursivePass' => $vendorDir . '/symfony/dependency-injection/Compiler/AbstractRecursivePass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\AnalyzeServiceReferencesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/AnalyzeServiceReferencesPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\AutoAliasServicePass' => $vendorDir . '/symfony/dependency-injection/Compiler/AutoAliasServicePass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\AutowireExceptionPass' => $vendorDir . '/symfony/dependency-injection/Compiler/AutowireExceptionPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\AutowirePass' => $vendorDir . '/symfony/dependency-injection/Compiler/AutowirePass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\AutowireRequiredMethodsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/AutowireRequiredMethodsPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\CheckArgumentsValidityPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckArgumentsValidityPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\CheckCircularReferencesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckCircularReferencesPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\CheckDefinitionValidityPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckDefinitionValidityPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\CheckExceptionOnInvalidReferenceBehaviorPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\CheckReferenceValidityPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckReferenceValidityPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\Compiler' => $vendorDir . '/symfony/dependency-injection/Compiler/Compiler.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\CompilerPassInterface' => $vendorDir . '/symfony/dependency-injection/Compiler/CompilerPassInterface.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\DecoratorServicePass' => $vendorDir . '/symfony/dependency-injection/Compiler/DecoratorServicePass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\DefinitionErrorExceptionPass' => $vendorDir . '/symfony/dependency-injection/Compiler/DefinitionErrorExceptionPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ExtensionCompilerPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ExtensionCompilerPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\FactoryReturnTypePass' => $vendorDir . '/symfony/dependency-injection/Compiler/FactoryReturnTypePass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\InlineServiceDefinitionsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/InlineServiceDefinitionsPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\LoggingFormatter' => $vendorDir . '/symfony/dependency-injection/Compiler/LoggingFormatter.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationContainerBuilder' => $vendorDir . '/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationParameterBag' => $vendorDir . '/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationPass' => $vendorDir . '/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\PassConfig' => $vendorDir . '/symfony/dependency-injection/Compiler/PassConfig.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\PriorityTaggedServiceTrait' => $vendorDir . '/symfony/dependency-injection/Compiler/PriorityTaggedServiceTrait.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\RegisterEnvVarProcessorsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RegisterEnvVarProcessorsPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\RegisterServiceSubscribersPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RegisterServiceSubscribersPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\RemoveAbstractDefinitionsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RemoveAbstractDefinitionsPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\RemovePrivateAliasesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RemovePrivateAliasesPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\RemoveUnusedDefinitionsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RemoveUnusedDefinitionsPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\RepeatablePassInterface' => $vendorDir . '/symfony/dependency-injection/Compiler/RepeatablePassInterface.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\RepeatedPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RepeatedPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ReplaceAliasByActualDefinitionPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ReplaceAliasByActualDefinitionPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveBindingsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveBindingsPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveChildDefinitionsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveChildDefinitionsPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveClassPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveClassPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveDefinitionTemplatesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveDefinitionTemplatesPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveEnvPlaceholdersPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveEnvPlaceholdersPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveFactoryClassPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveFactoryClassPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveHotPathPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveHotPathPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveInstanceofConditionalsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveInstanceofConditionalsPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveInvalidReferencesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveInvalidReferencesPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveNamedArgumentsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveNamedArgumentsPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveParameterPlaceHoldersPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveParameterPlaceHoldersPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolvePrivatesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolvePrivatesPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveReferencesToAliasesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveReferencesToAliasesPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveServiceSubscribersPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveServiceSubscribersPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveTaggedIteratorArgumentPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveTaggedIteratorArgumentPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ServiceLocatorTagPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ServiceLocatorTagPass.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraph' => $vendorDir . '/symfony/dependency-injection/Compiler/ServiceReferenceGraph.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraphEdge' => $vendorDir . '/symfony/dependency-injection/Compiler/ServiceReferenceGraphEdge.php', - 'Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraphNode' => $vendorDir . '/symfony/dependency-injection/Compiler/ServiceReferenceGraphNode.php', - 'Symfony\\Component\\DependencyInjection\\Config\\AutowireServiceResource' => $vendorDir . '/symfony/dependency-injection/Config/AutowireServiceResource.php', - 'Symfony\\Component\\DependencyInjection\\Config\\ContainerParametersResource' => $vendorDir . '/symfony/dependency-injection/Config/ContainerParametersResource.php', - 'Symfony\\Component\\DependencyInjection\\Config\\ContainerParametersResourceChecker' => $vendorDir . '/symfony/dependency-injection/Config/ContainerParametersResourceChecker.php', - 'Symfony\\Component\\DependencyInjection\\Container' => $vendorDir . '/symfony/dependency-injection/Container.php', - 'Symfony\\Component\\DependencyInjection\\ContainerAwareInterface' => $vendorDir . '/symfony/dependency-injection/ContainerAwareInterface.php', - 'Symfony\\Component\\DependencyInjection\\ContainerAwareTrait' => $vendorDir . '/symfony/dependency-injection/ContainerAwareTrait.php', - 'Symfony\\Component\\DependencyInjection\\ContainerBuilder' => $vendorDir . '/symfony/dependency-injection/ContainerBuilder.php', - 'Symfony\\Component\\DependencyInjection\\ContainerInterface' => $vendorDir . '/symfony/dependency-injection/ContainerInterface.php', - 'Symfony\\Component\\DependencyInjection\\Definition' => $vendorDir . '/symfony/dependency-injection/Definition.php', - 'Symfony\\Component\\DependencyInjection\\DefinitionDecorator' => $vendorDir . '/symfony/dependency-injection/DefinitionDecorator.php', - 'Symfony\\Component\\DependencyInjection\\Dumper\\Dumper' => $vendorDir . '/symfony/dependency-injection/Dumper/Dumper.php', - 'Symfony\\Component\\DependencyInjection\\Dumper\\DumperInterface' => $vendorDir . '/symfony/dependency-injection/Dumper/DumperInterface.php', - 'Symfony\\Component\\DependencyInjection\\Dumper\\GraphvizDumper' => $vendorDir . '/symfony/dependency-injection/Dumper/GraphvizDumper.php', - 'Symfony\\Component\\DependencyInjection\\Dumper\\PhpDumper' => $vendorDir . '/symfony/dependency-injection/Dumper/PhpDumper.php', - 'Symfony\\Component\\DependencyInjection\\Dumper\\XmlDumper' => $vendorDir . '/symfony/dependency-injection/Dumper/XmlDumper.php', - 'Symfony\\Component\\DependencyInjection\\Dumper\\YamlDumper' => $vendorDir . '/symfony/dependency-injection/Dumper/YamlDumper.php', - 'Symfony\\Component\\DependencyInjection\\EnvVarProcessor' => $vendorDir . '/symfony/dependency-injection/EnvVarProcessor.php', - 'Symfony\\Component\\DependencyInjection\\EnvVarProcessorInterface' => $vendorDir . '/symfony/dependency-injection/EnvVarProcessorInterface.php', - 'Symfony\\Component\\DependencyInjection\\Exception\\AutowiringFailedException' => $vendorDir . '/symfony/dependency-injection/Exception/AutowiringFailedException.php', - 'Symfony\\Component\\DependencyInjection\\Exception\\BadMethodCallException' => $vendorDir . '/symfony/dependency-injection/Exception/BadMethodCallException.php', - 'Symfony\\Component\\DependencyInjection\\Exception\\EnvNotFoundException' => $vendorDir . '/symfony/dependency-injection/Exception/EnvNotFoundException.php', - 'Symfony\\Component\\DependencyInjection\\Exception\\EnvParameterException' => $vendorDir . '/symfony/dependency-injection/Exception/EnvParameterException.php', - 'Symfony\\Component\\DependencyInjection\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/dependency-injection/Exception/ExceptionInterface.php', - 'Symfony\\Component\\DependencyInjection\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/dependency-injection/Exception/InvalidArgumentException.php', - 'Symfony\\Component\\DependencyInjection\\Exception\\LogicException' => $vendorDir . '/symfony/dependency-injection/Exception/LogicException.php', - 'Symfony\\Component\\DependencyInjection\\Exception\\OutOfBoundsException' => $vendorDir . '/symfony/dependency-injection/Exception/OutOfBoundsException.php', - 'Symfony\\Component\\DependencyInjection\\Exception\\ParameterCircularReferenceException' => $vendorDir . '/symfony/dependency-injection/Exception/ParameterCircularReferenceException.php', - 'Symfony\\Component\\DependencyInjection\\Exception\\ParameterNotFoundException' => $vendorDir . '/symfony/dependency-injection/Exception/ParameterNotFoundException.php', - 'Symfony\\Component\\DependencyInjection\\Exception\\RuntimeException' => $vendorDir . '/symfony/dependency-injection/Exception/RuntimeException.php', - 'Symfony\\Component\\DependencyInjection\\Exception\\ServiceCircularReferenceException' => $vendorDir . '/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php', - 'Symfony\\Component\\DependencyInjection\\Exception\\ServiceNotFoundException' => $vendorDir . '/symfony/dependency-injection/Exception/ServiceNotFoundException.php', - 'Symfony\\Component\\DependencyInjection\\ExpressionLanguage' => $vendorDir . '/symfony/dependency-injection/ExpressionLanguage.php', - 'Symfony\\Component\\DependencyInjection\\ExpressionLanguageProvider' => $vendorDir . '/symfony/dependency-injection/ExpressionLanguageProvider.php', - 'Symfony\\Component\\DependencyInjection\\Extension\\ConfigurationExtensionInterface' => $vendorDir . '/symfony/dependency-injection/Extension/ConfigurationExtensionInterface.php', - 'Symfony\\Component\\DependencyInjection\\Extension\\Extension' => $vendorDir . '/symfony/dependency-injection/Extension/Extension.php', - 'Symfony\\Component\\DependencyInjection\\Extension\\ExtensionInterface' => $vendorDir . '/symfony/dependency-injection/Extension/ExtensionInterface.php', - 'Symfony\\Component\\DependencyInjection\\Extension\\PrependExtensionInterface' => $vendorDir . '/symfony/dependency-injection/Extension/PrependExtensionInterface.php', - 'Symfony\\Component\\DependencyInjection\\LazyProxy\\Instantiator\\InstantiatorInterface' => $vendorDir . '/symfony/dependency-injection/LazyProxy/Instantiator/InstantiatorInterface.php', - 'Symfony\\Component\\DependencyInjection\\LazyProxy\\Instantiator\\RealServiceInstantiator' => $vendorDir . '/symfony/dependency-injection/LazyProxy/Instantiator/RealServiceInstantiator.php', - 'Symfony\\Component\\DependencyInjection\\LazyProxy\\PhpDumper\\DumperInterface' => $vendorDir . '/symfony/dependency-injection/LazyProxy/PhpDumper/DumperInterface.php', - 'Symfony\\Component\\DependencyInjection\\LazyProxy\\PhpDumper\\NullDumper' => $vendorDir . '/symfony/dependency-injection/LazyProxy/PhpDumper/NullDumper.php', - 'Symfony\\Component\\DependencyInjection\\LazyProxy\\ProxyHelper' => $vendorDir . '/symfony/dependency-injection/LazyProxy/ProxyHelper.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\ClosureLoader' => $vendorDir . '/symfony/dependency-injection/Loader/ClosureLoader.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AbstractConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/AbstractConfigurator.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AbstractServiceConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/AbstractServiceConfigurator.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\AliasConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/AliasConfigurator.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ContainerConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/ContainerConfigurator.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\DefaultsConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/DefaultsConfigurator.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\InlineServiceConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/InlineServiceConfigurator.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\InstanceofConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/InstanceofConfigurator.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ParametersConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/ParametersConfigurator.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\PrototypeConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/PrototypeConfigurator.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ReferenceConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/ReferenceConfigurator.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ServiceConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/ServiceConfigurator.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\ServicesConfigurator' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/ServicesConfigurator.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AbstractTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/AbstractTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ArgumentTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/ArgumentTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AutoconfigureTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/AutoconfigureTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\AutowireTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/AutowireTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\BindTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/BindTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\CallTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/CallTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ClassTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/ClassTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ConfiguratorTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/ConfiguratorTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\DecorateTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/DecorateTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\DeprecateTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/DeprecateTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\FactoryTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/FactoryTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\FileTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/FileTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\LazyTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/LazyTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ParentTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/ParentTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\PropertyTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/PropertyTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\PublicTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/PublicTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\ShareTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/ShareTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\SyntheticTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/SyntheticTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\Configurator\\Traits\\TagTrait' => $vendorDir . '/symfony/dependency-injection/Loader/Configurator/Traits/TagTrait.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\DirectoryLoader' => $vendorDir . '/symfony/dependency-injection/Loader/DirectoryLoader.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\FileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/FileLoader.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\GlobFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/GlobFileLoader.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\IniFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/IniFileLoader.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\PhpFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/PhpFileLoader.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\ProtectedPhpFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/PhpFileLoader.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\XmlFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/XmlFileLoader.php', - 'Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/YamlFileLoader.php', - 'Symfony\\Component\\DependencyInjection\\Parameter' => $vendorDir . '/symfony/dependency-injection/Parameter.php', - 'Symfony\\Component\\DependencyInjection\\ParameterBag\\EnvPlaceholderParameterBag' => $vendorDir . '/symfony/dependency-injection/ParameterBag/EnvPlaceholderParameterBag.php', - 'Symfony\\Component\\DependencyInjection\\ParameterBag\\FrozenParameterBag' => $vendorDir . '/symfony/dependency-injection/ParameterBag/FrozenParameterBag.php', - 'Symfony\\Component\\DependencyInjection\\ParameterBag\\ParameterBag' => $vendorDir . '/symfony/dependency-injection/ParameterBag/ParameterBag.php', - 'Symfony\\Component\\DependencyInjection\\ParameterBag\\ParameterBagInterface' => $vendorDir . '/symfony/dependency-injection/ParameterBag/ParameterBagInterface.php', - 'Symfony\\Component\\DependencyInjection\\Reference' => $vendorDir . '/symfony/dependency-injection/Reference.php', - 'Symfony\\Component\\DependencyInjection\\ResettableContainerInterface' => $vendorDir . '/symfony/dependency-injection/ResettableContainerInterface.php', - 'Symfony\\Component\\DependencyInjection\\ServiceLocator' => $vendorDir . '/symfony/dependency-injection/ServiceLocator.php', - 'Symfony\\Component\\DependencyInjection\\ServiceSubscriberInterface' => $vendorDir . '/symfony/dependency-injection/ServiceSubscriberInterface.php', - 'Symfony\\Component\\DependencyInjection\\TaggedContainerInterface' => $vendorDir . '/symfony/dependency-injection/TaggedContainerInterface.php', - 'Symfony\\Component\\DependencyInjection\\TypedReference' => $vendorDir . '/symfony/dependency-injection/TypedReference.php', - 'Symfony\\Component\\DependencyInjection\\Variable' => $vendorDir . '/symfony/dependency-injection/Variable.php', - 'Symfony\\Component\\DomCrawler\\AbstractUriElement' => $vendorDir . '/symfony/dom-crawler/AbstractUriElement.php', - 'Symfony\\Component\\DomCrawler\\Crawler' => $vendorDir . '/symfony/dom-crawler/Crawler.php', - 'Symfony\\Component\\DomCrawler\\Field\\ChoiceFormField' => $vendorDir . '/symfony/dom-crawler/Field/ChoiceFormField.php', - 'Symfony\\Component\\DomCrawler\\Field\\FileFormField' => $vendorDir . '/symfony/dom-crawler/Field/FileFormField.php', - 'Symfony\\Component\\DomCrawler\\Field\\FormField' => $vendorDir . '/symfony/dom-crawler/Field/FormField.php', - 'Symfony\\Component\\DomCrawler\\Field\\InputFormField' => $vendorDir . '/symfony/dom-crawler/Field/InputFormField.php', - 'Symfony\\Component\\DomCrawler\\Field\\TextareaFormField' => $vendorDir . '/symfony/dom-crawler/Field/TextareaFormField.php', - 'Symfony\\Component\\DomCrawler\\Form' => $vendorDir . '/symfony/dom-crawler/Form.php', - 'Symfony\\Component\\DomCrawler\\FormFieldRegistry' => $vendorDir . '/symfony/dom-crawler/FormFieldRegistry.php', - 'Symfony\\Component\\DomCrawler\\Image' => $vendorDir . '/symfony/dom-crawler/Image.php', - 'Symfony\\Component\\DomCrawler\\Link' => $vendorDir . '/symfony/dom-crawler/Link.php', - 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorAttributeValueSame' => $vendorDir . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorAttributeValueSame.php', - 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorExists' => $vendorDir . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorExists.php', - 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorTextContains' => $vendorDir . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorTextContains.php', - 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorTextSame' => $vendorDir . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorTextSame.php', - 'Symfony\\Component\\EventDispatcher\\ContainerAwareEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/ContainerAwareEventDispatcher.php', - 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php', - 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcherInterface' => $vendorDir . '/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php', - 'Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener' => $vendorDir . '/symfony/event-dispatcher/Debug/WrappedListener.php', - 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\ExtractingEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', - 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\RegisterListenersPass' => $vendorDir . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', - 'Symfony\\Component\\EventDispatcher\\Event' => $vendorDir . '/symfony/event-dispatcher/Event.php', - 'Symfony\\Component\\EventDispatcher\\EventDispatcher' => $vendorDir . '/symfony/event-dispatcher/EventDispatcher.php', - 'Symfony\\Component\\EventDispatcher\\EventDispatcherInterface' => $vendorDir . '/symfony/event-dispatcher/EventDispatcherInterface.php', - 'Symfony\\Component\\EventDispatcher\\EventSubscriberInterface' => $vendorDir . '/symfony/event-dispatcher/EventSubscriberInterface.php', - 'Symfony\\Component\\EventDispatcher\\GenericEvent' => $vendorDir . '/symfony/event-dispatcher/GenericEvent.php', - 'Symfony\\Component\\EventDispatcher\\ImmutableEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/ImmutableEventDispatcher.php', - 'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => $vendorDir . '/symfony/filesystem/Exception/FileNotFoundException.php', - 'Symfony\\Component\\Filesystem\\Exception\\IOException' => $vendorDir . '/symfony/filesystem/Exception/IOException.php', - 'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/IOExceptionInterface.php', - 'Symfony\\Component\\Filesystem\\Filesystem' => $vendorDir . '/symfony/filesystem/Filesystem.php', - 'Symfony\\Component\\Filesystem\\LockHandler' => $vendorDir . '/symfony/filesystem/LockHandler.php', - 'Symfony\\Component\\Finder\\Comparator\\Comparator' => $vendorDir . '/symfony/finder/Comparator/Comparator.php', - 'Symfony\\Component\\Finder\\Comparator\\DateComparator' => $vendorDir . '/symfony/finder/Comparator/DateComparator.php', - 'Symfony\\Component\\Finder\\Comparator\\NumberComparator' => $vendorDir . '/symfony/finder/Comparator/NumberComparator.php', - 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException' => $vendorDir . '/symfony/finder/Exception/AccessDeniedException.php', - 'Symfony\\Component\\Finder\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/finder/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Finder\\Finder' => $vendorDir . '/symfony/finder/Finder.php', - 'Symfony\\Component\\Finder\\Glob' => $vendorDir . '/symfony/finder/Glob.php', - 'Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator' => $vendorDir . '/symfony/finder/Iterator/CustomFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DateRangeFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DepthRangeFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator' => $vendorDir . '/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FileTypeFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilecontentFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilenameFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\FilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator' => $vendorDir . '/symfony/finder/Iterator/MultiplePcreFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\PathFilterIterator' => $vendorDir . '/symfony/finder/Iterator/PathFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator' => $vendorDir . '/symfony/finder/Iterator/RecursiveDirectoryIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/SizeRangeFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => $vendorDir . '/symfony/finder/Iterator/SortableIterator.php', - 'Symfony\\Component\\Finder\\SplFileInfo' => $vendorDir . '/symfony/finder/SplFileInfo.php', - 'Symfony\\Component\\Process\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/process/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Process\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/process/Exception/InvalidArgumentException.php', - 'Symfony\\Component\\Process\\Exception\\LogicException' => $vendorDir . '/symfony/process/Exception/LogicException.php', - 'Symfony\\Component\\Process\\Exception\\ProcessFailedException' => $vendorDir . '/symfony/process/Exception/ProcessFailedException.php', - 'Symfony\\Component\\Process\\Exception\\ProcessTimedOutException' => $vendorDir . '/symfony/process/Exception/ProcessTimedOutException.php', - 'Symfony\\Component\\Process\\Exception\\RuntimeException' => $vendorDir . '/symfony/process/Exception/RuntimeException.php', - 'Symfony\\Component\\Process\\ExecutableFinder' => $vendorDir . '/symfony/process/ExecutableFinder.php', - 'Symfony\\Component\\Process\\InputStream' => $vendorDir . '/symfony/process/InputStream.php', - 'Symfony\\Component\\Process\\PhpExecutableFinder' => $vendorDir . '/symfony/process/PhpExecutableFinder.php', - 'Symfony\\Component\\Process\\PhpProcess' => $vendorDir . '/symfony/process/PhpProcess.php', - 'Symfony\\Component\\Process\\Pipes\\AbstractPipes' => $vendorDir . '/symfony/process/Pipes/AbstractPipes.php', - 'Symfony\\Component\\Process\\Pipes\\PipesInterface' => $vendorDir . '/symfony/process/Pipes/PipesInterface.php', - 'Symfony\\Component\\Process\\Pipes\\UnixPipes' => $vendorDir . '/symfony/process/Pipes/UnixPipes.php', - 'Symfony\\Component\\Process\\Pipes\\WindowsPipes' => $vendorDir . '/symfony/process/Pipes/WindowsPipes.php', - 'Symfony\\Component\\Process\\Process' => $vendorDir . '/symfony/process/Process.php', - 'Symfony\\Component\\Process\\ProcessBuilder' => $vendorDir . '/symfony/process/ProcessBuilder.php', - 'Symfony\\Component\\Process\\ProcessUtils' => $vendorDir . '/symfony/process/ProcessUtils.php', - 'Symfony\\Component\\Translation\\Catalogue\\AbstractOperation' => $vendorDir . '/symfony/translation/Catalogue/AbstractOperation.php', - 'Symfony\\Component\\Translation\\Catalogue\\MergeOperation' => $vendorDir . '/symfony/translation/Catalogue/MergeOperation.php', - 'Symfony\\Component\\Translation\\Catalogue\\OperationInterface' => $vendorDir . '/symfony/translation/Catalogue/OperationInterface.php', - 'Symfony\\Component\\Translation\\Catalogue\\TargetOperation' => $vendorDir . '/symfony/translation/Catalogue/TargetOperation.php', - 'Symfony\\Component\\Translation\\Command\\XliffLintCommand' => $vendorDir . '/symfony/translation/Command/XliffLintCommand.php', - 'Symfony\\Component\\Translation\\DataCollectorTranslator' => $vendorDir . '/symfony/translation/DataCollectorTranslator.php', - 'Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector' => $vendorDir . '/symfony/translation/DataCollector/TranslationDataCollector.php', - 'Symfony\\Component\\Translation\\DependencyInjection\\TranslationDumperPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslationDumperPass.php', - 'Symfony\\Component\\Translation\\DependencyInjection\\TranslationExtractorPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslationExtractorPass.php', - 'Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslatorPass.php', - 'Symfony\\Component\\Translation\\Dumper\\CsvFileDumper' => $vendorDir . '/symfony/translation/Dumper/CsvFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\DumperInterface' => $vendorDir . '/symfony/translation/Dumper/DumperInterface.php', - 'Symfony\\Component\\Translation\\Dumper\\FileDumper' => $vendorDir . '/symfony/translation/Dumper/FileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper' => $vendorDir . '/symfony/translation/Dumper/IcuResFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\IniFileDumper' => $vendorDir . '/symfony/translation/Dumper/IniFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\JsonFileDumper' => $vendorDir . '/symfony/translation/Dumper/JsonFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\MoFileDumper' => $vendorDir . '/symfony/translation/Dumper/MoFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\PhpFileDumper' => $vendorDir . '/symfony/translation/Dumper/PhpFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\PoFileDumper' => $vendorDir . '/symfony/translation/Dumper/PoFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\QtFileDumper' => $vendorDir . '/symfony/translation/Dumper/QtFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\XliffFileDumper' => $vendorDir . '/symfony/translation/Dumper/XliffFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\YamlFileDumper' => $vendorDir . '/symfony/translation/Dumper/YamlFileDumper.php', - 'Symfony\\Component\\Translation\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/translation/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Translation\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/translation/Exception/InvalidArgumentException.php', - 'Symfony\\Component\\Translation\\Exception\\InvalidResourceException' => $vendorDir . '/symfony/translation/Exception/InvalidResourceException.php', - 'Symfony\\Component\\Translation\\Exception\\LogicException' => $vendorDir . '/symfony/translation/Exception/LogicException.php', - 'Symfony\\Component\\Translation\\Exception\\NotFoundResourceException' => $vendorDir . '/symfony/translation/Exception/NotFoundResourceException.php', - 'Symfony\\Component\\Translation\\Exception\\RuntimeException' => $vendorDir . '/symfony/translation/Exception/RuntimeException.php', - 'Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor' => $vendorDir . '/symfony/translation/Extractor/AbstractFileExtractor.php', - 'Symfony\\Component\\Translation\\Extractor\\ChainExtractor' => $vendorDir . '/symfony/translation/Extractor/ChainExtractor.php', - 'Symfony\\Component\\Translation\\Extractor\\ExtractorInterface' => $vendorDir . '/symfony/translation/Extractor/ExtractorInterface.php', - 'Symfony\\Component\\Translation\\Extractor\\PhpExtractor' => $vendorDir . '/symfony/translation/Extractor/PhpExtractor.php', - 'Symfony\\Component\\Translation\\Extractor\\PhpStringTokenParser' => $vendorDir . '/symfony/translation/Extractor/PhpStringTokenParser.php', - 'Symfony\\Component\\Translation\\Formatter\\ChoiceMessageFormatterInterface' => $vendorDir . '/symfony/translation/Formatter/ChoiceMessageFormatterInterface.php', - 'Symfony\\Component\\Translation\\Formatter\\MessageFormatter' => $vendorDir . '/symfony/translation/Formatter/MessageFormatter.php', - 'Symfony\\Component\\Translation\\Formatter\\MessageFormatterInterface' => $vendorDir . '/symfony/translation/Formatter/MessageFormatterInterface.php', - 'Symfony\\Component\\Translation\\IdentityTranslator' => $vendorDir . '/symfony/translation/IdentityTranslator.php', - 'Symfony\\Component\\Translation\\Interval' => $vendorDir . '/symfony/translation/Interval.php', - 'Symfony\\Component\\Translation\\Loader\\ArrayLoader' => $vendorDir . '/symfony/translation/Loader/ArrayLoader.php', - 'Symfony\\Component\\Translation\\Loader\\CsvFileLoader' => $vendorDir . '/symfony/translation/Loader/CsvFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\FileLoader' => $vendorDir . '/symfony/translation/Loader/FileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\IcuDatFileLoader' => $vendorDir . '/symfony/translation/Loader/IcuDatFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\IcuResFileLoader' => $vendorDir . '/symfony/translation/Loader/IcuResFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\IniFileLoader' => $vendorDir . '/symfony/translation/Loader/IniFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\JsonFileLoader' => $vendorDir . '/symfony/translation/Loader/JsonFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\LoaderInterface' => $vendorDir . '/symfony/translation/Loader/LoaderInterface.php', - 'Symfony\\Component\\Translation\\Loader\\MoFileLoader' => $vendorDir . '/symfony/translation/Loader/MoFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\PhpFileLoader' => $vendorDir . '/symfony/translation/Loader/PhpFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\PoFileLoader' => $vendorDir . '/symfony/translation/Loader/PoFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\QtFileLoader' => $vendorDir . '/symfony/translation/Loader/QtFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\XliffFileLoader' => $vendorDir . '/symfony/translation/Loader/XliffFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\YamlFileLoader' => $vendorDir . '/symfony/translation/Loader/YamlFileLoader.php', - 'Symfony\\Component\\Translation\\LoggingTranslator' => $vendorDir . '/symfony/translation/LoggingTranslator.php', - 'Symfony\\Component\\Translation\\MessageCatalogue' => $vendorDir . '/symfony/translation/MessageCatalogue.php', - 'Symfony\\Component\\Translation\\MessageCatalogueInterface' => $vendorDir . '/symfony/translation/MessageCatalogueInterface.php', - 'Symfony\\Component\\Translation\\MessageSelector' => $vendorDir . '/symfony/translation/MessageSelector.php', - 'Symfony\\Component\\Translation\\MetadataAwareInterface' => $vendorDir . '/symfony/translation/MetadataAwareInterface.php', - 'Symfony\\Component\\Translation\\PluralizationRules' => $vendorDir . '/symfony/translation/PluralizationRules.php', - 'Symfony\\Component\\Translation\\Reader\\TranslationReader' => $vendorDir . '/symfony/translation/Reader/TranslationReader.php', - 'Symfony\\Component\\Translation\\Reader\\TranslationReaderInterface' => $vendorDir . '/symfony/translation/Reader/TranslationReaderInterface.php', - 'Symfony\\Component\\Translation\\Translator' => $vendorDir . '/symfony/translation/Translator.php', - 'Symfony\\Component\\Translation\\TranslatorBagInterface' => $vendorDir . '/symfony/translation/TranslatorBagInterface.php', - 'Symfony\\Component\\Translation\\TranslatorInterface' => $vendorDir . '/symfony/translation/TranslatorInterface.php', - 'Symfony\\Component\\Translation\\Util\\ArrayConverter' => $vendorDir . '/symfony/translation/Util/ArrayConverter.php', - 'Symfony\\Component\\Translation\\Writer\\TranslationWriter' => $vendorDir . '/symfony/translation/Writer/TranslationWriter.php', - 'Symfony\\Component\\Translation\\Writer\\TranslationWriterInterface' => $vendorDir . '/symfony/translation/Writer/TranslationWriterInterface.php', - 'Symfony\\Component\\Yaml\\Command\\LintCommand' => $vendorDir . '/symfony/yaml/Command/LintCommand.php', - 'Symfony\\Component\\Yaml\\Dumper' => $vendorDir . '/symfony/yaml/Dumper.php', - 'Symfony\\Component\\Yaml\\Escaper' => $vendorDir . '/symfony/yaml/Escaper.php', - 'Symfony\\Component\\Yaml\\Exception\\DumpException' => $vendorDir . '/symfony/yaml/Exception/DumpException.php', - 'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/yaml/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Yaml\\Exception\\ParseException' => $vendorDir . '/symfony/yaml/Exception/ParseException.php', - 'Symfony\\Component\\Yaml\\Exception\\RuntimeException' => $vendorDir . '/symfony/yaml/Exception/RuntimeException.php', - 'Symfony\\Component\\Yaml\\Inline' => $vendorDir . '/symfony/yaml/Inline.php', - 'Symfony\\Component\\Yaml\\Parser' => $vendorDir . '/symfony/yaml/Parser.php', - 'Symfony\\Component\\Yaml\\Tag\\TaggedValue' => $vendorDir . '/symfony/yaml/Tag/TaggedValue.php', - 'Symfony\\Component\\Yaml\\Unescaper' => $vendorDir . '/symfony/yaml/Unescaper.php', - 'Symfony\\Component\\Yaml\\Yaml' => $vendorDir . '/symfony/yaml/Yaml.php', - 'Symfony\\Polyfill\\Ctype\\Ctype' => $vendorDir . '/symfony/polyfill-ctype/Ctype.php', - 'Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir . '/symfony/polyfill-mbstring/Mbstring.php', - 'Text_Template' => $vendorDir . '/phpunit/php-text-template/src/Template.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Actions' => $baseDir . '/includes/class-actions.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Cart_Items' => $baseDir . '/includes/connection/class-cart-items.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Coupons' => $baseDir . '/includes/connection/class-coupons.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Customers' => $baseDir . '/includes/connection/class-customers.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Order_Items' => $baseDir . '/includes/connection/class-order-items.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Orders' => $baseDir . '/includes/connection/class-orders.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Posts' => $baseDir . '/includes/connection/class-posts.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Product_Attributes' => $baseDir . '/includes/connection/class-product-attributes.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Products' => $baseDir . '/includes/connection/class-products.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Refunds' => $baseDir . '/includes/connection/class-refunds.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Shipping_Methods' => $baseDir . '/includes/connection/class-shipping-methods.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Tax_Rates' => $baseDir . '/includes/connection/class-tax-rates.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Variation_Attributes' => $baseDir . '/includes/connection/class-variation-attributes.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\WC_Connection' => $baseDir . '/includes/connection/class-wc-connection.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\WC_Terms' => $baseDir . '/includes/connection/class-wc-terms.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Cart_Item_Connection_Resolver' => $baseDir . '/includes/data/connection/class-cart-item-connection-resolver.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Coupon_Connection_Resolver' => $baseDir . '/includes/data/connection/class-coupon-connection-resolver.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Customer_Connection_Resolver' => $baseDir . '/includes/data/connection/class-customer-connection-resolver.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Order_Connection_Resolver' => $baseDir . '/includes/data/connection/class-order-connection-resolver.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Order_Item_Connection_Resolver' => $baseDir . '/includes/data/connection/class-order-item-connection-resolver.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Post_Connection_Resolver' => $baseDir . '/includes/data/connection/class-post-connection-resolver.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Product_Attribute_Connection_Resolver' => $baseDir . '/includes/data/connection/class-product-attribute-connection-resolver.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Product_Connection_Resolver' => $baseDir . '/includes/data/connection/class-product-connection-resolver.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Refund_Connection_Resolver' => $baseDir . '/includes/data/connection/class-refund-connection-resolver.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Shipping_Method_Connection_Resolver' => $baseDir . '/includes/data/connection/class-shipping-method-connection-resolver.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Tax_Rate_Connection_Resolver' => $baseDir . '/includes/data/connection/class-tax-rate-connection-resolver.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Variation_Attribute_Connection_Resolver' => $baseDir . '/includes/data/connection/class-variation-attribute-connection-resolver.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\WC_Connection_Resolver' => $baseDir . '/includes/data/connection/trait-wc-connection-resolver.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\WC_Terms_Connection_Resolver' => $baseDir . '/includes/data/connection/class-wc-terms-connection-resolver.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Factory' => $baseDir . '/includes/data/class-factory.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Loader\\WC_Customer_Loader' => $baseDir . '/includes/data/loader/class-wc-customer-loader.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Loader\\WC_Post_Crud_Loader' => $baseDir . '/includes/data/loader/class-wc-post-crud-loader.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Mutation\\Cart_Mutation' => $baseDir . '/includes/data/mutation/class-cart-mutation.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Mutation\\Customer_Mutation' => $baseDir . '/includes/data/mutation/class-customer-mutation.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Filters' => $baseDir . '/includes/class-filters.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Model\\Coupon' => $baseDir . '/includes/model/class-coupon.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Model\\Crud_CPT' => $baseDir . '/includes/model/class-crud-cpt.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Model\\Customer' => $baseDir . '/includes/model/class-customer.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Model\\Order' => $baseDir . '/includes/model/class-order.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Model\\Order_Item' => $baseDir . '/includes/model/class-order-item.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Model\\Product' => $baseDir . '/includes/model/class-product.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Model\\Product_Variation' => $baseDir . '/includes/model/class-product-variation.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Model\\Refund' => $baseDir . '/includes/model/class-refund.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Model\\Shipping_Method' => $baseDir . '/includes/model/class-shipping-method.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Model\\Shop_Manager_Caps' => $baseDir . '/includes/model/trait-shop-manager-caps.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Model\\Tax_Rate' => $baseDir . '/includes/model/class-tax-rate.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Mutation\\Cart_Add_Fee' => $baseDir . '/includes/mutation/class-cart-add-fee.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Mutation\\Cart_Add_Item' => $baseDir . '/includes/mutation/class-cart-add-item.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Mutation\\Cart_Apply_Coupon' => $baseDir . '/includes/mutation/class-cart-apply-coupon.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Mutation\\Cart_Empty' => $baseDir . '/includes/mutation/class-cart-empty.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Mutation\\Cart_Remove_Coupons' => $baseDir . '/includes/mutation/class-cart-remove-coupons.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Mutation\\Cart_Remove_Items' => $baseDir . '/includes/mutation/class-cart-remove-items.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Mutation\\Cart_Restore_Items' => $baseDir . '/includes/mutation/class-cart-restore-items.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Mutation\\Cart_Update_Item_Quantity' => $baseDir . '/includes/mutation/class-cart-update-item-quantity.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Mutation\\Customer_Register' => $baseDir . '/includes/mutation/class-customer-register.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Mutation\\Customer_Update' => $baseDir . '/includes/mutation/class-customer-update.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Backorders' => $baseDir . '/includes/type/enum/class-backorders.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Catalog_Visibility' => $baseDir . '/includes/type/enum/class-catalog-visibility.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Countries' => $baseDir . '/includes/type/enum/class-countries.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Customer_Connection_Orderby_Enum' => $baseDir . '/includes/type/enum/class-customer-connection-orderby-enum.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Discount_Type' => $baseDir . '/includes/type/enum/class-discount-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Manage_Stock' => $baseDir . '/includes/type/enum/class-manage-stock.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Order_Status' => $baseDir . '/includes/type/enum/class-order-status.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Product_Types' => $baseDir . '/includes/type/enum/class-product-types.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Stock_Status' => $baseDir . '/includes/type/enum/class-stock-status.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Tax_Class' => $baseDir . '/includes/type/enum/class-tax-class.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Tax_Rate_Connection_Orderby_Enum' => $baseDir . '/includes/type/enum/class-tax-rate-connection-orderby-enum.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Tax_Status' => $baseDir . '/includes/type/enum/class-tax-status.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\WC_Connection_Orderby_Enum' => $baseDir . '/includes/type/enum/class-wc-connection-orderby-enum.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Customer_Address_Input' => $baseDir . '/includes/type/input/class-customer-address-input.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Product_Attribute_Input' => $baseDir . '/includes/type/input/class-product-attribute-input.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Tax_Rate_Connection_Orderby_Input' => $baseDir . '/includes/type/input/class-tax-rate-connection-orderby-input.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\WC_Connection_Orderby_Input' => $baseDir . '/includes/type/input/class-wc-connection-orderby-input.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Cart_Type' => $baseDir . '/includes/type/object/class-cart-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Coupon_Type' => $baseDir . '/includes/type/object/class-coupon-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Customer_Address_Type' => $baseDir . '/includes/type/object/class-customer-address-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Customer_Type' => $baseDir . '/includes/type/object/class-customer-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Order_Item_Type' => $baseDir . '/includes/type/object/class-order-item-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Order_Type' => $baseDir . '/includes/type/object/class-order-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Product_Attribute_Type' => $baseDir . '/includes/type/object/class-product-attribute-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Product_Download_Type' => $baseDir . '/includes/type/object/class-product-download-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Product_Rating_Counter_Type' => $baseDir . '/includes/type/object/class-product-rating-counter-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Product_Type' => $baseDir . '/includes/type/object/class-product-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Product_Variation_Type' => $baseDir . '/includes/type/object/class-product-variation-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Refund_Type' => $baseDir . '/includes/type/object/class-refund-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Shipping_Method_Type' => $baseDir . '/includes/type/object/class-shipping-method-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Tax_Rate_Type' => $baseDir . '/includes/type/object/class-tax-rate-type.php', - 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Variation_Attribute_Type' => $baseDir . '/includes/type/object/class-variation-attribute-type.php', - 'WP_CLI' => $vendorDir . '/wp-cli/wp-cli/php/class-wp-cli.php', - 'WP_CLI\\AutoloadSplitter' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/AutoloadSplitter.php', - 'WP_CLI\\AutoloadSplitter\\AutoloadGenerator' => $vendorDir . '/wp-cli/autoload-splitter/src/AutoloadGenerator.php', - 'WP_CLI\\AutoloadSplitter\\ComposerPlugin' => $vendorDir . '/wp-cli/autoload-splitter/src/ComposerPlugin.php', - 'WP_CLI\\Autoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Autoloader.php', - 'WP_CLI\\Bootstrap\\AutoloaderStep' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/AutoloaderStep.php', - 'WP_CLI\\Bootstrap\\BootstrapState' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapState.php', - 'WP_CLI\\Bootstrap\\BootstrapStep' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapStep.php', - 'WP_CLI\\Bootstrap\\ConfigureRunner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/ConfigureRunner.php', - 'WP_CLI\\Bootstrap\\DeclareAbstractBaseCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareAbstractBaseCommand.php', - 'WP_CLI\\Bootstrap\\DeclareMainClass' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareMainClass.php', - 'WP_CLI\\Bootstrap\\DefineProtectedCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DefineProtectedCommands.php', - 'WP_CLI\\Bootstrap\\IncludeBundledAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeBundledAutoloader.php', - 'WP_CLI\\Bootstrap\\IncludeFallbackAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFallbackAutoloader.php', - 'WP_CLI\\Bootstrap\\IncludeFrameworkAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFrameworkAutoloader.php', - 'WP_CLI\\Bootstrap\\IncludePackageAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludePackageAutoloader.php', - 'WP_CLI\\Bootstrap\\InitializeColorization' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeColorization.php', - 'WP_CLI\\Bootstrap\\InitializeLogger' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeLogger.php', - 'WP_CLI\\Bootstrap\\LaunchRunner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php', - 'WP_CLI\\Bootstrap\\LoadDispatcher' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadDispatcher.php', - 'WP_CLI\\Bootstrap\\LoadRequiredCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadRequiredCommand.php', - 'WP_CLI\\Bootstrap\\LoadUtilityFunctions' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadUtilityFunctions.php', - 'WP_CLI\\Bootstrap\\RegisterDeferredCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterDeferredCommands.php', - 'WP_CLI\\Bootstrap\\RegisterFrameworkCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterFrameworkCommands.php', - 'WP_CLI\\Bootstrap\\RunnerInstance' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RunnerInstance.php', - 'WP_CLI\\Completions' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Completions.php', - 'WP_CLI\\ComposerIO' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ComposerIO.php', - 'WP_CLI\\Configurator' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Configurator.php', - 'WP_CLI\\Dispatcher\\CommandAddition' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandAddition.php', - 'WP_CLI\\Dispatcher\\CommandFactory' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandFactory.php', - 'WP_CLI\\Dispatcher\\CommandNamespace' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandNamespace.php', - 'WP_CLI\\Dispatcher\\CompositeCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CompositeCommand.php', - 'WP_CLI\\Dispatcher\\RootCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/RootCommand.php', - 'WP_CLI\\Dispatcher\\Subcommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/Subcommand.php', - 'WP_CLI\\DocParser' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/DocParser.php', - 'WP_CLI\\ExitException' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ExitException.php', - 'WP_CLI\\Extractor' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Extractor.php', - 'WP_CLI\\Fetchers\\Base' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Base.php', - 'WP_CLI\\FileCache' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/FileCache.php', - 'WP_CLI\\Formatter' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Formatter.php', - 'WP_CLI\\Iterators\\CSV' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/CSV.php', - 'WP_CLI\\Iterators\\Exception' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Exception.php', - 'WP_CLI\\Iterators\\Query' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Query.php', - 'WP_CLI\\Iterators\\Table' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Table.php', - 'WP_CLI\\Iterators\\Transform' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Transform.php', - 'WP_CLI\\Loggers\\Base' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Base.php', - 'WP_CLI\\Loggers\\Execution' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Execution.php', - 'WP_CLI\\Loggers\\Quiet' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Quiet.php', - 'WP_CLI\\Loggers\\Regular' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Regular.php', - 'WP_CLI\\NoOp' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/NoOp.php', - 'WP_CLI\\PackageManagerEventSubscriber' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/PackageManagerEventSubscriber.php', - 'WP_CLI\\Process' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Process.php', - 'WP_CLI\\ProcessRun' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ProcessRun.php', - 'WP_CLI\\Runner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Runner.php', - 'WP_CLI\\SynopsisParser' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/SynopsisParser.php', - 'WP_CLI\\SynopsisValidator' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/SynopsisValidator.php', - 'WP_CLI\\UpgraderSkin' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/UpgraderSkin.php', - 'WP_CLI\\WpHttpCacheManager' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/WpHttpCacheManager.php', - 'WP_CLI_Command' => $vendorDir . '/wp-cli/wp-cli/php/class-wp-cli-command.php', - 'WP_GraphQL_WooCommerce' => $baseDir . '/includes/class-wp-graphql-woocommerce.php', - 'Webmozart\\Assert\\Assert' => $vendorDir . '/webmozart/assert/src/Assert.php', - 'cli\\Arguments' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Arguments.php', - 'cli\\Colors' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Colors.php', - 'cli\\Memoize' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Memoize.php', - 'cli\\Notify' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Notify.php', - 'cli\\Progress' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Progress.php', - 'cli\\Shell' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Shell.php', - 'cli\\Streams' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Streams.php', - 'cli\\Table' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Table.php', - 'cli\\Tree' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Tree.php', - 'cli\\arguments\\Argument' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/Argument.php', - 'cli\\arguments\\HelpScreen' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/HelpScreen.php', - 'cli\\arguments\\InvalidArguments' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/InvalidArguments.php', - 'cli\\arguments\\Lexer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/Lexer.php', - 'cli\\notify\\Dots' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/notify/Dots.php', - 'cli\\notify\\Spinner' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/notify/Spinner.php', - 'cli\\progress\\Bar' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/progress/Bar.php', - 'cli\\table\\Ascii' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Ascii.php', - 'cli\\table\\Renderer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Renderer.php', - 'cli\\table\\Tabular' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Tabular.php', - 'cli\\tree\\Ascii' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Ascii.php', - 'cli\\tree\\Markdown' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Markdown.php', - 'cli\\tree\\Renderer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Renderer.php', - 'phpDocumentor\\Reflection\\DocBlock' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock.php', - 'phpDocumentor\\Reflection\\DocBlockFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlockFactory.php', - 'phpDocumentor\\Reflection\\DocBlockFactoryInterface' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php', - 'phpDocumentor\\Reflection\\DocBlock\\Description' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Description.php', - 'phpDocumentor\\Reflection\\DocBlock\\DescriptionFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/DescriptionFactory.php', - 'phpDocumentor\\Reflection\\DocBlock\\ExampleFinder' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/ExampleFinder.php', - 'phpDocumentor\\Reflection\\DocBlock\\Serializer' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Serializer.php', - 'phpDocumentor\\Reflection\\DocBlock\\StandardTagFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/StandardTagFactory.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tag' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tag.php', - 'phpDocumentor\\Reflection\\DocBlock\\TagFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/TagFactory.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Author' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Author.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\BaseTag' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/BaseTag.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Covers' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Covers.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Deprecated' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Deprecated.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Example' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\StaticMethod' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/StaticMethod.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\Strategy' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/Strategy.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\AlignFormatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/AlignFormatter.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\PassthroughFormatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/PassthroughFormatter.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Generic' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Generic.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Link' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Link.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Method' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Method.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Param' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Param.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Property' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Property.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyRead' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyRead.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyWrite' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyWrite.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Fqsen' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Fqsen.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Reference' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Reference.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Url' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Url.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Return_' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Return_.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\See' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/See.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Since' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Source' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Source.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Throws' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Throws.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Uses' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Uses.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Var_' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Var_.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Version' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Version.php', - 'phpDocumentor\\Reflection\\Element' => $vendorDir . '/phpdocumentor/reflection-common/src/Element.php', - 'phpDocumentor\\Reflection\\File' => $vendorDir . '/phpdocumentor/reflection-common/src/File.php', - 'phpDocumentor\\Reflection\\Fqsen' => $vendorDir . '/phpdocumentor/reflection-common/src/Fqsen.php', - 'phpDocumentor\\Reflection\\FqsenResolver' => $vendorDir . '/phpdocumentor/type-resolver/src/FqsenResolver.php', - 'phpDocumentor\\Reflection\\Location' => $vendorDir . '/phpdocumentor/reflection-common/src/Location.php', - 'phpDocumentor\\Reflection\\Project' => $vendorDir . '/phpdocumentor/reflection-common/src/Project.php', - 'phpDocumentor\\Reflection\\ProjectFactory' => $vendorDir . '/phpdocumentor/reflection-common/src/ProjectFactory.php', - 'phpDocumentor\\Reflection\\Type' => $vendorDir . '/phpdocumentor/type-resolver/src/Type.php', - 'phpDocumentor\\Reflection\\TypeResolver' => $vendorDir . '/phpdocumentor/type-resolver/src/TypeResolver.php', - 'phpDocumentor\\Reflection\\Types\\Array_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Array_.php', - 'phpDocumentor\\Reflection\\Types\\Boolean' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Boolean.php', - 'phpDocumentor\\Reflection\\Types\\Callable_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Callable_.php', - 'phpDocumentor\\Reflection\\Types\\Compound' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Compound.php', - 'phpDocumentor\\Reflection\\Types\\Context' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Context.php', - 'phpDocumentor\\Reflection\\Types\\ContextFactory' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/ContextFactory.php', - 'phpDocumentor\\Reflection\\Types\\Float_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Float_.php', - 'phpDocumentor\\Reflection\\Types\\Integer' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Integer.php', - 'phpDocumentor\\Reflection\\Types\\Iterable_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Iterable_.php', - 'phpDocumentor\\Reflection\\Types\\Mixed_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Mixed_.php', - 'phpDocumentor\\Reflection\\Types\\Null_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Null_.php', - 'phpDocumentor\\Reflection\\Types\\Nullable' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Nullable.php', - 'phpDocumentor\\Reflection\\Types\\Object_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Object_.php', - 'phpDocumentor\\Reflection\\Types\\Parent_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Parent_.php', - 'phpDocumentor\\Reflection\\Types\\Resource_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Resource_.php', - 'phpDocumentor\\Reflection\\Types\\Scalar' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Scalar.php', - 'phpDocumentor\\Reflection\\Types\\Self_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Self_.php', - 'phpDocumentor\\Reflection\\Types\\Static_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Static_.php', - 'phpDocumentor\\Reflection\\Types\\String_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/String_.php', - 'phpDocumentor\\Reflection\\Types\\This' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/This.php', - 'phpDocumentor\\Reflection\\Types\\Void_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Void_.php', - 'tad\\WPBrowser\\Adapters\\WP' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Adapters/WP.php', - 'tad\\WPBrowser\\Connector\\WordPress' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Connector/WordPress.php', - 'tad\\WPBrowser\\Environment\\Constants' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/Constants.php', - 'tad\\WPBrowser\\Environment\\Executor' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/Executor.php', - 'tad\\WPBrowser\\Environment\\System' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/System.php', - 'tad\\WPBrowser\\Extension\\Copier' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Extension/Copier.php', - 'tad\\WPBrowser\\Extension\\Symlinker' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Extension/Symlinker.php', - 'tad\\WPBrowser\\Filesystem\\FileReplacers\\AbstractFileReplacer' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/AbstractFileReplacer.php', - 'tad\\WPBrowser\\Filesystem\\FileReplacers\\HtaccesReplacer' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/HtaccesReplacer.php', - 'tad\\WPBrowser\\Filesystem\\FileReplacers\\WPConfigReplacer' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/WPConfigReplacer.php', - 'tad\\WPBrowser\\Filesystem\\Filesystem' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/Filesystem.php', - 'tad\\WPBrowser\\Filesystem\\Utils' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/Utils.php', - 'tad\\WPBrowser\\Generators\\Blog' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Blog.php', - 'tad\\WPBrowser\\Generators\\Comment' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Comment.php', - 'tad\\WPBrowser\\Generators\\Date' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Date.php', - 'tad\\WPBrowser\\Generators\\Links' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Links.php', - 'tad\\WPBrowser\\Generators\\Post' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Post.php', - 'tad\\WPBrowser\\Generators\\RedirectingWPConfig' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/RedirectingWPConfig.php', - 'tad\\WPBrowser\\Generators\\SubdomainHtaccess' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/SubdomainHtaccess.php', - 'tad\\WPBrowser\\Generators\\SubfolderHtaccess' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/SubfolderHtaccess.php', - 'tad\\WPBrowser\\Generators\\Tables' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Tables.php', - 'tad\\WPBrowser\\Generators\\TemplateProviderInterface' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/TemplateProviderInterface.php', - 'tad\\WPBrowser\\Generators\\User' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/User.php', - 'tad\\WPBrowser\\Generators\\User\\Roles' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/User/Roles.php', - 'tad\\WPBrowser\\Generators\\WpPassword' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/WpPassword.php', - 'tad\\WPBrowser\\Iterators\\Filters\\ActionsQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/ActionsQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\ClassMethodQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/ClassMethodQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\FactoryQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FactoryQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\FiltersQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FiltersQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\FunctionQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FunctionQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\MainStatementQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/MainStatementQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\QueriesCallerBasedFilterIterator' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/QueriesCallerBasedFilterIterator.php', - 'tad\\WPBrowser\\Iterators\\Filters\\QueriesCallerBasedKeepingFilterIterator' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/QueriesCallerBasedKeepingFilterIterator.php', - 'tad\\WPBrowser\\Iterators\\Filters\\SetupTearDownQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/SetupTearDownQueriesFilter.php', - 'tad\\WPBrowser\\Module\\Support\\DbDump' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/Support/DbDump.php', - 'tad\\WPBrowser\\Module\\Support\\UriToIndexMapper' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/Support/UriToIndexMapper.php', - 'tad\\WPBrowser\\Module\\WPLoader\\FactoryStore' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/FactoryStore.php', - 'tad\\WPBrowser\\Module\\WPLoader\\Filters' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/Filters.php', - 'tad\\WPBrowser\\Module\\WPLoader\\FiltersGroup' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/FiltersGroup.php', - 'tad\\WPBrowser\\Services\\Db\\MySQLDumpFactory' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpFactory.php', - 'tad\\WPBrowser\\Services\\Db\\MySQLDumpFactoryInterface' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpFactoryInterface.php', - 'tad\\WPBrowser\\Services\\Db\\MySQLDumpInterface' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpInterface.php', - 'tad\\WPBrowser\\Services\\WP\\Bootstrapper' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/WP/Bootstrapper.php', - 'tad\\WPBrowser\\Template\\Data' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Template/Data.php', -); diff --git a/vendor/composer/autoload_framework_real.php b/vendor/composer/autoload_framework_real.php deleted file mode 100644 index f00dac781..000000000 --- a/vendor/composer/autoload_framework_real.php +++ /dev/null @@ -1,34 +0,0 @@ -addClassMap($classMap); - } - $loader->register(true); - - return $loader; - } -} diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index ff4887e5c..24b9dc86b 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInitee0d17af17b841ed3a93c4a0e5cc5e5f +class ComposerAutoloaderInitd35e1b6619456855afe82a91b3f422de { private static $loader; @@ -19,15 +19,15 @@ public static function getLoader() return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInitee0d17af17b841ed3a93c4a0e5cc5e5f', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInitd35e1b6619456855afe82a91b3f422de', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInitee0d17af17b841ed3a93c4a0e5cc5e5f', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInitd35e1b6619456855afe82a91b3f422de', 'loadClassLoader')); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInitee0d17af17b841ed3a93c4a0e5cc5e5f::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInitd35e1b6619456855afe82a91b3f422de::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index fa09ad714..80509f106 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInitee0d17af17b841ed3a93c4a0e5cc5e5f +class ComposerStaticInitd35e1b6619456855afe82a91b3f422de { public static $prefixLengthsPsr4 = array ( 'W' => @@ -131,9 +131,9 @@ class ComposerStaticInitee0d17af17b841ed3a93c4a0e5cc5e5f public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInitee0d17af17b841ed3a93c4a0e5cc5e5f::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInitee0d17af17b841ed3a93c4a0e5cc5e5f::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInitee0d17af17b841ed3a93c4a0e5cc5e5f::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInitd35e1b6619456855afe82a91b3f422de::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInitd35e1b6619456855afe82a91b3f422de::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInitd35e1b6619456855afe82a91b3f422de::$classMap; }, null, ClassLoader::class); } From e38c17836468610f3e3374c08de8dc371417e19b Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 00:27:02 -0400 Subject: [PATCH 03/56] "QLSessionHandlerCest" added. --- .env.dist | 6 +- bin/install-wp-tests.sh | 8 +- docker-compose.yml | 2 +- includes/class-woocommerce-filters.php | 4 +- ...ept.php => NewCustomerCheckingOutCept.php} | 0 tests/functional/QLSessionHandlerCest.php | 88 ++++++++++++++++--- 6 files changed, 91 insertions(+), 17 deletions(-) rename tests/acceptance/{testUserPlayingOrderCept.php => NewCustomerCheckingOutCept.php} (100%) diff --git a/.env.dist b/.env.dist index 6074d4230..73054db02 100644 --- a/.env.dist +++ b/.env.dist @@ -12,8 +12,8 @@ TEST_SITE_DB_USER="root" TEST_SITE_DB_PASSWORD="" TEST_SITE_TABLE_PREFIX="wp_" TEST_TABLE_PREFIX="wp_" -TEST_SITE_WP_URL="http://wp.test" -TEST_SITE_WP_DOMAIN="wp.test" -TEST_SITE_ADMIN_EMAIL="admin@wp.test" +TEST_SITE_WP_URL="http://localhost" +TEST_SITE_WP_DOMAIN="localhost" +TEST_SITE_ADMIN_EMAIL="admin@localhost" TEST_SITE_ADMIN_USERNAME="admin" TEST_SITE_ADMIN_PASSWORD="password" \ No newline at end of file diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index 1052dfbfa..be5f24441 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -36,6 +36,12 @@ fi if [ -z "$SKIP_DB_CREATE" ]; then SKIP_DB_CREATE=false fi +if [[ -z "$TEST_SITE_WP_URL" ]]; then + echo "TEST_SITE_WP_URL not found" + print_usage_instruction +else + DB_NAME=$TEST_DB_NAME +fi TMPDIR=${TMPDIR-/tmp} TMPDIR=$(echo $TMPDIR | sed -e "s/\/$//") @@ -183,7 +189,7 @@ install_db() { configure_wordpress() { cd $WP_CORE_DIR wp config create --dbname="$DB_NAME" --dbuser="$DB_USER" --dbpass="$DB_PASS" --dbhost="$DB_HOST" --skip-check --force=true - wp core install --url=wp.test --title="WPGraphQL WooCommerce Tests" --admin_user=admin --admin_password=password --admin_email=admin@wp.test + wp core install --url="$TEST_SITE_WP_URL" --title="WPGraphQL WooCommerce Tests" --admin_user=admin --admin_password=password --admin_email=admin@wp.test wp rewrite structure '/%year%/%monthnum%/%postname%/' } diff --git a/docker-compose.yml b/docker-compose.yml index 93a725ecb..d8c29724b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,7 +12,7 @@ services: - "./tests:/var/www/html/tests" - "./codeception.docker.yml:/var/www/config/codeception.dist.yml" - ".:/var/www/html/wp-content/plugins/wp-graphql-woocommerce" - command: bash -c "codecept run functional && codecept run acceptance && codecept run wpunit" + command: bash -c "codecept run functional --debug && codecept run acceptance && codecept run wpunit" environment: DB_NAME: wordpress DB_HOST: db diff --git a/includes/class-woocommerce-filters.php b/includes/class-woocommerce-filters.php index 30d18eab0..7ca0e2225 100644 --- a/includes/class-woocommerce-filters.php +++ b/includes/class-woocommerce-filters.php @@ -28,8 +28,8 @@ public static function add_filters() { // Setup QL session handler. if ( ! defined( 'NO_QL_SESSION_HANDLER' ) ) { self::$session_header = apply_filters( 'woocommerce_graphql_session_header_name', 'woocommerce-session' ); - add_filter( 'woocommerce_graphql_cookie', array( __CLASS__, 'woocommerce_cookie' ) ); - add_filter( 'woocommerce_graphql_session_handler', array( __CLASS__, 'init_ql_session_handler' ) ); + add_filter( 'woocommerce_cookie', array( __CLASS__, 'woocommerce_cookie' ) ); + add_filter( 'woocommerce_session_handler', array( __CLASS__, 'init_ql_session_handler' ) ); add_filter( 'graphql_response_headers_to_send', array( __CLASS__, 'add_session_header_to_expose_headers' ) ); add_filter( 'graphql_access_control_allow_headers', array( __CLASS__, 'add_session_header_to_allow_headers' ) ); } diff --git a/tests/acceptance/testUserPlayingOrderCept.php b/tests/acceptance/NewCustomerCheckingOutCept.php similarity index 100% rename from tests/acceptance/testUserPlayingOrderCept.php rename to tests/acceptance/NewCustomerCheckingOutCept.php diff --git a/tests/functional/QLSessionHandlerCest.php b/tests/functional/QLSessionHandlerCest.php index 57239844e..88be09082 100644 --- a/tests/functional/QLSessionHandlerCest.php +++ b/tests/functional/QLSessionHandlerCest.php @@ -1,22 +1,30 @@ loginAsAdmin(); $I->amOnPluginsPage(); $I->activatePlugin( array( 'woocommerce', 'wp-graphql', - 'wp-graphql-jwt-authentication', + 'wpgraphql-jwt-authentication', 'wp-graphql-woocommerce', ) ); - } + $I->seePluginActivated( 'woocommerce' ); + $I->seePluginActivated( 'wp-graphql' ); + $I->seePluginActivated( 'wpgraphql-jwt-authentication' ); + $I->seePluginActivated( 'wp-graphql-woocommerce' ); + $I->amOnAdminPage('options-permalink.php'); + $I->click('#submit'); + $I->amOnPage( '/' ); - // tests - public function test_session_update( FunctionalTester $I ) { - $product_id = $I->havePostInDatabase( array( + // Create Product + $this->product_id = $I->havePostInDatabase( array( 'post_type' => 'product', 'post_title' => 't-shirt', 'meta_input' => array( @@ -55,8 +63,10 @@ public function test_session_update( FunctionalTester $I ) { '_wc_review_count' => 0, ), )); - - + } + + // tests + public function test_session_update( FunctionalTester $I ) { $mutation = ' mutation addToCart( $input: AddToCartInput! ) { addToCart( input: $input ) { @@ -81,10 +91,12 @@ public function test_session_update( FunctionalTester $I ) { $input = array( 'clientMutationId' => 'someId', - 'productId' => $product_id, + 'productId' => $this->product_id, 'quantity' => 2, ); + // Add item to cart. + $I->haveHttpHeader( 'Content-Type', 'application/json' ); $I->sendPOST( '/graphql', json_encode( @@ -94,9 +106,65 @@ public function test_session_update( FunctionalTester $I ) { ) ) ); - + $I->seeResponseCodeIs( 200 ); - $response = $I->canSeeHttpHeader( 'woocommerce-session' ); + $I->seeHttpHeaderOnce('woocommerce-session'); + $wc_session_header = $I->grabHttpHeader( 'woocommerce-session' ); + $I->seeResponseIsJson(); + $mutation_response = $I->grabResponse(); + $mutation_data = json_decode( $mutation_response, true ); + + // use --debug flag to view + codecept_debug( $mutation_data ); + + $I->assertArrayHasKey('data', $mutation_data ); + $I->assertArrayHasKey('addToCart', $mutation_data['data'] ); + $I->assertArrayHasKey('cartItem', $mutation_data['data']['addToCart'] ); + $I->assertArrayHasKey('key', $mutation_data['data']['addToCart']['cartItem'] ); + $key = $mutation_data['data']['addToCart']['cartItem']['key']; + + $query = ' + query { + cart { + contents { + nodes { + key + } + } + } + } + '; + + // Set session header and query cart. + $I->haveHttpHeader( 'woocommerce-session', $wc_session_header ); + $I->sendPOST( + '/graphql', + json_encode( array( 'query' => $query ) ) + ); + + $I->seeResponseCodeIs( 200 ); + $I->seeResponseIsJson(); + $query_response = $I->grabResponse(); + $query_data = json_decode( $query_response, true ); + + // use --debug flag to view. + codecept_debug( $query_data ); + + $expected = array( + 'data' => array( + 'cart' => array( + 'contents' => array( + 'nodes' => array( + array( + 'key' => $key, + ), + ), + ), + ), + ), + ); + + $I->assertEquals( $expected, $query_data ); } } From 1074cedc6cec7de42bd89a2bfcae858e21555b4e Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 11:39:14 -0400 Subject: [PATCH 04/56] initial commit --- .env.dist | 1 - .travis.yml | 54 +++++++++++++-------------- Dockerfile | 82 +++++++++++++++++++++++++++++++++++++++-- bin/entrypoint.sh | 67 +++++++++++++++++++++++++++++++++ bin/install-wp-tests.sh | 4 +- docker-compose.yml | 21 ++++++----- 6 files changed, 186 insertions(+), 43 deletions(-) create mode 100644 bin/entrypoint.sh diff --git a/.env.dist b/.env.dist index 73054db02..b4d6059b7 100644 --- a/.env.dist +++ b/.env.dist @@ -2,7 +2,6 @@ TEST_DB_NAME="wpgraphql_woocommerce_test" TEST_DB_HOST="127.0.0.1" TEST_DB_USER="root" TEST_DB_PASSWORD="" -WP_VERSION=latest SKIP_DB_CREATE=false WP_ROOT_FOLDER="/tmp/wordpress" TEST_SITE_WP_ADMIN_PATH="/wp-admin" diff --git a/.travis.yml b/.travis.yml index 56ee88402..8714b1243 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,9 @@ dist: trusty language: php +services: + - docker + notifications: email: on_success: never @@ -11,9 +14,9 @@ notifications: branches: only: - develop - - release-v0.1.1 - release-v0.1.2 - release-v0.2.0 + - release-v0.2.1 cache: apt: true @@ -25,25 +28,27 @@ cache: env: global: - WP_CORE_DIR: /tmp/wordpress - - COVERAGE: false - - DEBUG: false + matrix: + - PHP_VERSION=7.2 WP_VERSION=latest COVERAGE=1 + - PHP_VERSION=7.2 PHPCS=1 + - PHP_VERSION=7.1 WP_VERSION=latest + - PHP_VERSION=7.0 WP_VERSION=latest + - PHP_VERSION=5.6 WP_VERSION=4.5 + - PHP_VERSION=5.6 WP_VERSION=latest DEBUG=1 + - PHP_VERSION=5.6 WP_VERSION=trunk -matrix: - include: - - php: 7.2 - env: WP_VERSION=latest COVERAGE=1 - - php: 7.2 - env: PHPCS=1 - - php: 7.1 - env: WP_VERSION=latest - - php: 7.0 - env: WP_VERSION=latest - - php: 5.6 - env: WP_VERSION=4.5 - - php: 5.6 - env: WP_VERSION=latest DEBUG=1 - - php: 5.6 - env: WP_VERSION=trunk +before_install: + - sudo rm /usr/local/bin/docker-compose + - curl -L https://github.com/docker/compose/releases/download/1.24.1/docker-compose-`uname -s`-`uname -m` > docker-compose + - chmod +x docker-compose + - sudo mv docker-compose /usr/local/bin + - | + # Remove Xdebug for a huge performance increase: + if [ -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini ]; then + phpenv config-rm xdebug.ini + else + echo "xdebug.ini does not exist" + fi install: - | @@ -58,7 +63,8 @@ before_script: # Install and config Codeception cp .env.dist .env composer install-wp-tests - COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --prefer-source --no-interaction + travis_retry composer install --no-dev --prefer-source --no-interaction + docker-compose build --build-arg PHP_VERSION=$(PHP_VERSION) wpbrowser if [ "$COVERAGE" == "1" ]; then # Install Coveralls mkdir -p build/logs @@ -78,13 +84,7 @@ script: # Execute unit tests with coverage if specified, otherwise without coverage - | if [ ! -z "$WP_VERSION" ]; then - if [ "$COVERAGE" == "1" ]; then - vendor/bin/codecept run wpunit --coverage --coverage-xml - elif [ "$DEBUG" == "1" ]; then - vendor/bin/codecept run wpunit --debug - else - vendor/bin/codecept run wpunit - fi + docker-compose run --rm wpbrowser fi - | if [ "$PHPCS" == "1" ]; then diff --git a/Dockerfile b/Dockerfile index 9472ac3d8..41ee3c75f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,80 @@ -FROM ryanshoover/wp-browser +ARG PHP_VERSION +FROM php:${PHP_VERSION-7.2}-apache-stretch -RUN a2enmod rewrite && \ -service apache2 restart \ No newline at end of file +SHELL [ "/bin/bash", "-c" ] + +# Install required system packages +RUN apt-get update && \ + apt-get -y install \ + # WordPress dependencies + libjpeg-dev \ + libpng-dev \ + mysql-client \ + # CircleCI depedencies + git \ + ssh \ + tar \ + gzip \ + wget + +# Install php extensions +RUN docker-php-ext-install \ + bcmath \ + zip \ + gd \ + pdo_mysql \ + mysqli \ + opcache + +# Configure php +RUN echo "date.timezone = UTC" >> /usr/local/etc/php/php.ini + +# Install Dockerize +ENV DOCKERIZE_VERSION v0.6.1 +RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \ + && tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \ + && rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz + + +# Install composer +ENV COMPOSER_ALLOW_SUPERUSER=1 + +RUN curl -sS https://getcomposer.org/installer | php -- \ + --filename=composer \ + --install-dir=/usr/local/bin + +# Install tool to speed up composer installations +RUN composer global require --optimize-autoloader \ + "hirak/prestissimo" + +# Install wp-browser and php-coveralls globally +RUN composer global require \ + phpunit/phpunit:8.1 \ + lucatume/wp-browser:^2.2 \ + league/factory-muffin:^3.0 \ + league/factory-muffin-faker:^2.0 + +# Add composer global binaries to PATH +ENV PATH "$PATH:~/.composer/vendor/bin" + +# Set up WordPress config +ENV WP_ROOT_FOLDER="/var/www/html" +ENV WP_URL="http://localhost" +ENV WP_DOMAIN="localhost" +ENV WP_TABLE_PREFIX="wp_" +ENV ADMIN_EMAIL="admin@wordpress.local" +ENV ADMIN_USERNAME="admin" +ENV ADMIN_PASSWORD="password" + +# Set up wp-browser / codeception +WORKDIR /var/www/config +COPY codeception.docker.yml codeception.dist.yml + +# Set up Apache +RUN echo 'ServerName localhost' >> /etc/apache2/apache2.conf + +# Set up entrypoint +WORKDIR /var/www/html +COPY bin/entrypoint.sh /entrypoint.sh +RUN chmod 755 /entrypoint.sh +ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file diff --git a/bin/entrypoint.sh b/bin/entrypoint.sh new file mode 100644 index 000000000..e70d18b0a --- /dev/null +++ b/bin/entrypoint.sh @@ -0,0 +1,67 @@ +#!/bin/bash + +# Ensure mysql is loaded +dockerize -wait tcp://$DB_HOST:3306 -timeout 1m + +# Ensure Apache is running +service apache2 start + +# Enable Mod Rewrite and restart Apache +a2enmod rewrite +service apache2 restart + +# Link codeception config if not yet linked +if [ ! -e codeception.dist.yml ]; then + ln -s /var/www/config/codeception.dist.yml /var/www/html/codeception.dist.yml +fi + +# Download WordPress +wp core download \ + --path=/var/www/html \ + --quiet \ + --allow-root + +# Config WordPress +wp config create \ + --path=/var/www/html \ + --dbname="$DB_NAME" \ + --dbuser="$DB_USER" \ + --dbpass="$DB_PASSWORD" \ + --dbhost="$DB_HOST" \ + --dbprefix="$WP_TABLE_PREFIX" \ + --skip-check \ + --quiet \ + --allow-root + +# Install WP if not yet installed +if ! $( wp core is-installed --allow-root ); then + wp core install \ + --path=/var/www/html \ + --url=$WP_URL \ + --title='Test' \ + --admin_user=$ADMIN_USERNAME \ + --admin_password=$ADMIN_PASSWORD \ + --admin_email=$ADMIN_EMAIL \ + --allow-root +fi + +mkdir -p /var/www/html/wp-content + +wp db export \ + /var/www/html/wp-content/mysql.sql \ + --allow-root + +# Run the tests +if [ "$COVERAGE" == "1" ]; then + codecept run acceptance --coverage --coverage-xml + codecept run functional --coverage --coverage-xml + codecept run wpunit --coverage --coverage-xml +elif [ "$DEBUG" == "1" ]; then + codecept run acceptance --debug + codecept run functional --debug + codecept run wpunit --debug +else + codecept run acceptance + codecept run functional + codecept run wpunit +fi \ No newline at end of file diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index be5f24441..0b27bc3e3 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -31,7 +31,7 @@ else DB_HOST=$TEST_DB_HOST fi if [ -z "$WP_VERSION" ]; then - WP_VERSION=latest + fi if [ -z "$SKIP_DB_CREATE" ]; then SKIP_DB_CREATE=false @@ -42,7 +42,7 @@ if [[ -z "$TEST_SITE_WP_URL" ]]; then else DB_NAME=$TEST_DB_NAME fi - +WP_VERSION=${WP_VERSION-latest} TMPDIR=${TMPDIR-/tmp} TMPDIR=$(echo $TMPDIR | sed -e "s/\/$//") WP_TESTS_DIR=${WP_TESTS_DIR-$TMPDIR/wordpress-tests-lib} diff --git a/docker-compose.yml b/docker-compose.yml index d8c29724b..626b48fc8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,17 +8,18 @@ services: links: - db:mysql volumes: - - "/tmp/wordpress/wp-content:/var/www/html/wp-content" - - "./tests:/var/www/html/tests" - - "./codeception.docker.yml:/var/www/config/codeception.dist.yml" - - ".:/var/www/html/wp-content/plugins/wp-graphql-woocommerce" - command: bash -c "codecept run functional --debug && codecept run acceptance && codecept run wpunit" + - '$WP_CORE_DIR/wp-content:/var/www/html/wp-content' + - './tests:/var/www/html/tests' + - './codeception.docker.yml:/var/www/config/codeception.dist.yml' + - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' environment: - DB_NAME: wordpress - DB_HOST: db - DB_USER: wordpress - DB_PASSWORD: wordpress - WPGRAPHQL_WOOCOMMERCE_AUTOLOAD: 1 + - DB_NAME=wordpress + - DB_HOST=db + - DB_USER=wordpress + - DB_PASSWORD=wordpress + - WPGRAPHQL_WOOCOMMERCE_AUTOLOAD=1 + - COVERAGE + - DEBUG ports: - 8080:80 From 747eb9cebd8aa22b201fe1cfff043be9b8aa4601 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 12:01:12 -0400 Subject: [PATCH 05/56] README.md and project version updated. --- composer.json | 2 +- wp-graphql-woocommerce.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 840d916a7..ffeb55dfe 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "wp-graphql/wp-graphql-woocommerce", "description": "WooCommerce bindings for wp-graphql", - "version": "0.2.0", + "version": "0.2.1", "type": "wordpress-plugin", "keywords": [ "wordpress", diff --git a/wp-graphql-woocommerce.php b/wp-graphql-woocommerce.php index 0ffaadd49..8c4924c01 100644 --- a/wp-graphql-woocommerce.php +++ b/wp-graphql-woocommerce.php @@ -3,7 +3,7 @@ * Plugin Name: WP GraphQL WooCommerce * Plugin URI: https://github.com/kidunot89/wp-graphql-woocommerce * Description: Adds Woocommerce Functionality to WPGraphQL schema. - * Version: 0.2.0 + * Version: 0.2.1 * Author: kidunot89 * Author URI: https://axistaylor.com * Text Domain: wp-graphql-woocommerce From 94f0481e7924dd9646e754d26fbc702bad21c767 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 12:16:38 -0400 Subject: [PATCH 06/56] variable substitution fixed. --- Dockerfile | 4 ++-- README.md | 21 ++++++++++++++------- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 41ee3c75f..3d36fd14a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -ARG PHP_VERSION -FROM php:${PHP_VERSION-7.2}-apache-stretch +ARG PHP_VERSION=7.2 +FROM php:${PHP_VERSION}-apache-stretch SHELL [ "/bin/bash", "-c" ] diff --git a/README.md b/README.md index a99259742..5139fe555 100644 --- a/README.md +++ b/README.md @@ -46,12 +46,9 @@ Until the documentation is in full effect, it's recommended that a [GraphiQL](ht TEST_DB_PASSWORD="" # Install script - WP_VERSION=latest SKIP_DB_CREATE=false - WP_GRAPHQL_BRANCH=develop # Codeception - WP_ROOT_FOLDER="/tmp/wordpress" TEST_SITE_WP_ADMIN_PATH="/wp-admin" TEST_SITE_DB_NAME="wpgraphql_woocommerce_test" TEST_SITE_DB_HOST="127.0.0.1" @@ -59,9 +56,9 @@ Until the documentation is in full effect, it's recommended that a [GraphiQL](ht TEST_SITE_DB_PASSWORD="" TEST_SITE_TABLE_PREFIX="wp_" TEST_TABLE_PREFIX="wp_" - TEST_SITE_WP_URL="http://wp.test" - TEST_SITE_WP_DOMAIN="wp.test" - TEST_SITE_ADMIN_EMAIL="admin@wp.test" + TEST_SITE_WP_URL="http://localhost" + TEST_SITE_WP_DOMAIN="localhost" + TEST_SITE_ADMIN_EMAIL="admin@localhost" TEST_SITE_ADMIN_USERNAME="admin" TEST_SITE_ADMIN_PASSWORD="password" ``` @@ -69,7 +66,6 @@ Until the documentation is in full effect, it's recommended that a [GraphiQL](ht - `Install script` variables are specified to the `install-wp-tests` script, and most likely won't changed. I've listed their meaning below. - `WP_VERSION` WordPress version used for testing - `SKIP_DB_CREATE` Should database creation be skipped? - - `WP_GRAPHQL_BRANCH` The branch in the `WPGraphQL` repository the tests should be run again. Ex. `origin/feature/model-layer` - `Codeception` variables are specified to the **Codeception** configuration. View the config files and Codeception's [Docs](https://codeception.com/docs/reference/Configuration#Suite-Configuration) for more info on them. 4. Once you have finish modifying the `.env` file. Run `composer install-wp-tests` from the project directory. @@ -81,6 +77,17 @@ If you use the command with at least a `suite` specified, **Codeception** will r To learn more about the usage of Codeception with WordPress view the [Documentation](https://codeception.com/for/wordpress) +## Functional and Acceptance Tests (Docker/Docker-Compose required) +It's possible to run functional and acceptance tests, but is very limited at the moment. The script docker entrypoint script runs all three suites (acceptance, functional, and wpunit) at once. This will change eventually, however as of right now, this is the limitation. + +### Running tests +Even though the two suite use a Docker environment to run, the docker environment relies on a few environmental variables defined in `.env` and a volume source provided by the test install script. +0. Ensure that you can copy `.env.dist` to `.env`. +1. First you must run `composer install-wp-tests` to ensure the required dependencies are available. +2. Next run `docker-compose build` from the terminal in the project root directory, to build the docker image for test environment. +3. And now you're ready to run the tests. Running `docker-compose run --rm wpbrowser` does just that. +You can rerun the tests by simply repeating step 3. + ## HTTP Error 500 :construction: If you get HTTP 500 error upon activation or accessing the `endpoint` and have **CMD/Terminal** access with **Composer** installed. - Try deleting the `vendor` directory `rm -rf vendor` and regenerating the autoloading files `composer dumpautoload -o` in the `wp-graphql-woocommerce` directory in your WordPress installation's `plugins` directory. From a61e6784f980b70a8cd672a697a1965a69a8e1c5 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 12:31:49 -0400 Subject: [PATCH 07/56] php-coveralls added to docker test environment. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3d36fd14a..1fe9277b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,7 +52,8 @@ RUN composer global require \ phpunit/phpunit:8.1 \ lucatume/wp-browser:^2.2 \ league/factory-muffin:^3.0 \ - league/factory-muffin-faker:^2.0 + league/factory-muffin-faker:^2.0 \ + php-coveralls/php-coveralls # Add composer global binaries to PATH ENV PATH "$PATH:~/.composer/vendor/bin" From fb3b8933c7cf70a56c32f7b8422b414d5c019e99 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 12:49:44 -0400 Subject: [PATCH 08/56] Problematic if statement removed. --- bin/install-wp-tests.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index 0b27bc3e3..aa15cb188 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -29,9 +29,6 @@ if [[ -z "$TEST_DB_HOST" ]]; then DB_HOST=localhost else DB_HOST=$TEST_DB_HOST -fi -if [ -z "$WP_VERSION" ]; then - fi if [ -z "$SKIP_DB_CREATE" ]; then SKIP_DB_CREATE=false From f948f22671fa96e9b39c083578d0db8e22369e5d Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 13:16:21 -0400 Subject: [PATCH 09/56] Problematic database upgrade statement removed. --- bin/install-wp-tests.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index aa15cb188..468bad584 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -193,8 +193,6 @@ configure_wordpress() { setup_woocommerce() { echo "Installing & Activating WooCommerce" wp plugin install woocommerce --activate - echo "Upgrading database" - wp wc update echo "Installing & Activating WordPress Importer" wp plugin install wordpress-importer wp plugin activate wordpress-importer From b217745886e319ddfdce2901a5d7f0e44357ee22 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 13:21:27 -0400 Subject: [PATCH 10/56] Removed Xdebug disable code. --- .travis.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8714b1243..6aacd582e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,13 +42,6 @@ before_install: - curl -L https://github.com/docker/compose/releases/download/1.24.1/docker-compose-`uname -s`-`uname -m` > docker-compose - chmod +x docker-compose - sudo mv docker-compose /usr/local/bin - - | - # Remove Xdebug for a huge performance increase: - if [ -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini ]; then - phpenv config-rm xdebug.ini - else - echo "xdebug.ini does not exist" - fi install: - | From 453d72d8841d113a195fa33d664b429aff61e888 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 13:36:05 -0400 Subject: [PATCH 11/56] Fixes ARG declaration. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1fe9277b0..d1ee347c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -ARG PHP_VERSION=7.2 -FROM php:${PHP_VERSION}-apache-stretch +ARG PHP_VERSION +FROM php:${PHP_VERSION:-7.2}-apache-stretch SHELL [ "/bin/bash", "-c" ] From d7948b25d47e67c492248add5d3f277cfe4300d5 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 14:58:03 -0400 Subject: [PATCH 12/56] dependency required versions updated --- .travis.yml | 5 +++-- README.txt | 12 +++++++----- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6aacd582e..9e7f5e3e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,11 +29,12 @@ env: global: - WP_CORE_DIR: /tmp/wordpress matrix: - - PHP_VERSION=7.2 WP_VERSION=latest COVERAGE=1 + - PHP_VERSION=7.3 WP_VERSION=latest COVERAGE=1 - PHP_VERSION=7.2 PHPCS=1 + - PHP_VERSION=7.2 WP_VERSION=latest - PHP_VERSION=7.1 WP_VERSION=latest - PHP_VERSION=7.0 WP_VERSION=latest - - PHP_VERSION=5.6 WP_VERSION=4.5 + - PHP_VERSION=5.6 WP_VERSION=4.9 - PHP_VERSION=5.6 WP_VERSION=latest DEBUG=1 - PHP_VERSION=5.6 WP_VERSION=trunk diff --git a/README.txt b/README.txt index eb6e7c8b7..923285cdf 100644 --- a/README.txt +++ b/README.txt @@ -1,11 +1,13 @@ === WP GraphQL WooCommerce === Contributors: kidunot89 -Tags: GraphQL, WooCommerce -Requires at least: 4.7.0 -Tested up to: 5.1 +Tags: GraphQL, WooCommerce, WPGraphQL +Requires at least: 4.9 +Tested up to: 5.2 +Requires PHP: 5.6 +Stable tag: 0.2.1 License: GPL-3 License URI: https://www.gnu.org/licenses/gpl-3.0.html -Maintained at: https://github.com/kidunot89/wp-graphql-woocommerce +Maintained at: https://github.com/wp-graphql/wp-graphql-woocommerce == Description == -Adds WooCommerce Types to WPGraphQL schema +Adds WooCommerce functionality to the WPGraphQL schema From 963599a4c84694269ac5dc91a0e9b398f09caa74 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 15:56:19 -0400 Subject: [PATCH 13/56] Install xdebug --- .travis.yml | 2 +- Dockerfile | 6 ++++++ README.txt | 2 +- bin/entrypoint.sh | 3 +++ 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9e7f5e3e2..726385d7f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -58,12 +58,12 @@ before_script: cp .env.dist .env composer install-wp-tests travis_retry composer install --no-dev --prefer-source --no-interaction - docker-compose build --build-arg PHP_VERSION=$(PHP_VERSION) wpbrowser if [ "$COVERAGE" == "1" ]; then # Install Coveralls mkdir -p build/logs COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require php-coveralls/php-coveralls fi + docker-compose build --build-arg PHP_VERSION=$(PHP_VERSION) wpbrowser ls -al fi # Install PHP CodeSniffer and WPCS. diff --git a/Dockerfile b/Dockerfile index d1ee347c4..552571341 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,12 @@ RUN docker-php-ext-install \ mysqli \ opcache +# Install Xdebug +RUN yes | pecl install xdebug \ + && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \ + && echo "xdebug.remote_enable=on" >> /usr/local/etc/php/conf.d/xdebug.ini \ + && echo "xdebug.remote_autostart=off" >> /usr/local/etc/php/conf.d/xdebug.ini + # Configure php RUN echo "date.timezone = UTC" >> /usr/local/etc/php/php.ini diff --git a/README.txt b/README.txt index 923285cdf..7cf43a476 100644 --- a/README.txt +++ b/README.txt @@ -10,4 +10,4 @@ License URI: https://www.gnu.org/licenses/gpl-3.0.html Maintained at: https://github.com/wp-graphql/wp-graphql-woocommerce == Description == -Adds WooCommerce functionality to the WPGraphQL schema +Adds WooCommerce functionality to the WPGraphQL schema. diff --git a/bin/entrypoint.sh b/bin/entrypoint.sh index e70d18b0a..94bb99129 100644 --- a/bin/entrypoint.sh +++ b/bin/entrypoint.sh @@ -47,6 +47,9 @@ fi mkdir -p /var/www/html/wp-content +# Build Code coverage log directory +mkdir -p /var/www/html/build/logs + wp db export \ /var/www/html/wp-content/mysql.sql \ --allow-root From c7c2db51ccebd219b8103d838b68ffd953ac7eb1 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 16:11:41 -0400 Subject: [PATCH 14/56] xdebug replaced with pcov --- .travis.yml | 7 +++++++ Dockerfile | 10 +++------- codeception.docker.yml | 1 + 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 726385d7f..11daab389 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,6 +43,13 @@ before_install: - curl -L https://github.com/docker/compose/releases/download/1.24.1/docker-compose-`uname -s`-`uname -m` > docker-compose - chmod +x docker-compose - sudo mv docker-compose /usr/local/bin + - | + # Remove Xdebug for a huge performance increase: + if [ -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini ]; then + phpenv config-rm xdebug.ini + else + echo "xdebug.ini does not exist" + fi install: - | diff --git a/Dockerfile b/Dockerfile index 552571341..4d621ebb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,13 +24,9 @@ RUN docker-php-ext-install \ gd \ pdo_mysql \ mysqli \ - opcache - -# Install Xdebug -RUN yes | pecl install xdebug \ - && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \ - && echo "xdebug.remote_enable=on" >> /usr/local/etc/php/conf.d/xdebug.ini \ - && echo "xdebug.remote_autostart=off" >> /usr/local/etc/php/conf.d/xdebug.ini + opcache \ + pcov \ + && docker-php-ext-enable pcov # Configure php RUN echo "date.timezone = UTC" >> /usr/local/etc/php/php.ini diff --git a/codeception.docker.yml b/codeception.docker.yml index 1592e97b2..461c9a1df 100644 --- a/codeception.docker.yml +++ b/codeception.docker.yml @@ -12,6 +12,7 @@ settings: memory_limit: 1024M coverage: enabled: true + remote: false whitelist: include: - wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php From b16a195243c828fd396562998bdffa24a9494e97 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Tue, 23 Jul 2019 19:38:53 -0400 Subject: [PATCH 15/56] Docker configuration refactor. Debugging needed. --- .env.dist | 36 +- .gitignore | 2 + .log/access.log | 917 ++++++++++++++++++++++ .log/app/access.log | 81 ++ .log/app/error.log | 16 + .log/app/other_vhosts_access.log | 0 .log/error.log | 25 + .log/other_vhosts_access.log | 0 .log/testing/access.log | 9 + .log/testing/error.log | 9 + .log/testing/other_vhosts_access.log | 0 .travis.yml | 23 +- Dockerfile | 92 +-- Dockerfile.tester | 51 ++ bin/entrypoint.sh | 108 +-- bin/install-wp-tests.sh | 9 +- bin/testing-entrypoint.sh | 35 + codeception.docker.yml | 34 +- codeception.yml | 29 +- docker-compose.yml | 85 +- tests/functional/QLSessionHandlerCest.php | 19 - wp-graphql-woocommerce.php | 4 +- 22 files changed, 1366 insertions(+), 218 deletions(-) create mode 100644 .log/access.log create mode 100644 .log/app/access.log create mode 100644 .log/app/error.log create mode 100644 .log/app/other_vhosts_access.log create mode 100644 .log/error.log create mode 100644 .log/other_vhosts_access.log create mode 100644 .log/testing/access.log create mode 100644 .log/testing/error.log create mode 100644 .log/testing/other_vhosts_access.log create mode 100644 Dockerfile.tester create mode 100644 bin/testing-entrypoint.sh diff --git a/.env.dist b/.env.dist index b4d6059b7..acfb4cb15 100644 --- a/.env.dist +++ b/.env.dist @@ -1,18 +1,20 @@ -TEST_DB_NAME="wpgraphql_woocommerce_test" -TEST_DB_HOST="127.0.0.1" -TEST_DB_USER="root" -TEST_DB_PASSWORD="" +DB_NAME=wordpress +DB_HOST=127.0.0.1 +DB_USER=wordpress +DB_PASSWORD=wordpress +WP_TABLE_PREFIX=wp_ +WP_URL=http://localhost +WP_DOMAIN=localhost +ADMIN_EMAIL=admin@localhost +ADMIN_USERNAME=admin +ADMIN_PASSWORD=password +ADMIN_PATH=/wp-admin + SKIP_DB_CREATE=false -WP_ROOT_FOLDER="/tmp/wordpress" -TEST_SITE_WP_ADMIN_PATH="/wp-admin" -TEST_SITE_DB_NAME="wpgraphql_woocommerce_test" -TEST_SITE_DB_HOST="127.0.0.1" -TEST_SITE_DB_USER="root" -TEST_SITE_DB_PASSWORD="" -TEST_SITE_TABLE_PREFIX="wp_" -TEST_TABLE_PREFIX="wp_" -TEST_SITE_WP_URL="http://localhost" -TEST_SITE_WP_DOMAIN="localhost" -TEST_SITE_ADMIN_EMAIL="admin@localhost" -TEST_SITE_ADMIN_USERNAME="admin" -TEST_SITE_ADMIN_PASSWORD="password" \ No newline at end of file +TEST_WP_ROOT_FOLDER=/tmp/wordpress +TEST_DB_NAME=wpgraphql_woocommerce_test +TEST_DB_HOST=127.0.0.1 +TEST_DB_USER=root +TEST_DB_PASSWORD= +TEST_WP_TABLE_PREFIX=wp_ +TEST_SITE_ADMIN_EMAIL=admin@wp.test \ No newline at end of file diff --git a/.gitignore b/.gitignore index a65b338c0..a5dc3d9c9 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,5 @@ schema.graphql phpunit.xml docker-output composer.lock +c3.php +.logs/ \ No newline at end of file diff --git a/.log/access.log b/.log/access.log new file mode 100644 index 000000000..f09db93af --- /dev/null +++ b/.log/access.log @@ -0,0 +1,917 @@ +192.168.160.4 - - [23/Jul/2019:00:35:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:06 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:18 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:29 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:42 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:43 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:53 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.3 - - [23/Jul/2019:00:35:58 +0000] "POST /wp-cron.php?doing_wp_cron=1563842158.1035120487213134765625 HTTP/1.1" 200 192 "http://wordpress/wp-cron.php?doing_wp_cron=1563842158.1035120487213134765625" "WordPress/5.2.2; http://wordpress" +192.168.160.4 - - [23/Jul/2019:00:36:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:06 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:08 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:29 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:31 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:42 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:53 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:56 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:59 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:37:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:37:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:37:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:37:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:37:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:37:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:00:37:07 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:00:37:08 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:00:37:09 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +192.168.160.4 - - [23/Jul/2019:00:37:34 +0000] "POST /graphql HTTP/1.1" 404 9003 "-" "Symfony BrowserKit" +192.168.192.4 - - [23/Jul/2019:00:41:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:43 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:53 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:56 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:59 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:08 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:18 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:31 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.3 - - [23/Jul/2019:00:42:29 +0000] "POST /wp-cron.php?doing_wp_cron=1563842548.9784030914306640625000 HTTP/1.1" 200 192 "http://wordpress/wp-cron.php?doing_wp_cron=1563842548.9784030914306640625000" "WordPress/5.2.2; http://wordpress" +192.168.192.4 - - [23/Jul/2019:00:42:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:42 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:43 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:56 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:59 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:06 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:08 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:29 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:31 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:00:43:31 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:00:43:32 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +192.168.192.4 - - [23/Jul/2019:00:43:56 +0000] "POST /graphql HTTP/1.1" 404 9003 "-" "Symfony BrowserKit" +192.168.192.1 - - [23/Jul/2019:00:53:39 +0000] "GET / HTTP/1.1" 301 299 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.192.3 - - [23/Jul/2019:00:53:40 +0000] "POST /wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=42fc26538f HTTP/1.1" 200 492 "http://wordpress/wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=42fc26538f" "WordPress/5.2.2; http://wordpress" +192.168.192.3 - - [23/Jul/2019:00:53:40 +0000] "POST /wp-cron.php?doing_wp_cron=1563843220.4602689743041992187500 HTTP/1.1" 200 192 "http://wordpress/wp-cron.php?doing_wp_cron=1563843220.4602689743041992187500" "WordPress/5.2.2; http://wordpress" +192.168.192.1 - - [23/Jul/2019:00:54:30 +0000] "-" 408 0 "-" "-" +192.168.240.4 - - [23/Jul/2019:00:58:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:01:00:16 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:01:00:17 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +192.168.240.4 - - [23/Jul/2019:01:00:41 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" +172.21.0.4 - - [23/Jul/2019:15:47:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:15:49:14 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:15:49:15 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +172.21.0.4 - - [23/Jul/2019:15:49:38 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" +172.25.0.4 - - [23/Jul/2019:15:59:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:01:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:01:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:01:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:01:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:01:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:01:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:16:01:06 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:16:01:07 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +172.25.0.4 - - [23/Jul/2019:16:01:35 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" +172.25.0.4 - - [23/Jul/2019:16:18:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:21:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:16:21:01 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:16:21:02 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +172.25.0.4 - - [23/Jul/2019:16:22:08 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" +192.168.32.4 - - [23/Jul/2019:17:20:41 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:42 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:43 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:44 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:45 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:46 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:47 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:48 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:49 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:50 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:51 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:52 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:53 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:54 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:55 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:56 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:57 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:58 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:59 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:00 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:01 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:02 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:03 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:04 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:05 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:06 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:07 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:08 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:09 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:10 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:11 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:12 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:13 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:14 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:15 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:16 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:17 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:18 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:19 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:20 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:21 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:22 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:23 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:24 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:25 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:26 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:27 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:28 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:29 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:30 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:31 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:32 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:33 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:34 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:35 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:36 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:37 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:38 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:39 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:40 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:41 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:42 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:43 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:44 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:45 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:46 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:47 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:48 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:49 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:50 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:51 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:52 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:53 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:54 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:55 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:56 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:57 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:58 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:59 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:00 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:01 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:02 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:03 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:04 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:05 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:06 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:07 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:08 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:09 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:10 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:11 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:12 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:13 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:14 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:15 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:16 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:17 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:18 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:19 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:20 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:21 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:22 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:23 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:24 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:25 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:26 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:27 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:28 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:17:22:29 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:17:22:30 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:17:22:31 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +192.168.32.4 - - [23/Jul/2019:17:22:56 +0000] "POST /graphql HTTP/1.1" 404 443 "-" "Symfony BrowserKit" diff --git a/.log/app/access.log b/.log/app/access.log new file mode 100644 index 000000000..434e92ef9 --- /dev/null +++ b/.log/app/access.log @@ -0,0 +1,81 @@ +192.168.176.1 - - [23/Jul/2019:23:10:29 +0000] "GET /graphql HTTP/1.1" 200 758 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.176.1 - - [23/Jul/2019:23:10:31 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/graphql" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +127.0.0.1 - - [23/Jul/2019:23:10:32 +0000] "POST /wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=fe8313edf5 HTTP/1.1" 200 492 "http://localhost/wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=fe8313edf5" "WordPress/5.2.2; http://localhost" +127.0.0.1 - - [23/Jul/2019:23:10:30 +0000] "POST /wp-cron.php?doing_wp_cron=1563923430.3347780704498291015625 HTTP/1.1" 200 192 "http://localhost/wp-cron.php?doing_wp_cron=1563923430.3347780704498291015625" "WordPress/5.2.2; http://localhost" +192.168.176.1 - - [23/Jul/2019:23:14:18 +0000] "GET /graphql HTTP/1.1" 200 758 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.176.1 - - [23/Jul/2019:23:14:19 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/graphql" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.176.1 - - [23/Jul/2019:23:14:42 +0000] "GET /wp-admin HTTP/1.1" 301 584 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +127.0.0.1 - - [23/Jul/2019:23:14:43 +0000] "POST /wp-cron.php?doing_wp_cron=1563923682.8695790767669677734375 HTTP/1.1" 200 192 "http://localhost/wp-cron.php?doing_wp_cron=1563923682.8695790767669677734375" "WordPress/5.2.2; http://localhost" +192.168.176.1 - - [23/Jul/2019:23:14:42 +0000] "GET /wp-admin/ HTTP/1.1" 302 470 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.176.1 - - [23/Jul/2019:23:15:34 +0000] "-" 408 0 "-" "-" +192.168.240.1 - - [23/Jul/2019:23:22:52 +0000] "GET /graphql HTTP/1.1" 200 758 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:54 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/graphql" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:56 +0000] "GET /wp-admin/ HTTP/1.1" 302 475 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1 HTTP/1.1" 200 3784 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-includes/css/dashicons.min.css?ver=5.2.2 HTTP/1.1" 200 28819 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-includes/css/buttons.min.css?ver=5.2.2 HTTP/1.1" 200 1858 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/css/forms.min.css?ver=5.2.2 HTTP/1.1" 200 5807 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/css/l10n.min.css?ver=5.2.2 HTTP/1.1" 200 1022 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/css/login.min.css?ver=5.2.2 HTTP/1.1" 200 7245 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/images/wordpress-logo.svg?ver=20131107 HTTP/1.1" 200 1810 "http://localhost:8001/wp-admin/css/login.min.css?ver=5.2.2" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:02 +0000] "POST /wp-login.php HTTP/1.1" 302 1149 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +127.0.0.1 - - [23/Jul/2019:23:23:02 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:23:23:03 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +192.168.240.1 - - [23/Jul/2019:23:23:02 +0000] "GET /wp-admin/ HTTP/1.1" 200 17747 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/thickbox/thickbox.css?ver=5.2.2 HTTP/1.1" 200 1268 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5 HTTP/1.1" 200 1646 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-admin/load-styles.php?c=0&dir=ltr&load%5B%5D=dashicons,admin-bar,common,forms,admin-menu,dashboard,list-tables,edit,revisions,media,themes,about,nav-menus,wp-pointer,widgets&load%5B%5D=,site-icon,l10n,buttons,wp-auth-check&ver=5.2.2 HTTP/1.1" 200 84249 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/css/dashboard.css?ver=3.6.5 HTTP/1.1" 200 1512 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/css/activation.css?ver=3.6.5 HTTP/1.1" 200 832 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=jquery-core,jquery-migrate,utils,jquery-ui-core&ver=5.2.2 HTTP/1.1" 200 39618 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/datepicker.min.js?ver=1.11.4 HTTP/1.1" 200 11354 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/admin/reports.min.js?ver=3.6.5 HTTP/1.1" 200 1696 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.min.js?ver=3.6.5 HTTP/1.1" 200 12850 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.min.js?ver=3.6.5 HTTP/1.1" 200 933 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.min.js?ver=3.6.5 HTTP/1.1" 200 2211 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/css/editor.min.css?ver=5.2.2 HTTP/1.1" 200 6246 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.min.js?ver=3.6.5 HTTP/1.1" 200 3268 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.min.js?ver=3.6.5 HTTP/1.1" 200 995 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=7.0.0 HTTP/1.1" 200 33220 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=hoverIntent,common,admin-bar,wp-ajax-response,jquery-color,wp-lists,quicktags,jquery-query,admin-comments,jquery-ui-widget,jquer&load%5B%5D=y-ui-mouse,jquery-ui-sortable,postbox,underscore,wp-util,wp-a11y,dashboard,thickbox,plugin-install,updates,shortcode,media-uploa&load%5B%5D=d,svg-painter&ver=5.2.2 HTTP/1.1" 200 57228 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/dist/hooks.min.js?ver=2.2.0 HTTP/1.1" 200 2063 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/heartbeat.min.js?ver=5.2.2 HTTP/1.1" 200 2397 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/wp-auth-check.min.js?ver=5.2.2 HTTP/1.1" 200 1130 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/wplink.min.js?ver=5.2.2 HTTP/1.1" 200 4280 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/position.min.js?ver=1.11.4 HTTP/1.1" 200 2913 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/menu.min.js?ver=1.11.4 HTTP/1.1" 200 3195 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/autocomplete.min.js?ver=1.11.4 HTTP/1.1" 200 3219 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff HTTP/1.1" 200 14463 "http://localhost:8001/wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-includes/js/thickbox/loadingAnimation.gif HTTP/1.1" 200 15525 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-admin/admin-ajax.php?action=wp-compression-test&test=1&_ajax_nonce=373a1c364c&1563924186262 HTTP/1.1" 200 1106 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-admin/admin-ajax.php?action=wp-compression-test&test=no&_ajax_nonce=373a1c364c&1563924186549 HTTP/1.1" 200 484 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 1754 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-admin/admin-ajax.php?action=dashboard-widgets&widget=dashboard_primary&pagenow=dashboard HTTP/1.1" 200 876 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:06 +0000] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 526 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:15 +0000] "GET /wp-admin/ HTTP/1.1" 200 19015 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5 HTTP/1.1" 200 1646 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/css/dashboard.css?ver=3.6.5 HTTP/1.1" 200 1513 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/css/activation.css?ver=3.6.5 HTTP/1.1" 200 833 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/admin/reports.min.js?ver=3.6.5 HTTP/1.1" 200 1696 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.min.js?ver=3.6.5 HTTP/1.1" 200 12850 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.min.js?ver=3.6.5 HTTP/1.1" 200 932 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.min.js?ver=3.6.5 HTTP/1.1" 200 2210 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.min.js?ver=3.6.5 HTTP/1.1" 200 3268 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.min.js?ver=3.6.5 HTTP/1.1" 200 995 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff HTTP/1.1" 304 181 "http://localhost:8001/wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php HTTP/1.1" 200 8273 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-content/plugins/wp-graphiql/assets/app/build/static/css/main.820e0136.css?ver=5.2.2 HTTP/1.1" 200 6881 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-content/plugins/wp-graphiql/assets/js/wp-graphiql-helpers.js?ver=5.2.2 HTTP/1.1" 200 590 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=jquery-core,jquery-migrate,utils&ver=5.2.2 HTTP/1.1" 200 38219 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=hoverIntent,common,admin-bar,svg-painter&ver=5.2.2 HTTP/1.1" 200 9580 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-content/plugins/wp-graphiql/assets/app/build/static/js/main.ef1c9dbe.js?ver=5.2.2 HTTP/1.1" 200 225962 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:20 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:20 +0000] "POST /index.php?graphql HTTP/1.1" 200 861872 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +127.0.0.1 - - [23/Jul/2019:23:28:27 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:23:28:28 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:23:28:29 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +192.168.240.1 - - [23/Jul/2019:23:29:20 +0000] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 526 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:29:26 +0000] "POST /index.php?graphql HTTP/1.1" 200 790 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" diff --git a/.log/app/error.log b/.log/app/error.log new file mode 100644 index 000000000..489a4120d --- /dev/null +++ b/.log/app/error.log @@ -0,0 +1,16 @@ +[Tue Jul 23 23:08:37.390467 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 23:08:37.390627 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 23:10:33.922144 2019] [php7:warn] [pid 56] [client 127.0.0.1:38488] PHP Warning: ftp_rename() expects parameter 1 to be resource, null given in /var/www/html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 358, referer: http://localhost/wp-cron.php?doing_wp_cron=1563923430.3347780704498291015625 +[Tue Jul 23 23:12:03.788922 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 23:13:37.887310 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 23:13:37.887484 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 23:16:29.271624 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 23:19:51.645435 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 23:19:51.645599 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 23:23:14.963092 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 23:23:38.473319 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 23:23:38.473455 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 23:23:46.698214 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 23:27:38.316447 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 23:27:38.349795 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 23:29:54.327335 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down diff --git a/.log/app/other_vhosts_access.log b/.log/app/other_vhosts_access.log new file mode 100644 index 000000000..e69de29bb diff --git a/.log/error.log b/.log/error.log new file mode 100644 index 000000000..840b1b360 --- /dev/null +++ b/.log/error.log @@ -0,0 +1,25 @@ +[Tue Jul 23 00:34:59.367015 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 00:34:59.367160 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 00:39:52.575557 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 00:41:30.660723 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 00:41:30.702662 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 00:53:44.867254 2019] [php7:warn] [pid 42] [client 192.168.192.3:38964] PHP Warning: ftp_rename() expects parameter 1 to be resource, null given in /var/www/html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 358, referer: http://wordpress/wp-cron.php?doing_wp_cron=1563843220.4602689743041992187500 +[Tue Jul 23 00:54:31.957084 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 00:58:11.529737 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 00:58:11.529912 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 01:36:34.388618 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 15:47:13.645483 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 15:47:13.676461 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 15:55:24.547799 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 15:59:03.156410 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 15:59:03.189905 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 16:17:38.287007 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 16:18:03.637095 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 16:18:03.637232 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 16:22:44.209266 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 16:40:31.256545 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 16:40:31.256714 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 16:53:30.554674 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 17:20:41.296607 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 17:20:41.296757 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 17:26:22.268374 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down diff --git a/.log/other_vhosts_access.log b/.log/other_vhosts_access.log new file mode 100644 index 000000000..e69de29bb diff --git a/.log/testing/access.log b/.log/testing/access.log new file mode 100644 index 000000000..80924c626 --- /dev/null +++ b/.log/testing/access.log @@ -0,0 +1,9 @@ +127.0.0.1 - - [23/Jul/2019:22:57:30 +0000] "GET / HTTP/1.1" 200 4621 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:22:57:50 +0000] "GET /wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php/c3/report/clear HTTP/1.0" 200 192 "-" "-" +127.0.0.1 - - [23/Jul/2019:22:58:09 +0000] "POST /graphql HTTP/1.1" 500 465 "-" "Symfony BrowserKit" +127.0.0.1 - - [23/Jul/2019:23:01:39 +0000] "GET / HTTP/1.1" 200 4621 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:23:01:57 +0000] "GET /wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php/c3/report/clear HTTP/1.0" 200 192 "-" "-" +127.0.0.1 - - [23/Jul/2019:23:02:16 +0000] "POST /graphql HTTP/1.1" 500 465 "-" "Symfony BrowserKit" +127.0.0.1 - - [23/Jul/2019:23:12:39 +0000] "GET / HTTP/1.1" 200 4621 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:23:12:59 +0000] "GET /wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php/c3/report/clear HTTP/1.0" 200 192 "-" "-" +127.0.0.1 - - [23/Jul/2019:23:13:19 +0000] "POST /graphql HTTP/1.1" 500 465 "-" "Symfony BrowserKit" diff --git a/.log/testing/error.log b/.log/testing/error.log new file mode 100644 index 000000000..5f9f88d7d --- /dev/null +++ b/.log/testing/error.log @@ -0,0 +1,9 @@ +[Tue Jul 23 22:57:29.268138 2019] [mpm_prefork:notice] [pid 70] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 22:57:29.268288 2019] [core:notice] [pid 70] AH00094: Command line: '/usr/sbin/apache2' +[Tue Jul 23 22:58:09.793712 2019] [php7:error] [pid 75] [client 127.0.0.1:38306] PHP Fatal error: Uncaught Codeception\\Exception\\ConfigurationException: Path for output is not writable. Please, set appropriate access mode for output path: /var/www/html/wp-content/plugins/wp-graphql-woocommerce/tests/_output/ in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/vendor/codeception/codeception/src/Codeception/Configuration.php:550\nStack trace:\n#0 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/vendor/codeception/codeception/src/Codeception/Configuration.php(565): Codeception\\Configuration::outputDir()\n#1 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php(119): Codeception\\Configuration::logDir()\n#2 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php(28): require_once('/var/www/html/w...')\n#3 /var/www/html/wp-settings.php(362): include_once('/var/www/html/w...')\n#4 /var/www/html/wp-config.php(78): require_once('/var/www/html/w...')\n#5 /var/www/html/wp-load.php(37): require_once('/var/www/html/w...')\n#6 /var/www/html/wp-blog-header.php(13): require_once( in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/vendor/codeception/codeception/src/Codeception/Configuration.php on line 550 +[Tue Jul 23 23:01:39.201492 2019] [mpm_prefork:notice] [pid 70] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 23:01:39.225138 2019] [core:notice] [pid 70] AH00094: Command line: '/usr/sbin/apache2' +[Tue Jul 23 23:02:16.489891 2019] [php7:error] [pid 77] [client 127.0.0.1:38386] PHP Fatal error: Uncaught Error: Class 'Codeception\\Configuration' not found in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php:100\nStack trace:\n#0 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php(28): require_once()\n#1 /var/www/html/wp-settings.php(362): include_once('/var/www/html/w...')\n#2 /var/www/html/wp-config.php(78): require_once('/var/www/html/w...')\n#3 /var/www/html/wp-load.php(37): require_once('/var/www/html/w...')\n#4 /var/www/html/wp-blog-header.php(13): require_once('/var/www/html/w...')\n#5 /var/www/html/index.php(17): require('/var/www/html/w...')\n#6 {main}\n thrown in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php on line 100 +[Tue Jul 23 23:12:37.992432 2019] [mpm_prefork:notice] [pid 69] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 23:12:37.992574 2019] [core:notice] [pid 69] AH00094: Command line: '/usr/sbin/apache2' +[Tue Jul 23 23:13:19.169432 2019] [php7:error] [pid 75] [client 127.0.0.1:38586] PHP Fatal error: Uncaught Error: Class 'Codeception\\Configuration' not found in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php:100\nStack trace:\n#0 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php(28): require_once()\n#1 /var/www/html/wp-settings.php(362): include_once('/var/www/html/w...')\n#2 /var/www/html/wp-config.php(78): require_once('/var/www/html/w...')\n#3 /var/www/html/wp-load.php(37): require_once('/var/www/html/w...')\n#4 /var/www/html/wp-blog-header.php(13): require_once('/var/www/html/w...')\n#5 /var/www/html/index.php(17): require('/var/www/html/w...')\n#6 {main}\n thrown in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php on line 100 diff --git a/.log/testing/other_vhosts_access.log b/.log/testing/other_vhosts_access.log new file mode 100644 index 000000000..e69de29bb diff --git a/.travis.yml b/.travis.yml index 11daab389..ea657003d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,7 @@ notifications: branches: only: - develop + - master - release-v0.1.2 - release-v0.2.0 - release-v0.2.1 @@ -29,13 +30,13 @@ env: global: - WP_CORE_DIR: /tmp/wordpress matrix: - - PHP_VERSION=7.3 WP_VERSION=latest COVERAGE=1 + - PHP_VERSION=7.3 WP_VERSION=5.2.2 COVERAGE=1 - PHP_VERSION=7.2 PHPCS=1 - - PHP_VERSION=7.2 WP_VERSION=latest - - PHP_VERSION=7.1 WP_VERSION=latest - - PHP_VERSION=7.0 WP_VERSION=latest + - PHP_VERSION=7.2 WP_VERSION=5.2.2 + - PHP_VERSION=7.1 WP_VERSION=5.2.2 + - PHP_VERSION=7.0 WP_VERSION=5.2.2 - PHP_VERSION=5.6 WP_VERSION=4.9 - - PHP_VERSION=5.6 WP_VERSION=latest DEBUG=1 + - PHP_VERSION=5.6 WP_VERSION=5.2.2 DEBUG=1 - PHP_VERSION=5.6 WP_VERSION=trunk before_install: @@ -63,14 +64,16 @@ before_script: if [ ! -z "$WP_VERSION" ]; then # Install and config Codeception cp .env.dist .env - composer install-wp-tests - travis_retry composer install --no-dev --prefer-source --no-interaction + travis_retry composer install --prefer-source --no-interaction if [ "$COVERAGE" == "1" ]; then # Install Coveralls mkdir -p build/logs COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require php-coveralls/php-coveralls fi - docker-compose build --build-arg PHP_VERSION=$(PHP_VERSION) wpbrowser + docker-compose build \ + --build-arg DESIRED_PHP_VERSION=$(PHP_VERSION) \ + --build-arg DESIRED_WP_VERSION=$(WP_VERSION) \ + woographql ls -al fi # Install PHP CodeSniffer and WPCS. @@ -85,7 +88,9 @@ script: # Execute unit tests with coverage if specified, otherwise without coverage - | if [ ! -z "$WP_VERSION" ]; then - docker-compose run --rm wpbrowser + docker-compose run -e SUITE=functional -e COVERAGE=${COVERAGE:-0} testing --rm testing --scale app=0 + docker-compose run -e SUITE=acceptance -e COVERAGE=${COVERAGE:-0} testing --rm testing --scale app=0 + docker-compose run -e SUITE=wpunit -e COVERAGE=${COVERAGE:-0} testing --rm testing --scale app=0 fi - | if [ "$PHPCS" == "1" ]; then diff --git a/Dockerfile b/Dockerfile index 4d621ebb7..a767813ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,35 +1,29 @@ -ARG PHP_VERSION -FROM php:${PHP_VERSION:-7.2}-apache-stretch +############################################################################### +# Pre-configured WordPress Installation w/ WooCommerce, WPGraphQL, WooGraphQL # +# For testing only, use in production not recommended. # +############################################################################### + +# Using the 'DESIRED_' prefix to avoid confusion with environment variables of the same name. +ARG DESIRED_WP_VERSION +ARG DESIRED_PHP_VERSION + +FROM wordpress:${DESIRED_WP_VERSION}-php${DESIRED_PHP_VERSION}-apache + +LABEL author=kidunot89 +LABEL author_uri=https://github.com/kidunot89 SHELL [ "/bin/bash", "-c" ] -# Install required system packages +# Install system packages RUN apt-get update && \ apt-get -y install \ - # WordPress dependencies - libjpeg-dev \ - libpng-dev \ - mysql-client \ # CircleCI depedencies git \ ssh \ tar \ gzip \ - wget - -# Install php extensions -RUN docker-php-ext-install \ - bcmath \ - zip \ - gd \ - pdo_mysql \ - mysqli \ - opcache \ - pcov \ - && docker-php-ext-enable pcov - -# Configure php -RUN echo "date.timezone = UTC" >> /usr/local/etc/php/php.ini + wget \ + mariadb-client # Install Dockerize ENV DOCKERIZE_VERSION v0.6.1 @@ -37,47 +31,29 @@ RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSI && tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \ && rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz +# Install WP-CLI +RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar \ + && chmod +x wp-cli.phar \ + && mv wp-cli.phar /usr/local/bin/wp -# Install composer -ENV COMPOSER_ALLOW_SUPERUSER=1 - -RUN curl -sS https://getcomposer.org/installer | php -- \ - --filename=composer \ - --install-dir=/usr/local/bin - -# Install tool to speed up composer installations -RUN composer global require --optimize-autoloader \ - "hirak/prestissimo" - -# Install wp-browser and php-coveralls globally -RUN composer global require \ - phpunit/phpunit:8.1 \ - lucatume/wp-browser:^2.2 \ - league/factory-muffin:^3.0 \ - league/factory-muffin-faker:^2.0 \ - php-coveralls/php-coveralls - -# Add composer global binaries to PATH -ENV PATH "$PATH:~/.composer/vendor/bin" - -# Set up WordPress config +# Set project environmental variables ENV WP_ROOT_FOLDER="/var/www/html" -ENV WP_URL="http://localhost" -ENV WP_DOMAIN="localhost" -ENV WP_TABLE_PREFIX="wp_" -ENV ADMIN_EMAIL="admin@wordpress.local" -ENV ADMIN_USERNAME="admin" -ENV ADMIN_PASSWORD="password" +ENV WORDPRESS_DB_HOST=${DB_HOST} +ENV WORDPRESS_DB_USER=${DB_USER} +ENV WORDPRESS_DB_PASSWORD=${DB_PASSWORD} +ENV WORDPRESS_DB_NAME=${DB_NAME} +ENV PLUGINS_DIR="${WP_ROOT_FOLDER}/wp-content/plugins" +ENV PROJECT_DIR="${PLUGINS_DIR}/wp-graphql-woocommerce" -# Set up wp-browser / codeception -WORKDIR /var/www/config -COPY codeception.docker.yml codeception.dist.yml +# Remove exec statement from base entrypoint script. +RUN sed -i '$d' /usr/local/bin/docker-entrypoint.sh # Set up Apache -RUN echo 'ServerName localhost' >> /etc/apache2/apache2.conf +RUN echo 'ServerName localhost' >> /etc/apache2/apache2.conf # Set up entrypoint WORKDIR /var/www/html -COPY bin/entrypoint.sh /entrypoint.sh -RUN chmod 755 /entrypoint.sh -ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file +COPY bin/entrypoint.sh /usr/local/bin/app-entrypoint.sh +RUN chmod 755 /usr/local/bin/app-entrypoint.sh +ENTRYPOINT ["app-entrypoint.sh"] +CMD ["apache2-foreground"] \ No newline at end of file diff --git a/Dockerfile.tester b/Dockerfile.tester new file mode 100644 index 000000000..0092e6054 --- /dev/null +++ b/Dockerfile.tester @@ -0,0 +1,51 @@ +############################################################################ +# Container for running Codeception tests on a WooGraphQL Docker instance. # +############################################################################ + +FROM kidunot89/woographql-app + +LABEL author=kidunot89 +LABEL author_uri=https://github.com/kidunot89 + +SHELL [ "/bin/bash", "-c" ] + +# Install php extensions +RUN docker-php-ext-install pdo_mysql + +# Install pcov +RUN pecl install pcov \ + && docker-php-ext-enable pcov + +# Install composer +ENV COMPOSER_ALLOW_SUPERUSER=1 + +RUN curl -sS https://getcomposer.org/installer | php -- \ + --filename=composer \ + --install-dir=/usr/local/bin + +# Install tool to speed up composer installations +RUN composer global require --optimize-autoloader \ + "hirak/prestissimo" + +# Install wp-browser globally +RUN composer global require \ + phpunit/phpunit:8.1 \ + lucatume/wp-browser:^2.2 \ + league/factory-muffin:^3.0 \ + league/factory-muffin-faker:^2.0 + +# Add composer global binaries to PATH +ENV PATH "$PATH:~/.composer/vendor/bin" + +# Set up wp-browser / codeception +WORKDIR /var/www/config +COPY codeception.docker.yml codeception.dist.yml + +# Remove exec statement from base entrypoint script. +RUN sed -i '$d' /usr/local/bin/app-entrypoint.sh + +# Set up entrypoint +WORKDIR /var/www/html +COPY bin/testing-entrypoint.sh /usr/local/bin/testing-entrypoint.sh +RUN chmod 755 /usr/local/bin/testing-entrypoint.sh +ENTRYPOINT ["testing-entrypoint.sh"] \ No newline at end of file diff --git a/bin/entrypoint.sh b/bin/entrypoint.sh index 94bb99129..5fb54cacc 100644 --- a/bin/entrypoint.sh +++ b/bin/entrypoint.sh @@ -1,70 +1,70 @@ #!/bin/bash -# Ensure mysql is loaded -dockerize -wait tcp://$DB_HOST:3306 -timeout 1m - -# Ensure Apache is running -service apache2 start - -# Enable Mod Rewrite and restart Apache -a2enmod rewrite -service apache2 restart - -# Link codeception config if not yet linked -if [ ! -e codeception.dist.yml ]; then - ln -s /var/www/config/codeception.dist.yml /var/www/html/codeception.dist.yml -fi +# Run WordPress docker entrypoint. +. docker-entrypoint.sh 'apache2' -# Download WordPress -wp core download \ - --path=/var/www/html \ - --quiet \ - --allow-root +# Ensure mysql is loaded +dockerize -wait tcp://${DB_HOST}:${DB_HOST_PORT:-3306} -timeout 1m # Config WordPress -wp config create \ - --path=/var/www/html \ - --dbname="$DB_NAME" \ - --dbuser="$DB_USER" \ - --dbpass="$DB_PASSWORD" \ - --dbhost="$DB_HOST" \ - --dbprefix="$WP_TABLE_PREFIX" \ - --skip-check \ - --quiet \ - --allow-root +if [ ! -f "${WP_ROOT_FOLDER}/wp-config.php" ]; then + wp config create \ + --path="${WP_ROOT_FOLDER}" \ + --dbname="${DB_NAME}" \ + --dbuser="${DB_USER}" \ + --dbpass="${DB_PASSWORD}" \ + --dbhost="${DB_HOST}" \ + --dbprefix="${WP_TABLE_PREFIX}" \ + --skip-check \ + --quiet \ + --allow-root +fi # Install WP if not yet installed if ! $( wp core is-installed --allow-root ); then wp core install \ - --path=/var/www/html \ - --url=$WP_URL \ + --path="${WP_ROOT_FOLDER}" \ + --url="${WP_URL}" \ --title='Test' \ - --admin_user=$ADMIN_USERNAME \ - --admin_password=$ADMIN_PASSWORD \ - --admin_email=$ADMIN_EMAIL \ + --admin_user="${ADMIN_USERNAME}" \ + --admin_password="${ADMIN_PASSWORD}" \ + --admin_email="${ADMIN_EMAIL}" \ --allow-root fi -mkdir -p /var/www/html/wp-content +# Install and activate WooCommerce +if [ ! -f "${PLUGINS_DIR}/woocommerce/woocommerce.php" ]; then + wp plugin install woocommerce --activate --allow-root +fi + +# Install and activate WPGraphQL +if [ ! -f "${PLUGINS_DIR}/wp-graphql/wp-graphql.php" ]; then + wp plugin install \ + https://github.com/wp-graphql/wp-graphql/archive/master.zip \ + --activate --allow-root +fi + +# Install and activate WPGraphQL JWT Authentication +if [ ! -f "${PLUGINS_DIR}/wp-graphql-jwt-authentication/wp-graphql-jwt-authentication.php" ]; then + wp plugin install \ + https://github.com/wp-graphql/wp-graphql-jwt-authentication/archive/master.zip \ + --activate --allow-root +fi + +if [ ! -z "$INCLUDE_WPGRAPHIQL" ]; then + if [ ! -f "${PLUGINS_DIR}/wp-graphiql/wp-graphiql.php" ]; then + wp plugin install \ + https://github.com/wp-graphql/wp-graphiql/archive/master.zip \ + --activate --allow-root + fi +fi + +# Activate WooGraphQL +wp plugin activate wp-graphql-woocommerce --allow-root -# Build Code coverage log directory -mkdir -p /var/www/html/build/logs +# Set pretty permalinks. +wp rewrite structure '/%year%/%monthnum%/%postname%/' --allow-root -wp db export \ - /var/www/html/wp-content/mysql.sql \ - --allow-root +wp db export "${PROJECT_DIR}/tests/_data/dump.sql" --allow-root -# Run the tests -if [ "$COVERAGE" == "1" ]; then - codecept run acceptance --coverage --coverage-xml - codecept run functional --coverage --coverage-xml - codecept run wpunit --coverage --coverage-xml -elif [ "$DEBUG" == "1" ]; then - codecept run acceptance --debug - codecept run functional --debug - codecept run wpunit --debug -else - codecept run acceptance - codecept run functional - codecept run wpunit -fi \ No newline at end of file +exec "$@" \ No newline at end of file diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index 468bad584..f072d796a 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -33,12 +33,7 @@ fi if [ -z "$SKIP_DB_CREATE" ]; then SKIP_DB_CREATE=false fi -if [[ -z "$TEST_SITE_WP_URL" ]]; then - echo "TEST_SITE_WP_URL not found" - print_usage_instruction -else - DB_NAME=$TEST_DB_NAME -fi + WP_VERSION=${WP_VERSION-latest} TMPDIR=${TMPDIR-/tmp} TMPDIR=$(echo $TMPDIR | sed -e "s/\/$//") @@ -186,7 +181,7 @@ install_db() { configure_wordpress() { cd $WP_CORE_DIR wp config create --dbname="$DB_NAME" --dbuser="$DB_USER" --dbpass="$DB_PASS" --dbhost="$DB_HOST" --skip-check --force=true - wp core install --url="$TEST_SITE_WP_URL" --title="WPGraphQL WooCommerce Tests" --admin_user=admin --admin_password=password --admin_email=admin@wp.test + wp core install --url=wp.test --title="WPGraphQL WooCommerce Tests" --admin_user=admin --admin_password=password --admin_email=admin@wp.test wp rewrite structure '/%year%/%monthnum%/%postname%/' } diff --git a/bin/testing-entrypoint.sh b/bin/testing-entrypoint.sh new file mode 100644 index 000000000..c63df5ef7 --- /dev/null +++ b/bin/testing-entrypoint.sh @@ -0,0 +1,35 @@ +#!/bin/bash + +# Run app entrypoint script. +. app-entrypoint.sh + +# Ensure Apache is running +service apache2 start + +# Ensure everything is loaded +dockerize \ + -wait tcp://${TEST_DB_HOST}:${TEST_DB_HOST_PORT:-3306} \ + -wait http://localhost \ + -timeout 1m + + +# Download c3 for testing. +if [ ! -f "${PROJECT_DIR}/c3.php" ]; then + curl -L 'https://raw.github.com/Codeception/c3/2.0/c3.php' > "${PROJECT_DIR}/c3.php" +fi + +# Link codeception config if not yet linked +if [ ! -e codeception.dist.yml ]; then + ln -s /var/www/config/codeception.dist.yml /var/www/html/codeception.dist.yml +fi + +# Run the tests +if [ "$COVERAGE" == "1" ]; then + codecept run ${SUITE} --debug --coverage --coverage-xml +elif [ "$DEBUG" == "1" ]; then + codecept run ${SUITE} --debug +else + codecept run ${SUITE} +fi + +exec "$@" \ No newline at end of file diff --git a/codeception.docker.yml b/codeception.docker.yml index 461c9a1df..ac2aa145f 100644 --- a/codeception.docker.yml +++ b/codeception.docker.yml @@ -1,6 +1,6 @@ paths: tests: tests - output: tests/_output + log: tests/_output data: tests/_data support: tests/_support envs: tests/_envs @@ -12,7 +12,7 @@ settings: memory_limit: 1024M coverage: enabled: true - remote: false + c3_url: http://localhost/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php whitelist: include: - wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php @@ -33,16 +33,16 @@ extensions: modules: config: WPDb: - dsn: 'mysql:host=%DB_HOST%;dbname=%DB_NAME%' - user: '%DB_USER%' - password: '%DB_PASSWORD%' + dsn: 'mysql:host=%TEST_DB_HOST%;dbname=%TEST_DB_NAME%' + user: '%TEST_DB_USER%' + password: '%TEST_DB_PASSWORD%' populator: 'mysql -u $user -p$password -h $host $dbname < $dump' dump: 'tests/_data/dump.sql' populate: true cleanup: true - url: '%WP_URL%' + url: 'http://localhost' urlReplacement: true - tablePrefix: '%WP_TABLE_PREFIX%' + tablePrefix: '%TEST_WP_TABLE_PREFIX%' WPBrowser: url: 'http://localhost' wpRootFolder: '%WP_ROOT_FOLDER%' @@ -59,15 +59,15 @@ modules: themes: '/wp-content/themes' uploads: '/wp-content/uploads' WPLoader: - wpRootFolder: "%WP_ROOT_FOLDER%" - dbName: "%DB_NAME%" - dbHost: "%DB_HOST%" - dbUser: "%DB_USER%" - dbPassword: "%DB_PASSWORD%" - tablePrefix: "%WP_TABLE_PREFIX%" - domain: "%WP_DOMAIN%" - adminEmail: "%ADMIN_EMAIL%" - title: "Test" + wpRootFolder: '%WP_ROOT_FOLDER%' + dbName: 'wordpress_tests' + dbHost: 'testing-db' + dbUser: '%DB_USER%' + dbPassword: '%DB_PASSWORD%' + tablePrefix: '%WP_TABLE_PREFIX%' + domain: '%WP_DOMAIN%' + adminEmail: '%ADMIN_EMAIL%' + title: 'Test' plugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] activatePlugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] - configFile: "tests/_data/config.php" + configFile: 'tests/_data/config.php' diff --git a/codeception.yml b/codeception.yml index 25924fa0c..16e28dcb4 100644 --- a/codeception.yml +++ b/codeception.yml @@ -1,6 +1,6 @@ paths: tests: tests - output: tests/_output + log: tests/_output data: tests/_data support: tests/_support envs: tests/_envs @@ -10,6 +10,7 @@ settings: memory_limit: 1024M coverage: enabled: true + remote: true whitelist: include: - wp-graphql-woocommerce.php @@ -32,26 +33,26 @@ params: modules: config: WPDb: - dsn: 'mysql:host=%TEST_SITE_DB_HOST%;dbname=%TEST_SITE_DB_NAME%' - user: '%TEST_SITE_DB_USER%' - password: '%TEST_SITE_DB_PASSWORD%' + dsn: 'mysql:host=%TEST_DB_HOST%;dbname=%DB_NAME%' + user: '%DB_USER%' + password: '%DB_PASSWORD%' dump: 'tests/_data/dump.sql' #import the dump before the tests; this means the test site database will be repopulated before the tests. populate: true # re-import the dump between tests; this means the test site database will be repopulated between the tests. cleanup: true waitlock: 0 - url: '%TEST_SITE_WP_URL%' + url: '%WP_URL%' urlReplacement: true #replace the hardcoded dump URL with the one above - tablePrefix: '%TEST_SITE_TABLE_PREFIX%' + tablePrefix: '%WP_TABLE_PREFIX%' WPBrowser: - url: '%TEST_SITE_WP_URL%' - adminUsername: '%TEST_SITE_ADMIN_USERNAME%' - adminPassword: '%TEST_SITE_ADMIN_PASSWORD%' - adminPath: '%TEST_SITE_WP_ADMIN_PATH%' + url: '%WP_URL%' + adminUsername: '%ADMIN_USERNAME%' + adminPassword: '%ADMIN_PASSWORD%' + adminPath: '%ADMIN_PATH%' REST: depends: WPBrowser - url: '%TEST_SITE_WP_URL%' + url: '%WP_URL%' WPFilesystem: wpRootFolder: '%WP_ROOT_FOLDER%' plugins: '/wp-content/plugins' @@ -59,14 +60,14 @@ modules: themes: '/wp-content/themes' uploads: '/wp-content/uploads' WPLoader: - wpRootFolder: "%WP_ROOT_FOLDER%" + wpRootFolder: "%TEST_WP_ROOT_FOLDER%" dbName: "%TEST_DB_NAME%" dbHost: "%TEST_DB_HOST%" dbUser: "%TEST_DB_USER%" dbPassword: "%TEST_DB_PASSWORD%" tablePrefix: "%TEST_TABLE_PREFIX%" - domain: "%TEST_SITE_WP_DOMAIN%" - adminEmail: "%TEST_SITE_ADMIN_EMAIL%" + domain: "%TEST_WP_DOMAIN%" + adminEmail: "%TEST_ADMIN_EMAIL%" title: "Test" plugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] activatePlugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] diff --git a/docker-compose.yml b/docker-compose.yml index 626b48fc8..7c49fe039 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,33 +1,78 @@ version: '3.3' services: - - wpbrowser: - build: . - image: kidunot89/wp-browser - links: - - db:mysql + app: + depends_on: + - app_db + build: + context: . + args: + DESIRED_PHP_VERSION: "${PHP_VERSION:-7.2}" + DESIRED_WP_VERSION: "${WP_VERSION:-5.2.2}" + image: kidunot89/woographql-app volumes: - - '$WP_CORE_DIR/wp-content:/var/www/html/wp-content' - - './tests:/var/www/html/tests' - - './codeception.docker.yml:/var/www/config/codeception.dist.yml' - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' + - './.log/app:/var/log/apache2' + env_file: .env environment: - - DB_NAME=wordpress - - DB_HOST=db - - DB_USER=wordpress - - DB_PASSWORD=wordpress - - WPGRAPHQL_WOOCOMMERCE_AUTOLOAD=1 - - COVERAGE - - DEBUG + WP_URL: 'http://localhost:8001' + WP_DOMAIN: 'localhost:8001' + DB_HOST: app_db + INCLUDE_WPGRAPHIQL: 1 ports: - - 8080:80 + - '8001:80' + networks: + local: - db: + app_db: image: mysql:5.7 - restart: always environment: MYSQL_ROOT_PASSWORD: root MYSQL_DATABASE: wordpress MYSQL_USER: wordpress - MYSQL_PASSWORD: wordpress \ No newline at end of file + MYSQL_PASSWORD: wordpress + ports: + - '3306' + networks: + testing: + local: + + testing: + depends_on: + - app_db + - testing_db + build: + context: . + dockerfile: Dockerfile.tester + image: kidunot89/woographql-testing + volumes: + - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' + - './tests:/var/www/html/tests' + - './.log/testing:/var/log/apache2' + env_file: .env + environment: + TEST_DB_HOST: testing_db + TEST_DB_USER: wordpress + TEST_DB_PASSWORD: wordpress + DB_HOST: app_db + DB_USER: wordpress + DB_PASSWORD: wordpress + WPGRAPHQL_WOOCOMMERCE_AUTOLOAD: 1 + networks: + testing: + + testing_db: + image: mysql:5.7 + environment: + MYSQL_ROOT_PASSWORD: root + MYSQL_DATABASE: wordpress_tests + MYSQL_USER: wordpress + MYSQL_PASSWORD: wordpress + ports: + - '3306' + networks: + testing: + +networks: + local: + testing: \ No newline at end of file diff --git a/tests/functional/QLSessionHandlerCest.php b/tests/functional/QLSessionHandlerCest.php index 88be09082..53464420a 100644 --- a/tests/functional/QLSessionHandlerCest.php +++ b/tests/functional/QLSessionHandlerCest.php @@ -4,25 +4,6 @@ class QLSessionHandlerCest { private $product_id; public function _before( FunctionalTester $I ) { - // Activate plugins - $I->loginAsAdmin(); - $I->amOnPluginsPage(); - $I->activatePlugin( - array( - 'woocommerce', - 'wp-graphql', - 'wpgraphql-jwt-authentication', - 'wp-graphql-woocommerce', - ) - ); - $I->seePluginActivated( 'woocommerce' ); - $I->seePluginActivated( 'wp-graphql' ); - $I->seePluginActivated( 'wpgraphql-jwt-authentication' ); - $I->seePluginActivated( 'wp-graphql-woocommerce' ); - $I->amOnAdminPage('options-permalink.php'); - $I->click('#submit'); - $I->amOnPage( '/' ); - // Create Product $this->product_id = $I->havePostInDatabase( array( 'post_type' => 'product', diff --git a/wp-graphql-woocommerce.php b/wp-graphql-woocommerce.php index 8c4924c01..3ce42aa65 100644 --- a/wp-graphql-woocommerce.php +++ b/wp-graphql-woocommerce.php @@ -19,8 +19,6 @@ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; -defined( 'GRAPHQL_DEBUG' ) || define( 'GRAPHQL_DEBUG', true ); - /** * If the codeception remote coverage file exists, require it. * @@ -36,7 +34,7 @@ function wp_graphql_woocommerce_constants() { // Plugin version. if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_VERSION' ) ) { - define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.0.1' ); + define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.2.1' ); } // Plugin Folder Path. if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR' ) ) { From 0865b03548443db95cc60e83374e24f1221ecc4e Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Wed, 24 Jul 2019 12:23:28 -0400 Subject: [PATCH 16/56] More docker refactoring --- .gitignore | 2 +- .log/access.log | 917 --------------------------- .log/app/access.log | 81 --- .log/app/error.log | 16 - .log/app/other_vhosts_access.log | 0 .log/error.log | 25 - .log/other_vhosts_access.log | 0 .log/testing/access.log | 9 - .log/testing/error.log | 9 - .log/testing/other_vhosts_access.log | 0 .travis.yml | 1 - Dockerfile.tester | 6 +- docker-compose.yml | 12 +- 13 files changed, 11 insertions(+), 1067 deletions(-) delete mode 100644 .log/access.log delete mode 100644 .log/app/access.log delete mode 100644 .log/app/error.log delete mode 100644 .log/app/other_vhosts_access.log delete mode 100644 .log/error.log delete mode 100644 .log/other_vhosts_access.log delete mode 100644 .log/testing/access.log delete mode 100644 .log/testing/error.log delete mode 100644 .log/testing/other_vhosts_access.log diff --git a/.gitignore b/.gitignore index a5dc3d9c9..6a9e78f83 100644 --- a/.gitignore +++ b/.gitignore @@ -26,4 +26,4 @@ phpunit.xml docker-output composer.lock c3.php -.logs/ \ No newline at end of file +.log/ \ No newline at end of file diff --git a/.log/access.log b/.log/access.log deleted file mode 100644 index f09db93af..000000000 --- a/.log/access.log +++ /dev/null @@ -1,917 +0,0 @@ -192.168.160.4 - - [23/Jul/2019:00:35:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:06 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:18 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:29 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:42 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:43 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:53 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.3 - - [23/Jul/2019:00:35:58 +0000] "POST /wp-cron.php?doing_wp_cron=1563842158.1035120487213134765625 HTTP/1.1" 200 192 "http://wordpress/wp-cron.php?doing_wp_cron=1563842158.1035120487213134765625" "WordPress/5.2.2; http://wordpress" -192.168.160.4 - - [23/Jul/2019:00:36:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:06 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:08 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:29 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:31 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:42 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:53 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:56 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:59 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:37:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:37:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:37:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:37:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:37:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:37:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:00:37:07 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:00:37:08 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:00:37:09 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -192.168.160.4 - - [23/Jul/2019:00:37:34 +0000] "POST /graphql HTTP/1.1" 404 9003 "-" "Symfony BrowserKit" -192.168.192.4 - - [23/Jul/2019:00:41:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:43 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:53 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:56 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:59 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:08 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:18 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:31 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.3 - - [23/Jul/2019:00:42:29 +0000] "POST /wp-cron.php?doing_wp_cron=1563842548.9784030914306640625000 HTTP/1.1" 200 192 "http://wordpress/wp-cron.php?doing_wp_cron=1563842548.9784030914306640625000" "WordPress/5.2.2; http://wordpress" -192.168.192.4 - - [23/Jul/2019:00:42:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:42 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:43 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:56 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:59 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:06 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:08 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:29 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:31 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:00:43:31 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:00:43:32 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -192.168.192.4 - - [23/Jul/2019:00:43:56 +0000] "POST /graphql HTTP/1.1" 404 9003 "-" "Symfony BrowserKit" -192.168.192.1 - - [23/Jul/2019:00:53:39 +0000] "GET / HTTP/1.1" 301 299 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.192.3 - - [23/Jul/2019:00:53:40 +0000] "POST /wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=42fc26538f HTTP/1.1" 200 492 "http://wordpress/wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=42fc26538f" "WordPress/5.2.2; http://wordpress" -192.168.192.3 - - [23/Jul/2019:00:53:40 +0000] "POST /wp-cron.php?doing_wp_cron=1563843220.4602689743041992187500 HTTP/1.1" 200 192 "http://wordpress/wp-cron.php?doing_wp_cron=1563843220.4602689743041992187500" "WordPress/5.2.2; http://wordpress" -192.168.192.1 - - [23/Jul/2019:00:54:30 +0000] "-" 408 0 "-" "-" -192.168.240.4 - - [23/Jul/2019:00:58:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:01:00:16 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:01:00:17 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -192.168.240.4 - - [23/Jul/2019:01:00:41 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" -172.21.0.4 - - [23/Jul/2019:15:47:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:15:49:14 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:15:49:15 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -172.21.0.4 - - [23/Jul/2019:15:49:38 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" -172.25.0.4 - - [23/Jul/2019:15:59:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:01:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:01:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:01:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:01:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:01:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:01:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:16:01:06 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:16:01:07 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -172.25.0.4 - - [23/Jul/2019:16:01:35 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" -172.25.0.4 - - [23/Jul/2019:16:18:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:21:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:16:21:01 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:16:21:02 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -172.25.0.4 - - [23/Jul/2019:16:22:08 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" -192.168.32.4 - - [23/Jul/2019:17:20:41 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:42 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:43 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:44 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:45 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:46 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:47 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:48 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:49 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:50 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:51 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:52 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:53 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:54 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:55 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:56 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:57 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:58 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:59 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:00 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:01 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:02 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:03 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:04 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:05 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:06 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:07 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:08 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:09 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:10 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:11 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:12 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:13 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:14 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:15 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:16 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:17 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:18 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:19 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:20 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:21 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:22 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:23 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:24 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:25 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:26 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:27 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:28 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:29 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:30 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:31 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:32 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:33 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:34 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:35 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:36 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:37 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:38 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:39 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:40 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:41 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:42 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:43 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:44 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:45 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:46 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:47 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:48 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:49 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:50 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:51 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:52 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:53 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:54 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:55 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:56 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:57 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:58 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:59 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:00 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:01 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:02 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:03 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:04 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:05 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:06 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:07 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:08 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:09 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:10 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:11 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:12 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:13 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:14 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:15 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:16 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:17 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:18 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:19 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:20 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:21 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:22 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:23 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:24 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:25 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:26 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:27 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:28 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:17:22:29 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:17:22:30 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:17:22:31 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -192.168.32.4 - - [23/Jul/2019:17:22:56 +0000] "POST /graphql HTTP/1.1" 404 443 "-" "Symfony BrowserKit" diff --git a/.log/app/access.log b/.log/app/access.log deleted file mode 100644 index 434e92ef9..000000000 --- a/.log/app/access.log +++ /dev/null @@ -1,81 +0,0 @@ -192.168.176.1 - - [23/Jul/2019:23:10:29 +0000] "GET /graphql HTTP/1.1" 200 758 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.176.1 - - [23/Jul/2019:23:10:31 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/graphql" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -127.0.0.1 - - [23/Jul/2019:23:10:32 +0000] "POST /wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=fe8313edf5 HTTP/1.1" 200 492 "http://localhost/wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=fe8313edf5" "WordPress/5.2.2; http://localhost" -127.0.0.1 - - [23/Jul/2019:23:10:30 +0000] "POST /wp-cron.php?doing_wp_cron=1563923430.3347780704498291015625 HTTP/1.1" 200 192 "http://localhost/wp-cron.php?doing_wp_cron=1563923430.3347780704498291015625" "WordPress/5.2.2; http://localhost" -192.168.176.1 - - [23/Jul/2019:23:14:18 +0000] "GET /graphql HTTP/1.1" 200 758 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.176.1 - - [23/Jul/2019:23:14:19 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/graphql" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.176.1 - - [23/Jul/2019:23:14:42 +0000] "GET /wp-admin HTTP/1.1" 301 584 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -127.0.0.1 - - [23/Jul/2019:23:14:43 +0000] "POST /wp-cron.php?doing_wp_cron=1563923682.8695790767669677734375 HTTP/1.1" 200 192 "http://localhost/wp-cron.php?doing_wp_cron=1563923682.8695790767669677734375" "WordPress/5.2.2; http://localhost" -192.168.176.1 - - [23/Jul/2019:23:14:42 +0000] "GET /wp-admin/ HTTP/1.1" 302 470 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.176.1 - - [23/Jul/2019:23:15:34 +0000] "-" 408 0 "-" "-" -192.168.240.1 - - [23/Jul/2019:23:22:52 +0000] "GET /graphql HTTP/1.1" 200 758 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:54 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/graphql" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:56 +0000] "GET /wp-admin/ HTTP/1.1" 302 475 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1 HTTP/1.1" 200 3784 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-includes/css/dashicons.min.css?ver=5.2.2 HTTP/1.1" 200 28819 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-includes/css/buttons.min.css?ver=5.2.2 HTTP/1.1" 200 1858 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/css/forms.min.css?ver=5.2.2 HTTP/1.1" 200 5807 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/css/l10n.min.css?ver=5.2.2 HTTP/1.1" 200 1022 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/css/login.min.css?ver=5.2.2 HTTP/1.1" 200 7245 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/images/wordpress-logo.svg?ver=20131107 HTTP/1.1" 200 1810 "http://localhost:8001/wp-admin/css/login.min.css?ver=5.2.2" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:02 +0000] "POST /wp-login.php HTTP/1.1" 302 1149 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -127.0.0.1 - - [23/Jul/2019:23:23:02 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:23:23:03 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -192.168.240.1 - - [23/Jul/2019:23:23:02 +0000] "GET /wp-admin/ HTTP/1.1" 200 17747 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/thickbox/thickbox.css?ver=5.2.2 HTTP/1.1" 200 1268 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5 HTTP/1.1" 200 1646 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-admin/load-styles.php?c=0&dir=ltr&load%5B%5D=dashicons,admin-bar,common,forms,admin-menu,dashboard,list-tables,edit,revisions,media,themes,about,nav-menus,wp-pointer,widgets&load%5B%5D=,site-icon,l10n,buttons,wp-auth-check&ver=5.2.2 HTTP/1.1" 200 84249 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/css/dashboard.css?ver=3.6.5 HTTP/1.1" 200 1512 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/css/activation.css?ver=3.6.5 HTTP/1.1" 200 832 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=jquery-core,jquery-migrate,utils,jquery-ui-core&ver=5.2.2 HTTP/1.1" 200 39618 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/datepicker.min.js?ver=1.11.4 HTTP/1.1" 200 11354 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/admin/reports.min.js?ver=3.6.5 HTTP/1.1" 200 1696 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.min.js?ver=3.6.5 HTTP/1.1" 200 12850 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.min.js?ver=3.6.5 HTTP/1.1" 200 933 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.min.js?ver=3.6.5 HTTP/1.1" 200 2211 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/css/editor.min.css?ver=5.2.2 HTTP/1.1" 200 6246 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.min.js?ver=3.6.5 HTTP/1.1" 200 3268 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.min.js?ver=3.6.5 HTTP/1.1" 200 995 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=7.0.0 HTTP/1.1" 200 33220 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=hoverIntent,common,admin-bar,wp-ajax-response,jquery-color,wp-lists,quicktags,jquery-query,admin-comments,jquery-ui-widget,jquer&load%5B%5D=y-ui-mouse,jquery-ui-sortable,postbox,underscore,wp-util,wp-a11y,dashboard,thickbox,plugin-install,updates,shortcode,media-uploa&load%5B%5D=d,svg-painter&ver=5.2.2 HTTP/1.1" 200 57228 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/dist/hooks.min.js?ver=2.2.0 HTTP/1.1" 200 2063 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/heartbeat.min.js?ver=5.2.2 HTTP/1.1" 200 2397 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/wp-auth-check.min.js?ver=5.2.2 HTTP/1.1" 200 1130 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/wplink.min.js?ver=5.2.2 HTTP/1.1" 200 4280 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/position.min.js?ver=1.11.4 HTTP/1.1" 200 2913 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/menu.min.js?ver=1.11.4 HTTP/1.1" 200 3195 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/autocomplete.min.js?ver=1.11.4 HTTP/1.1" 200 3219 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff HTTP/1.1" 200 14463 "http://localhost:8001/wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-includes/js/thickbox/loadingAnimation.gif HTTP/1.1" 200 15525 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-admin/admin-ajax.php?action=wp-compression-test&test=1&_ajax_nonce=373a1c364c&1563924186262 HTTP/1.1" 200 1106 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-admin/admin-ajax.php?action=wp-compression-test&test=no&_ajax_nonce=373a1c364c&1563924186549 HTTP/1.1" 200 484 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 1754 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-admin/admin-ajax.php?action=dashboard-widgets&widget=dashboard_primary&pagenow=dashboard HTTP/1.1" 200 876 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:06 +0000] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 526 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:15 +0000] "GET /wp-admin/ HTTP/1.1" 200 19015 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5 HTTP/1.1" 200 1646 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/css/dashboard.css?ver=3.6.5 HTTP/1.1" 200 1513 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/css/activation.css?ver=3.6.5 HTTP/1.1" 200 833 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/admin/reports.min.js?ver=3.6.5 HTTP/1.1" 200 1696 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.min.js?ver=3.6.5 HTTP/1.1" 200 12850 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.min.js?ver=3.6.5 HTTP/1.1" 200 932 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.min.js?ver=3.6.5 HTTP/1.1" 200 2210 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.min.js?ver=3.6.5 HTTP/1.1" 200 3268 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.min.js?ver=3.6.5 HTTP/1.1" 200 995 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff HTTP/1.1" 304 181 "http://localhost:8001/wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php HTTP/1.1" 200 8273 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-content/plugins/wp-graphiql/assets/app/build/static/css/main.820e0136.css?ver=5.2.2 HTTP/1.1" 200 6881 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-content/plugins/wp-graphiql/assets/js/wp-graphiql-helpers.js?ver=5.2.2 HTTP/1.1" 200 590 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=jquery-core,jquery-migrate,utils&ver=5.2.2 HTTP/1.1" 200 38219 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=hoverIntent,common,admin-bar,svg-painter&ver=5.2.2 HTTP/1.1" 200 9580 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-content/plugins/wp-graphiql/assets/app/build/static/js/main.ef1c9dbe.js?ver=5.2.2 HTTP/1.1" 200 225962 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:20 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:20 +0000] "POST /index.php?graphql HTTP/1.1" 200 861872 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -127.0.0.1 - - [23/Jul/2019:23:28:27 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:23:28:28 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:23:28:29 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -192.168.240.1 - - [23/Jul/2019:23:29:20 +0000] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 526 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:29:26 +0000] "POST /index.php?graphql HTTP/1.1" 200 790 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" diff --git a/.log/app/error.log b/.log/app/error.log deleted file mode 100644 index 489a4120d..000000000 --- a/.log/app/error.log +++ /dev/null @@ -1,16 +0,0 @@ -[Tue Jul 23 23:08:37.390467 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 23:08:37.390627 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 23:10:33.922144 2019] [php7:warn] [pid 56] [client 127.0.0.1:38488] PHP Warning: ftp_rename() expects parameter 1 to be resource, null given in /var/www/html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 358, referer: http://localhost/wp-cron.php?doing_wp_cron=1563923430.3347780704498291015625 -[Tue Jul 23 23:12:03.788922 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 23:13:37.887310 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 23:13:37.887484 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 23:16:29.271624 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 23:19:51.645435 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 23:19:51.645599 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 23:23:14.963092 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 23:23:38.473319 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 23:23:38.473455 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 23:23:46.698214 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 23:27:38.316447 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 23:27:38.349795 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 23:29:54.327335 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down diff --git a/.log/app/other_vhosts_access.log b/.log/app/other_vhosts_access.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/.log/error.log b/.log/error.log deleted file mode 100644 index 840b1b360..000000000 --- a/.log/error.log +++ /dev/null @@ -1,25 +0,0 @@ -[Tue Jul 23 00:34:59.367015 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 00:34:59.367160 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 00:39:52.575557 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 00:41:30.660723 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 00:41:30.702662 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 00:53:44.867254 2019] [php7:warn] [pid 42] [client 192.168.192.3:38964] PHP Warning: ftp_rename() expects parameter 1 to be resource, null given in /var/www/html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 358, referer: http://wordpress/wp-cron.php?doing_wp_cron=1563843220.4602689743041992187500 -[Tue Jul 23 00:54:31.957084 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 00:58:11.529737 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 00:58:11.529912 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 01:36:34.388618 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 15:47:13.645483 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 15:47:13.676461 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 15:55:24.547799 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 15:59:03.156410 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 15:59:03.189905 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 16:17:38.287007 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 16:18:03.637095 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 16:18:03.637232 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 16:22:44.209266 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 16:40:31.256545 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 16:40:31.256714 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 16:53:30.554674 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 17:20:41.296607 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 17:20:41.296757 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 17:26:22.268374 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down diff --git a/.log/other_vhosts_access.log b/.log/other_vhosts_access.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/.log/testing/access.log b/.log/testing/access.log deleted file mode 100644 index 80924c626..000000000 --- a/.log/testing/access.log +++ /dev/null @@ -1,9 +0,0 @@ -127.0.0.1 - - [23/Jul/2019:22:57:30 +0000] "GET / HTTP/1.1" 200 4621 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:22:57:50 +0000] "GET /wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php/c3/report/clear HTTP/1.0" 200 192 "-" "-" -127.0.0.1 - - [23/Jul/2019:22:58:09 +0000] "POST /graphql HTTP/1.1" 500 465 "-" "Symfony BrowserKit" -127.0.0.1 - - [23/Jul/2019:23:01:39 +0000] "GET / HTTP/1.1" 200 4621 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:23:01:57 +0000] "GET /wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php/c3/report/clear HTTP/1.0" 200 192 "-" "-" -127.0.0.1 - - [23/Jul/2019:23:02:16 +0000] "POST /graphql HTTP/1.1" 500 465 "-" "Symfony BrowserKit" -127.0.0.1 - - [23/Jul/2019:23:12:39 +0000] "GET / HTTP/1.1" 200 4621 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:23:12:59 +0000] "GET /wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php/c3/report/clear HTTP/1.0" 200 192 "-" "-" -127.0.0.1 - - [23/Jul/2019:23:13:19 +0000] "POST /graphql HTTP/1.1" 500 465 "-" "Symfony BrowserKit" diff --git a/.log/testing/error.log b/.log/testing/error.log deleted file mode 100644 index 5f9f88d7d..000000000 --- a/.log/testing/error.log +++ /dev/null @@ -1,9 +0,0 @@ -[Tue Jul 23 22:57:29.268138 2019] [mpm_prefork:notice] [pid 70] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 22:57:29.268288 2019] [core:notice] [pid 70] AH00094: Command line: '/usr/sbin/apache2' -[Tue Jul 23 22:58:09.793712 2019] [php7:error] [pid 75] [client 127.0.0.1:38306] PHP Fatal error: Uncaught Codeception\\Exception\\ConfigurationException: Path for output is not writable. Please, set appropriate access mode for output path: /var/www/html/wp-content/plugins/wp-graphql-woocommerce/tests/_output/ in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/vendor/codeception/codeception/src/Codeception/Configuration.php:550\nStack trace:\n#0 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/vendor/codeception/codeception/src/Codeception/Configuration.php(565): Codeception\\Configuration::outputDir()\n#1 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php(119): Codeception\\Configuration::logDir()\n#2 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php(28): require_once('/var/www/html/w...')\n#3 /var/www/html/wp-settings.php(362): include_once('/var/www/html/w...')\n#4 /var/www/html/wp-config.php(78): require_once('/var/www/html/w...')\n#5 /var/www/html/wp-load.php(37): require_once('/var/www/html/w...')\n#6 /var/www/html/wp-blog-header.php(13): require_once( in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/vendor/codeception/codeception/src/Codeception/Configuration.php on line 550 -[Tue Jul 23 23:01:39.201492 2019] [mpm_prefork:notice] [pid 70] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 23:01:39.225138 2019] [core:notice] [pid 70] AH00094: Command line: '/usr/sbin/apache2' -[Tue Jul 23 23:02:16.489891 2019] [php7:error] [pid 77] [client 127.0.0.1:38386] PHP Fatal error: Uncaught Error: Class 'Codeception\\Configuration' not found in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php:100\nStack trace:\n#0 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php(28): require_once()\n#1 /var/www/html/wp-settings.php(362): include_once('/var/www/html/w...')\n#2 /var/www/html/wp-config.php(78): require_once('/var/www/html/w...')\n#3 /var/www/html/wp-load.php(37): require_once('/var/www/html/w...')\n#4 /var/www/html/wp-blog-header.php(13): require_once('/var/www/html/w...')\n#5 /var/www/html/index.php(17): require('/var/www/html/w...')\n#6 {main}\n thrown in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php on line 100 -[Tue Jul 23 23:12:37.992432 2019] [mpm_prefork:notice] [pid 69] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 23:12:37.992574 2019] [core:notice] [pid 69] AH00094: Command line: '/usr/sbin/apache2' -[Tue Jul 23 23:13:19.169432 2019] [php7:error] [pid 75] [client 127.0.0.1:38586] PHP Fatal error: Uncaught Error: Class 'Codeception\\Configuration' not found in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php:100\nStack trace:\n#0 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php(28): require_once()\n#1 /var/www/html/wp-settings.php(362): include_once('/var/www/html/w...')\n#2 /var/www/html/wp-config.php(78): require_once('/var/www/html/w...')\n#3 /var/www/html/wp-load.php(37): require_once('/var/www/html/w...')\n#4 /var/www/html/wp-blog-header.php(13): require_once('/var/www/html/w...')\n#5 /var/www/html/index.php(17): require('/var/www/html/w...')\n#6 {main}\n thrown in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php on line 100 diff --git a/.log/testing/other_vhosts_access.log b/.log/testing/other_vhosts_access.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/.travis.yml b/.travis.yml index ea657003d..2dfc9eca8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,7 +37,6 @@ env: - PHP_VERSION=7.0 WP_VERSION=5.2.2 - PHP_VERSION=5.6 WP_VERSION=4.9 - PHP_VERSION=5.6 WP_VERSION=5.2.2 DEBUG=1 - - PHP_VERSION=5.6 WP_VERSION=trunk before_install: - sudo rm /usr/local/bin/docker-compose diff --git a/Dockerfile.tester b/Dockerfile.tester index 0092e6054..0e8a22322 100644 --- a/Dockerfile.tester +++ b/Dockerfile.tester @@ -2,7 +2,11 @@ # Container for running Codeception tests on a WooGraphQL Docker instance. # ############################################################################ -FROM kidunot89/woographql-app +# Using the 'DESIRED_' prefix to avoid confusion with environment variables of the same name. +ARG DESIRED_WP_VERSION +ARG DESIRED_PHP_VERSION + +FROM kidunot89/woographql-app:wp${DESIRED_WP_VERSION:-5.2.2}-php${DESIRED_PHP_VERSION:-7.3} LABEL author=kidunot89 LABEL author_uri=https://github.com/kidunot89 diff --git a/docker-compose.yml b/docker-compose.yml index 7c49fe039..eb1c8823b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,12 +4,7 @@ services: app: depends_on: - app_db - build: - context: . - args: - DESIRED_PHP_VERSION: "${PHP_VERSION:-7.2}" - DESIRED_WP_VERSION: "${WP_VERSION:-5.2.2}" - image: kidunot89/woographql-app + image: "kidunot89/woographql-app:wp${WP_VERSION:-5.2.2}-php${PHP_VERSION:-7.2}" volumes: - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' - './.log/app:/var/log/apache2' @@ -44,7 +39,10 @@ services: build: context: . dockerfile: Dockerfile.tester - image: kidunot89/woographql-testing + args: + DESIRED_PHP_VERSION: "${PHP_VERSION:-7.2}" + DESIRED_WP_VERSION: "${WP_VERSION:-5.2.2}" + image: woographql-testing volumes: - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' - './tests:/var/www/html/tests' From b8c7b109925587c5d5901fe420e76d2af2cd230a Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 00:04:32 -0400 Subject: [PATCH 17/56] Codeception configuration heavily refactored --- .dockerignore | 3 + .env.dist | 21 ++++-- .gitignore | 8 +- .travis.yml | 22 ++++-- Dockerfile | 69 +++++++---------- Dockerfile.tester | 55 -------------- bin/entrypoint.sh | 70 ------------------ bin/install-wp-tests.sh | 20 +---- bin/testing-entrypoint.sh | 31 ++++---- ...ception.docker.yml => codeception.dist.yml | 38 +++++----- codeception.yml | 74 ------------------- docker-compose.yml | 16 ++-- includes/mutation/class-cart-add-item.php | 10 ++- tests/functional/QLSessionHandlerCest.php | 5 +- vendor/composer/ClassLoader.php | 2 +- wp-graphql-woocommerce.php | 3 + 16 files changed, 126 insertions(+), 321 deletions(-) create mode 100644 .dockerignore delete mode 100644 Dockerfile.tester delete mode 100644 bin/entrypoint.sh rename codeception.docker.yml => codeception.dist.yml (72%) delete mode 100644 codeception.yml diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..dae90b1a8 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,3 @@ +.env +.github_changelog_generator +.travis.yml \ No newline at end of file diff --git a/.env.dist b/.env.dist index acfb4cb15..db45227c9 100644 --- a/.env.dist +++ b/.env.dist @@ -5,16 +5,23 @@ DB_PASSWORD=wordpress WP_TABLE_PREFIX=wp_ WP_URL=http://localhost WP_DOMAIN=localhost -ADMIN_EMAIL=admin@localhost +ADMIN_EMAIL=admin@example.com ADMIN_USERNAME=admin ADMIN_PASSWORD=password ADMIN_PATH=/wp-admin -SKIP_DB_CREATE=false -TEST_WP_ROOT_FOLDER=/tmp/wordpress -TEST_DB_NAME=wpgraphql_woocommerce_test +TEST_DB_NAME=woographql_tests TEST_DB_HOST=127.0.0.1 -TEST_DB_USER=root -TEST_DB_PASSWORD= +TEST_DB_USER=wordpress +TEST_DB_PASSWORD=wordpress TEST_WP_TABLE_PREFIX=wp_ -TEST_SITE_ADMIN_EMAIL=admin@wp.test \ No newline at end of file + +SKIP_DB_CREATE=false +TEST_WP_ROOT_FOLDER=/tmp/wordpress +TEST_ADMIN_EMAIL=admin@wp.test + +TESTS_DIR=tests +TESTS_OUTPUT=tests/_output +TESTS_DATA=tests/_data +TESTS_SUPPORT=tests/_support +TESTS_ENVS=tests/_envs \ No newline at end of file diff --git a/.gitignore b/.gitignore index 6a9e78f83..b6f77baa3 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,8 @@ node_modules/ *.tar.gz *.zip .env +.env.* +!.env.dist .idea .vscode .github_changelog_generator @@ -17,8 +19,8 @@ vendor/* !vendor/composer vendor/composer/installed.json vendor/composer/*/ -!/tests -/tests/*.suite.yml +!tests +tests/*.suite.yml build/ coverage/* schema.graphql @@ -26,4 +28,4 @@ phpunit.xml docker-output composer.lock c3.php -.log/ \ No newline at end of file +.log/ diff --git a/.travis.yml b/.travis.yml index 2dfc9eca8..45d4497b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,7 +36,7 @@ env: - PHP_VERSION=7.1 WP_VERSION=5.2.2 - PHP_VERSION=7.0 WP_VERSION=5.2.2 - PHP_VERSION=5.6 WP_VERSION=4.9 - - PHP_VERSION=5.6 WP_VERSION=5.2.2 DEBUG=1 + - PHP_VERSION=5.6 WP_VERSION=5.0.2 DEBUG=1 before_install: - sudo rm /usr/local/bin/docker-compose @@ -78,7 +78,10 @@ before_script: # Install PHP CodeSniffer and WPCS. - | if [ "$PHPCS" == "1" ]; then - COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require squizlabs/php_codesniffer phpcompatibility/phpcompatibility-wp wp-coding-standards/wpcs dealerdirect/phpcodesniffer-composer-installer + COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require \ + squizlabs/php_codesniffer \ + phpcompatibility/phpcompatibility-wp wp-coding-standards/wpcs \ + dealerdirect/phpcodesniffer-composer-installer COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --no-dev ls -al fi @@ -87,13 +90,20 @@ script: # Execute unit tests with coverage if specified, otherwise without coverage - | if [ ! -z "$WP_VERSION" ]; then - docker-compose run -e SUITE=functional -e COVERAGE=${COVERAGE:-0} testing --rm testing --scale app=0 - docker-compose run -e SUITE=acceptance -e COVERAGE=${COVERAGE:-0} testing --rm testing --scale app=0 - docker-compose run -e SUITE=wpunit -e COVERAGE=${COVERAGE:-0} testing --rm testing --scale app=0 + declare -a suites=( 'acceptance', 'functional', 'wpunit' ) + for i in "${suites[@]}"; do + docker-compose run \ + -e SUITE=${i} -e COVERAGE=${COVERAGE:-0} -e DEBUG=${DEBUG:-0} testing \ + --rm testing --scale app=0 + done fi - | if [ "$PHPCS" == "1" ]; then - vendor/bin/phpcs wp-graphql-woocommerce.php access-functions.php class-inflect.php includes/*.php --standard=WordPress + vendor/bin/phpcs \ + wp-graphql-woocommerce.php \ + access-functions.php \ + class-inflect.php \ + includes/*.php --standard=WordPress fi after_success: # Runs Coveralls.io client diff --git a/Dockerfile b/Dockerfile index a767813ae..bc9d55186 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,59 +1,42 @@ -############################################################################### -# Pre-configured WordPress Installation w/ WooCommerce, WPGraphQL, WooGraphQL # -# For testing only, use in production not recommended. # -############################################################################### +############################################################################ +# Container for running Codeception tests on a WooGraphQL Docker instance. # +############################################################################ # Using the 'DESIRED_' prefix to avoid confusion with environment variables of the same name. ARG DESIRED_WP_VERSION ARG DESIRED_PHP_VERSION -FROM wordpress:${DESIRED_WP_VERSION}-php${DESIRED_PHP_VERSION}-apache +FROM kidunot89/woographql-app:wp${DESIRED_WP_VERSION:-5.2.2}-php${DESIRED_PHP_VERSION:-7.3} LABEL author=kidunot89 LABEL author_uri=https://github.com/kidunot89 SHELL [ "/bin/bash", "-c" ] -# Install system packages -RUN apt-get update && \ - apt-get -y install \ - # CircleCI depedencies - git \ - ssh \ - tar \ - gzip \ - wget \ - mariadb-client - -# Install Dockerize -ENV DOCKERIZE_VERSION v0.6.1 -RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \ - && tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \ - && rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz - -# Install WP-CLI -RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar \ - && chmod +x wp-cli.phar \ - && mv wp-cli.phar /usr/local/bin/wp - -# Set project environmental variables -ENV WP_ROOT_FOLDER="/var/www/html" -ENV WORDPRESS_DB_HOST=${DB_HOST} -ENV WORDPRESS_DB_USER=${DB_USER} -ENV WORDPRESS_DB_PASSWORD=${DB_PASSWORD} -ENV WORDPRESS_DB_NAME=${DB_NAME} -ENV PLUGINS_DIR="${WP_ROOT_FOLDER}/wp-content/plugins" -ENV PROJECT_DIR="${PLUGINS_DIR}/wp-graphql-woocommerce" +# Install php extensions +RUN docker-php-ext-install pdo_mysql -# Remove exec statement from base entrypoint script. -RUN sed -i '$d' /usr/local/bin/docker-entrypoint.sh +# Install Xdebug +RUN yes | pecl install xdebug \ + && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \ + && echo "xdebug.remote_enable=on" >> /usr/local/etc/php/conf.d/xdebug.ini \ + && echo "xdebug.remote_autostart=off" >> /usr/local/etc/php/conf.d/xdebug.ini + +# Install composer +ENV COMPOSER_ALLOW_SUPERUSER=1 + +RUN curl -sS https://getcomposer.org/installer | php -- \ + --filename=composer \ + --install-dir=/usr/local/bin -# Set up Apache -RUN echo 'ServerName localhost' >> /etc/apache2/apache2.conf +# Add composer global binaries to PATH +ENV PATH "$PATH:~/.composer/vendor/bin" + +# Remove exec statement from base entrypoint script. +RUN sed -i '$d' /usr/local/bin/app-entrypoint.sh # Set up entrypoint WORKDIR /var/www/html -COPY bin/entrypoint.sh /usr/local/bin/app-entrypoint.sh -RUN chmod 755 /usr/local/bin/app-entrypoint.sh -ENTRYPOINT ["app-entrypoint.sh"] -CMD ["apache2-foreground"] \ No newline at end of file +COPY bin/testing-entrypoint.sh /usr/local/bin/testing-entrypoint.sh +RUN chmod 755 /usr/local/bin/testing-entrypoint.sh +ENTRYPOINT ["testing-entrypoint.sh"] \ No newline at end of file diff --git a/Dockerfile.tester b/Dockerfile.tester deleted file mode 100644 index 0e8a22322..000000000 --- a/Dockerfile.tester +++ /dev/null @@ -1,55 +0,0 @@ -############################################################################ -# Container for running Codeception tests on a WooGraphQL Docker instance. # -############################################################################ - -# Using the 'DESIRED_' prefix to avoid confusion with environment variables of the same name. -ARG DESIRED_WP_VERSION -ARG DESIRED_PHP_VERSION - -FROM kidunot89/woographql-app:wp${DESIRED_WP_VERSION:-5.2.2}-php${DESIRED_PHP_VERSION:-7.3} - -LABEL author=kidunot89 -LABEL author_uri=https://github.com/kidunot89 - -SHELL [ "/bin/bash", "-c" ] - -# Install php extensions -RUN docker-php-ext-install pdo_mysql - -# Install pcov -RUN pecl install pcov \ - && docker-php-ext-enable pcov - -# Install composer -ENV COMPOSER_ALLOW_SUPERUSER=1 - -RUN curl -sS https://getcomposer.org/installer | php -- \ - --filename=composer \ - --install-dir=/usr/local/bin - -# Install tool to speed up composer installations -RUN composer global require --optimize-autoloader \ - "hirak/prestissimo" - -# Install wp-browser globally -RUN composer global require \ - phpunit/phpunit:8.1 \ - lucatume/wp-browser:^2.2 \ - league/factory-muffin:^3.0 \ - league/factory-muffin-faker:^2.0 - -# Add composer global binaries to PATH -ENV PATH "$PATH:~/.composer/vendor/bin" - -# Set up wp-browser / codeception -WORKDIR /var/www/config -COPY codeception.docker.yml codeception.dist.yml - -# Remove exec statement from base entrypoint script. -RUN sed -i '$d' /usr/local/bin/app-entrypoint.sh - -# Set up entrypoint -WORKDIR /var/www/html -COPY bin/testing-entrypoint.sh /usr/local/bin/testing-entrypoint.sh -RUN chmod 755 /usr/local/bin/testing-entrypoint.sh -ENTRYPOINT ["testing-entrypoint.sh"] \ No newline at end of file diff --git a/bin/entrypoint.sh b/bin/entrypoint.sh deleted file mode 100644 index 5fb54cacc..000000000 --- a/bin/entrypoint.sh +++ /dev/null @@ -1,70 +0,0 @@ -#!/bin/bash - -# Run WordPress docker entrypoint. -. docker-entrypoint.sh 'apache2' - -# Ensure mysql is loaded -dockerize -wait tcp://${DB_HOST}:${DB_HOST_PORT:-3306} -timeout 1m - -# Config WordPress -if [ ! -f "${WP_ROOT_FOLDER}/wp-config.php" ]; then - wp config create \ - --path="${WP_ROOT_FOLDER}" \ - --dbname="${DB_NAME}" \ - --dbuser="${DB_USER}" \ - --dbpass="${DB_PASSWORD}" \ - --dbhost="${DB_HOST}" \ - --dbprefix="${WP_TABLE_PREFIX}" \ - --skip-check \ - --quiet \ - --allow-root -fi - -# Install WP if not yet installed -if ! $( wp core is-installed --allow-root ); then - wp core install \ - --path="${WP_ROOT_FOLDER}" \ - --url="${WP_URL}" \ - --title='Test' \ - --admin_user="${ADMIN_USERNAME}" \ - --admin_password="${ADMIN_PASSWORD}" \ - --admin_email="${ADMIN_EMAIL}" \ - --allow-root -fi - -# Install and activate WooCommerce -if [ ! -f "${PLUGINS_DIR}/woocommerce/woocommerce.php" ]; then - wp plugin install woocommerce --activate --allow-root -fi - -# Install and activate WPGraphQL -if [ ! -f "${PLUGINS_DIR}/wp-graphql/wp-graphql.php" ]; then - wp plugin install \ - https://github.com/wp-graphql/wp-graphql/archive/master.zip \ - --activate --allow-root -fi - -# Install and activate WPGraphQL JWT Authentication -if [ ! -f "${PLUGINS_DIR}/wp-graphql-jwt-authentication/wp-graphql-jwt-authentication.php" ]; then - wp plugin install \ - https://github.com/wp-graphql/wp-graphql-jwt-authentication/archive/master.zip \ - --activate --allow-root -fi - -if [ ! -z "$INCLUDE_WPGRAPHIQL" ]; then - if [ ! -f "${PLUGINS_DIR}/wp-graphiql/wp-graphiql.php" ]; then - wp plugin install \ - https://github.com/wp-graphql/wp-graphiql/archive/master.zip \ - --activate --allow-root - fi -fi - -# Activate WooGraphQL -wp plugin activate wp-graphql-woocommerce --allow-root - -# Set pretty permalinks. -wp rewrite structure '/%year%/%monthnum%/%postname%/' --allow-root - -wp db export "${PROJECT_DIR}/tests/_data/dump.sql" --allow-root - -exec "$@" \ No newline at end of file diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index f072d796a..9d863e475 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -export $(cat .env | xargs) +source .env print_usage_instruction() { echo "Ensure that .env file exist in project root directory exists." @@ -40,7 +40,7 @@ TMPDIR=$(echo $TMPDIR | sed -e "s/\/$//") WP_TESTS_DIR=${WP_TESTS_DIR-$TMPDIR/wordpress-tests-lib} WP_CORE_DIR=${WP_CORE_DIR-$TMPDIR/wordpress/} PLUGIN_DIR=$(pwd) -DB_SERVE_NAME=${DB_SERVE_NAME-wpgraphql_serve} +DB_SERVE_NAME=${DB_SERVE_NAME-woographql_serve} download() { if [ `which curl` ]; then @@ -198,26 +198,14 @@ setup_woocommerce() { setup_wpgraphql() { if [ ! -d $WP_CORE_DIR/wp-content/plugins/wp-graphql ]; then echo "Cloning WPGraphQL" - git clone https://github.com/wp-graphql/wp-graphql.git $WP_CORE_DIR/wp-content/plugins/wp-graphql + wp plugin install https://github.com/wp-graphql/wp-graphql/archive/master.zip fi - - cd $WP_CORE_DIR/wp-content/plugins/wp-graphql - git checkout develop - git pull origin develop - - if [ ! -z "$WP_GRAPHQL_BRANCH" ]; then - echo "Checking out WPGraphQL branch - $WP_GRAPHQL_BRANCH" - git checkout --track origin/$WP_GRAPHQL_BRANCH - fi - - - cd $WP_CORE_DIR echo "Activating WPGraphQL" wp plugin activate wp-graphql if [ ! -d $WP_CORE_DIR/wp-content/plugins/wp-graphql-jwt-authentication ]; then echo "Cloning WPGraphQL-JWT-Authentication" - git clone https://github.com/wp-graphql/wp-graphql-jwt-authentication.git $WP_CORE_DIR/wp-content/plugins/wp-graphql-jwt-authentication + wp plugin install https://github.com/wp-graphql/wp-graphql-jwt-authentication/archive/master.zip fi echo "Activating WPGraphQL-JWT-Authentication" wp plugin activate wp-graphql-jwt-authentication diff --git a/bin/testing-entrypoint.sh b/bin/testing-entrypoint.sh index c63df5ef7..0c744fcaf 100644 --- a/bin/testing-entrypoint.sh +++ b/bin/testing-entrypoint.sh @@ -9,27 +9,28 @@ service apache2 start # Ensure everything is loaded dockerize \ -wait tcp://${TEST_DB_HOST}:${TEST_DB_HOST_PORT:-3306} \ - -wait http://localhost \ + -wait ${WP_URL} \ -timeout 1m - # Download c3 for testing. -if [ ! -f "${PROJECT_DIR}/c3.php" ]; then +if [ ! -f "${PROJECT_DIR}/c3.php" ]; then + echo 'Downloading c3.php' curl -L 'https://raw.github.com/Codeception/c3/2.0/c3.php' > "${PROJECT_DIR}/c3.php" fi -# Link codeception config if not yet linked -if [ ! -e codeception.dist.yml ]; then - ln -s /var/www/config/codeception.dist.yml /var/www/html/codeception.dist.yml -fi - # Run the tests -if [ "$COVERAGE" == "1" ]; then - codecept run ${SUITE} --debug --coverage --coverage-xml +echo 'Moving to WooGraphQL directory.' +cd ${PROJECT_DIR} + +echo 'Setting Codeception output directory permissions'. +chmod 777 ${TESTS_OUTPUT} + +if [ "$COVERAGE" == "1" -a "$DEBUG" == "1" ]; then + vendor/bin/codecept run ${SUITE} --debug --coverage --coverage-xml +elif [ "$COVERAGE" == "1" ]; then + vendor/bin/codecept run ${SUITE} --coverage --coverage-xml elif [ "$DEBUG" == "1" ]; then - codecept run ${SUITE} --debug + vendor/bin/codecept run ${SUITE} --debug else - codecept run ${SUITE} -fi - -exec "$@" \ No newline at end of file + vendor/bin/codecept run ${SUITE} +fi \ No newline at end of file diff --git a/codeception.docker.yml b/codeception.dist.yml similarity index 72% rename from codeception.docker.yml rename to codeception.dist.yml index ac2aa145f..8b51ce3d3 100644 --- a/codeception.docker.yml +++ b/codeception.dist.yml @@ -1,11 +1,12 @@ paths: - tests: tests - log: tests/_output - data: tests/_data - support: tests/_support - envs: tests/_envs + tests: '%TESTS_DIR%' + output: '%TESTS_OUTPUT%' + data: '%TESTS_DATA%' + support: '%TESTS_SUPPORT%' + envs: '%TESTS_ENVS%' params: - env + - .env.dist actor_suffix: Tester settings: colors: true @@ -15,10 +16,10 @@ coverage: c3_url: http://localhost/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php whitelist: include: - - wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php - - wp-content/plugins/wp-graphql-woocommerce/access-functions.php - - wp-content/plugins/wp-graphql-woocommerce/class-inflect.php - - wp-content/plugins/wp-graphql-woocommerce/includes/*.php + - wp-graphql-woocommerce.php + - access-functions.php + - class-inflect.php + - includes/*.php extensions: enabled: - Codeception\Extension\RunFailed @@ -33,25 +34,26 @@ extensions: modules: config: WPDb: - dsn: 'mysql:host=%TEST_DB_HOST%;dbname=%TEST_DB_NAME%' - user: '%TEST_DB_USER%' - password: '%TEST_DB_PASSWORD%' + dsn: 'mysql:host=%DB_HOST%;dbname=%DB_NAME%' + user: '%DB_USER%' + password: '%DB_PASSWORD%' populator: 'mysql -u $user -p$password -h $host $dbname < $dump' dump: 'tests/_data/dump.sql' populate: true cleanup: true - url: 'http://localhost' + waitlock: 0 + url: '%WP_URL%' urlReplacement: true - tablePrefix: '%TEST_WP_TABLE_PREFIX%' + tablePrefix: '%WP_TABLE_PREFIX%' WPBrowser: - url: 'http://localhost' + url: '%WP_URL%' wpRootFolder: '%WP_ROOT_FOLDER%' adminUsername: '%ADMIN_USERNAME%' adminPassword: '%ADMIN_PASSWORD%' adminPath: '/wp-admin' REST: depends: WPBrowser - url: 'http://localhost' + url: '%WP_URL%' WPFilesystem: wpRootFolder: '%WP_ROOT_FOLDER%' plugins: '/wp-content/plugins' @@ -60,8 +62,8 @@ modules: uploads: '/wp-content/uploads' WPLoader: wpRootFolder: '%WP_ROOT_FOLDER%' - dbName: 'wordpress_tests' - dbHost: 'testing-db' + dbName: '%DB_NAME%' + dbHost: '%DB_HOST%' dbUser: '%DB_USER%' dbPassword: '%DB_PASSWORD%' tablePrefix: '%WP_TABLE_PREFIX%' diff --git a/codeception.yml b/codeception.yml deleted file mode 100644 index 16e28dcb4..000000000 --- a/codeception.yml +++ /dev/null @@ -1,74 +0,0 @@ -paths: - tests: tests - log: tests/_output - data: tests/_data - support: tests/_support - envs: tests/_envs -actor_suffix: Tester -settings: - colors: true - memory_limit: 1024M -coverage: - enabled: true - remote: true - whitelist: - include: - - wp-graphql-woocommerce.php - - access-functions.php - - class-inflect.php - - includes/*.php -extensions: - enabled: - - Codeception\Extension\RunFailed - commands: - - Codeception\Command\GenerateWPUnit - - Codeception\Command\GenerateWPRestApi - - Codeception\Command\GenerateWPRestController - - Codeception\Command\GenerateWPRestPostTypeController - - Codeception\Command\GenerateWPAjax - - Codeception\Command\GenerateWPCanonical - - Codeception\Command\GenerateWPXMLRPC -params: - - .env -modules: - config: - WPDb: - dsn: 'mysql:host=%TEST_DB_HOST%;dbname=%DB_NAME%' - user: '%DB_USER%' - password: '%DB_PASSWORD%' - dump: 'tests/_data/dump.sql' - #import the dump before the tests; this means the test site database will be repopulated before the tests. - populate: true - # re-import the dump between tests; this means the test site database will be repopulated between the tests. - cleanup: true - waitlock: 0 - url: '%WP_URL%' - urlReplacement: true #replace the hardcoded dump URL with the one above - tablePrefix: '%WP_TABLE_PREFIX%' - WPBrowser: - url: '%WP_URL%' - adminUsername: '%ADMIN_USERNAME%' - adminPassword: '%ADMIN_PASSWORD%' - adminPath: '%ADMIN_PATH%' - REST: - depends: WPBrowser - url: '%WP_URL%' - WPFilesystem: - wpRootFolder: '%WP_ROOT_FOLDER%' - plugins: '/wp-content/plugins' - mu-plugins: '/wp-content/mu-plugins' - themes: '/wp-content/themes' - uploads: '/wp-content/uploads' - WPLoader: - wpRootFolder: "%TEST_WP_ROOT_FOLDER%" - dbName: "%TEST_DB_NAME%" - dbHost: "%TEST_DB_HOST%" - dbUser: "%TEST_DB_USER%" - dbPassword: "%TEST_DB_PASSWORD%" - tablePrefix: "%TEST_TABLE_PREFIX%" - domain: "%TEST_WP_DOMAIN%" - adminEmail: "%TEST_ADMIN_EMAIL%" - title: "Test" - plugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] - activatePlugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] - configFile: "tests/_data/config.php" diff --git a/docker-compose.yml b/docker-compose.yml index eb1c8823b..7f3173eea 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: volumes: - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' - './.log/app:/var/log/apache2' - env_file: .env + env_file: .env.dist environment: WP_URL: 'http://localhost:8001' WP_DOMAIN: 'localhost:8001' @@ -38,24 +38,20 @@ services: - testing_db build: context: . - dockerfile: Dockerfile.tester + dockerfile: Dockerfile args: DESIRED_PHP_VERSION: "${PHP_VERSION:-7.2}" DESIRED_WP_VERSION: "${WP_VERSION:-5.2.2}" image: woographql-testing volumes: - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' - - './tests:/var/www/html/tests' - './.log/testing:/var/log/apache2' - env_file: .env + env_file: .env.dist environment: + WPGRAPHQL_WOOCOMMERCE_AUTOLOAD: 1 TEST_DB_HOST: testing_db - TEST_DB_USER: wordpress - TEST_DB_PASSWORD: wordpress DB_HOST: app_db - DB_USER: wordpress - DB_PASSWORD: wordpress - WPGRAPHQL_WOOCOMMERCE_AUTOLOAD: 1 + WP_URL: 'http://localhost' networks: testing: @@ -63,7 +59,7 @@ services: image: mysql:5.7 environment: MYSQL_ROOT_PASSWORD: root - MYSQL_DATABASE: wordpress_tests + MYSQL_DATABASE: woographql_tests MYSQL_USER: wordpress MYSQL_PASSWORD: wordpress ports: diff --git a/includes/mutation/class-cart-add-item.php b/includes/mutation/class-cart-add-item.php index 557112834..2e3bf8674 100644 --- a/includes/mutation/class-cart-add-item.php +++ b/includes/mutation/class-cart-add-item.php @@ -75,8 +75,7 @@ public static function get_output_fields() { 'cartItem' => array( 'type' => 'CartItem', 'resolve' => function ( $payload ) { - $cart = WC()->cart; - $item = $cart->get_cart_item( $payload['key'] ); + $item = \WC()->cart->get_cart_item( $payload['key'] ); return $item; }, @@ -95,6 +94,9 @@ public static function mutate_and_get_payload() { if ( empty( $input['productId'] ) ) { throw new UserError( __( 'No product ID provided', 'wp-graphql-woocommerce' ) ); } + if ( ! \wc_get_product( $input['productId'] ) ) { + throw new UserError( __( 'No product found matching the ID provided', 'wp-graphql-woocommerce' ) ); + } // Prepare args for "add_to_cart" from input data. $cart_item_args = Cart_Mutation::prepare_cart_item( $input, $context, $info ); @@ -102,6 +104,10 @@ public static function mutate_and_get_payload() { // Add item to cart and get item key. $cart_item_key = \WC()->cart->add_to_cart( ...$cart_item_args ); + if ( ! $cart_item_key ) { + throw new UserError( __( 'Failed to add cart item. Please check input.', 'wp-graphql-woocommerce' ) ); + } + // Return payload. return array( 'key' => $cart_item_key ); }; diff --git a/tests/functional/QLSessionHandlerCest.php b/tests/functional/QLSessionHandlerCest.php index 53464420a..5e57dbcb7 100644 --- a/tests/functional/QLSessionHandlerCest.php +++ b/tests/functional/QLSessionHandlerCest.php @@ -7,7 +7,7 @@ public function _before( FunctionalTester $I ) { // Create Product $this->product_id = $I->havePostInDatabase( array( 'post_type' => 'product', - 'post_title' => 't-shirt', + 'post_name' => 't-shirt', 'meta_input' => array( '_visibility' => 'visible', '_sku' => '', @@ -44,6 +44,9 @@ public function _before( FunctionalTester $I ) { '_wc_review_count' => 0, ), )); + $term_id = $I->grabTermIdFromDatabase( [ 'name' => 'simple', 'slug' => 'simple' ] ); + $term_taxonomy_id = $I->grabTermTaxonomyIdFromDatabase( [ 'term_id' => $term_id, 'taxonomy' => 'product_type' ] ); + $I->haveTermRelationshipInDatabase( $this->product_id, $term_id ); } // tests diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index 95f7e0978..fce8549f0 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -279,7 +279,7 @@ public function isClassMapAuthoritative() */ public function setApcuPrefix($apcuPrefix) { - $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; + $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; } /** diff --git a/wp-graphql-woocommerce.php b/wp-graphql-woocommerce.php index 3ce42aa65..4bec32d81 100644 --- a/wp-graphql-woocommerce.php +++ b/wp-graphql-woocommerce.php @@ -25,6 +25,9 @@ * This file should only exist locally or when CI bootstraps the environment for testing */ if ( file_exists( __DIR__ . '/c3.php' ) ) { + // Get tests output directory. + $test_dir = __DIR__ . '/tests/output'; + define( 'C3_CODECOVERAGE_ERROR_LOG_FILE', $test_dir . '/c3_error.log' ); require_once __DIR__ . '/c3.php'; } From c5996ebf85d5cb837da25010d133ddb5bea54b58 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 13:47:40 -0400 Subject: [PATCH 18/56] job matrix updated. --- .travis.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 45d4497b3..7a162c77d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,13 +30,16 @@ env: global: - WP_CORE_DIR: /tmp/wordpress matrix: - - PHP_VERSION=7.3 WP_VERSION=5.2.2 COVERAGE=1 - - PHP_VERSION=7.2 PHPCS=1 - - PHP_VERSION=7.2 WP_VERSION=5.2.2 - - PHP_VERSION=7.1 WP_VERSION=5.2.2 - - PHP_VERSION=7.0 WP_VERSION=5.2.2 - - PHP_VERSION=5.6 WP_VERSION=4.9 - - PHP_VERSION=5.6 WP_VERSION=5.0.2 DEBUG=1 + - PHP_VERSION=7.3 WP_VERSION=5.2 COVERAGE=1 + - PHP_VERSION=7.3 PHPCS=1 + - PHP_VERSION=7.2 WP_VERSION=5.2 + - PHP_VERSION=7.2 WP_VERSION=4.9 + - PHP_VERSION=7.1 WP_VERSION=5.2 + - PHP_VERSION=7.1 WP_VERSION=4.9 + - PHP_VERSION=7.0 WP_VERSION=5.2 + - PHP_VERSION=7.0 WP_VERSION=4.9 + - PHP_VERSION=5.6 WP_VERSION=5.0 DEBUG=1 + - PHP_VERSION=5.6 WP_VERSION=4.9 DEBUG=1 before_install: - sudo rm /usr/local/bin/docker-compose From 440769929654f2ef59bc37a593919331dea30762 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 14:17:00 -0400 Subject: [PATCH 19/56] package.json updated --- .travis.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7a162c77d..813f7e296 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,7 +36,7 @@ env: - PHP_VERSION=7.2 WP_VERSION=4.9 - PHP_VERSION=7.1 WP_VERSION=5.2 - PHP_VERSION=7.1 WP_VERSION=4.9 - - PHP_VERSION=7.0 WP_VERSION=5.2 + - PHP_VERSION=7.0 WP_VERSION=5.0 - PHP_VERSION=7.0 WP_VERSION=4.9 - PHP_VERSION=5.6 WP_VERSION=5.0 DEBUG=1 - PHP_VERSION=5.6 WP_VERSION=4.9 DEBUG=1 diff --git a/composer.json b/composer.json index ffeb55dfe..824eba6a4 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ } ], "require-dev": { - "lucatume/wp-browser": "^2.2" + "lucatume/wp-browser": ">=2.2.1 <2.2.8" }, "config": { "optimize-autoloader": true From aae33f813162f5a4b509d8e32d2916a0dd896a5c Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 14:38:30 -0400 Subject: [PATCH 20/56] php5.6 xdebug installation patched. --- Dockerfile | 2 +- composer.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index bc9d55186..0d04a7b9e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ SHELL [ "/bin/bash", "-c" ] RUN docker-php-ext-install pdo_mysql # Install Xdebug -RUN yes | pecl install xdebug \ +RUN if [ "$DESIRED_PHP_VERSION" -ne "5.6" ]; then yes | pecl install xdebug; else yes | pecl install xdebug-2.5.5; fi \ && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \ && echo "xdebug.remote_enable=on" >> /usr/local/etc/php/conf.d/xdebug.ini \ && echo "xdebug.remote_autostart=off" >> /usr/local/etc/php/conf.d/xdebug.ini diff --git a/composer.json b/composer.json index 824eba6a4..f3c6bd5f1 100644 --- a/composer.json +++ b/composer.json @@ -21,6 +21,9 @@ "role": "Lead developer" } ], + "require": { + "php": ">=5.6.0" + }, "require-dev": { "lucatume/wp-browser": ">=2.2.1 <2.2.8" }, @@ -35,9 +38,6 @@ "includes/" ] }, - "require": { - "php": ">=5.6.0" - }, "scripts": { "install-wp-tests": "bash bin/install-wp-tests.sh", "test": "vendor/bin/codecept run", From da77dcb169c61835003e0d33d1ec63c42f0018ec Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 15:17:50 -0400 Subject: [PATCH 21/56] fixed Dockerfile. --- .travis.yml | 5 ++--- Dockerfile | 8 ++++++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 813f7e296..fde0696d2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -75,8 +75,7 @@ before_script: docker-compose build \ --build-arg DESIRED_PHP_VERSION=$(PHP_VERSION) \ --build-arg DESIRED_WP_VERSION=$(WP_VERSION) \ - woographql - ls -al + testing fi # Install PHP CodeSniffer and WPCS. - | @@ -112,6 +111,6 @@ after_success: # Runs Coveralls.io client - | if [ "$COVERAGE" == "1" ]; then - travis_retry php vendor/bin/php-coveralls -v + travis_retry vendor/bin/php-coveralls -v fi diff --git a/Dockerfile b/Dockerfile index 0d04a7b9e..e96ee2a4b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,18 +6,22 @@ ARG DESIRED_WP_VERSION ARG DESIRED_PHP_VERSION -FROM kidunot89/woographql-app:wp${DESIRED_WP_VERSION:-5.2.2}-php${DESIRED_PHP_VERSION:-7.3} +FROM kidunot89/woographql-app:wp${DESIRED_WP_VERSION}-php${DESIRED_PHP_VERSION} + LABEL author=kidunot89 LABEL author_uri=https://github.com/kidunot89 SHELL [ "/bin/bash", "-c" ] +ARG DESIRED_WP_VERSION +ARG DESIRED_PHP_VERSION + # Install php extensions RUN docker-php-ext-install pdo_mysql # Install Xdebug -RUN if [ "$DESIRED_PHP_VERSION" -ne "5.6" ]; then yes | pecl install xdebug; else yes | pecl install xdebug-2.5.5; fi \ +RUN if [ "$DESIRED_PHP_VERSION" == "5.6" ]; then yes | pecl install xdebug-2.5.5; else yes | pecl install xdebug; fi \ && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \ && echo "xdebug.remote_enable=on" >> /usr/local/etc/php/conf.d/xdebug.ini \ && echo "xdebug.remote_autostart=off" >> /usr/local/etc/php/conf.d/xdebug.ini From 7c7d20c67117b450f011a59c5c9d69b6a56bbd11 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 15:22:16 -0400 Subject: [PATCH 22/56] fixed variable substitution. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index fde0696d2..9b1b87d17 100644 --- a/.travis.yml +++ b/.travis.yml @@ -73,8 +73,8 @@ before_script: COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require php-coveralls/php-coveralls fi docker-compose build \ - --build-arg DESIRED_PHP_VERSION=$(PHP_VERSION) \ - --build-arg DESIRED_WP_VERSION=$(WP_VERSION) \ + --build-arg DESIRED_PHP_VERSION=${PHP_VERSION} \ + --build-arg DESIRED_WP_VERSION=${WP_VERSION} \ testing fi # Install PHP CodeSniffer and WPCS. From 07239f93e31262be7532f5004f24510f156c84f1 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 15:42:19 -0400 Subject: [PATCH 23/56] --no-cache flag added to composer install statement. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9b1b87d17..57f346a80 100644 --- a/.travis.yml +++ b/.travis.yml @@ -66,7 +66,7 @@ before_script: if [ ! -z "$WP_VERSION" ]; then # Install and config Codeception cp .env.dist .env - travis_retry composer install --prefer-source --no-interaction + travis_retry composer install --prefer-source --no-interaction --no-cache if [ "$COVERAGE" == "1" ]; then # Install Coveralls mkdir -p build/logs From 8af4aa72289ad735fda3b75e31541d53c73b360a Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 15:52:56 -0400 Subject: [PATCH 24/56] --no-cache flag removed. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 57f346a80..9b1b87d17 100644 --- a/.travis.yml +++ b/.travis.yml @@ -66,7 +66,7 @@ before_script: if [ ! -z "$WP_VERSION" ]; then # Install and config Codeception cp .env.dist .env - travis_retry composer install --prefer-source --no-interaction --no-cache + travis_retry composer install --prefer-source --no-interaction if [ "$COVERAGE" == "1" ]; then # Install Coveralls mkdir -p build/logs From 1d9f1b603266f90210b8ba56c7b8230edbcd1bca Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 17:28:39 -0400 Subject: [PATCH 25/56] .travis.yml updated. --- .travis.yml | 37 ++++++++++++++++++++------------- vendor/composer/ClassLoader.php | 2 +- 2 files changed, 23 insertions(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9b1b87d17..a3f3b36d0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,21 +25,28 @@ cache: - vendor - $HOME/.composer/cache -# Set the global environment variables -env: - global: - - WP_CORE_DIR: /tmp/wordpress - matrix: - - PHP_VERSION=7.3 WP_VERSION=5.2 COVERAGE=1 - - PHP_VERSION=7.3 PHPCS=1 - - PHP_VERSION=7.2 WP_VERSION=5.2 - - PHP_VERSION=7.2 WP_VERSION=4.9 - - PHP_VERSION=7.1 WP_VERSION=5.2 - - PHP_VERSION=7.1 WP_VERSION=4.9 - - PHP_VERSION=7.0 WP_VERSION=5.0 - - PHP_VERSION=7.0 WP_VERSION=4.9 - - PHP_VERSION=5.6 WP_VERSION=5.0 DEBUG=1 - - PHP_VERSION=5.6 WP_VERSION=4.9 DEBUG=1 +matrix: + include: + - php: 7.3 + env: PHP_VERSION=7.3 WP_VERSION=5.2 COVERAGE=1 + - php: 7.3 + env: PHP_VERSION=7.3 PHPCS=1 + - php: 7.2 + env: PHP_VERSION=7.2 WP_VERSION=5.2 + - php: 7.2 + env: PHP_VERSION=7.2 WP_VERSION=4.9 + - php: 7.1 + env: PHP_VERSION=7.1 WP_VERSION=5.2 + - php: 7.1 + env: PHP_VERSION=7.1 WP_VERSION=4.9 + - php: 7.0 + env: PHP_VERSION=7.0 WP_VERSION=5.0 + - php: 7.0 + env: PHP_VERSION=7.0 WP_VERSION=4.9 + - php: 5.6 + env: PHP_VERSION=5.6 WP_VERSION=5.0 DEBUG=1 + - php: 5.6 + env: PHP_VERSION=5.6 WP_VERSION=4.9 DEBUG=1 before_install: - sudo rm /usr/local/bin/docker-compose diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index fce8549f0..95f7e0978 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -279,7 +279,7 @@ public function isClassMapAuthoritative() */ public function setApcuPrefix($apcuPrefix) { - $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; + $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; } /** From 2bbe110013901d81a69761d71393e930eff04f8a Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 18:04:59 -0400 Subject: [PATCH 26/56] php5.6 test compatibility fixed. --- tests/wpunit/CartMutationsTest.php | 4 ++-- tests/wpunit/CartQueriesTest.php | 4 ++-- tests/wpunit/CheckoutMutationTest.php | 4 ++-- tests/wpunit/CouponQueriesTest.php | 4 ++-- tests/wpunit/CustomerMutationsTest.php | 4 ++-- tests/wpunit/CustomerQueriesTest.php | 4 ++-- tests/wpunit/OrderItemQueriesTest.php | 4 ++-- tests/wpunit/OrderMutationsTest.php | 4 ++-- tests/wpunit/OrderQueriesTest.php | 4 ++-- tests/wpunit/ProductAttributeQueriesTest.php | 4 ++-- tests/wpunit/ProductQueriesTest.php | 4 ++-- tests/wpunit/ProductVariationQueriesTest.php | 4 ++-- tests/wpunit/RefundQueriesTest.php | 4 ++-- tests/wpunit/ShippingMethodQueriesTest.php | 4 ++-- tests/wpunit/TaxRateQueriesTest.php | 4 ++-- tests/wpunit/VariationAttributeQueriesTest.php | 4 ++-- 16 files changed, 32 insertions(+), 32 deletions(-) diff --git a/tests/wpunit/CartMutationsTest.php b/tests/wpunit/CartMutationsTest.php index 52a02f41e..944ab179a 100644 --- a/tests/wpunit/CartMutationsTest.php +++ b/tests/wpunit/CartMutationsTest.php @@ -8,7 +8,7 @@ class CartMutationsTest extends \Codeception\TestCase\WPTestCase { private $variation; private $cart; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -22,7 +22,7 @@ public function setUp(): void { WC()->cart->empty_cart( true ); } - public function tearDown(): void { + public function tearDown() { \WC()->cart->empty_cart(); parent::tearDown(); diff --git a/tests/wpunit/CartQueriesTest.php b/tests/wpunit/CartQueriesTest.php index b01e6a8a0..a2daa7edd 100644 --- a/tests/wpunit/CartQueriesTest.php +++ b/tests/wpunit/CartQueriesTest.php @@ -8,7 +8,7 @@ class CartQueriesTest extends \Codeception\TestCase\WPTestCase { private $coupon_helper; private $helper; - public function setUp(): void { + public function setUp() { // before parent::setUp(); @@ -23,7 +23,7 @@ public function setUp(): void { WC()->cart->empty_cart( true ); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then diff --git a/tests/wpunit/CheckoutMutationTest.php b/tests/wpunit/CheckoutMutationTest.php index 0c749f1e4..f2e9be3de 100644 --- a/tests/wpunit/CheckoutMutationTest.php +++ b/tests/wpunit/CheckoutMutationTest.php @@ -3,7 +3,7 @@ use WPGraphQL\Type\WPEnumType; class CheckoutMutationTest extends \Codeception\TestCase\WPTestCase { - public function setUp(): void { + public function setUp() { // before parent::setUp(); @@ -69,7 +69,7 @@ function() { wp_logout(); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then diff --git a/tests/wpunit/CouponQueriesTest.php b/tests/wpunit/CouponQueriesTest.php index 945517fe6..1b1968c96 100644 --- a/tests/wpunit/CouponQueriesTest.php +++ b/tests/wpunit/CouponQueriesTest.php @@ -7,7 +7,7 @@ class CouponQueriesTest extends \Codeception\TestCase\WPTestCase { private $coupon; private $helper; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -22,7 +22,7 @@ public function setUp(): void { ); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/CustomerMutationsTest.php b/tests/wpunit/CustomerMutationsTest.php index 1adfaecea..f6a7bac88 100644 --- a/tests/wpunit/CustomerMutationsTest.php +++ b/tests/wpunit/CustomerMutationsTest.php @@ -1,7 +1,7 @@ new_customer = $this->helper->create(); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/OrderItemQueriesTest.php b/tests/wpunit/OrderItemQueriesTest.php index 94d219658..c867a768e 100644 --- a/tests/wpunit/OrderItemQueriesTest.php +++ b/tests/wpunit/OrderItemQueriesTest.php @@ -10,7 +10,7 @@ class OrderItemQueriesTest extends \Codeception\TestCase\WPTestCase { private $item_helper; private $order_helper; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -20,7 +20,7 @@ public function setUp(): void { $this->order = $this->order_helper->create(); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then diff --git a/tests/wpunit/OrderMutationsTest.php b/tests/wpunit/OrderMutationsTest.php index 39167f324..b259f13cf 100644 --- a/tests/wpunit/OrderMutationsTest.php +++ b/tests/wpunit/OrderMutationsTest.php @@ -4,7 +4,7 @@ class OrderMutationsTest extends \Codeception\TestCase\WPTestCase { - public function setUp(): void { + public function setUp() { // before parent::setUp(); @@ -42,7 +42,7 @@ public function setUp(): void { $this->order_id = $this->order->create(); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then diff --git a/tests/wpunit/OrderQueriesTest.php b/tests/wpunit/OrderQueriesTest.php index 75a72922f..50475d10d 100644 --- a/tests/wpunit/OrderQueriesTest.php +++ b/tests/wpunit/OrderQueriesTest.php @@ -10,7 +10,7 @@ class OrderQueriesTest extends \Codeception\TestCase\WPTestCase { private $product_helper; private $customer_helper; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -21,7 +21,7 @@ public function setUp(): void { $this->order = $this->order_helper->create(); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/ProductAttributeQueriesTest.php b/tests/wpunit/ProductAttributeQueriesTest.php index b31ab302b..11ddde08d 100644 --- a/tests/wpunit/ProductAttributeQueriesTest.php +++ b/tests/wpunit/ProductAttributeQueriesTest.php @@ -8,7 +8,7 @@ class ProductAttributeQueriesTest extends \Codeception\TestCase\WPTestCase { private $product_id; private $variation_ids; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -20,7 +20,7 @@ public function setUp(): void { } - public function tearDown(): void { + public function tearDown() { parent::tearDown(); } diff --git a/tests/wpunit/ProductQueriesTest.php b/tests/wpunit/ProductQueriesTest.php index 796cf809b..48b1069d4 100644 --- a/tests/wpunit/ProductQueriesTest.php +++ b/tests/wpunit/ProductQueriesTest.php @@ -9,7 +9,7 @@ class ProductQueriesTest extends \Codeception\TestCase\WPTestCase { private $product_tag; private $product_cat; - public function setUp(): void { + public function setUp() { // before parent::setUp(); @@ -44,7 +44,7 @@ public function setUp(): void { update_term_meta( $category_id, 'thumbnail_id', $this->image_id ); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here $product = \WC()->product_factory->get_product( $this->product ); $product->delete( true ); diff --git a/tests/wpunit/ProductVariationQueriesTest.php b/tests/wpunit/ProductVariationQueriesTest.php index 500480ec8..5477f69fc 100644 --- a/tests/wpunit/ProductVariationQueriesTest.php +++ b/tests/wpunit/ProductVariationQueriesTest.php @@ -7,7 +7,7 @@ class ProductVariationQueriesTest extends \Codeception\TestCase\WPTestCase { private $customer; private $products; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -17,7 +17,7 @@ public function setUp(): void { $this->products = $this->helper->create( $this->product_helper->create_variable() ); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then diff --git a/tests/wpunit/RefundQueriesTest.php b/tests/wpunit/RefundQueriesTest.php index a63af3c79..6c096d4c5 100644 --- a/tests/wpunit/RefundQueriesTest.php +++ b/tests/wpunit/RefundQueriesTest.php @@ -9,7 +9,7 @@ class RefundQueriesTest extends \Codeception\TestCase\WPTestCase { private $order; private $refund; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -20,7 +20,7 @@ public function setUp(): void { $this->refund = $this->refund_helper->create( $this->order ); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/ShippingMethodQueriesTest.php b/tests/wpunit/ShippingMethodQueriesTest.php index a30df21ab..dc8dab69b 100644 --- a/tests/wpunit/ShippingMethodQueriesTest.php +++ b/tests/wpunit/ShippingMethodQueriesTest.php @@ -8,7 +8,7 @@ class ShippingMethodQueriesTest extends \Codeception\TestCase\WPTestCase { private $method; private $helper; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -17,7 +17,7 @@ public function setUp(): void { $this->method = 'flat_rate'; } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/TaxRateQueriesTest.php b/tests/wpunit/TaxRateQueriesTest.php index e680d014d..10f8e12e6 100644 --- a/tests/wpunit/TaxRateQueriesTest.php +++ b/tests/wpunit/TaxRateQueriesTest.php @@ -8,7 +8,7 @@ class TaxRateQueriesTest extends \Codeception\TestCase\WPTestCase { private $rate; private $helper; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -17,7 +17,7 @@ public function setUp(): void { $this->rate = $this->helper->create(); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/VariationAttributeQueriesTest.php b/tests/wpunit/VariationAttributeQueriesTest.php index 5c25c6d8b..74a6a7de1 100644 --- a/tests/wpunit/VariationAttributeQueriesTest.php +++ b/tests/wpunit/VariationAttributeQueriesTest.php @@ -6,7 +6,7 @@ class VariationAttributeQueriesTest extends \Codeception\TestCase\WPTestCase { private $product_id; private $variation_id; - public function setUp(): void { + public function setUp() { // before parent::setUp(); @@ -19,7 +19,7 @@ public function setUp(): void { $this->variation_id = $ids['variations'][0]; } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then From c9e9ad6d26a30b6bfcc8f1443afa38c01b679a27 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 18:26:53 -0400 Subject: [PATCH 27/56] .travis.yml updated. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a3f3b36d0..95893060e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -73,7 +73,7 @@ before_script: if [ ! -z "$WP_VERSION" ]; then # Install and config Codeception cp .env.dist .env - travis_retry composer install --prefer-source --no-interaction + COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --prefer-source --no-interaction if [ "$COVERAGE" == "1" ]; then # Install Coveralls mkdir -p build/logs From cc842e9a298b4959551a3c5985b8e0059834f4ce Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 19:37:25 -0400 Subject: [PATCH 28/56] .coveralls.yml updated. --- .coveralls.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.coveralls.yml b/.coveralls.yml index 250a809ae..bbc452ae4 100644 --- a/.coveralls.yml +++ b/.coveralls.yml @@ -1,2 +1,4 @@ service_name: travis-ci -coverage_clover: tests/_output/coverage.xml \ No newline at end of file +src_dir: . +coverage_clover: tests/_output/coverage.xml +json_path: build/logs/coveralls-upload.json \ No newline at end of file From 4d19e106bbc4ac3206eab1ea73ce5f2e170b81e5 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Sat, 27 Jul 2019 14:09:02 -0400 Subject: [PATCH 29/56] Coveralls.io client config updated. --- .coveralls.yml | 3 +-- .travis.yml | 15 ++++++--------- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/.coveralls.yml b/.coveralls.yml index bbc452ae4..8b7b73078 100644 --- a/.coveralls.yml +++ b/.coveralls.yml @@ -1,4 +1,3 @@ service_name: travis-ci -src_dir: . coverage_clover: tests/_output/coverage.xml -json_path: build/logs/coveralls-upload.json \ No newline at end of file +json_path: tests/_output/coverage.json \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 95893060e..a780dc9a2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -72,13 +72,7 @@ before_script: - | if [ ! -z "$WP_VERSION" ]; then # Install and config Codeception - cp .env.dist .env COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --prefer-source --no-interaction - if [ "$COVERAGE" == "1" ]; then - # Install Coveralls - mkdir -p build/logs - COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require php-coveralls/php-coveralls - fi docker-compose build \ --build-arg DESIRED_PHP_VERSION=${PHP_VERSION} \ --build-arg DESIRED_WP_VERSION=${WP_VERSION} \ @@ -92,7 +86,6 @@ before_script: phpcompatibility/phpcompatibility-wp wp-coding-standards/wpcs \ dealerdirect/phpcodesniffer-composer-installer COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --no-dev - ls -al fi script: @@ -115,9 +108,13 @@ script: includes/*.php --standard=WordPress fi after_success: - # Runs Coveralls.io client + # Download and run Coveralls.io client - | if [ "$COVERAGE" == "1" ]; then - travis_retry vendor/bin/php-coveralls -v + ls -la + wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.1.0/php-coveralls.phar + chmod +x php-coveralls.phar + + travis_retry php php-coveralls.phar -v fi From 835b2f4e98437af12515b7ea04cfc0968fdc9389 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Sat, 27 Jul 2019 14:16:13 -0400 Subject: [PATCH 30/56] Unnecessary code removed.. --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a780dc9a2..2cc484bc6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -111,10 +111,8 @@ after_success: # Download and run Coveralls.io client - | if [ "$COVERAGE" == "1" ]; then - ls -la wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.1.0/php-coveralls.phar chmod +x php-coveralls.phar - travis_retry php php-coveralls.phar -v fi From a91475f435a93f247c36b0e96a84650e323709cf Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Sat, 27 Jul 2019 15:33:06 -0400 Subject: [PATCH 31/56] -r flag set for coverall client execution. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2cc484bc6..bd1aa8145 100644 --- a/.travis.yml +++ b/.travis.yml @@ -113,6 +113,6 @@ after_success: if [ "$COVERAGE" == "1" ]; then wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.1.0/php-coveralls.phar chmod +x php-coveralls.phar - travis_retry php php-coveralls.phar -v + travis_retry php php-coveralls.phar -v -r . fi From 09b21cf54e6708ac96c81fb86cf95600aa7f086d Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Sat, 27 Jul 2019 16:09:35 -0400 Subject: [PATCH 32/56] testing-entrypoint.sh updated. --- bin/testing-entrypoint.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/testing-entrypoint.sh b/bin/testing-entrypoint.sh index 0c744fcaf..cdb81ef96 100644 --- a/bin/testing-entrypoint.sh +++ b/bin/testing-entrypoint.sh @@ -22,9 +22,6 @@ fi echo 'Moving to WooGraphQL directory.' cd ${PROJECT_DIR} -echo 'Setting Codeception output directory permissions'. -chmod 777 ${TESTS_OUTPUT} - if [ "$COVERAGE" == "1" -a "$DEBUG" == "1" ]; then vendor/bin/codecept run ${SUITE} --debug --coverage --coverage-xml elif [ "$COVERAGE" == "1" ]; then @@ -33,4 +30,7 @@ elif [ "$DEBUG" == "1" ]; then vendor/bin/codecept run ${SUITE} --debug else vendor/bin/codecept run ${SUITE} -fi \ No newline at end of file +fi + +echo 'Setting Codeception output directory permissions'. +chmod 777 R -${TESTS_OUTPUT} \ No newline at end of file From 698c87ea4c7db4cd66acaff4225efa5a99686a01 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Sat, 27 Jul 2019 16:27:50 -0400 Subject: [PATCH 33/56] Typo fixed. --- .travis.yml | 1 + bin/testing-entrypoint.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bd1aa8145..f77d7a802 100644 --- a/.travis.yml +++ b/.travis.yml @@ -111,6 +111,7 @@ after_success: # Download and run Coveralls.io client - | if [ "$COVERAGE" == "1" ]; then + ls -la wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.1.0/php-coveralls.phar chmod +x php-coveralls.phar travis_retry php php-coveralls.phar -v -r . diff --git a/bin/testing-entrypoint.sh b/bin/testing-entrypoint.sh index cdb81ef96..84b642c5a 100644 --- a/bin/testing-entrypoint.sh +++ b/bin/testing-entrypoint.sh @@ -33,4 +33,4 @@ else fi echo 'Setting Codeception output directory permissions'. -chmod 777 R -${TESTS_OUTPUT} \ No newline at end of file +chmod 777 -R ${TESTS_OUTPUT} \ No newline at end of file From 0a98ab6b8c55e0f37743d8cd1c9c34041f424c5a Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Sat, 27 Jul 2019 17:33:23 -0400 Subject: [PATCH 34/56] Codecoverage config modified. --- .travis.yml | 1 - codeception.dist.yml | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f77d7a802..bd1aa8145 100644 --- a/.travis.yml +++ b/.travis.yml @@ -111,7 +111,6 @@ after_success: # Download and run Coveralls.io client - | if [ "$COVERAGE" == "1" ]; then - ls -la wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.1.0/php-coveralls.phar chmod +x php-coveralls.phar travis_retry php php-coveralls.phar -v -r . diff --git a/codeception.dist.yml b/codeception.dist.yml index 8b51ce3d3..23929bc55 100644 --- a/codeception.dist.yml +++ b/codeception.dist.yml @@ -13,6 +13,8 @@ settings: memory_limit: 1024M coverage: enabled: true + remote: false + work_dir: /var/www/html/wp-content/plugins/wp-graphql-woocommerce c3_url: http://localhost/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php whitelist: include: From f8ee0bec9b613c66e90c087825a4240176c6a56b Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Sun, 28 Jul 2019 00:58:22 -0400 Subject: [PATCH 35/56] Coveralls.io client bug fixed. --- .env.dist | 2 +- .gitignore | 1 + .travis.yml | 18 +++++------ Dockerfile | 2 +- bin/testing-entrypoint.sh | 48 ++++++++++++++++++++--------- docker-compose.yml | 25 ++++----------- vendor/autoload.php | 2 +- vendor/composer/autoload_real.php | 8 ++--- vendor/composer/autoload_static.php | 8 ++--- 9 files changed, 60 insertions(+), 54 deletions(-) diff --git a/.env.dist b/.env.dist index db45227c9..12537a431 100644 --- a/.env.dist +++ b/.env.dist @@ -1,5 +1,5 @@ DB_NAME=wordpress -DB_HOST=127.0.0.1 +DB_HOST=app_db DB_USER=wordpress DB_PASSWORD=wordpress WP_TABLE_PREFIX=wp_ diff --git a/.gitignore b/.gitignore index b6f77baa3..2ed37bc0b 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,4 @@ docker-output composer.lock c3.php .log/ +php-coveralls.phar diff --git a/.travis.yml b/.travis.yml index bd1aa8145..d21e47772 100644 --- a/.travis.yml +++ b/.travis.yml @@ -71,8 +71,7 @@ install: before_script: - | if [ ! -z "$WP_VERSION" ]; then - # Install and config Codeception - COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --prefer-source --no-interaction + # Build images. docker-compose build \ --build-arg DESIRED_PHP_VERSION=${PHP_VERSION} \ --build-arg DESIRED_WP_VERSION=${WP_VERSION} \ @@ -92,12 +91,11 @@ script: # Execute unit tests with coverage if specified, otherwise without coverage - | if [ ! -z "$WP_VERSION" ]; then - declare -a suites=( 'acceptance', 'functional', 'wpunit' ) - for i in "${suites[@]}"; do - docker-compose run \ - -e SUITE=${i} -e COVERAGE=${COVERAGE:-0} -e DEBUG=${DEBUG:-0} testing \ - --rm testing --scale app=0 - done + docker-compose run \ + -e SUITES='acceptance;functional;wpunit' \ + -e COVERAGE=${COVERAGE:-0} \ + -e DEBUG=${DEBUG:-0} \ + testing --rm testing --scale app=0 fi - | if [ "$PHPCS" == "1" ]; then @@ -113,6 +111,8 @@ after_success: if [ "$COVERAGE" == "1" ]; then wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.1.0/php-coveralls.phar chmod +x php-coveralls.phar - travis_retry php php-coveralls.phar -v -r . + + sed -i 's/\/var\/www\/html\/wp-content\/plugins\/wp-graphql-woocommerce\///g' tests/_output/coverage.xml + travis_retry php php-coveralls.phar -v fi diff --git a/Dockerfile b/Dockerfile index e96ee2a4b..25c33dd9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,7 +40,7 @@ ENV PATH "$PATH:~/.composer/vendor/bin" RUN sed -i '$d' /usr/local/bin/app-entrypoint.sh # Set up entrypoint -WORKDIR /var/www/html +WORKDIR /var/www/html/wp-content/plugins/wp-graphql-woocommerce COPY bin/testing-entrypoint.sh /usr/local/bin/testing-entrypoint.sh RUN chmod 755 /usr/local/bin/testing-entrypoint.sh ENTRYPOINT ["testing-entrypoint.sh"] \ No newline at end of file diff --git a/bin/testing-entrypoint.sh b/bin/testing-entrypoint.sh index 84b642c5a..28fe67a55 100644 --- a/bin/testing-entrypoint.sh +++ b/bin/testing-entrypoint.sh @@ -1,14 +1,23 @@ #!/bin/bash +# Move to WordPress root folder +workdir="$PWD" +echo "Moving to WordPress root directory." +cd ${WP_ROOT_FOLDER} + # Run app entrypoint script. . app-entrypoint.sh +# Return to PWD. +echo "Moving back to project working directory." +cd ${workdir} + # Ensure Apache is running service apache2 start # Ensure everything is loaded dockerize \ - -wait tcp://${TEST_DB_HOST}:${TEST_DB_HOST_PORT:-3306} \ + -wait tcp://${DB_HOST}:${DB_HOST_PORT:-3306} \ -wait ${WP_URL} \ -timeout 1m @@ -18,19 +27,28 @@ if [ ! -f "${PROJECT_DIR}/c3.php" ]; then curl -L 'https://raw.github.com/Codeception/c3/2.0/c3.php' > "${PROJECT_DIR}/c3.php" fi -# Run the tests -echo 'Moving to WooGraphQL directory.' -cd ${PROJECT_DIR} - -if [ "$COVERAGE" == "1" -a "$DEBUG" == "1" ]; then - vendor/bin/codecept run ${SUITE} --debug --coverage --coverage-xml -elif [ "$COVERAGE" == "1" ]; then - vendor/bin/codecept run ${SUITE} --coverage --coverage-xml -elif [ "$DEBUG" == "1" ]; then - vendor/bin/codecept run ${SUITE} --debug -else - vendor/bin/codecept run ${SUITE} +echo 'Setting Codeception output directory permissions'. +chmod 777 -R ${TESTS_DIR} + +# Install dependencies +composer install --prefer-source --no-interaction + +if [[ -z "$SUITES" ]]; then + echo 'A target testing suite(s) must be selected.' + echo 'Using the environment variable "$SUITES" set on the "testing" service.' + exit 1 fi -echo 'Setting Codeception output directory permissions'. -chmod 777 -R ${TESTS_OUTPUT} \ No newline at end of file +IFS=';' read -ra target_suites <<< "$SUITES" +for suite in "${target_suites[@]}"; do + if [ "$COVERAGE" == "1" -a "$DEBUG" == "1" ]; then + vendor/bin/codecept run ${suite} --debug --coverage --coverage-xml + elif [ "$COVERAGE" == "1" ]; then + vendor/bin/codecept run ${suite} --coverage --coverage-xml + elif [ "$DEBUG" == "1" ]; then + vendor/bin/codecept run ${suite} --debug + else + vendor/bin/codecept run ${suite} + fi +done + diff --git a/docker-compose.yml b/docker-compose.yml index 7f3173eea..b776b0bd4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,12 +10,12 @@ services: - './.log/app:/var/log/apache2' env_file: .env.dist environment: - WP_URL: 'http://localhost:8001' - WP_DOMAIN: 'localhost:8001' + WP_URL: 'http://localhost:8091' + WP_DOMAIN: 'localhost:8091' DB_HOST: app_db INCLUDE_WPGRAPHIQL: 1 ports: - - '8001:80' + - '8091:80' networks: local: @@ -35,13 +35,12 @@ services: testing: depends_on: - app_db - - testing_db build: context: . dockerfile: Dockerfile args: - DESIRED_PHP_VERSION: "${PHP_VERSION:-7.2}" - DESIRED_WP_VERSION: "${WP_VERSION:-5.2.2}" + DESIRED_PHP_VERSION: "${PHP_VERSION:-7.3}" + DESIRED_WP_VERSION: "${WP_VERSION:-5.2}" image: woographql-testing volumes: - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' @@ -49,21 +48,9 @@ services: env_file: .env.dist environment: WPGRAPHQL_WOOCOMMERCE_AUTOLOAD: 1 - TEST_DB_HOST: testing_db DB_HOST: app_db WP_URL: 'http://localhost' - networks: - testing: - - testing_db: - image: mysql:5.7 - environment: - MYSQL_ROOT_PASSWORD: root - MYSQL_DATABASE: woographql_tests - MYSQL_USER: wordpress - MYSQL_PASSWORD: wordpress - ports: - - '3306' + WP_DOMAIN: 'localhost' networks: testing: diff --git a/vendor/autoload.php b/vendor/autoload.php index 95f2e0e0c..0947fb842 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInitd35e1b6619456855afe82a91b3f422de::getLoader(); +return ComposerAutoloaderInit0d7ad26c95a3f708a7c96f668758610a::getLoader(); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index 24b9dc86b..b920390db 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInitd35e1b6619456855afe82a91b3f422de +class ComposerAutoloaderInit0d7ad26c95a3f708a7c96f668758610a { private static $loader; @@ -19,15 +19,15 @@ public static function getLoader() return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInitd35e1b6619456855afe82a91b3f422de', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInit0d7ad26c95a3f708a7c96f668758610a', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInitd35e1b6619456855afe82a91b3f422de', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInit0d7ad26c95a3f708a7c96f668758610a', 'loadClassLoader')); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInitd35e1b6619456855afe82a91b3f422de::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInit0d7ad26c95a3f708a7c96f668758610a::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 80509f106..3d1c86998 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInitd35e1b6619456855afe82a91b3f422de +class ComposerStaticInit0d7ad26c95a3f708a7c96f668758610a { public static $prefixLengthsPsr4 = array ( 'W' => @@ -131,9 +131,9 @@ class ComposerStaticInitd35e1b6619456855afe82a91b3f422de public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInitd35e1b6619456855afe82a91b3f422de::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInitd35e1b6619456855afe82a91b3f422de::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInitd35e1b6619456855afe82a91b3f422de::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInit0d7ad26c95a3f708a7c96f668758610a::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit0d7ad26c95a3f708a7c96f668758610a::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInit0d7ad26c95a3f708a7c96f668758610a::$classMap; }, null, ClassLoader::class); } From d8de2d387c60291b46b4a29fa94afca5070d8ca5 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Sun, 28 Jul 2019 01:23:39 -0400 Subject: [PATCH 36/56] Bugfix related to Travis-CI. --- bin/testing-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/testing-entrypoint.sh b/bin/testing-entrypoint.sh index 28fe67a55..137af3dd3 100644 --- a/bin/testing-entrypoint.sh +++ b/bin/testing-entrypoint.sh @@ -31,7 +31,7 @@ echo 'Setting Codeception output directory permissions'. chmod 777 -R ${TESTS_DIR} # Install dependencies -composer install --prefer-source --no-interaction +COMPOSER_MEMORY_LIMIT=-1 composer install --prefer-source --no-interaction if [[ -z "$SUITES" ]]; then echo 'A target testing suite(s) must be selected.' From 18f6780ea5f8d7b4ccd936896e8c27919d59f3e2 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Mon, 29 Jul 2019 09:54:58 -0400 Subject: [PATCH 37/56] Dockerfile updated for PHP5.6 test compatibility. --- Dockerfile | 3 +++ bin/testing-entrypoint.sh | 2 +- vendor/autoload.php | 2 +- vendor/composer/autoload_real.php | 8 ++++---- vendor/composer/autoload_static.php | 8 ++++---- 5 files changed, 13 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 25c33dd9c..350df241e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,6 +36,9 @@ RUN curl -sS https://getcomposer.org/installer | php -- \ # Add composer global binaries to PATH ENV PATH "$PATH:~/.composer/vendor/bin" +# Configure php +RUN echo "date.timezone = UTC" >> /usr/local/etc/php/php.ini + # Remove exec statement from base entrypoint script. RUN sed -i '$d' /usr/local/bin/app-entrypoint.sh diff --git a/bin/testing-entrypoint.sh b/bin/testing-entrypoint.sh index 137af3dd3..5dc8edbc1 100644 --- a/bin/testing-entrypoint.sh +++ b/bin/testing-entrypoint.sh @@ -28,7 +28,7 @@ if [ ! -f "${PROJECT_DIR}/c3.php" ]; then fi echo 'Setting Codeception output directory permissions'. -chmod 777 -R ${TESTS_DIR} +chmod 777 -R ${TESTS_OUTPUT}/* # Install dependencies COMPOSER_MEMORY_LIMIT=-1 composer install --prefer-source --no-interaction diff --git a/vendor/autoload.php b/vendor/autoload.php index 0947fb842..6eec87440 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit0d7ad26c95a3f708a7c96f668758610a::getLoader(); +return ComposerAutoloaderInit20fc77f628847ce91a192c4ffb1534d1::getLoader(); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index b920390db..5efa501a8 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit0d7ad26c95a3f708a7c96f668758610a +class ComposerAutoloaderInit20fc77f628847ce91a192c4ffb1534d1 { private static $loader; @@ -19,15 +19,15 @@ public static function getLoader() return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInit0d7ad26c95a3f708a7c96f668758610a', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInit20fc77f628847ce91a192c4ffb1534d1', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInit0d7ad26c95a3f708a7c96f668758610a', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInit20fc77f628847ce91a192c4ffb1534d1', 'loadClassLoader')); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit0d7ad26c95a3f708a7c96f668758610a::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInit20fc77f628847ce91a192c4ffb1534d1::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 3d1c86998..54224abc2 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInit0d7ad26c95a3f708a7c96f668758610a +class ComposerStaticInit20fc77f628847ce91a192c4ffb1534d1 { public static $prefixLengthsPsr4 = array ( 'W' => @@ -131,9 +131,9 @@ class ComposerStaticInit0d7ad26c95a3f708a7c96f668758610a public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit0d7ad26c95a3f708a7c96f668758610a::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit0d7ad26c95a3f708a7c96f668758610a::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInit0d7ad26c95a3f708a7c96f668758610a::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInit20fc77f628847ce91a192c4ffb1534d1::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit20fc77f628847ce91a192c4ffb1534d1::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInit20fc77f628847ce91a192c4ffb1534d1::$classMap; }, null, ClassLoader::class); } From 3a564c3be674d1103eeee626d46a53c828dae507 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Mon, 29 Jul 2019 10:04:59 -0400 Subject: [PATCH 38/56] Bug fixed concerning code coverage output. --- bin/testing-entrypoint.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bin/testing-entrypoint.sh b/bin/testing-entrypoint.sh index 5dc8edbc1..75ef6bde4 100644 --- a/bin/testing-entrypoint.sh +++ b/bin/testing-entrypoint.sh @@ -27,9 +27,6 @@ if [ ! -f "${PROJECT_DIR}/c3.php" ]; then curl -L 'https://raw.github.com/Codeception/c3/2.0/c3.php' > "${PROJECT_DIR}/c3.php" fi -echo 'Setting Codeception output directory permissions'. -chmod 777 -R ${TESTS_OUTPUT}/* - # Install dependencies COMPOSER_MEMORY_LIMIT=-1 composer install --prefer-source --no-interaction @@ -52,3 +49,7 @@ for suite in "${target_suites[@]}"; do fi done +if [ -f "${TESTS_OUTPUT}/coverage.xml" ]; then + echo 'Setting Codeception output directory permissions'. + chmod 777 -R ${TESTS_OUTPUT}/coverage.xml +fi \ No newline at end of file From cd2fa595584dfe7b106f32667fc3e286ef855801 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Mon, 29 Jul 2019 12:20:45 -0400 Subject: [PATCH 39/56] Bug fixed concerning tests output directory. --- bin/testing-entrypoint.sh | 8 ++++++-- vendor/autoload.php | 2 +- vendor/composer/autoload_real.php | 8 ++++---- vendor/composer/autoload_static.php | 8 ++++---- 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/bin/testing-entrypoint.sh b/bin/testing-entrypoint.sh index 75ef6bde4..412d14241 100644 --- a/bin/testing-entrypoint.sh +++ b/bin/testing-entrypoint.sh @@ -30,6 +30,10 @@ fi # Install dependencies COMPOSER_MEMORY_LIMIT=-1 composer install --prefer-source --no-interaction +# Set output permission +echo "Setting Codeception output directory permissions" +chmod 777 ${TESTS_OUTPUT} + if [[ -z "$SUITES" ]]; then echo 'A target testing suite(s) must be selected.' echo 'Using the environment variable "$SUITES" set on the "testing" service.' @@ -49,7 +53,7 @@ for suite in "${target_suites[@]}"; do fi done -if [ -f "${TESTS_OUTPUT}/coverage.xml" ]; then - echo 'Setting Codeception output directory permissions'. +if [ -f "${TESTS_OUTPUT}" ]; then + echo 'Setting "coverage.xml" permissions'. chmod 777 -R ${TESTS_OUTPUT}/coverage.xml fi \ No newline at end of file diff --git a/vendor/autoload.php b/vendor/autoload.php index 6eec87440..28c6df14f 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit20fc77f628847ce91a192c4ffb1534d1::getLoader(); +return ComposerAutoloaderInit7a6810d883e7e56f4120cefc43c77766::getLoader(); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index 5efa501a8..5512d11e0 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit20fc77f628847ce91a192c4ffb1534d1 +class ComposerAutoloaderInit7a6810d883e7e56f4120cefc43c77766 { private static $loader; @@ -19,15 +19,15 @@ public static function getLoader() return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInit20fc77f628847ce91a192c4ffb1534d1', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInit7a6810d883e7e56f4120cefc43c77766', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInit20fc77f628847ce91a192c4ffb1534d1', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInit7a6810d883e7e56f4120cefc43c77766', 'loadClassLoader')); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit20fc77f628847ce91a192c4ffb1534d1::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 54224abc2..09cc8ce47 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInit20fc77f628847ce91a192c4ffb1534d1 +class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 { public static $prefixLengthsPsr4 = array ( 'W' => @@ -131,9 +131,9 @@ class ComposerStaticInit20fc77f628847ce91a192c4ffb1534d1 public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit20fc77f628847ce91a192c4ffb1534d1::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit20fc77f628847ce91a192c4ffb1534d1::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInit20fc77f628847ce91a192c4ffb1534d1::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$classMap; }, null, ClassLoader::class); } From df92511c0ce18d096334b2255f9c0c2476c4d499 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Mon, 29 Jul 2019 19:01:42 -0400 Subject: [PATCH 40/56] PaymentGateway implemented and tested. --- .gitignore | 1 + bin/install-wp-tests.sh | 5 - docker-compose.yml | 1 + includes/class-type-registry.php | 2 + .../connection/class-payment-gateways.php | 61 ++++++++ includes/data/class-factory.php | 17 ++ ...ss-payment-gateway-connection-resolver.php | 53 +++++++ .../object/class-payment-gateway-type.php | 58 +++++++ tests/wpunit/CheckoutMutationTest.php | 2 +- tests/wpunit/PaymentGatewayQueriesTest.php | 148 ++++++++++++++++++ vendor/composer/autoload_classmap.php | 3 + vendor/composer/autoload_static.php | 3 + 12 files changed, 348 insertions(+), 6 deletions(-) create mode 100644 includes/connection/class-payment-gateways.php create mode 100644 includes/data/connection/class-payment-gateway-connection-resolver.php create mode 100644 includes/type/object/class-payment-gateway-type.php create mode 100644 tests/wpunit/PaymentGatewayQueriesTest.php diff --git a/.gitignore b/.gitignore index 2ed37bc0b..a5e502b68 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,4 @@ composer.lock c3.php .log/ php-coveralls.phar +codeception.yml diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index 9d863e475..58164eda0 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -188,11 +188,6 @@ configure_wordpress() { setup_woocommerce() { echo "Installing & Activating WooCommerce" wp plugin install woocommerce --activate - echo "Installing & Activating WordPress Importer" - wp plugin install wordpress-importer - wp plugin activate wordpress-importer - echo "Import sample products" - wp import $WP_CORE_DIR/wp-content/plugins/woocommerce/sample-data/sample_products.xml --authors=skip --path=$WP_CORE_DIR } setup_wpgraphql() { diff --git a/docker-compose.yml b/docker-compose.yml index b776b0bd4..6dbb950d8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,6 +14,7 @@ services: WP_DOMAIN: 'localhost:8091' DB_HOST: app_db INCLUDE_WPGRAPHIQL: 1 + IMPORT_WC_PRODUCTS: 1 ports: - '8091:80' networks: diff --git a/includes/class-type-registry.php b/includes/class-type-registry.php index 13ba53622..abaee4160 100644 --- a/includes/class-type-registry.php +++ b/includes/class-type-registry.php @@ -67,6 +67,7 @@ public static function graphql_register_types() { \WPGraphQL\Extensions\WooCommerce\Type\WPObject\Shipping_Method_Type::register(); \WPGraphQL\Extensions\WooCommerce\Type\WPObject\Cart_Type::register(); \WPGraphQL\Extensions\WooCommerce\Type\WPObject\Variation_Attribute_Type::register(); + \WPGraphQL\Extensions\WooCommerce\Type\WPObject\Payment_Gateway_Type::register(); // Object fields. \WPGraphQL\Extensions\WooCommerce\Type\WPObject\Product_Category_Type::register_fields(); @@ -85,6 +86,7 @@ public static function graphql_register_types() { \WPGraphQL\Extensions\WooCommerce\Connection\Tax_Rates::register_connections(); \WPGraphQL\Extensions\WooCommerce\Connection\Shipping_Methods::register_connections(); \WPGraphQL\Extensions\WooCommerce\Connection\Cart_Items::register_connections(); + \WPGraphQL\Extensions\WooCommerce\Connection\Payment_Gateways::register_connections(); // Mutations. \WPGraphQL\Extensions\WooCommerce\Mutation\Customer_Register::register_mutation(); diff --git a/includes/connection/class-payment-gateways.php b/includes/connection/class-payment-gateways.php new file mode 100644 index 000000000..1a5660e70 --- /dev/null +++ b/includes/connection/class-payment-gateways.php @@ -0,0 +1,61 @@ + 'RootQuery', + 'toType' => 'PaymentGateway', + 'fromFieldName' => 'paymentGateways', + 'connectionArgs' => self::get_connection_args(), + 'resolve' => function ( $source, $args, $context, $info ) { + return Factory::resolve_payment_gateway_connection( $source, $args, $context, $info ); + }, + ); + return array_merge( $defaults, $args ); + } + + /** + * Returns array of where args + * + * @return array + */ + public static function get_connection_args() { + return array( + 'all' => array( + 'type' => 'Boolean', + 'description' => __( 'Include disabled payment gateways?', 'wp-graphql-woocommerce' ), + ), + ); + } +} diff --git a/includes/data/class-factory.php b/includes/data/class-factory.php index 03ece6a85..ba6a89d55 100644 --- a/includes/data/class-factory.php +++ b/includes/data/class-factory.php @@ -26,6 +26,7 @@ use WPGraphQL\Extensions\WooCommerce\Data\Connection\Tax_Rate_Connection_Resolver; use WPGraphQL\Extensions\WooCommerce\Data\Connection\Shipping_Method_Connection_Resolver; use WPGraphQL\Extensions\WooCommerce\Data\Connection\Cart_Item_Connection_Resolver; +use WPGraphQL\Extensions\WooCommerce\Data\Connection\Payment_Gateway_Connection_Resolver; use WPGraphQL\Extensions\WooCommerce\Model\Order_Item; use WPGraphQL\Extensions\WooCommerce\Model\Tax_Rate; use WPGraphQL\Extensions\WooCommerce\Model\Shipping_Method; @@ -385,4 +386,20 @@ public static function resolve_cart_item_connection( $source, array $args, AppCo $resolver = new Cart_Item_Connection_Resolver(); return $resolver->resolve( $source, $args, $context, $info ); } + + /** + * Resolves PaymentGateway connections + * + * @param mixed $source - Data resolver for connection source. + * @param array $args - Connection arguments. + * @param AppContext $context - AppContext object. + * @param ResolveInfo $info - ResolveInfo object. + * + * @return array + * @access public + */ + public static function resolve_payment_gateway_connection( $source, array $args, AppContext $context, ResolveInfo $info ) { + $resolver = new Payment_Gateway_Connection_Resolver(); + return $resolver->resolve( $source, $args, $context, $info ); + } } diff --git a/includes/data/connection/class-payment-gateway-connection-resolver.php b/includes/data/connection/class-payment-gateway-connection-resolver.php new file mode 100644 index 000000000..6df13d215 --- /dev/null +++ b/includes/data/connection/class-payment-gateway-connection-resolver.php @@ -0,0 +1,53 @@ +payment_gateways()->payment_gateways(); + } else { + $gateways = \WC()->payment_gateways()->get_available_payment_gateways(); + } + + $connection = Relay::connectionFromArray( array_values( $gateways ), $args ); + $nodes = array(); + if ( ! empty( $connection['edges'] ) && is_array( $connection['edges'] ) ) { + foreach ( $connection['edges'] as $edge ) { + $nodes[] = ! empty( $edge['node'] ) ? $edge['node'] : null; + } + } + $connection['nodes'] = ! empty( $nodes ) ? $nodes : null; + return ! empty( $gateways ) ? $connection : null; + } +} diff --git a/includes/type/object/class-payment-gateway-type.php b/includes/type/object/class-payment-gateway-type.php new file mode 100644 index 000000000..822aed5ed --- /dev/null +++ b/includes/type/object/class-payment-gateway-type.php @@ -0,0 +1,58 @@ + __( 'A payment gateway object', 'wp-graphql-woocommerce' ), + 'fields' => array( + 'id' => array( + 'type' => array( 'non_null' => 'String' ), + 'description' => __( 'gateway\'s title', 'wp-graphql-woocommerce' ), + 'resolve' => function( $source ) { + return ! empty( $source->id ) ? $source->id : null; + }, + ), + 'title' => array( + 'type' => 'String', + 'description' => __( 'gateway\'s title', 'wp-graphql-woocommerce' ), + 'resolve' => function( $source ) { + return ! empty( $source->title ) ? $source->title : null; + }, + ), + 'description' => array( + 'type' => 'String', + 'description' => __( 'gateway\'s description', 'wp-graphql-woocommerce' ), + 'resolve' => function( $source ) { + return ! empty( $source->description ) ? $source->description : null; + }, + ), + 'icon' => array( + 'type' => 'String', + 'description' => __( 'gateway\'s icon', 'wp-graphql-woocommerce' ), + 'resolve' => function( $source ) { + return ! empty( $source->icon ) ? $source->icon : null; + }, + ), + ), + ) + ); + } +} diff --git a/tests/wpunit/CheckoutMutationTest.php b/tests/wpunit/CheckoutMutationTest.php index f2e9be3de..9f7908561 100644 --- a/tests/wpunit/CheckoutMutationTest.php +++ b/tests/wpunit/CheckoutMutationTest.php @@ -30,7 +30,7 @@ public function setUp() { update_option( 'woocommerce_bacs_settings', array( - 'enabled' => 'yes', + 'enabled' => 'yes', 'title' => 'Direct bank transfer', 'description' => 'Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account.', 'instructions' => 'Instructions that will be added to the thank you page and emails.', diff --git a/tests/wpunit/PaymentGatewayQueriesTest.php b/tests/wpunit/PaymentGatewayQueriesTest.php new file mode 100644 index 000000000..59156ad2a --- /dev/null +++ b/tests/wpunit/PaymentGatewayQueriesTest.php @@ -0,0 +1,148 @@ +shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); + $this->customer = $this->factory->user->create( array( 'role' => 'customer' ) ); + + // Enable payment gateway. + update_option( + 'woocommerce_bacs_settings', + array( + 'enabled' => 'yes', + 'title' => 'Direct bank transfer', + 'description' => 'Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account.', + 'instructions' => 'Instructions that will be added to the thank you page and emails.', + 'account' => '', + ) + ); + + update_option( + 'woocommerce_cheque_settings', + array( + 'enabled' => 'no', + 'title' => 'Check payments', + 'description' => 'Take payments in person via checks. This offline gateway can also be useful to test purchases.', + 'instructions' => 'Instructions that will be added to the thank you page and emails.', + 'account' => '', + ) + ); + } + + public function tearDown() { + // your tear down methods here + + // then + parent::tearDown(); + } + + // tests + public function testPaymentGatewaysQueryAndWhereArgs() { + $query = ' + query ( $all: Boolean ) { + paymentGateways(where:{ all: $all }) { + nodes { + id + title + description + icon + } + } + } + '; + + /** + * Assertion One + * + * tests query. + */ + $actual = graphql( array( 'query' => $query ) ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $expected = array( + 'data' => array( + 'paymentGateways' => array( + 'nodes' => array( + array( + 'id' => 'bacs', + 'title' => 'Direct bank transfer', + 'description' => 'Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account.', + 'icon' => null, + ), + ), + ), + ), + ); + + $this->assertEquals( $expected, $actual ); + + /** + * Assertion Two + * + * tests query and "all" where argument response, expects errors due lack of capabilities. + */ + $variables = array( 'all' => true ); + $actual = graphql( array( 'query' => $query, 'variables' => $variables ) ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertArrayHasKey( 'errors', $actual ); + + /** + * Assertion Three + * + * tests query and "all" where argument response with proper capabilities. + */ + wp_set_current_user( $this->shop_manager ); + $variables = array( 'all' => true ); + $actual = graphql( array( 'query' => $query, 'variables' => $variables ) ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $expected = array( + 'data' => array( + 'paymentGateways' => array( + 'nodes' => array( + array( + 'id' => 'bacs', + 'title' => 'Direct bank transfer', + 'description' => 'Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account.', + 'icon' => null, + ), + array( + 'id' => 'cheque', + 'title' => 'Check payments', + 'description' => 'Take payments in person via checks. This offline gateway can also be useful to test purchases.', + 'icon' => null, + ), + array( + 'id' => 'cod', + 'title' => 'Cash on delivery', + 'description' => 'Pay with cash upon delivery.', + 'icon' => null, + ), + array( + 'id' => 'paypal', + 'title' => 'PayPal', + 'description' => 'Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.', + 'icon' => null, + ), + ), + ), + ), + ); + + $this->assertEquals( $expected, $actual ); + } + +} \ No newline at end of file diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index dfa8f6e06..81c8c5e6f 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -11,6 +11,7 @@ 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Customers' => $baseDir . '/includes/connection/class-customers.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Order_Items' => $baseDir . '/includes/connection/class-order-items.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Orders' => $baseDir . '/includes/connection/class-orders.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Payment_Gateways' => $baseDir . '/includes/connection/class-payment-gateways.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Posts' => $baseDir . '/includes/connection/class-posts.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Product_Attributes' => $baseDir . '/includes/connection/class-product-attributes.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Products' => $baseDir . '/includes/connection/class-products.php', @@ -26,6 +27,7 @@ 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Customer_Connection_Resolver' => $baseDir . '/includes/data/connection/class-customer-connection-resolver.php', 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Order_Connection_Resolver' => $baseDir . '/includes/data/connection/class-order-connection-resolver.php', 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Order_Item_Connection_Resolver' => $baseDir . '/includes/data/connection/class-order-item-connection-resolver.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Payment_Gateway_Connection_Resolver' => $baseDir . '/includes/data/connection/class-payment-gateway-connection-resolver.php', 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Post_Connection_Resolver' => $baseDir . '/includes/data/connection/class-post-connection-resolver.php', 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Product_Attribute_Connection_Resolver' => $baseDir . '/includes/data/connection/class-product-attribute-connection-resolver.php', 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Product_Connection_Resolver' => $baseDir . '/includes/data/connection/class-product-connection-resolver.php', @@ -98,6 +100,7 @@ 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Customer_Type' => $baseDir . '/includes/type/object/class-customer-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Order_Item_Type' => $baseDir . '/includes/type/object/class-order-item-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Order_Type' => $baseDir . '/includes/type/object/class-order-type.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Payment_Gateway_Type' => $baseDir . '/includes/type/object/class-payment-gateway-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Product_Attribute_Type' => $baseDir . '/includes/type/object/class-product-attribute-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Product_Category_Type' => $baseDir . '/includes/type/object/class-product-category-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Product_Download_Type' => $baseDir . '/includes/type/object/class-product-download-type.php', diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 09cc8ce47..5839aa9f2 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -26,6 +26,7 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Customers' => __DIR__ . '/../..' . '/includes/connection/class-customers.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Order_Items' => __DIR__ . '/../..' . '/includes/connection/class-order-items.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Orders' => __DIR__ . '/../..' . '/includes/connection/class-orders.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Payment_Gateways' => __DIR__ . '/../..' . '/includes/connection/class-payment-gateways.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Posts' => __DIR__ . '/../..' . '/includes/connection/class-posts.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Product_Attributes' => __DIR__ . '/../..' . '/includes/connection/class-product-attributes.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Products' => __DIR__ . '/../..' . '/includes/connection/class-products.php', @@ -41,6 +42,7 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Customer_Connection_Resolver' => __DIR__ . '/../..' . '/includes/data/connection/class-customer-connection-resolver.php', 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Order_Connection_Resolver' => __DIR__ . '/../..' . '/includes/data/connection/class-order-connection-resolver.php', 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Order_Item_Connection_Resolver' => __DIR__ . '/../..' . '/includes/data/connection/class-order-item-connection-resolver.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Payment_Gateway_Connection_Resolver' => __DIR__ . '/../..' . '/includes/data/connection/class-payment-gateway-connection-resolver.php', 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Post_Connection_Resolver' => __DIR__ . '/../..' . '/includes/data/connection/class-post-connection-resolver.php', 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Product_Attribute_Connection_Resolver' => __DIR__ . '/../..' . '/includes/data/connection/class-product-attribute-connection-resolver.php', 'WPGraphQL\\Extensions\\WooCommerce\\Data\\Connection\\Product_Connection_Resolver' => __DIR__ . '/../..' . '/includes/data/connection/class-product-connection-resolver.php', @@ -113,6 +115,7 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Customer_Type' => __DIR__ . '/../..' . '/includes/type/object/class-customer-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Order_Item_Type' => __DIR__ . '/../..' . '/includes/type/object/class-order-item-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Order_Type' => __DIR__ . '/../..' . '/includes/type/object/class-order-type.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Payment_Gateway_Type' => __DIR__ . '/../..' . '/includes/type/object/class-payment-gateway-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Product_Attribute_Type' => __DIR__ . '/../..' . '/includes/type/object/class-product-attribute-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Product_Category_Type' => __DIR__ . '/../..' . '/includes/type/object/class-product-category-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Product_Download_Type' => __DIR__ . '/../..' . '/includes/type/object/class-product-download-type.php', From 7d5740c625313237df30b7b765a9f6aec86a19d6 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Mon, 29 Jul 2019 19:58:53 -0400 Subject: [PATCH 41/56] Payment gateway description fixed. --- tests/wpunit/PaymentGatewayQueriesTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/wpunit/PaymentGatewayQueriesTest.php b/tests/wpunit/PaymentGatewayQueriesTest.php index 59156ad2a..b892420ba 100644 --- a/tests/wpunit/PaymentGatewayQueriesTest.php +++ b/tests/wpunit/PaymentGatewayQueriesTest.php @@ -28,7 +28,7 @@ public function setUp() { array( 'enabled' => 'no', 'title' => 'Check payments', - 'description' => 'Take payments in person via checks. This offline gateway can also be useful to test purchases.', + 'description' => 'Please send a check to Store Name, Store Street, Store Town, Store State / County, Store Postcode.', 'instructions' => 'Instructions that will be added to the thank you page and emails.', 'account' => '', ) @@ -122,7 +122,7 @@ public function testPaymentGatewaysQueryAndWhereArgs() { array( 'id' => 'cheque', 'title' => 'Check payments', - 'description' => 'Take payments in person via checks. This offline gateway can also be useful to test purchases.', + 'description' => 'Please send a check to Store Name, Store Street, Store Town, Store State / County, Store Postcode.', 'icon' => null, ), array( From 142c482728750b7a4315136428972efd74ec07b1 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Tue, 13 Aug 2019 16:17:14 -0400 Subject: [PATCH 42/56] fixed "Inflect" class collision --- class-inflect.php | 378 +++++++++--------- .../data/mutation/class-cart-mutation.php | 14 +- includes/mutation/class-cart-add-item.php | 2 +- 3 files changed, 198 insertions(+), 196 deletions(-) diff --git a/class-inflect.php b/class-inflect.php index a13dbc15c..47f54fcf5 100644 --- a/class-inflect.php +++ b/class-inflect.php @@ -11,221 +11,223 @@ * @since 0.0.4 */ -/** - * Class Inflect - */ -class Inflect { +if ( ! class_exists( 'Inflect' ) ) : /** - * Stores plural suffixes. - * - * @var array $plural + * Class Inflect */ - private static $plural = array( - '/(quiz)$/i' => '$1zes', - '/^(ox)$/i' => '$1en', - '/([m|l])ouse$/i' => '$1ice', - '/(matr|vert|ind)ix|ex$/i' => '$1ices', - '/(x|ch|ss|sh)$/i' => '$1es', - '/([^aeiouy]|qu)y$/i' => '$1ies', - '/(hive)$/i' => '$1s', - '/(?:([^f])fe|([lr])f)$/i' => '$1$2ves', - '/(shea|lea|loa|thie)f$/i' => '$1ves', - '/sis$/i' => 'ses', - '/([ti])um$/i' => '$1a', - '/(tomat|potat|ech|her|vet)o$/i' => '$1oes', - '/(bu)s$/i' => '$1ses', - '/(alias)$/i' => '$1es', - '/(octop)us$/i' => '$1i', - '/(ax|test)is$/i' => '$1es', - '/(us)$/i' => '$1es', - '/s$/i' => 's', - '/$/' => 's', - ); + class Inflect { + /** + * Stores plural suffixes. + * + * @var array $plural + */ + private static $plural = array( + '/(quiz)$/i' => '$1zes', + '/^(ox)$/i' => '$1en', + '/([m|l])ouse$/i' => '$1ice', + '/(matr|vert|ind)ix|ex$/i' => '$1ices', + '/(x|ch|ss|sh)$/i' => '$1es', + '/([^aeiouy]|qu)y$/i' => '$1ies', + '/(hive)$/i' => '$1s', + '/(?:([^f])fe|([lr])f)$/i' => '$1$2ves', + '/(shea|lea|loa|thie)f$/i' => '$1ves', + '/sis$/i' => 'ses', + '/([ti])um$/i' => '$1a', + '/(tomat|potat|ech|her|vet)o$/i' => '$1oes', + '/(bu)s$/i' => '$1ses', + '/(alias)$/i' => '$1es', + '/(octop)us$/i' => '$1i', + '/(ax|test)is$/i' => '$1es', + '/(us)$/i' => '$1es', + '/s$/i' => 's', + '/$/' => 's', + ); - /** - * Stores singular suffixes - * - * @var array $singular - */ - private static $singular = array( - '/(quiz)zes$/i' => '$1', - '/(matr)ices$/i' => '$1ix', - '/(vert|ind)ices$/i' => '$1ex', - '/^(ox)en$/i' => '$1', - '/(alias)es$/i' => '$1', - '/(octop|vir)i$/i' => '$1us', - '/(cris|ax|test)es$/i' => '$1is', - '/(shoe)s$/i' => '$1', - '/(o)es$/i' => '$1', - '/(bus)es$/i' => '$1', - '/([m|l])ice$/i' => '$1ouse', - '/(x|ch|ss|sh)es$/i' => '$1', - '/(m)ovies$/i' => '$1ovie', - '/(s)eries$/i' => '$1eries', - '/([^aeiouy]|qu)ies$/i' => '$1y', - '/([lr])ves$/i' => '$1f', - '/(tive)s$/i' => '$1', - '/(hive)s$/i' => '$1', - '/(li|wi|kni)ves$/i' => '$1fe', - '/(shea|loa|lea|thie)ves$/i' => '$1f', - '/(^analy)ses$/i' => '$1sis', - '/((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i' => '$1$2sis', - '/([ti])a$/i' => '$1um', - '/(n)ews$/i' => '$1ews', - '/(h|bl)ouses$/i' => '$1ouse', - '/(corpse)s$/i' => '$1', - '/(us)es$/i' => '$1', - '/s$/i' => '', - ); + /** + * Stores singular suffixes + * + * @var array $singular + */ + private static $singular = array( + '/(quiz)zes$/i' => '$1', + '/(matr)ices$/i' => '$1ix', + '/(vert|ind)ices$/i' => '$1ex', + '/^(ox)en$/i' => '$1', + '/(alias)es$/i' => '$1', + '/(octop|vir)i$/i' => '$1us', + '/(cris|ax|test)es$/i' => '$1is', + '/(shoe)s$/i' => '$1', + '/(o)es$/i' => '$1', + '/(bus)es$/i' => '$1', + '/([m|l])ice$/i' => '$1ouse', + '/(x|ch|ss|sh)es$/i' => '$1', + '/(m)ovies$/i' => '$1ovie', + '/(s)eries$/i' => '$1eries', + '/([^aeiouy]|qu)ies$/i' => '$1y', + '/([lr])ves$/i' => '$1f', + '/(tive)s$/i' => '$1', + '/(hive)s$/i' => '$1', + '/(li|wi|kni)ves$/i' => '$1fe', + '/(shea|loa|lea|thie)ves$/i' => '$1f', + '/(^analy)ses$/i' => '$1sis', + '/((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i' => '$1$2sis', + '/([ti])a$/i' => '$1um', + '/(n)ews$/i' => '$1ews', + '/(h|bl)ouses$/i' => '$1ouse', + '/(corpse)s$/i' => '$1', + '/(us)es$/i' => '$1', + '/s$/i' => '', + ); - /** - * Stores irregular words - * - * @var array $irregular - */ - private static $irregular = array( - 'move' => 'moves', - 'foot' => 'feet', - 'goose' => 'geese', - 'sex' => 'sexes', - 'child' => 'children', - 'man' => 'men', - 'tooth' => 'teeth', - 'person' => 'people', - 'valve' => 'valves', - ); + /** + * Stores irregular words + * + * @var array $irregular + */ + private static $irregular = array( + 'move' => 'moves', + 'foot' => 'feet', + 'goose' => 'geese', + 'sex' => 'sexes', + 'child' => 'children', + 'man' => 'men', + 'tooth' => 'teeth', + 'person' => 'people', + 'valve' => 'valves', + ); - /** - * Stores words without plural tenses - * - * @var array $uncountable - */ - private static $uncountable = array( - 'sheep', - 'fish', - 'deer', - 'series', - 'species', - 'money', - 'rice', - 'information', - 'equipment', - ); + /** + * Stores words without plural tenses + * + * @var array $uncountable + */ + private static $uncountable = array( + 'sheep', + 'fish', + 'deer', + 'series', + 'species', + 'money', + 'rice', + 'information', + 'equipment', + ); - /** - * Return plural tense of provide string - * - * @param string $string - word to be pluralized. - * @return string - */ - public static function pluralize( $string ) { - // save some time in the case that singular and plural are the same. - if ( in_array( strtolower( $string ), self::$uncountable, true ) ) { - return $string; - } + /** + * Return plural tense of provide string + * + * @param string $string - word to be pluralized. + * @return string + */ + public static function pluralize( $string ) { + // save some time in the case that singular and plural are the same. + if ( in_array( strtolower( $string ), self::$uncountable, true ) ) { + return $string; + } - // check for irregular singular forms. - foreach ( self::$irregular as $pattern => $result ) { - $pattern = '/' . $pattern . '$/i'; + // check for irregular singular forms. + foreach ( self::$irregular as $pattern => $result ) { + $pattern = '/' . $pattern . '$/i'; - if ( preg_match( $pattern, $string ) ) { - return preg_replace( $pattern, $result, $string ); + if ( preg_match( $pattern, $string ) ) { + return preg_replace( $pattern, $result, $string ); + } } - } - // check for matches using regular expressions. - foreach ( self::$plural as $pattern => $result ) { - if ( preg_match( $pattern, $string ) ) { - return preg_replace( $pattern, $result, $string ); + // check for matches using regular expressions. + foreach ( self::$plural as $pattern => $result ) { + if ( preg_match( $pattern, $string ) ) { + return preg_replace( $pattern, $result, $string ); + } } - } - - return $string; - } - /** - * Return singular tense of provided string - * - * @param string $string String to be singularized. - * @return string - */ - public static function singularize( $string ) { - // save some time in the case that singular and plural are the same. - if ( in_array( strtolower( $string ), self::$uncountable, true ) ) { return $string; } - // check for irregular plural forms. - foreach ( self::$irregular as $result => $pattern ) { - $pattern = '/' . $pattern . '$/i'; - - if ( preg_match( $pattern, $string ) ) { - return preg_replace( $pattern, $result, $string ); + /** + * Return singular tense of provided string + * + * @param string $string String to be singularized. + * @return string + */ + public static function singularize( $string ) { + // save some time in the case that singular and plural are the same. + if ( in_array( strtolower( $string ), self::$uncountable, true ) ) { + return $string; } - } - // check for matches using regular expressions. - foreach ( self::$singular as $pattern => $result ) { - if ( preg_match( $pattern, $string ) ) { - return preg_replace( $pattern, $result, $string ); + // check for irregular plural forms. + foreach ( self::$irregular as $result => $pattern ) { + $pattern = '/' . $pattern . '$/i'; + + if ( preg_match( $pattern, $string ) ) { + return preg_replace( $pattern, $result, $string ); + } } - } - return $string; - } + // check for matches using regular expressions. + foreach ( self::$singular as $pattern => $result ) { + if ( preg_match( $pattern, $string ) ) { + return preg_replace( $pattern, $result, $string ); + } + } - /** - * Return plural tense if provided count is greater than 1 - * - * @param int $count Count to be evaluated. - * @param string $string String potentially pluralized. - */ - public static function pluralize_if( $count, $string ) { - if ( 1 === $count ) { - return '1 $string'; + return $string; } - return $count . ' ' . self::pluralize( $string ); - } - - /** - * Converts a camel case formatted string to a underscore formatted string. - * - * @param string $string String to be formatted. - * @param boolean $capitalize Capitalize first letter of string. - * - * @return string - */ - public static function underscore_to_camel_case( $string, $capitalize = false ) { - $str = str_replace( ' ', '', ucwords( str_replace( '-', ' ', $string ) ) ); + /** + * Return plural tense if provided count is greater than 1 + * + * @param int $count Count to be evaluated. + * @param string $string String potentially pluralized. + */ + public static function pluralize_if( $count, $string ) { + if ( 1 === $count ) { + return '1 $string'; + } - if ( ! $capitalize ) { - $str[0] = strtolower( $str[0] ); + return $count . ' ' . self::pluralize( $string ); } - return $str; - } + /** + * Converts a camel case formatted string to a underscore formatted string. + * + * @param string $string String to be formatted. + * @param boolean $capitalize Capitalize first letter of string. + * + * @return string + */ + public static function underscore_to_camel_case( $string, $capitalize = false ) { + $str = str_replace( ' ', '', ucwords( str_replace( '-', ' ', $string ) ) ); + + if ( ! $capitalize ) { + $str[0] = strtolower( $str[0] ); + } - /** - * Converts a camel case formatted string to a underscore formatted string. - * - * @param string $string String to be formatted. - * - * @return string - */ - public static function camel_case_to_underscore( $string ) { - preg_match_all( - '!([A-Z][A-Z0-9]*(?=$|[A-Z][a-z0-9])|[A-Za-z][a-z0-9]+)!', - $string, - $matches - ); + return $str; + } - $ret = $matches[0]; + /** + * Converts a camel case formatted string to a underscore formatted string. + * + * @param string $string String to be formatted. + * + * @return string + */ + public static function camel_case_to_underscore( $string ) { + preg_match_all( + '!([A-Z][A-Z0-9]*(?=$|[A-Z][a-z0-9])|[A-Za-z][a-z0-9]+)!', + $string, + $matches + ); + + $ret = $matches[0]; + + foreach ( $ret as &$match ) { + $match = strtoupper( $match ) === $match ? strtolower( $match ) : lcfirst( $match ); + } - foreach ( $ret as &$match ) { - $match = strtoupper( $match ) === $match ? strtolower( $match ) : lcfirst( $match ); + return implode( '_', $ret ); } - - return implode( '_', $ret ); } -} +endif; diff --git a/includes/data/mutation/class-cart-mutation.php b/includes/data/mutation/class-cart-mutation.php index 986a43ce2..b40cbab07 100644 --- a/includes/data/mutation/class-cart-mutation.php +++ b/includes/data/mutation/class-cart-mutation.php @@ -24,13 +24,13 @@ class Cart_Mutation { * @return array */ public static function prepare_cart_item( $input, $context, $info ) { - $cart_item_args = array( - $input['productId'], - ! empty( $input['quantity'] ) ? $input['quantity'] : 1, - ! empty( $input['variationId'] ) ? $input['variationId'] : 0, - ! empty( $input['variation'] ) ? $input['variation'] : array(), - ! empty( $input['extraData'] ) ? json_decode( $input['extraData'], true ) : array(), - ); + $cart_item_args = array( $input['productId'] ); + $cart_item_args[] = ! empty( $input['quantity'] ) ? $input['quantity'] : 1; + $cart_item_args[] = ! empty( $input['variationId'] ) ? $input['variationId'] : 0; + $cart_item_args[] = ! empty( $input['variation'] ) ? $input['variation'] : array(); + $cart_item_args[] = ! empty( $input['extraData'] ) + ? json_decode( $input['extraData'], true ) + : array(); return apply_filters( 'woocommerce_new_cart_item_data', $cart_item_args, $input, $context, $info ); } diff --git a/includes/mutation/class-cart-add-item.php b/includes/mutation/class-cart-add-item.php index 2e3bf8674..241d8e7fd 100644 --- a/includes/mutation/class-cart-add-item.php +++ b/includes/mutation/class-cart-add-item.php @@ -104,7 +104,7 @@ public static function mutate_and_get_payload() { // Add item to cart and get item key. $cart_item_key = \WC()->cart->add_to_cart( ...$cart_item_args ); - if ( ! $cart_item_key ) { + if ( empty( $cart_item_key ) ) { throw new UserError( __( 'Failed to add cart item. Please check input.', 'wp-graphql-woocommerce' ) ); } From f93b590a4fa394fac5f894f9403d32ec2a81ef7c Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Mon, 19 Aug 2019 09:52:16 -0400 Subject: [PATCH 43/56] initial commit --- tests/wpunit/MetaDataQueriesTest.php | 219 ++ vendor/composer/ClassLoader.php | 2 +- vendor/composer/autoload_classmap.php | 2755 +++++++++++++++++++ vendor/composer/autoload_files.php | 47 + vendor/composer/autoload_namespaces.php | 10 + vendor/composer/autoload_psr4.php | 58 + vendor/composer/autoload_real.php | 18 + vendor/composer/autoload_static.php | 3214 +++++++++++++++++++++++ 8 files changed, 6322 insertions(+), 1 deletion(-) create mode 100644 tests/wpunit/MetaDataQueriesTest.php create mode 100644 vendor/composer/autoload_files.php diff --git a/tests/wpunit/MetaDataQueriesTest.php b/tests/wpunit/MetaDataQueriesTest.php new file mode 100644 index 000000000..0ee4de10b --- /dev/null +++ b/tests/wpunit/MetaDataQueriesTest.php @@ -0,0 +1,219 @@ +shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); + $this->customer = $this->factory->user->create( array( 'role' => 'customer' ) ); + $this->coupons = $this->getModule('\Helper\Wpunit')->coupon(); + $this->customers = $this->getModule('\Helper\Wpunit')->customers(); + $this->orders = $this->getModule('\Helper\Wpunit')->orders(); + $this->products = $this->getModule('\Helper\Wpunit')->product(); + $this->variations = $this->getModule('\Helper\Wpunit')->product_variations(); + + $this->createObjects(); + } + + public function tearDown() { + // your tear down methods here + + // then + parent::tearDown(); + } + + private function createObjects() { + $data = array( + + ); + + $this->coupon_id = $this->coupons->create( $data ); + $this->customer_id = $this->customers->create( $data ); + $this->order_id = $this->orders->create( $data ); + $this->product_id = $this->products->create_variable( $data ); + $this->variation_ids = $this->variations->create( $this->product_id, $data ); + } + + // tests + public function testCouponMetaDataQueries() { + $id = Relay::toGlobalId( 'shop_coupon', $this->coupon_id ); + $query = ' + query ($id: ID!) { + coupon(id: $id) { + id + metaData + } + } + '; + + $variables = array( 'id' => $id ); + $actual = graphql( + array( + 'query' => $query, + 'variables' => $variables, + ) + ); + $expected = array( + 'data' => array( + 'coupon' => array( + 'id' => $id, + 'metaData' => array( + array( + 'key' => '', + 'value' => '' + ), + array( + 'key' => '', + 'value' => '' + ), + ) + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEqualSets( $expected, $actual ); + } + + public function testCustomerMetaDataQueries() { + $query = ' + query { + customer { + id + metaData + } + } + '; + + wp_set_current_user( $this->customer_id ); + $actual = graphql( + array( + 'query' => $query, + 'variables' => $variables, + ) + ); + $expected = array( + 'data' => array( + 'customer' => array( + 'id' => Relay::toGlobalId( 'customer', $this->customer_id ), + 'metaData' => array( + array( + 'key' => '', + 'value' => '' + ), + array( + 'key' => '', + 'value' => '' + ), + ) + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEqualSets( $expected, $actual ); + } + + public function testProductMetaDataQueries() { + $id = Relay::toGlobalId( 'product', $this->product_id ); + $query = ' + query ($id: ID!) { + product(id: $id) { + id + metaData + } + } + '; + + $variables = array( 'id' => $id ); + $actual = graphql( + array( + 'query' => $query, + 'variables' => $variables, + ) + ); + $expected = array( + 'data' => array( + 'product' => array( + 'id' => $id, + 'metaData' => array( + array( + 'key' => '', + 'value' => '' + ), + array( + 'key' => '', + 'value' => '' + ), + ) + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEqualSets( $expected, $actual ); + } + + public function testProductVariationMetaDataQueries() { + $id = Relay::toGlobalId( 'product', $this->variation_ids['variations'][0] ); + $query = ' + query ($id: ID!) { + productVariation(id: $id) { + id + metaData + } + } + '; + + $variables = array( 'id' => $id ); + $actual = graphql( + array( + 'query' => $query, + 'variables' => $variables, + ) + ); + $expected = array( + 'data' => array( + 'product' => array( + 'id' => $id, + 'metaData' => array( + array( + 'key' => '', + 'value' => '' + ), + array( + 'key' => '', + 'value' => '' + ), + ) + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEqualSets( $expected, $actual ); + } + + public function testCartMetaDataQueries() { + + } + + public function testOrderMetaDataQueries() { + + } + + public function testRefundMetaDataQueries() { + + } + +} \ No newline at end of file diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index 95f7e0978..fce8549f0 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -279,7 +279,7 @@ public function isClassMapAuthoritative() */ public function setApcuPrefix($apcuPrefix) { - $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; + $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; } /** diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 81c8c5e6f..9e2593a50 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -6,6 +6,2514 @@ $baseDir = dirname($vendorDir); return array( + 'BaconStringUtils\\Filter\\Slugify' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Filter/Slugify.php', + 'BaconStringUtils\\Filter\\SlugifyFactory' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Filter/SlugifyFactory.php', + 'BaconStringUtils\\Module' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Module.php', + 'BaconStringUtils\\Slugifier' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Slugifier.php', + 'BaconStringUtils\\SlugifierFactory' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/SlugifierFactory.php', + 'BaconStringUtils\\UniDecoder' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/UniDecoder.php', + 'Behat\\Gherkin\\Cache\\CacheInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Cache/CacheInterface.php', + 'Behat\\Gherkin\\Cache\\FileCache' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Cache/FileCache.php', + 'Behat\\Gherkin\\Cache\\MemoryCache' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Cache/MemoryCache.php', + 'Behat\\Gherkin\\Exception\\CacheException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/CacheException.php', + 'Behat\\Gherkin\\Exception\\Exception' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/Exception.php', + 'Behat\\Gherkin\\Exception\\LexerException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/LexerException.php', + 'Behat\\Gherkin\\Exception\\NodeException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/NodeException.php', + 'Behat\\Gherkin\\Exception\\ParserException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/ParserException.php', + 'Behat\\Gherkin\\Filter\\ComplexFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/ComplexFilter.php', + 'Behat\\Gherkin\\Filter\\ComplexFilterInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/ComplexFilterInterface.php', + 'Behat\\Gherkin\\Filter\\FeatureFilterInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/FeatureFilterInterface.php', + 'Behat\\Gherkin\\Filter\\FilterInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/FilterInterface.php', + 'Behat\\Gherkin\\Filter\\LineFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/LineFilter.php', + 'Behat\\Gherkin\\Filter\\LineRangeFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/LineRangeFilter.php', + 'Behat\\Gherkin\\Filter\\NameFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/NameFilter.php', + 'Behat\\Gherkin\\Filter\\NarrativeFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/NarrativeFilter.php', + 'Behat\\Gherkin\\Filter\\PathsFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/PathsFilter.php', + 'Behat\\Gherkin\\Filter\\RoleFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/RoleFilter.php', + 'Behat\\Gherkin\\Filter\\SimpleFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/SimpleFilter.php', + 'Behat\\Gherkin\\Filter\\TagFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/TagFilter.php', + 'Behat\\Gherkin\\Gherkin' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Gherkin.php', + 'Behat\\Gherkin\\Keywords\\ArrayKeywords' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/ArrayKeywords.php', + 'Behat\\Gherkin\\Keywords\\CachedArrayKeywords' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/CachedArrayKeywords.php', + 'Behat\\Gherkin\\Keywords\\CucumberKeywords' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/CucumberKeywords.php', + 'Behat\\Gherkin\\Keywords\\KeywordsDumper' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/KeywordsDumper.php', + 'Behat\\Gherkin\\Keywords\\KeywordsInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/KeywordsInterface.php', + 'Behat\\Gherkin\\Lexer' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Lexer.php', + 'Behat\\Gherkin\\Loader\\AbstractFileLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/AbstractFileLoader.php', + 'Behat\\Gherkin\\Loader\\ArrayLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/ArrayLoader.php', + 'Behat\\Gherkin\\Loader\\DirectoryLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/DirectoryLoader.php', + 'Behat\\Gherkin\\Loader\\FileLoaderInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/FileLoaderInterface.php', + 'Behat\\Gherkin\\Loader\\GherkinFileLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/GherkinFileLoader.php', + 'Behat\\Gherkin\\Loader\\LoaderInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/LoaderInterface.php', + 'Behat\\Gherkin\\Loader\\YamlFileLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/YamlFileLoader.php', + 'Behat\\Gherkin\\Node\\ArgumentInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ArgumentInterface.php', + 'Behat\\Gherkin\\Node\\BackgroundNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/BackgroundNode.php', + 'Behat\\Gherkin\\Node\\ExampleNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ExampleNode.php', + 'Behat\\Gherkin\\Node\\ExampleTableNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ExampleTableNode.php', + 'Behat\\Gherkin\\Node\\FeatureNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/FeatureNode.php', + 'Behat\\Gherkin\\Node\\KeywordNodeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/KeywordNodeInterface.php', + 'Behat\\Gherkin\\Node\\NodeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/NodeInterface.php', + 'Behat\\Gherkin\\Node\\OutlineNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/OutlineNode.php', + 'Behat\\Gherkin\\Node\\PyStringNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/PyStringNode.php', + 'Behat\\Gherkin\\Node\\ScenarioInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioInterface.php', + 'Behat\\Gherkin\\Node\\ScenarioLikeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioLikeInterface.php', + 'Behat\\Gherkin\\Node\\ScenarioNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioNode.php', + 'Behat\\Gherkin\\Node\\StepContainerInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/StepContainerInterface.php', + 'Behat\\Gherkin\\Node\\StepNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/StepNode.php', + 'Behat\\Gherkin\\Node\\TableNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/TableNode.php', + 'Behat\\Gherkin\\Node\\TaggedNodeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/TaggedNodeInterface.php', + 'Behat\\Gherkin\\Parser' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Parser.php', + 'Cache_Command' => $vendorDir . '/wp-cli/cache-command/src/Cache_Command.php', + 'Capabilities_Command' => $vendorDir . '/wp-cli/role-command/src/Capabilities_Command.php', + 'Carbon\\Carbon' => $vendorDir . '/nesbot/carbon/src/Carbon/Carbon.php', + 'Carbon\\CarbonImmutable' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonImmutable.php', + 'Carbon\\CarbonInterface' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonInterface.php', + 'Carbon\\CarbonInterval' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonInterval.php', + 'Carbon\\CarbonPeriod' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonPeriod.php', + 'Carbon\\CarbonTimeZone' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonTimeZone.php', + 'Carbon\\Cli\\Invoker' => $vendorDir . '/nesbot/carbon/src/Carbon/Cli/Invoker.php', + 'Carbon\\Exceptions\\InvalidDateException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php', + 'Carbon\\Factory' => $vendorDir . '/nesbot/carbon/src/Carbon/Factory.php', + 'Carbon\\FactoryImmutable' => $vendorDir . '/nesbot/carbon/src/Carbon/FactoryImmutable.php', + 'Carbon\\Language' => $vendorDir . '/nesbot/carbon/src/Carbon/Language.php', + 'Carbon\\Laravel\\ServiceProvider' => $vendorDir . '/nesbot/carbon/src/Carbon/Laravel/ServiceProvider.php', + 'Carbon\\Traits\\Boundaries' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Boundaries.php', + 'Carbon\\Traits\\Comparison' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Comparison.php', + 'Carbon\\Traits\\Converter' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Converter.php', + 'Carbon\\Traits\\Creator' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Creator.php', + 'Carbon\\Traits\\Date' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Date.php', + 'Carbon\\Traits\\Difference' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Difference.php', + 'Carbon\\Traits\\Localization' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Localization.php', + 'Carbon\\Traits\\Macro' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Macro.php', + 'Carbon\\Traits\\Modifiers' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Modifiers.php', + 'Carbon\\Traits\\Mutability' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Mutability.php', + 'Carbon\\Traits\\Options' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Options.php', + 'Carbon\\Traits\\Rounding' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Rounding.php', + 'Carbon\\Traits\\Serialization' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Serialization.php', + 'Carbon\\Traits\\Test' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Test.php', + 'Carbon\\Traits\\Timestamp' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Timestamp.php', + 'Carbon\\Traits\\Units' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Units.php', + 'Carbon\\Traits\\Week' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Week.php', + 'Carbon\\Translator' => $vendorDir . '/nesbot/carbon/src/Carbon/Translator.php', + 'Checksum_Base_Command' => $vendorDir . '/wp-cli/checksum-command/src/Checksum_Base_Command.php', + 'Checksum_Core_Command' => $vendorDir . '/wp-cli/checksum-command/src/Checksum_Core_Command.php', + 'Checksum_Plugin_Command' => $vendorDir . '/wp-cli/checksum-command/src/Checksum_Plugin_Command.php', + 'Codeception\\Actor' => $vendorDir . '/codeception/codeception/src/Codeception/Actor.php', + 'Codeception\\Application' => $vendorDir . '/codeception/codeception/src/Codeception/Application.php', + 'Codeception\\Codecept' => $vendorDir . '/codeception/codeception/src/Codeception/Codecept.php', + 'Codeception\\Command\\Bootstrap' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Bootstrap.php', + 'Codeception\\Command\\Build' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Build.php', + 'Codeception\\Command\\Clean' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Clean.php', + 'Codeception\\Command\\Completion' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Completion.php', + 'Codeception\\Command\\CompletionFallback' => $vendorDir . '/codeception/codeception/src/Codeception/Command/CompletionFallback.php', + 'Codeception\\Command\\ConfigValidate' => $vendorDir . '/codeception/codeception/src/Codeception/Command/ConfigValidate.php', + 'Codeception\\Command\\Console' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Console.php', + 'Codeception\\Command\\DryRun' => $vendorDir . '/codeception/codeception/src/Codeception/Command/DryRun.php', + 'Codeception\\Command\\GenerateCept' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateCept.php', + 'Codeception\\Command\\GenerateCest' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateCest.php', + 'Codeception\\Command\\GenerateEnvironment' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateEnvironment.php', + 'Codeception\\Command\\GenerateFeature' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateFeature.php', + 'Codeception\\Command\\GenerateGroup' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateGroup.php', + 'Codeception\\Command\\GenerateHelper' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateHelper.php', + 'Codeception\\Command\\GeneratePageObject' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GeneratePageObject.php', + 'Codeception\\Command\\GenerateScenarios' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateScenarios.php', + 'Codeception\\Command\\GenerateSnapshot' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateSnapshot.php', + 'Codeception\\Command\\GenerateStepObject' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateStepObject.php', + 'Codeception\\Command\\GenerateSuite' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateSuite.php', + 'Codeception\\Command\\GenerateTest' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateTest.php', + 'Codeception\\Command\\GenerateWPAjax' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPAjax.php', + 'Codeception\\Command\\GenerateWPCanonical' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPCanonical.php', + 'Codeception\\Command\\GenerateWPRestApi' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestApi.php', + 'Codeception\\Command\\GenerateWPRestController' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestController.php', + 'Codeception\\Command\\GenerateWPRestPostTypeController' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestPostTypeController.php', + 'Codeception\\Command\\GenerateWPUnit' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPUnit.php', + 'Codeception\\Command\\GenerateWPXMLRPC' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPXMLRPC.php', + 'Codeception\\Command\\GherkinSnippets' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GherkinSnippets.php', + 'Codeception\\Command\\GherkinSteps' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GherkinSteps.php', + 'Codeception\\Command\\Init' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Init.php', + 'Codeception\\Command\\Run' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Run.php', + 'Codeception\\Command\\SelfUpdate' => $vendorDir . '/codeception/codeception/src/Codeception/Command/SelfUpdate.php', + 'Codeception\\Command\\Shared\\Config' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Shared/Config.php', + 'Codeception\\Command\\Shared\\FileSystem' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Shared/FileSystem.php', + 'Codeception\\Command\\Shared\\Style' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Shared/Style.php', + 'Codeception\\Configuration' => $vendorDir . '/codeception/codeception/src/Codeception/Configuration.php', + 'Codeception\\Coverage\\Filter' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Filter.php', + 'Codeception\\Coverage\\Subscriber\\Local' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/Local.php', + 'Codeception\\Coverage\\Subscriber\\LocalServer' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/LocalServer.php', + 'Codeception\\Coverage\\Subscriber\\Printer' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/Printer.php', + 'Codeception\\Coverage\\Subscriber\\RemoteServer' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/RemoteServer.php', + 'Codeception\\Coverage\\SuiteSubscriber' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/SuiteSubscriber.php', + 'Codeception\\CustomCommandInterface' => $vendorDir . '/codeception/codeception/src/Codeception/CustomCommandInterface.php', + 'Codeception\\Event\\FailEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/FailEvent.php', + 'Codeception\\Event\\PrintResultEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/PrintResultEvent.php', + 'Codeception\\Event\\StepEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/StepEvent.php', + 'Codeception\\Event\\SuiteEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/SuiteEvent.php', + 'Codeception\\Event\\TestEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/TestEvent.php', + 'Codeception\\Events' => $vendorDir . '/codeception/codeception/src/Codeception/Events.php', + 'Codeception\\Example' => $vendorDir . '/codeception/codeception/src/Codeception/Example.php', + 'Codeception\\Exception\\ConditionalAssertionFailed' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ConditionalAssertionFailed.php', + 'Codeception\\Exception\\ConfigurationException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ConfigurationException.php', + 'Codeception\\Exception\\ConnectionException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ConnectionException.php', + 'Codeception\\Exception\\ContentNotFound' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ContentNotFound.php', + 'Codeception\\Exception\\ElementNotFound' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ElementNotFound.php', + 'Codeception\\Exception\\ExtensionException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ExtensionException.php', + 'Codeception\\Exception\\ExternalUrlException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ExternalUrlException.php', + 'Codeception\\Exception\\Fail' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/Fail.php', + 'Codeception\\Exception\\Incomplete' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/Incomplete.php', + 'Codeception\\Exception\\InjectionException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/InjectionException.php', + 'Codeception\\Exception\\MalformedLocatorException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/MalformedLocatorException.php', + 'Codeception\\Exception\\ModuleConfigException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleConfigException.php', + 'Codeception\\Exception\\ModuleConflictException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleConflictException.php', + 'Codeception\\Exception\\ModuleException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleException.php', + 'Codeception\\Exception\\ModuleRequireException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleRequireException.php', + 'Codeception\\Exception\\ParseException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ParseException.php', + 'Codeception\\Exception\\RemoteException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/RemoteException.php', + 'Codeception\\Exception\\Skip' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/Skip.php', + 'Codeception\\Exception\\TestParseException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/TestParseException.php', + 'Codeception\\Exception\\TestRuntimeException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/TestRuntimeException.php', + 'Codeception\\Extension' => $vendorDir . '/codeception/codeception/src/Codeception/Extension.php', + 'Codeception\\Extension\\DotReporter' => $vendorDir . '/codeception/codeception/ext/DotReporter.php', + 'Codeception\\Extension\\Logger' => $vendorDir . '/codeception/codeception/ext/Logger.php', + 'Codeception\\Extension\\Recorder' => $vendorDir . '/codeception/codeception/ext/Recorder.php', + 'Codeception\\Extension\\RunBefore' => $vendorDir . '/codeception/codeception/ext/RunBefore.php', + 'Codeception\\Extension\\RunFailed' => $vendorDir . '/codeception/codeception/ext/RunFailed.php', + 'Codeception\\Extension\\RunProcess' => $vendorDir . '/codeception/codeception/ext/RunProcess.php', + 'Codeception\\Extension\\SimpleReporter' => $vendorDir . '/codeception/codeception/ext/SimpleReporter.php', + 'Codeception\\GroupObject' => $vendorDir . '/codeception/codeception/src/Codeception/GroupObject.php', + 'Codeception\\InitTemplate' => $vendorDir . '/codeception/codeception/src/Codeception/InitTemplate.php', + 'Codeception\\Lib\\Actor\\Shared\\Comment' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Actor/Shared/Comment.php', + 'Codeception\\Lib\\Actor\\Shared\\Friend' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Actor/Shared/Friend.php', + 'Codeception\\Lib\\Connector\\Guzzle' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Guzzle.php', + 'Codeception\\Lib\\Connector\\Guzzle6' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Guzzle6.php', + 'Codeception\\Lib\\Connector\\Laravel5' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Laravel5.php', + 'Codeception\\Lib\\Connector\\Laravel5\\ExceptionHandlerDecorator' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Laravel5/ExceptionHandlerDecorator.php', + 'Codeception\\Lib\\Connector\\Lumen' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Lumen.php', + 'Codeception\\Lib\\Connector\\Lumen\\DummyKernel' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Lumen/DummyKernel.php', + 'Codeception\\Lib\\Connector\\Phalcon' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Phalcon.php', + 'Codeception\\Lib\\Connector\\Phalcon\\MemorySession' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Phalcon/MemorySession.php', + 'Codeception\\Lib\\Connector\\Shared\\LaravelCommon' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Shared/LaravelCommon.php', + 'Codeception\\Lib\\Connector\\Shared\\PhpSuperGlobalsConverter' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Shared/PhpSuperGlobalsConverter.php', + 'Codeception\\Lib\\Connector\\Symfony' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Symfony.php', + 'Codeception\\Lib\\Connector\\Universal' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Universal.php', + 'Codeception\\Lib\\Connector\\Yii1' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii1.php', + 'Codeception\\Lib\\Connector\\Yii2' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2.php', + 'Codeception\\Lib\\Connector\\Yii2\\ConnectionWatcher' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/ConnectionWatcher.php', + 'Codeception\\Lib\\Connector\\Yii2\\FixturesStore' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/FixturesStore.php', + 'Codeception\\Lib\\Connector\\Yii2\\Logger' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/Logger.php', + 'Codeception\\Lib\\Connector\\Yii2\\TestMailer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/TestMailer.php', + 'Codeception\\Lib\\Connector\\Yii2\\TransactionForcer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/TransactionForcer.php', + 'Codeception\\Lib\\Connector\\ZF1' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZF1.php', + 'Codeception\\Lib\\Connector\\ZF2' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZF2.php', + 'Codeception\\Lib\\Connector\\ZF2\\PersistentServiceManager' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZF2/PersistentServiceManager.php', + 'Codeception\\Lib\\Connector\\ZendExpressive' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZendExpressive.php', + 'Codeception\\Lib\\Connector\\ZendExpressive\\ResponseCollector' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZendExpressive/ResponseCollector.php', + 'Codeception\\Lib\\Console\\Colorizer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/Colorizer.php', + 'Codeception\\Lib\\Console\\DiffFactory' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/DiffFactory.php', + 'Codeception\\Lib\\Console\\Message' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/Message.php', + 'Codeception\\Lib\\Console\\MessageFactory' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/MessageFactory.php', + 'Codeception\\Lib\\Console\\Output' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/Output.php', + 'Codeception\\Lib\\DbPopulator' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/DbPopulator.php', + 'Codeception\\Lib\\Di' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Di.php', + 'Codeception\\Lib\\Driver\\AmazonSQS' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/AmazonSQS.php', + 'Codeception\\Lib\\Driver\\Beanstalk' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Beanstalk.php', + 'Codeception\\Lib\\Driver\\Db' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Db.php', + 'Codeception\\Lib\\Driver\\ExtendedDbDriver' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Driver/ExtendedDbDriver.php', + 'Codeception\\Lib\\Driver\\ExtendedMySql' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Driver/ExtendedMySql.php', + 'Codeception\\Lib\\Driver\\Facebook' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Facebook.php', + 'Codeception\\Lib\\Driver\\Iron' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Iron.php', + 'Codeception\\Lib\\Driver\\MongoDb' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/MongoDb.php', + 'Codeception\\Lib\\Driver\\MySql' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/MySql.php', + 'Codeception\\Lib\\Driver\\Oci' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Oci.php', + 'Codeception\\Lib\\Driver\\PostgreSql' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/PostgreSql.php', + 'Codeception\\Lib\\Driver\\SqlSrv' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/SqlSrv.php', + 'Codeception\\Lib\\Driver\\Sqlite' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Sqlite.php', + 'Codeception\\Lib\\Framework' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Framework.php', + 'Codeception\\Lib\\Friend' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Friend.php', + 'Codeception\\Lib\\Generator\\AbstractGenerator' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/AbstractGenerator.php', + 'Codeception\\Lib\\Generator\\AcceptanceSuiteConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/AcceptanceSuiteConfig.php', + 'Codeception\\Lib\\Generator\\Actions' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Actions.php', + 'Codeception\\Lib\\Generator\\Actor' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Actor.php', + 'Codeception\\Lib\\Generator\\Cept' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Cept.php', + 'Codeception\\Lib\\Generator\\Cest' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Cest.php', + 'Codeception\\Lib\\Generator\\Feature' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Feature.php', + 'Codeception\\Lib\\Generator\\FunctionalSuiteConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/FunctionalSuiteConfig.php', + 'Codeception\\Lib\\Generator\\GeneratorInterface' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/GeneratorInterface.php', + 'Codeception\\Lib\\Generator\\GherkinSnippets' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/GherkinSnippets.php', + 'Codeception\\Lib\\Generator\\Group' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Group.php', + 'Codeception\\Lib\\Generator\\Helper' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Helper.php', + 'Codeception\\Lib\\Generator\\IntegrationSuiteConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/IntegrationSuiteConfig.php', + 'Codeception\\Lib\\Generator\\IntegrationSuiteThemeConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/IntegrationSuiteThemeConfig.php', + 'Codeception\\Lib\\Generator\\PageObject' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/PageObject.php', + 'Codeception\\Lib\\Generator\\Shared\\Classname' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Shared/Classname.php', + 'Codeception\\Lib\\Generator\\Snapshot' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Snapshot.php', + 'Codeception\\Lib\\Generator\\StepObject' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/StepObject.php', + 'Codeception\\Lib\\Generator\\Test' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Test.php', + 'Codeception\\Lib\\Generator\\WPUnit' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/WPUnit.php', + 'Codeception\\Lib\\GroupManager' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/GroupManager.php', + 'Codeception\\Lib\\InnerBrowser' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/InnerBrowser.php', + 'Codeception\\Lib\\Interfaces\\API' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/API.php', + 'Codeception\\Lib\\Interfaces\\ActiveRecord' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ActiveRecord.php', + 'Codeception\\Lib\\Interfaces\\ConflictsWithModule' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ConflictsWithModule.php', + 'Codeception\\Lib\\Interfaces\\DataMapper' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/DataMapper.php', + 'Codeception\\Lib\\Interfaces\\Db' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Db.php', + 'Codeception\\Lib\\Interfaces\\DependsOnModule' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/DependsOnModule.php', + 'Codeception\\Lib\\Interfaces\\DoctrineProvider' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/DoctrineProvider.php', + 'Codeception\\Lib\\Interfaces\\ElementLocator' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ElementLocator.php', + 'Codeception\\Lib\\Interfaces\\MultiSession' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/MultiSession.php', + 'Codeception\\Lib\\Interfaces\\ORM' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ORM.php', + 'Codeception\\Lib\\Interfaces\\PageSourceSaver' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/PageSourceSaver.php', + 'Codeception\\Lib\\Interfaces\\PartedModule' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/PartedModule.php', + 'Codeception\\Lib\\Interfaces\\Queue' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Queue.php', + 'Codeception\\Lib\\Interfaces\\Remote' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Remote.php', + 'Codeception\\Lib\\Interfaces\\RequiresPackage' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/RequiresPackage.php', + 'Codeception\\Lib\\Interfaces\\ScreenshotSaver' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ScreenshotSaver.php', + 'Codeception\\Lib\\Interfaces\\SessionSnapshot' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/SessionSnapshot.php', + 'Codeception\\Lib\\Interfaces\\Web' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Web.php', + 'Codeception\\Lib\\ModuleContainer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/ModuleContainer.php', + 'Codeception\\Lib\\Notification' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Notification.php', + 'Codeception\\Lib\\ParamsLoader' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/ParamsLoader.php', + 'Codeception\\Lib\\Parser' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Parser.php', + 'Codeception\\Lib\\Shared\\LaravelCommon' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Shared/LaravelCommon.php', + 'Codeception\\Module' => $vendorDir . '/codeception/codeception/src/Codeception/Module.php', + 'Codeception\\Module\\AMQP' => $vendorDir . '/codeception/codeception/src/Codeception/Module/AMQP.php', + 'Codeception\\Module\\AngularJS' => $vendorDir . '/codeception/codeception/src/Codeception/Module/AngularJS.php', + 'Codeception\\Module\\Apc' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Apc.php', + 'Codeception\\Module\\Asserts' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Asserts.php', + 'Codeception\\Module\\Cli' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Cli.php', + 'Codeception\\Module\\DataFactory' => $vendorDir . '/codeception/codeception/src/Codeception/Module/DataFactory.php', + 'Codeception\\Module\\Db' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Db.php', + 'Codeception\\Module\\Doctrine2' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Doctrine2.php', + 'Codeception\\Module\\FTP' => $vendorDir . '/codeception/codeception/src/Codeception/Module/FTP.php', + 'Codeception\\Module\\Facebook' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Facebook.php', + 'Codeception\\Module\\Filesystem' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Filesystem.php', + 'Codeception\\Module\\Laravel5' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Laravel5.php', + 'Codeception\\Module\\Lumen' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Lumen.php', + 'Codeception\\Module\\Memcache' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Memcache.php', + 'Codeception\\Module\\MongoDb' => $vendorDir . '/codeception/codeception/src/Codeception/Module/MongoDb.php', + 'Codeception\\Module\\Phalcon' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Phalcon.php', + 'Codeception\\Module\\PhpBrowser' => $vendorDir . '/codeception/codeception/src/Codeception/Module/PhpBrowser.php', + 'Codeception\\Module\\Queue' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Queue.php', + 'Codeception\\Module\\REST' => $vendorDir . '/codeception/codeception/src/Codeception/Module/REST.php', + 'Codeception\\Module\\Redis' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Redis.php', + 'Codeception\\Module\\SOAP' => $vendorDir . '/codeception/codeception/src/Codeception/Module/SOAP.php', + 'Codeception\\Module\\Sequence' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Sequence.php', + 'Codeception\\Module\\Silex' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Silex.php', + 'Codeception\\Module\\Symfony' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Symfony.php', + 'Codeception\\Module\\WPBrowser' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPBrowser.php', + 'Codeception\\Module\\WPBrowserMethods' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPBrowserMethods.php', + 'Codeception\\Module\\WPCLI' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPCLI.php', + 'Codeception\\Module\\WPDb' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPDb.php', + 'Codeception\\Module\\WPFilesystem' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPFilesystem.php', + 'Codeception\\Module\\WPLoader' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPLoader.php', + 'Codeception\\Module\\WPQueries' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPQueries.php', + 'Codeception\\Module\\WPWebDriver' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPWebDriver.php', + 'Codeception\\Module\\WebDriver' => $vendorDir . '/codeception/codeception/src/Codeception/Module/WebDriver.php', + 'Codeception\\Module\\WordPress' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WordPress.php', + 'Codeception\\Module\\XMLRPC' => $vendorDir . '/codeception/codeception/src/Codeception/Module/XMLRPC.php', + 'Codeception\\Module\\Yii1' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Yii1.php', + 'Codeception\\Module\\Yii2' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Yii2.php', + 'Codeception\\Module\\ZF1' => $vendorDir . '/codeception/codeception/src/Codeception/Module/ZF1.php', + 'Codeception\\Module\\ZF2' => $vendorDir . '/codeception/codeception/src/Codeception/Module/ZF2.php', + 'Codeception\\Module\\ZendExpressive' => $vendorDir . '/codeception/codeception/src/Codeception/Module/ZendExpressive.php', + 'Codeception\\PHPUnit\\ConsolePrinter' => $vendorDir . '/codeception/phpunit-wrapper/src/ConsolePrinter.php', + 'Codeception\\PHPUnit\\Constraint\\Crawler' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/Crawler.php', + 'Codeception\\PHPUnit\\Constraint\\CrawlerNot' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/CrawlerNot.php', + 'Codeception\\PHPUnit\\Constraint\\JsonContains' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/JsonContains.php', + 'Codeception\\PHPUnit\\Constraint\\JsonType' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/JsonType.php', + 'Codeception\\PHPUnit\\Constraint\\Page' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/Page.php', + 'Codeception\\PHPUnit\\Constraint\\WebDriver' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/WebDriver.php', + 'Codeception\\PHPUnit\\Constraint\\WebDriverNot' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/WebDriverNot.php', + 'Codeception\\PHPUnit\\FilterTest' => $vendorDir . '/codeception/phpunit-wrapper/src/FilterTest.php', + 'Codeception\\PHPUnit\\Init' => $vendorDir . '/codeception/phpunit-wrapper/src/Init.php', + 'Codeception\\PHPUnit\\Listener' => $vendorDir . '/codeception/phpunit-wrapper/src/Listener.php', + 'Codeception\\PHPUnit\\Log\\JUnit' => $vendorDir . '/codeception/phpunit-wrapper/src/Log/JUnit.php', + 'Codeception\\PHPUnit\\Log\\PhpUnit' => $vendorDir . '/codeception/phpunit-wrapper/src/Log/PhpUnit.php', + 'Codeception\\PHPUnit\\ResultPrinter' => $vendorDir . '/codeception/phpunit-wrapper/src/ResultPrinter.php', + 'Codeception\\PHPUnit\\ResultPrinter\\HTML' => $vendorDir . '/codeception/phpunit-wrapper/src/ResultPrinter/HTML.php', + 'Codeception\\PHPUnit\\ResultPrinter\\Report' => $vendorDir . '/codeception/phpunit-wrapper/src/ResultPrinter/Report.php', + 'Codeception\\PHPUnit\\ResultPrinter\\UI' => $vendorDir . '/codeception/phpunit-wrapper/src/ResultPrinter/UI.php', + 'Codeception\\PHPUnit\\Runner' => $vendorDir . '/codeception/phpunit-wrapper/src/Runner.php', + 'Codeception\\PHPUnit\\TestCase' => $vendorDir . '/codeception/phpunit-wrapper/src/TestCase.php', + 'Codeception\\Scenario' => $vendorDir . '/codeception/codeception/src/Codeception/Scenario.php', + 'Codeception\\Snapshot' => $vendorDir . '/codeception/codeception/src/Codeception/Snapshot.php', + 'Codeception\\Step' => $vendorDir . '/codeception/codeception/src/Codeception/Step.php', + 'Codeception\\Step\\Action' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Action.php', + 'Codeception\\Step\\Argument\\FormattedOutput' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Argument/FormattedOutput.php', + 'Codeception\\Step\\Argument\\PasswordArgument' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Argument/PasswordArgument.php', + 'Codeception\\Step\\Assertion' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Assertion.php', + 'Codeception\\Step\\Comment' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Comment.php', + 'Codeception\\Step\\Condition' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Condition.php', + 'Codeception\\Step\\ConditionalAssertion' => $vendorDir . '/codeception/codeception/src/Codeception/Step/ConditionalAssertion.php', + 'Codeception\\Step\\Executor' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Executor.php', + 'Codeception\\Step\\Incomplete' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Incomplete.php', + 'Codeception\\Step\\Meta' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Meta.php', + 'Codeception\\Step\\Skip' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Skip.php', + 'Codeception\\Stub' => $vendorDir . '/codeception/stub/src/Stub.php', + 'Codeception\\Stub\\ConsecutiveMap' => $vendorDir . '/codeception/stub/src/Stub/ConsecutiveMap.php', + 'Codeception\\Stub\\Expected' => $vendorDir . '/codeception/stub/src/Stub/Expected.php', + 'Codeception\\Stub\\StubMarshaler' => $vendorDir . '/codeception/stub/src/Stub/StubMarshaler.php', + 'Codeception\\Subscriber\\AutoRebuild' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/AutoRebuild.php', + 'Codeception\\Subscriber\\BeforeAfterTest' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/BeforeAfterTest.php', + 'Codeception\\Subscriber\\Bootstrap' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Bootstrap.php', + 'Codeception\\Subscriber\\Console' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Console.php', + 'Codeception\\Subscriber\\Dependencies' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Dependencies.php', + 'Codeception\\Subscriber\\ErrorHandler' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/ErrorHandler.php', + 'Codeception\\Subscriber\\ExtensionLoader' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/ExtensionLoader.php', + 'Codeception\\Subscriber\\FailFast' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/FailFast.php', + 'Codeception\\Subscriber\\GracefulTermination' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/GracefulTermination.php', + 'Codeception\\Subscriber\\Module' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Module.php', + 'Codeception\\Subscriber\\PrepareTest' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/PrepareTest.php', + 'Codeception\\Subscriber\\Shared\\StaticEvents' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Shared/StaticEvents.php', + 'Codeception\\Suite' => $vendorDir . '/codeception/codeception/src/Codeception/Suite.php', + 'Codeception\\SuiteManager' => $vendorDir . '/codeception/codeception/src/Codeception/SuiteManager.php', + 'Codeception\\Template\\Acceptance' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Acceptance.php', + 'Codeception\\Template\\Api' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Api.php', + 'Codeception\\Template\\Bootstrap' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Bootstrap.php', + 'Codeception\\Template\\Unit' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Unit.php', + 'Codeception\\Template\\Wpbrowser' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Template/Wpbrowser.php', + 'Codeception\\TestCase\\WPAjaxTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPAjaxTestCase.php', + 'Codeception\\TestCase\\WPCanonicalTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPCanonicalTestCase.php', + 'Codeception\\TestCase\\WPRestApiTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestApiTestCase.php', + 'Codeception\\TestCase\\WPRestControllerTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestControllerTestCase.php', + 'Codeception\\TestCase\\WPRestPostTypeControllerTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestPostTypeControllerTestCase.php', + 'Codeception\\TestCase\\WPTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPTestCase.php', + 'Codeception\\TestCase\\WPXMLRPCTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPXMLRPCTestCase.php', + 'Codeception\\TestInterface' => $vendorDir . '/codeception/codeception/src/Codeception/TestInterface.php', + 'Codeception\\Test\\Cept' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Cept.php', + 'Codeception\\Test\\Cest' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Cest.php', + 'Codeception\\Test\\Descriptor' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Descriptor.php', + 'Codeception\\Test\\Feature\\AssertionCounter' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/AssertionCounter.php', + 'Codeception\\Test\\Feature\\CodeCoverage' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/CodeCoverage.php', + 'Codeception\\Test\\Feature\\ErrorLogger' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/ErrorLogger.php', + 'Codeception\\Test\\Feature\\IgnoreIfMetadataBlocked' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/IgnoreIfMetadataBlocked.php', + 'Codeception\\Test\\Feature\\MetadataCollector' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/MetadataCollector.php', + 'Codeception\\Test\\Feature\\ScenarioLoader' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/ScenarioLoader.php', + 'Codeception\\Test\\Feature\\Stub' => $vendorDir . '/codeception/stub/src/Test/Feature/Stub.php', + 'Codeception\\Test\\Gherkin' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Gherkin.php', + 'Codeception\\Test\\Interfaces\\Dependent' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Dependent.php', + 'Codeception\\Test\\Interfaces\\Descriptive' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Descriptive.php', + 'Codeception\\Test\\Interfaces\\Plain' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Plain.php', + 'Codeception\\Test\\Interfaces\\Reported' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Reported.php', + 'Codeception\\Test\\Interfaces\\ScenarioDriven' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/ScenarioDriven.php', + 'Codeception\\Test\\Interfaces\\StrictCoverage' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/StrictCoverage.php', + 'Codeception\\Test\\Loader' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader.php', + 'Codeception\\Test\\Loader\\Cept' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Cept.php', + 'Codeception\\Test\\Loader\\Cest' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Cest.php', + 'Codeception\\Test\\Loader\\Gherkin' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Gherkin.php', + 'Codeception\\Test\\Loader\\LoaderInterface' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/LoaderInterface.php', + 'Codeception\\Test\\Loader\\Unit' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Unit.php', + 'Codeception\\Test\\Metadata' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Metadata.php', + 'Codeception\\Test\\Test' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Test.php', + 'Codeception\\Test\\Unit' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Unit.php', + 'Codeception\\Util\\ActionSequence' => $vendorDir . '/codeception/codeception/src/Codeception/Util/ActionSequence.php', + 'Codeception\\Util\\Annotation' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Annotation.php', + 'Codeception\\Util\\ArrayContainsComparator' => $vendorDir . '/codeception/codeception/src/Codeception/Util/ArrayContainsComparator.php', + 'Codeception\\Util\\Autoload' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Autoload.php', + 'Codeception\\Util\\Debug' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Debug.php', + 'Codeception\\Util\\FileSystem' => $vendorDir . '/codeception/codeception/src/Codeception/Util/FileSystem.php', + 'Codeception\\Util\\Fixtures' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Fixtures.php', + 'Codeception\\Util\\HttpCode' => $vendorDir . '/codeception/codeception/src/Codeception/Util/HttpCode.php', + 'Codeception\\Util\\JsonArray' => $vendorDir . '/codeception/codeception/src/Codeception/Util/JsonArray.php', + 'Codeception\\Util\\JsonType' => $vendorDir . '/codeception/codeception/src/Codeception/Util/JsonType.php', + 'Codeception\\Util\\Locator' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Locator.php', + 'Codeception\\Util\\Maybe' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Maybe.php', + 'Codeception\\Util\\PathResolver' => $vendorDir . '/codeception/codeception/src/Codeception/Util/PathResolver.php', + 'Codeception\\Util\\PropertyAccess' => $vendorDir . '/codeception/codeception/src/Codeception/Util/PropertyAccess.php', + 'Codeception\\Util\\ReflectionHelper' => $vendorDir . '/codeception/codeception/src/Codeception/Util/ReflectionHelper.php', + 'Codeception\\Util\\Shared\\Asserts' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Shared/Asserts.php', + 'Codeception\\Util\\Shared\\Namespaces' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Shared/Namespaces.php', + 'Codeception\\Util\\Soap' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Soap.php', + 'Codeception\\Util\\Stub' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Stub.php', + 'Codeception\\Util\\Template' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Template.php', + 'Codeception\\Util\\Uri' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Uri.php', + 'Codeception\\Util\\Xml' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Xml.php', + 'Codeception\\Util\\XmlBuilder' => $vendorDir . '/codeception/codeception/src/Codeception/Util/XmlBuilder.php', + 'Codeception\\Util\\XmlStructure' => $vendorDir . '/codeception/codeception/src/Codeception/Util/XmlStructure.php', + 'Comment_Command' => $vendorDir . '/wp-cli/entity-command/src/Comment_Command.php', + 'Comment_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Comment_Meta_Command.php', + 'Composer\\Autoload\\AutoloadGenerator' => $vendorDir . '/composer/composer/src/Composer/Autoload/AutoloadGenerator.php', + 'Composer\\Autoload\\ClassLoader' => $vendorDir . '/composer/composer/src/Composer/Autoload/ClassLoader.php', + 'Composer\\Autoload\\ClassMapGenerator' => $vendorDir . '/composer/composer/src/Composer/Autoload/ClassMapGenerator.php', + 'Composer\\CaBundle\\CaBundle' => $vendorDir . '/composer/ca-bundle/src/CaBundle.php', + 'Composer\\Cache' => $vendorDir . '/composer/composer/src/Composer/Cache.php', + 'Composer\\Command\\AboutCommand' => $vendorDir . '/composer/composer/src/Composer/Command/AboutCommand.php', + 'Composer\\Command\\ArchiveCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ArchiveCommand.php', + 'Composer\\Command\\BaseCommand' => $vendorDir . '/composer/composer/src/Composer/Command/BaseCommand.php', + 'Composer\\Command\\BaseDependencyCommand' => $vendorDir . '/composer/composer/src/Composer/Command/BaseDependencyCommand.php', + 'Composer\\Command\\CheckPlatformReqsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php', + 'Composer\\Command\\ClearCacheCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ClearCacheCommand.php', + 'Composer\\Command\\ConfigCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ConfigCommand.php', + 'Composer\\Command\\CreateProjectCommand' => $vendorDir . '/composer/composer/src/Composer/Command/CreateProjectCommand.php', + 'Composer\\Command\\DependsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/DependsCommand.php', + 'Composer\\Command\\DiagnoseCommand' => $vendorDir . '/composer/composer/src/Composer/Command/DiagnoseCommand.php', + 'Composer\\Command\\DumpAutoloadCommand' => $vendorDir . '/composer/composer/src/Composer/Command/DumpAutoloadCommand.php', + 'Composer\\Command\\ExecCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ExecCommand.php', + 'Composer\\Command\\GlobalCommand' => $vendorDir . '/composer/composer/src/Composer/Command/GlobalCommand.php', + 'Composer\\Command\\HomeCommand' => $vendorDir . '/composer/composer/src/Composer/Command/HomeCommand.php', + 'Composer\\Command\\InitCommand' => $vendorDir . '/composer/composer/src/Composer/Command/InitCommand.php', + 'Composer\\Command\\InstallCommand' => $vendorDir . '/composer/composer/src/Composer/Command/InstallCommand.php', + 'Composer\\Command\\LicensesCommand' => $vendorDir . '/composer/composer/src/Composer/Command/LicensesCommand.php', + 'Composer\\Command\\OutdatedCommand' => $vendorDir . '/composer/composer/src/Composer/Command/OutdatedCommand.php', + 'Composer\\Command\\ProhibitsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ProhibitsCommand.php', + 'Composer\\Command\\RemoveCommand' => $vendorDir . '/composer/composer/src/Composer/Command/RemoveCommand.php', + 'Composer\\Command\\RequireCommand' => $vendorDir . '/composer/composer/src/Composer/Command/RequireCommand.php', + 'Composer\\Command\\RunScriptCommand' => $vendorDir . '/composer/composer/src/Composer/Command/RunScriptCommand.php', + 'Composer\\Command\\ScriptAliasCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ScriptAliasCommand.php', + 'Composer\\Command\\SearchCommand' => $vendorDir . '/composer/composer/src/Composer/Command/SearchCommand.php', + 'Composer\\Command\\SelfUpdateCommand' => $vendorDir . '/composer/composer/src/Composer/Command/SelfUpdateCommand.php', + 'Composer\\Command\\ShowCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ShowCommand.php', + 'Composer\\Command\\StatusCommand' => $vendorDir . '/composer/composer/src/Composer/Command/StatusCommand.php', + 'Composer\\Command\\SuggestsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/SuggestsCommand.php', + 'Composer\\Command\\UpdateCommand' => $vendorDir . '/composer/composer/src/Composer/Command/UpdateCommand.php', + 'Composer\\Command\\ValidateCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ValidateCommand.php', + 'Composer\\Compiler' => $vendorDir . '/composer/composer/src/Composer/Compiler.php', + 'Composer\\Composer' => $vendorDir . '/composer/composer/src/Composer/Composer.php', + 'Composer\\Config' => $vendorDir . '/composer/composer/src/Composer/Config.php', + 'Composer\\Config\\ConfigSourceInterface' => $vendorDir . '/composer/composer/src/Composer/Config/ConfigSourceInterface.php', + 'Composer\\Config\\JsonConfigSource' => $vendorDir . '/composer/composer/src/Composer/Config/JsonConfigSource.php', + 'Composer\\Console\\Application' => $vendorDir . '/composer/composer/src/Composer/Console/Application.php', + 'Composer\\Console\\HtmlOutputFormatter' => $vendorDir . '/composer/composer/src/Composer/Console/HtmlOutputFormatter.php', + 'Composer\\DependencyResolver\\Decisions' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Decisions.php', + 'Composer\\DependencyResolver\\DefaultPolicy' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/DefaultPolicy.php', + 'Composer\\DependencyResolver\\GenericRule' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/GenericRule.php', + 'Composer\\DependencyResolver\\Operation\\InstallOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/InstallOperation.php', + 'Composer\\DependencyResolver\\Operation\\MarkAliasInstalledOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php', + 'Composer\\DependencyResolver\\Operation\\MarkAliasUninstalledOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php', + 'Composer\\DependencyResolver\\Operation\\OperationInterface' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/OperationInterface.php', + 'Composer\\DependencyResolver\\Operation\\SolverOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/SolverOperation.php', + 'Composer\\DependencyResolver\\Operation\\UninstallOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/UninstallOperation.php', + 'Composer\\DependencyResolver\\Operation\\UpdateOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/UpdateOperation.php', + 'Composer\\DependencyResolver\\PolicyInterface' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php', + 'Composer\\DependencyResolver\\Pool' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Pool.php', + 'Composer\\DependencyResolver\\Problem' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Problem.php', + 'Composer\\DependencyResolver\\Request' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Request.php', + 'Composer\\DependencyResolver\\Rule' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Rule.php', + 'Composer\\DependencyResolver\\Rule2Literals' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Rule2Literals.php', + 'Composer\\DependencyResolver\\RuleSet' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleSet.php', + 'Composer\\DependencyResolver\\RuleSetGenerator' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleSetGenerator.php', + 'Composer\\DependencyResolver\\RuleSetIterator' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleSetIterator.php', + 'Composer\\DependencyResolver\\RuleWatchChain' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleWatchChain.php', + 'Composer\\DependencyResolver\\RuleWatchGraph' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleWatchGraph.php', + 'Composer\\DependencyResolver\\RuleWatchNode' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleWatchNode.php', + 'Composer\\DependencyResolver\\Solver' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Solver.php', + 'Composer\\DependencyResolver\\SolverBugException' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/SolverBugException.php', + 'Composer\\DependencyResolver\\SolverProblemsException' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/SolverProblemsException.php', + 'Composer\\DependencyResolver\\Transaction' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Transaction.php', + 'Composer\\Downloader\\ArchiveDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/ArchiveDownloader.php', + 'Composer\\Downloader\\ChangeReportInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/ChangeReportInterface.php', + 'Composer\\Downloader\\DownloadManager' => $vendorDir . '/composer/composer/src/Composer/Downloader/DownloadManager.php', + 'Composer\\Downloader\\DownloaderInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/DownloaderInterface.php', + 'Composer\\Downloader\\DvcsDownloaderInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/DvcsDownloaderInterface.php', + 'Composer\\Downloader\\FileDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/FileDownloader.php', + 'Composer\\Downloader\\FilesystemException' => $vendorDir . '/composer/composer/src/Composer/Downloader/FilesystemException.php', + 'Composer\\Downloader\\FossilDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/FossilDownloader.php', + 'Composer\\Downloader\\GitDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/GitDownloader.php', + 'Composer\\Downloader\\GzipDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/GzipDownloader.php', + 'Composer\\Downloader\\HgDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/HgDownloader.php', + 'Composer\\Downloader\\PathDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/PathDownloader.php', + 'Composer\\Downloader\\PearPackageExtractor' => $vendorDir . '/composer/composer/src/Composer/Downloader/PearPackageExtractor.php', + 'Composer\\Downloader\\PerforceDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/PerforceDownloader.php', + 'Composer\\Downloader\\PharDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/PharDownloader.php', + 'Composer\\Downloader\\RarDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/RarDownloader.php', + 'Composer\\Downloader\\SvnDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/SvnDownloader.php', + 'Composer\\Downloader\\TarDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/TarDownloader.php', + 'Composer\\Downloader\\TransportException' => $vendorDir . '/composer/composer/src/Composer/Downloader/TransportException.php', + 'Composer\\Downloader\\VcsCapableDownloaderInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/VcsCapableDownloaderInterface.php', + 'Composer\\Downloader\\VcsDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/VcsDownloader.php', + 'Composer\\Downloader\\XzDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/XzDownloader.php', + 'Composer\\Downloader\\ZipDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/ZipDownloader.php', + 'Composer\\EventDispatcher\\Event' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/Event.php', + 'Composer\\EventDispatcher\\EventDispatcher' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/EventDispatcher.php', + 'Composer\\EventDispatcher\\EventSubscriberInterface' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/EventSubscriberInterface.php', + 'Composer\\EventDispatcher\\ScriptExecutionException' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/ScriptExecutionException.php', + 'Composer\\Exception\\NoSslException' => $vendorDir . '/composer/composer/src/Composer/Exception/NoSslException.php', + 'Composer\\Factory' => $vendorDir . '/composer/composer/src/Composer/Factory.php', + 'Composer\\IO\\BaseIO' => $vendorDir . '/composer/composer/src/Composer/IO/BaseIO.php', + 'Composer\\IO\\BufferIO' => $vendorDir . '/composer/composer/src/Composer/IO/BufferIO.php', + 'Composer\\IO\\ConsoleIO' => $vendorDir . '/composer/composer/src/Composer/IO/ConsoleIO.php', + 'Composer\\IO\\IOInterface' => $vendorDir . '/composer/composer/src/Composer/IO/IOInterface.php', + 'Composer\\IO\\NullIO' => $vendorDir . '/composer/composer/src/Composer/IO/NullIO.php', + 'Composer\\Installer' => $vendorDir . '/composer/composer/src/Composer/Installer.php', + 'Composer\\Installer\\BinaryInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/BinaryInstaller.php', + 'Composer\\Installer\\BinaryPresenceInterface' => $vendorDir . '/composer/composer/src/Composer/Installer/BinaryPresenceInterface.php', + 'Composer\\Installer\\InstallationManager' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallationManager.php', + 'Composer\\Installer\\InstallerEvent' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallerEvent.php', + 'Composer\\Installer\\InstallerEvents' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallerEvents.php', + 'Composer\\Installer\\InstallerInterface' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallerInterface.php', + 'Composer\\Installer\\LibraryInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/LibraryInstaller.php', + 'Composer\\Installer\\MetapackageInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/MetapackageInstaller.php', + 'Composer\\Installer\\NoopInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/NoopInstaller.php', + 'Composer\\Installer\\PackageEvent' => $vendorDir . '/composer/composer/src/Composer/Installer/PackageEvent.php', + 'Composer\\Installer\\PackageEvents' => $vendorDir . '/composer/composer/src/Composer/Installer/PackageEvents.php', + 'Composer\\Installer\\PearBinaryInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/PearBinaryInstaller.php', + 'Composer\\Installer\\PearInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/PearInstaller.php', + 'Composer\\Installer\\PluginInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/PluginInstaller.php', + 'Composer\\Installer\\ProjectInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/ProjectInstaller.php', + 'Composer\\Installer\\SuggestedPackagesReporter' => $vendorDir . '/composer/composer/src/Composer/Installer/SuggestedPackagesReporter.php', + 'Composer\\Json\\JsonFile' => $vendorDir . '/composer/composer/src/Composer/Json/JsonFile.php', + 'Composer\\Json\\JsonFormatter' => $vendorDir . '/composer/composer/src/Composer/Json/JsonFormatter.php', + 'Composer\\Json\\JsonManipulator' => $vendorDir . '/composer/composer/src/Composer/Json/JsonManipulator.php', + 'Composer\\Json\\JsonValidationException' => $vendorDir . '/composer/composer/src/Composer/Json/JsonValidationException.php', + 'Composer\\Package\\AliasPackage' => $vendorDir . '/composer/composer/src/Composer/Package/AliasPackage.php', + 'Composer\\Package\\Archiver\\ArchivableFilesFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFilter.php', + 'Composer\\Package\\Archiver\\ArchivableFilesFinder' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFinder.php', + 'Composer\\Package\\Archiver\\ArchiveManager' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchiveManager.php', + 'Composer\\Package\\Archiver\\ArchiverInterface' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php', + 'Composer\\Package\\Archiver\\BaseExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/BaseExcludeFilter.php', + 'Composer\\Package\\Archiver\\ComposerExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ComposerExcludeFilter.php', + 'Composer\\Package\\Archiver\\GitExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/GitExcludeFilter.php', + 'Composer\\Package\\Archiver\\HgExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/HgExcludeFilter.php', + 'Composer\\Package\\Archiver\\PharArchiver' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/PharArchiver.php', + 'Composer\\Package\\Archiver\\ZipArchiver' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ZipArchiver.php', + 'Composer\\Package\\BasePackage' => $vendorDir . '/composer/composer/src/Composer/Package/BasePackage.php', + 'Composer\\Package\\Comparer\\Comparer' => $vendorDir . '/composer/composer/src/Composer/Package/Comparer/Comparer.php', + 'Composer\\Package\\CompletePackage' => $vendorDir . '/composer/composer/src/Composer/Package/CompletePackage.php', + 'Composer\\Package\\CompletePackageInterface' => $vendorDir . '/composer/composer/src/Composer/Package/CompletePackageInterface.php', + 'Composer\\Package\\Dumper\\ArrayDumper' => $vendorDir . '/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php', + 'Composer\\Package\\Link' => $vendorDir . '/composer/composer/src/Composer/Package/Link.php', + 'Composer\\Package\\LinkConstraint\\EmptyConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/EmptyConstraint.php', + 'Composer\\Package\\LinkConstraint\\LinkConstraintInterface' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/LinkConstraintInterface.php', + 'Composer\\Package\\LinkConstraint\\MultiConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/MultiConstraint.php', + 'Composer\\Package\\LinkConstraint\\SpecificConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/SpecificConstraint.php', + 'Composer\\Package\\LinkConstraint\\VersionConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/VersionConstraint.php', + 'Composer\\Package\\Loader\\ArrayLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/ArrayLoader.php', + 'Composer\\Package\\Loader\\InvalidPackageException' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/InvalidPackageException.php', + 'Composer\\Package\\Loader\\JsonLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/JsonLoader.php', + 'Composer\\Package\\Loader\\LoaderInterface' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/LoaderInterface.php', + 'Composer\\Package\\Loader\\RootPackageLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/RootPackageLoader.php', + 'Composer\\Package\\Loader\\ValidatingArrayLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php', + 'Composer\\Package\\Locker' => $vendorDir . '/composer/composer/src/Composer/Package/Locker.php', + 'Composer\\Package\\Package' => $vendorDir . '/composer/composer/src/Composer/Package/Package.php', + 'Composer\\Package\\PackageInterface' => $vendorDir . '/composer/composer/src/Composer/Package/PackageInterface.php', + 'Composer\\Package\\RootAliasPackage' => $vendorDir . '/composer/composer/src/Composer/Package/RootAliasPackage.php', + 'Composer\\Package\\RootPackage' => $vendorDir . '/composer/composer/src/Composer/Package/RootPackage.php', + 'Composer\\Package\\RootPackageInterface' => $vendorDir . '/composer/composer/src/Composer/Package/RootPackageInterface.php', + 'Composer\\Package\\Version\\VersionGuesser' => $vendorDir . '/composer/composer/src/Composer/Package/Version/VersionGuesser.php', + 'Composer\\Package\\Version\\VersionParser' => $vendorDir . '/composer/composer/src/Composer/Package/Version/VersionParser.php', + 'Composer\\Package\\Version\\VersionSelector' => $vendorDir . '/composer/composer/src/Composer/Package/Version/VersionSelector.php', + 'Composer\\Plugin\\Capability\\Capability' => $vendorDir . '/composer/composer/src/Composer/Plugin/Capability/Capability.php', + 'Composer\\Plugin\\Capability\\CommandProvider' => $vendorDir . '/composer/composer/src/Composer/Plugin/Capability/CommandProvider.php', + 'Composer\\Plugin\\Capable' => $vendorDir . '/composer/composer/src/Composer/Plugin/Capable.php', + 'Composer\\Plugin\\CommandEvent' => $vendorDir . '/composer/composer/src/Composer/Plugin/CommandEvent.php', + 'Composer\\Plugin\\PluginEvents' => $vendorDir . '/composer/composer/src/Composer/Plugin/PluginEvents.php', + 'Composer\\Plugin\\PluginInterface' => $vendorDir . '/composer/composer/src/Composer/Plugin/PluginInterface.php', + 'Composer\\Plugin\\PluginManager' => $vendorDir . '/composer/composer/src/Composer/Plugin/PluginManager.php', + 'Composer\\Plugin\\PreCommandRunEvent' => $vendorDir . '/composer/composer/src/Composer/Plugin/PreCommandRunEvent.php', + 'Composer\\Plugin\\PreFileDownloadEvent' => $vendorDir . '/composer/composer/src/Composer/Plugin/PreFileDownloadEvent.php', + 'Composer\\Question\\StrictConfirmationQuestion' => $vendorDir . '/composer/composer/src/Composer/Question/StrictConfirmationQuestion.php', + 'Composer\\Repository\\ArrayRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/ArrayRepository.php', + 'Composer\\Repository\\ArtifactRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/ArtifactRepository.php', + 'Composer\\Repository\\BaseRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/BaseRepository.php', + 'Composer\\Repository\\ComposerRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/ComposerRepository.php', + 'Composer\\Repository\\CompositeRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/CompositeRepository.php', + 'Composer\\Repository\\ConfigurableRepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/ConfigurableRepositoryInterface.php', + 'Composer\\Repository\\FilesystemRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/FilesystemRepository.php', + 'Composer\\Repository\\InstalledArrayRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/InstalledArrayRepository.php', + 'Composer\\Repository\\InstalledFilesystemRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/InstalledFilesystemRepository.php', + 'Composer\\Repository\\InstalledRepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/InstalledRepositoryInterface.php', + 'Composer\\Repository\\InvalidRepositoryException' => $vendorDir . '/composer/composer/src/Composer/Repository/InvalidRepositoryException.php', + 'Composer\\Repository\\PackageRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PackageRepository.php', + 'Composer\\Repository\\PathRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PathRepository.php', + 'Composer\\Repository\\PearRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PearRepository.php', + 'Composer\\Repository\\Pear\\BaseChannelReader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/BaseChannelReader.php', + 'Composer\\Repository\\Pear\\ChannelInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelInfo.php', + 'Composer\\Repository\\Pear\\ChannelReader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelReader.php', + 'Composer\\Repository\\Pear\\ChannelRest10Reader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelRest10Reader.php', + 'Composer\\Repository\\Pear\\ChannelRest11Reader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelRest11Reader.php', + 'Composer\\Repository\\Pear\\DependencyConstraint' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/DependencyConstraint.php', + 'Composer\\Repository\\Pear\\DependencyInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/DependencyInfo.php', + 'Composer\\Repository\\Pear\\PackageDependencyParser' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/PackageDependencyParser.php', + 'Composer\\Repository\\Pear\\PackageInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/PackageInfo.php', + 'Composer\\Repository\\Pear\\ReleaseInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ReleaseInfo.php', + 'Composer\\Repository\\PlatformRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PlatformRepository.php', + 'Composer\\Repository\\RepositoryFactory' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositoryFactory.php', + 'Composer\\Repository\\RepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositoryInterface.php', + 'Composer\\Repository\\RepositoryManager' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositoryManager.php', + 'Composer\\Repository\\RepositorySecurityException' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositorySecurityException.php', + 'Composer\\Repository\\VcsRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/VcsRepository.php', + 'Composer\\Repository\\Vcs\\BitbucketDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/BitbucketDriver.php', + 'Composer\\Repository\\Vcs\\FossilDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php', + 'Composer\\Repository\\Vcs\\GitBitbucketDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitBitbucketDriver.php', + 'Composer\\Repository\\Vcs\\GitDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitDriver.php', + 'Composer\\Repository\\Vcs\\GitHubDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php', + 'Composer\\Repository\\Vcs\\GitLabDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php', + 'Composer\\Repository\\Vcs\\HgBitbucketDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/HgBitbucketDriver.php', + 'Composer\\Repository\\Vcs\\HgDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/HgDriver.php', + 'Composer\\Repository\\Vcs\\PerforceDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php', + 'Composer\\Repository\\Vcs\\SvnDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/SvnDriver.php', + 'Composer\\Repository\\Vcs\\VcsDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/VcsDriver.php', + 'Composer\\Repository\\Vcs\\VcsDriverInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/VcsDriverInterface.php', + 'Composer\\Repository\\VersionCacheInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/VersionCacheInterface.php', + 'Composer\\Repository\\WritableArrayRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/WritableArrayRepository.php', + 'Composer\\Repository\\WritableRepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/WritableRepositoryInterface.php', + 'Composer\\Script\\CommandEvent' => $vendorDir . '/composer/composer/src/Composer/Script/CommandEvent.php', + 'Composer\\Script\\Event' => $vendorDir . '/composer/composer/src/Composer/Script/Event.php', + 'Composer\\Script\\PackageEvent' => $vendorDir . '/composer/composer/src/Composer/Script/PackageEvent.php', + 'Composer\\Script\\ScriptEvents' => $vendorDir . '/composer/composer/src/Composer/Script/ScriptEvents.php', + 'Composer\\SelfUpdate\\Keys' => $vendorDir . '/composer/composer/src/Composer/SelfUpdate/Keys.php', + 'Composer\\SelfUpdate\\Versions' => $vendorDir . '/composer/composer/src/Composer/SelfUpdate/Versions.php', + 'Composer\\Semver\\Comparator' => $vendorDir . '/composer/semver/src/Comparator.php', + 'Composer\\Semver\\Constraint\\AbstractConstraint' => $vendorDir . '/composer/semver/src/Constraint/AbstractConstraint.php', + 'Composer\\Semver\\Constraint\\Constraint' => $vendorDir . '/composer/semver/src/Constraint/Constraint.php', + 'Composer\\Semver\\Constraint\\ConstraintInterface' => $vendorDir . '/composer/semver/src/Constraint/ConstraintInterface.php', + 'Composer\\Semver\\Constraint\\EmptyConstraint' => $vendorDir . '/composer/semver/src/Constraint/EmptyConstraint.php', + 'Composer\\Semver\\Constraint\\MultiConstraint' => $vendorDir . '/composer/semver/src/Constraint/MultiConstraint.php', + 'Composer\\Semver\\Semver' => $vendorDir . '/composer/semver/src/Semver.php', + 'Composer\\Semver\\VersionParser' => $vendorDir . '/composer/semver/src/VersionParser.php', + 'Composer\\Spdx\\SpdxLicenses' => $vendorDir . '/composer/spdx-licenses/src/SpdxLicenses.php', + 'Composer\\Spdx\\SpdxLicensesUpdater' => $vendorDir . '/composer/spdx-licenses/src/SpdxLicensesUpdater.php', + 'Composer\\Util\\AuthHelper' => $vendorDir . '/composer/composer/src/Composer/Util/AuthHelper.php', + 'Composer\\Util\\Bitbucket' => $vendorDir . '/composer/composer/src/Composer/Util/Bitbucket.php', + 'Composer\\Util\\ComposerMirror' => $vendorDir . '/composer/composer/src/Composer/Util/ComposerMirror.php', + 'Composer\\Util\\ConfigValidator' => $vendorDir . '/composer/composer/src/Composer/Util/ConfigValidator.php', + 'Composer\\Util\\ErrorHandler' => $vendorDir . '/composer/composer/src/Composer/Util/ErrorHandler.php', + 'Composer\\Util\\Filesystem' => $vendorDir . '/composer/composer/src/Composer/Util/Filesystem.php', + 'Composer\\Util\\Git' => $vendorDir . '/composer/composer/src/Composer/Util/Git.php', + 'Composer\\Util\\GitHub' => $vendorDir . '/composer/composer/src/Composer/Util/GitHub.php', + 'Composer\\Util\\GitLab' => $vendorDir . '/composer/composer/src/Composer/Util/GitLab.php', + 'Composer\\Util\\Hg' => $vendorDir . '/composer/composer/src/Composer/Util/Hg.php', + 'Composer\\Util\\IniHelper' => $vendorDir . '/composer/composer/src/Composer/Util/IniHelper.php', + 'Composer\\Util\\NoProxyPattern' => $vendorDir . '/composer/composer/src/Composer/Util/NoProxyPattern.php', + 'Composer\\Util\\Perforce' => $vendorDir . '/composer/composer/src/Composer/Util/Perforce.php', + 'Composer\\Util\\Platform' => $vendorDir . '/composer/composer/src/Composer/Util/Platform.php', + 'Composer\\Util\\ProcessExecutor' => $vendorDir . '/composer/composer/src/Composer/Util/ProcessExecutor.php', + 'Composer\\Util\\RemoteFilesystem' => $vendorDir . '/composer/composer/src/Composer/Util/RemoteFilesystem.php', + 'Composer\\Util\\Silencer' => $vendorDir . '/composer/composer/src/Composer/Util/Silencer.php', + 'Composer\\Util\\SpdxLicense' => $vendorDir . '/composer/composer/src/Composer/Util/SpdxLicense.php', + 'Composer\\Util\\StreamContextFactory' => $vendorDir . '/composer/composer/src/Composer/Util/StreamContextFactory.php', + 'Composer\\Util\\Svn' => $vendorDir . '/composer/composer/src/Composer/Util/Svn.php', + 'Composer\\Util\\TlsHelper' => $vendorDir . '/composer/composer/src/Composer/Util/TlsHelper.php', + 'Composer\\Util\\Url' => $vendorDir . '/composer/composer/src/Composer/Util/Url.php', + 'Composer\\XdebugHandler' => $vendorDir . '/composer/composer/src/Composer/XdebugHandler.php', + 'Composer\\XdebugHandler\\PhpConfig' => $vendorDir . '/composer/xdebug-handler/src/PhpConfig.php', + 'Composer\\XdebugHandler\\Process' => $vendorDir . '/composer/xdebug-handler/src/Process.php', + 'Composer\\XdebugHandler\\Status' => $vendorDir . '/composer/xdebug-handler/src/Status.php', + 'Composer\\XdebugHandler\\XdebugHandler' => $vendorDir . '/composer/xdebug-handler/src/XdebugHandler.php', + 'Config_Command' => $vendorDir . '/wp-cli/config-command/src/Config_Command.php', + 'Core_Command' => $vendorDir . '/wp-cli/core-command/src/Core_Command.php', + 'Core_Command_Namespace' => $vendorDir . '/wp-cli/checksum-command/src/Core_Command_Namespace.php', + 'Core_Language_Command' => $vendorDir . '/wp-cli/language-command/src/Core_Language_Command.php', + 'Cron_Command' => $vendorDir . '/wp-cli/cron-command/src/Cron_Command.php', + 'Cron_Event_Command' => $vendorDir . '/wp-cli/cron-command/src/Cron_Event_Command.php', + 'Cron_Schedule_Command' => $vendorDir . '/wp-cli/cron-command/src/Cron_Schedule_Command.php', + 'DB_Command' => $vendorDir . '/wp-cli/db-command/src/DB_Command.php', + 'DeepCopy\\DeepCopy' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/DeepCopy.php', + 'DeepCopy\\Exception\\CloneException' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Exception/CloneException.php', + 'DeepCopy\\Exception\\PropertyException' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Exception/PropertyException.php', + 'DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php', + 'DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php', + 'DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php', + 'DeepCopy\\Filter\\Filter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php', + 'DeepCopy\\Filter\\KeepFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php', + 'DeepCopy\\Filter\\ReplaceFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/ReplaceFilter.php', + 'DeepCopy\\Filter\\SetNullFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/SetNullFilter.php', + 'DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php', + 'DeepCopy\\Matcher\\Matcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php', + 'DeepCopy\\Matcher\\PropertyMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyMatcher.php', + 'DeepCopy\\Matcher\\PropertyNameMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyNameMatcher.php', + 'DeepCopy\\Matcher\\PropertyTypeMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php', + 'DeepCopy\\Reflection\\ReflectionHelper' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php', + 'DeepCopy\\TypeFilter\\Date\\DateIntervalFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DateIntervalFilter.php', + 'DeepCopy\\TypeFilter\\ReplaceFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php', + 'DeepCopy\\TypeFilter\\ShallowCopyFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php', + 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php', + 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedListFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php', + 'DeepCopy\\TypeFilter\\TypeFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php', + 'DeepCopy\\TypeMatcher\\TypeMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeMatcher/TypeMatcher.php', + 'Doctrine\\Common\\Inflector\\Inflector' => $vendorDir . '/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php', + 'Doctrine\\Instantiator\\Exception\\ExceptionInterface' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php', + 'Doctrine\\Instantiator\\Exception\\InvalidArgumentException' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php', + 'Doctrine\\Instantiator\\Exception\\UnexpectedValueException' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php', + 'Doctrine\\Instantiator\\Instantiator' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php', + 'Doctrine\\Instantiator\\InstantiatorInterface' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php', + 'Dotenv\\Dotenv' => $vendorDir . '/vlucas/phpdotenv/src/Dotenv.php', + 'Dotenv\\Environment\\AbstractVariables' => $vendorDir . '/vlucas/phpdotenv/src/Environment/AbstractVariables.php', + 'Dotenv\\Environment\\Adapter\\AdapterInterface' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/AdapterInterface.php', + 'Dotenv\\Environment\\Adapter\\ApacheAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/ApacheAdapter.php', + 'Dotenv\\Environment\\Adapter\\ArrayAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/ArrayAdapter.php', + 'Dotenv\\Environment\\Adapter\\EnvConstAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/EnvConstAdapter.php', + 'Dotenv\\Environment\\Adapter\\PutenvAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/PutenvAdapter.php', + 'Dotenv\\Environment\\Adapter\\ServerConstAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/ServerConstAdapter.php', + 'Dotenv\\Environment\\DotenvFactory' => $vendorDir . '/vlucas/phpdotenv/src/Environment/DotenvFactory.php', + 'Dotenv\\Environment\\DotenvVariables' => $vendorDir . '/vlucas/phpdotenv/src/Environment/DotenvVariables.php', + 'Dotenv\\Environment\\FactoryInterface' => $vendorDir . '/vlucas/phpdotenv/src/Environment/FactoryInterface.php', + 'Dotenv\\Environment\\VariablesInterface' => $vendorDir . '/vlucas/phpdotenv/src/Environment/VariablesInterface.php', + 'Dotenv\\Exception\\ExceptionInterface' => $vendorDir . '/vlucas/phpdotenv/src/Exception/ExceptionInterface.php', + 'Dotenv\\Exception\\InvalidFileException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidFileException.php', + 'Dotenv\\Exception\\InvalidPathException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidPathException.php', + 'Dotenv\\Exception\\ValidationException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/ValidationException.php', + 'Dotenv\\Lines' => $vendorDir . '/vlucas/phpdotenv/src/Lines.php', + 'Dotenv\\Loader' => $vendorDir . '/vlucas/phpdotenv/src/Loader.php', + 'Dotenv\\Parser' => $vendorDir . '/vlucas/phpdotenv/src/Parser.php', + 'Dotenv\\Regex\\Error' => $vendorDir . '/vlucas/phpdotenv/src/Regex/Error.php', + 'Dotenv\\Regex\\Regex' => $vendorDir . '/vlucas/phpdotenv/src/Regex/Regex.php', + 'Dotenv\\Regex\\Result' => $vendorDir . '/vlucas/phpdotenv/src/Regex/Result.php', + 'Dotenv\\Regex\\Success' => $vendorDir . '/vlucas/phpdotenv/src/Regex/Success.php', + 'Dotenv\\Validator' => $vendorDir . '/vlucas/phpdotenv/src/Validator.php', + 'EvalFile_Command' => $vendorDir . '/wp-cli/eval-command/src/EvalFile_Command.php', + 'Eval_Command' => $vendorDir . '/wp-cli/eval-command/src/Eval_Command.php', + 'Export_Command' => $vendorDir . '/wp-cli/export-command/src/Export_Command.php', + 'Facebook\\WebDriver\\AbstractWebDriverCheckboxOrRadio' => $vendorDir . '/facebook/webdriver/lib/AbstractWebDriverCheckboxOrRadio.php', + 'Facebook\\WebDriver\\Chrome\\ChromeDriver' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeDriver.php', + 'Facebook\\WebDriver\\Chrome\\ChromeDriverService' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeDriverService.php', + 'Facebook\\WebDriver\\Chrome\\ChromeOptions' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeOptions.php', + 'Facebook\\WebDriver\\Cookie' => $vendorDir . '/facebook/webdriver/lib/Cookie.php', + 'Facebook\\WebDriver\\Exception\\ElementNotSelectableException' => $vendorDir . '/facebook/webdriver/lib/Exception/ElementNotSelectableException.php', + 'Facebook\\WebDriver\\Exception\\ElementNotVisibleException' => $vendorDir . '/facebook/webdriver/lib/Exception/ElementNotVisibleException.php', + 'Facebook\\WebDriver\\Exception\\ExpectedException' => $vendorDir . '/facebook/webdriver/lib/Exception/ExpectedException.php', + 'Facebook\\WebDriver\\Exception\\IMEEngineActivationFailedException' => $vendorDir . '/facebook/webdriver/lib/Exception/IMEEngineActivationFailedException.php', + 'Facebook\\WebDriver\\Exception\\IMENotAvailableException' => $vendorDir . '/facebook/webdriver/lib/Exception/IMENotAvailableException.php', + 'Facebook\\WebDriver\\Exception\\IndexOutOfBoundsException' => $vendorDir . '/facebook/webdriver/lib/Exception/IndexOutOfBoundsException.php', + 'Facebook\\WebDriver\\Exception\\InvalidCookieDomainException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidCookieDomainException.php', + 'Facebook\\WebDriver\\Exception\\InvalidCoordinatesException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidCoordinatesException.php', + 'Facebook\\WebDriver\\Exception\\InvalidElementStateException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidElementStateException.php', + 'Facebook\\WebDriver\\Exception\\InvalidSelectorException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidSelectorException.php', + 'Facebook\\WebDriver\\Exception\\MoveTargetOutOfBoundsException' => $vendorDir . '/facebook/webdriver/lib/Exception/MoveTargetOutOfBoundsException.php', + 'Facebook\\WebDriver\\Exception\\NoAlertOpenException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoAlertOpenException.php', + 'Facebook\\WebDriver\\Exception\\NoCollectionException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoCollectionException.php', + 'Facebook\\WebDriver\\Exception\\NoScriptResultException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoScriptResultException.php', + 'Facebook\\WebDriver\\Exception\\NoStringException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoStringException.php', + 'Facebook\\WebDriver\\Exception\\NoStringLengthException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoStringLengthException.php', + 'Facebook\\WebDriver\\Exception\\NoStringWrapperException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoStringWrapperException.php', + 'Facebook\\WebDriver\\Exception\\NoSuchCollectionException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchCollectionException.php', + 'Facebook\\WebDriver\\Exception\\NoSuchDocumentException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchDocumentException.php', + 'Facebook\\WebDriver\\Exception\\NoSuchDriverException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchDriverException.php', + 'Facebook\\WebDriver\\Exception\\NoSuchElementException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchElementException.php', + 'Facebook\\WebDriver\\Exception\\NoSuchFrameException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchFrameException.php', + 'Facebook\\WebDriver\\Exception\\NoSuchWindowException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchWindowException.php', + 'Facebook\\WebDriver\\Exception\\NullPointerException' => $vendorDir . '/facebook/webdriver/lib/Exception/NullPointerException.php', + 'Facebook\\WebDriver\\Exception\\ScriptTimeoutException' => $vendorDir . '/facebook/webdriver/lib/Exception/ScriptTimeoutException.php', + 'Facebook\\WebDriver\\Exception\\SessionNotCreatedException' => $vendorDir . '/facebook/webdriver/lib/Exception/SessionNotCreatedException.php', + 'Facebook\\WebDriver\\Exception\\StaleElementReferenceException' => $vendorDir . '/facebook/webdriver/lib/Exception/StaleElementReferenceException.php', + 'Facebook\\WebDriver\\Exception\\TimeOutException' => $vendorDir . '/facebook/webdriver/lib/Exception/TimeOutException.php', + 'Facebook\\WebDriver\\Exception\\UnableToSetCookieException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnableToSetCookieException.php', + 'Facebook\\WebDriver\\Exception\\UnexpectedAlertOpenException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnexpectedAlertOpenException.php', + 'Facebook\\WebDriver\\Exception\\UnexpectedJavascriptException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnexpectedJavascriptException.php', + 'Facebook\\WebDriver\\Exception\\UnexpectedTagNameException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnexpectedTagNameException.php', + 'Facebook\\WebDriver\\Exception\\UnknownCommandException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnknownCommandException.php', + 'Facebook\\WebDriver\\Exception\\UnknownServerException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnknownServerException.php', + 'Facebook\\WebDriver\\Exception\\UnrecognizedExceptionException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnrecognizedExceptionException.php', + 'Facebook\\WebDriver\\Exception\\UnsupportedOperationException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnsupportedOperationException.php', + 'Facebook\\WebDriver\\Exception\\WebDriverCurlException' => $vendorDir . '/facebook/webdriver/lib/Exception/WebDriverCurlException.php', + 'Facebook\\WebDriver\\Exception\\WebDriverException' => $vendorDir . '/facebook/webdriver/lib/Exception/WebDriverException.php', + 'Facebook\\WebDriver\\Exception\\XPathLookupException' => $vendorDir . '/facebook/webdriver/lib/Exception/XPathLookupException.php', + 'Facebook\\WebDriver\\Firefox\\FirefoxDriver' => $vendorDir . '/facebook/webdriver/lib/Firefox/FirefoxDriver.php', + 'Facebook\\WebDriver\\Firefox\\FirefoxPreferences' => $vendorDir . '/facebook/webdriver/lib/Firefox/FirefoxPreferences.php', + 'Facebook\\WebDriver\\Firefox\\FirefoxProfile' => $vendorDir . '/facebook/webdriver/lib/Firefox/FirefoxProfile.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverButtonReleaseAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverButtonReleaseAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverClickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverClickAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverClickAndHoldAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverClickAndHoldAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverContextClickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverContextClickAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverCoordinates' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverCoordinates.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverDoubleClickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverDoubleClickAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeyDownAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeyDownAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeyUpAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeyUpAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeysRelatedAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeysRelatedAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMouseAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMouseAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMouseMoveAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMouseMoveAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMoveToOffsetAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMoveToOffsetAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverSendKeysAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverSendKeysAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverSingleKeyAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverSingleKeyAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverDoubleTapAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverDoubleTapAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverDownAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverDownAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverFlickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverFlickAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverFlickFromElementAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverFlickFromElementAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverLongPressAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverLongPressAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverMoveAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverMoveAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverScrollAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverScrollAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverScrollFromElementAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverScrollFromElementAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTapAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTapAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTouchAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTouchAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTouchScreen' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTouchScreen.php', + 'Facebook\\WebDriver\\Interactions\\WebDriverActions' => $vendorDir . '/facebook/webdriver/lib/Interactions/WebDriverActions.php', + 'Facebook\\WebDriver\\Interactions\\WebDriverCompositeAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/WebDriverCompositeAction.php', + 'Facebook\\WebDriver\\Interactions\\WebDriverTouchActions' => $vendorDir . '/facebook/webdriver/lib/Interactions/WebDriverTouchActions.php', + 'Facebook\\WebDriver\\Internal\\WebDriverLocatable' => $vendorDir . '/facebook/webdriver/lib/Internal/WebDriverLocatable.php', + 'Facebook\\WebDriver\\JavaScriptExecutor' => $vendorDir . '/facebook/webdriver/lib/JavaScriptExecutor.php', + 'Facebook\\WebDriver\\Net\\URLChecker' => $vendorDir . '/facebook/webdriver/lib/Net/URLChecker.php', + 'Facebook\\WebDriver\\Remote\\DesiredCapabilities' => $vendorDir . '/facebook/webdriver/lib/Remote/DesiredCapabilities.php', + 'Facebook\\WebDriver\\Remote\\DriverCommand' => $vendorDir . '/facebook/webdriver/lib/Remote/DriverCommand.php', + 'Facebook\\WebDriver\\Remote\\ExecuteMethod' => $vendorDir . '/facebook/webdriver/lib/Remote/ExecuteMethod.php', + 'Facebook\\WebDriver\\Remote\\FileDetector' => $vendorDir . '/facebook/webdriver/lib/Remote/FileDetector.php', + 'Facebook\\WebDriver\\Remote\\HttpCommandExecutor' => $vendorDir . '/facebook/webdriver/lib/Remote/HttpCommandExecutor.php', + 'Facebook\\WebDriver\\Remote\\LocalFileDetector' => $vendorDir . '/facebook/webdriver/lib/Remote/LocalFileDetector.php', + 'Facebook\\WebDriver\\Remote\\RemoteExecuteMethod' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteExecuteMethod.php', + 'Facebook\\WebDriver\\Remote\\RemoteKeyboard' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteKeyboard.php', + 'Facebook\\WebDriver\\Remote\\RemoteMouse' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteMouse.php', + 'Facebook\\WebDriver\\Remote\\RemoteTargetLocator' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteTargetLocator.php', + 'Facebook\\WebDriver\\Remote\\RemoteTouchScreen' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteTouchScreen.php', + 'Facebook\\WebDriver\\Remote\\RemoteWebDriver' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteWebDriver.php', + 'Facebook\\WebDriver\\Remote\\RemoteWebElement' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteWebElement.php', + 'Facebook\\WebDriver\\Remote\\Service\\DriverCommandExecutor' => $vendorDir . '/facebook/webdriver/lib/Remote/Service/DriverCommandExecutor.php', + 'Facebook\\WebDriver\\Remote\\Service\\DriverService' => $vendorDir . '/facebook/webdriver/lib/Remote/Service/DriverService.php', + 'Facebook\\WebDriver\\Remote\\UselessFileDetector' => $vendorDir . '/facebook/webdriver/lib/Remote/UselessFileDetector.php', + 'Facebook\\WebDriver\\Remote\\WebDriverBrowserType' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverBrowserType.php', + 'Facebook\\WebDriver\\Remote\\WebDriverCapabilityType' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverCapabilityType.php', + 'Facebook\\WebDriver\\Remote\\WebDriverCommand' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverCommand.php', + 'Facebook\\WebDriver\\Remote\\WebDriverResponse' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverResponse.php', + 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriver' => $vendorDir . '/facebook/webdriver/lib/Support/Events/EventFiringWebDriver.php', + 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriverNavigation' => $vendorDir . '/facebook/webdriver/lib/Support/Events/EventFiringWebDriverNavigation.php', + 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebElement' => $vendorDir . '/facebook/webdriver/lib/Support/Events/EventFiringWebElement.php', + 'Facebook\\WebDriver\\Support\\XPathEscaper' => $vendorDir . '/facebook/webdriver/lib/Support/XPathEscaper.php', + 'Facebook\\WebDriver\\WebDriver' => $vendorDir . '/facebook/webdriver/lib/WebDriver.php', + 'Facebook\\WebDriver\\WebDriverAction' => $vendorDir . '/facebook/webdriver/lib/WebDriverAction.php', + 'Facebook\\WebDriver\\WebDriverAlert' => $vendorDir . '/facebook/webdriver/lib/WebDriverAlert.php', + 'Facebook\\WebDriver\\WebDriverBy' => $vendorDir . '/facebook/webdriver/lib/WebDriverBy.php', + 'Facebook\\WebDriver\\WebDriverCapabilities' => $vendorDir . '/facebook/webdriver/lib/WebDriverCapabilities.php', + 'Facebook\\WebDriver\\WebDriverCheckboxes' => $vendorDir . '/facebook/webdriver/lib/WebDriverCheckboxes.php', + 'Facebook\\WebDriver\\WebDriverCommandExecutor' => $vendorDir . '/facebook/webdriver/lib/WebDriverCommandExecutor.php', + 'Facebook\\WebDriver\\WebDriverDimension' => $vendorDir . '/facebook/webdriver/lib/WebDriverDimension.php', + 'Facebook\\WebDriver\\WebDriverDispatcher' => $vendorDir . '/facebook/webdriver/lib/WebDriverDispatcher.php', + 'Facebook\\WebDriver\\WebDriverElement' => $vendorDir . '/facebook/webdriver/lib/WebDriverElement.php', + 'Facebook\\WebDriver\\WebDriverEventListener' => $vendorDir . '/facebook/webdriver/lib/WebDriverEventListener.php', + 'Facebook\\WebDriver\\WebDriverExpectedCondition' => $vendorDir . '/facebook/webdriver/lib/WebDriverExpectedCondition.php', + 'Facebook\\WebDriver\\WebDriverHasInputDevices' => $vendorDir . '/facebook/webdriver/lib/WebDriverHasInputDevices.php', + 'Facebook\\WebDriver\\WebDriverKeyboard' => $vendorDir . '/facebook/webdriver/lib/WebDriverKeyboard.php', + 'Facebook\\WebDriver\\WebDriverKeys' => $vendorDir . '/facebook/webdriver/lib/WebDriverKeys.php', + 'Facebook\\WebDriver\\WebDriverMouse' => $vendorDir . '/facebook/webdriver/lib/WebDriverMouse.php', + 'Facebook\\WebDriver\\WebDriverNavigation' => $vendorDir . '/facebook/webdriver/lib/WebDriverNavigation.php', + 'Facebook\\WebDriver\\WebDriverOptions' => $vendorDir . '/facebook/webdriver/lib/WebDriverOptions.php', + 'Facebook\\WebDriver\\WebDriverPlatform' => $vendorDir . '/facebook/webdriver/lib/WebDriverPlatform.php', + 'Facebook\\WebDriver\\WebDriverPoint' => $vendorDir . '/facebook/webdriver/lib/WebDriverPoint.php', + 'Facebook\\WebDriver\\WebDriverRadios' => $vendorDir . '/facebook/webdriver/lib/WebDriverRadios.php', + 'Facebook\\WebDriver\\WebDriverSearchContext' => $vendorDir . '/facebook/webdriver/lib/WebDriverSearchContext.php', + 'Facebook\\WebDriver\\WebDriverSelect' => $vendorDir . '/facebook/webdriver/lib/WebDriverSelect.php', + 'Facebook\\WebDriver\\WebDriverSelectInterface' => $vendorDir . '/facebook/webdriver/lib/WebDriverSelectInterface.php', + 'Facebook\\WebDriver\\WebDriverTargetLocator' => $vendorDir . '/facebook/webdriver/lib/WebDriverTargetLocator.php', + 'Facebook\\WebDriver\\WebDriverTimeouts' => $vendorDir . '/facebook/webdriver/lib/WebDriverTimeouts.php', + 'Facebook\\WebDriver\\WebDriverUpAction' => $vendorDir . '/facebook/webdriver/lib/WebDriverUpAction.php', + 'Facebook\\WebDriver\\WebDriverWait' => $vendorDir . '/facebook/webdriver/lib/WebDriverWait.php', + 'Facebook\\WebDriver\\WebDriverWindow' => $vendorDir . '/facebook/webdriver/lib/WebDriverWindow.php', + 'Gettext\\BaseTranslator' => $vendorDir . '/gettext/gettext/src/BaseTranslator.php', + 'Gettext\\Extractors\\Blade' => $vendorDir . '/gettext/gettext/src/Extractors/Blade.php', + 'Gettext\\Extractors\\Csv' => $vendorDir . '/gettext/gettext/src/Extractors/Csv.php', + 'Gettext\\Extractors\\CsvDictionary' => $vendorDir . '/gettext/gettext/src/Extractors/CsvDictionary.php', + 'Gettext\\Extractors\\Extractor' => $vendorDir . '/gettext/gettext/src/Extractors/Extractor.php', + 'Gettext\\Extractors\\ExtractorInterface' => $vendorDir . '/gettext/gettext/src/Extractors/ExtractorInterface.php', + 'Gettext\\Extractors\\Jed' => $vendorDir . '/gettext/gettext/src/Extractors/Jed.php', + 'Gettext\\Extractors\\JsCode' => $vendorDir . '/gettext/gettext/src/Extractors/JsCode.php', + 'Gettext\\Extractors\\Json' => $vendorDir . '/gettext/gettext/src/Extractors/Json.php', + 'Gettext\\Extractors\\JsonDictionary' => $vendorDir . '/gettext/gettext/src/Extractors/JsonDictionary.php', + 'Gettext\\Extractors\\Mo' => $vendorDir . '/gettext/gettext/src/Extractors/Mo.php', + 'Gettext\\Extractors\\PhpArray' => $vendorDir . '/gettext/gettext/src/Extractors/PhpArray.php', + 'Gettext\\Extractors\\PhpCode' => $vendorDir . '/gettext/gettext/src/Extractors/PhpCode.php', + 'Gettext\\Extractors\\Po' => $vendorDir . '/gettext/gettext/src/Extractors/Po.php', + 'Gettext\\Extractors\\Twig' => $vendorDir . '/gettext/gettext/src/Extractors/Twig.php', + 'Gettext\\Extractors\\VueJs' => $vendorDir . '/gettext/gettext/src/Extractors/VueJs.php', + 'Gettext\\Extractors\\Xliff' => $vendorDir . '/gettext/gettext/src/Extractors/Xliff.php', + 'Gettext\\Extractors\\Yaml' => $vendorDir . '/gettext/gettext/src/Extractors/Yaml.php', + 'Gettext\\Extractors\\YamlDictionary' => $vendorDir . '/gettext/gettext/src/Extractors/YamlDictionary.php', + 'Gettext\\Generators\\Csv' => $vendorDir . '/gettext/gettext/src/Generators/Csv.php', + 'Gettext\\Generators\\CsvDictionary' => $vendorDir . '/gettext/gettext/src/Generators/CsvDictionary.php', + 'Gettext\\Generators\\Generator' => $vendorDir . '/gettext/gettext/src/Generators/Generator.php', + 'Gettext\\Generators\\GeneratorInterface' => $vendorDir . '/gettext/gettext/src/Generators/GeneratorInterface.php', + 'Gettext\\Generators\\Jed' => $vendorDir . '/gettext/gettext/src/Generators/Jed.php', + 'Gettext\\Generators\\Json' => $vendorDir . '/gettext/gettext/src/Generators/Json.php', + 'Gettext\\Generators\\JsonDictionary' => $vendorDir . '/gettext/gettext/src/Generators/JsonDictionary.php', + 'Gettext\\Generators\\Mo' => $vendorDir . '/gettext/gettext/src/Generators/Mo.php', + 'Gettext\\Generators\\PhpArray' => $vendorDir . '/gettext/gettext/src/Generators/PhpArray.php', + 'Gettext\\Generators\\Po' => $vendorDir . '/gettext/gettext/src/Generators/Po.php', + 'Gettext\\Generators\\Xliff' => $vendorDir . '/gettext/gettext/src/Generators/Xliff.php', + 'Gettext\\Generators\\Yaml' => $vendorDir . '/gettext/gettext/src/Generators/Yaml.php', + 'Gettext\\Generators\\YamlDictionary' => $vendorDir . '/gettext/gettext/src/Generators/YamlDictionary.php', + 'Gettext\\GettextTranslator' => $vendorDir . '/gettext/gettext/src/GettextTranslator.php', + 'Gettext\\Languages\\Category' => $vendorDir . '/gettext/languages/src/Category.php', + 'Gettext\\Languages\\CldrData' => $vendorDir . '/gettext/languages/src/CldrData.php', + 'Gettext\\Languages\\Exporter\\Docs' => $vendorDir . '/gettext/languages/src/Exporter/Docs.php', + 'Gettext\\Languages\\Exporter\\Exporter' => $vendorDir . '/gettext/languages/src/Exporter/Exporter.php', + 'Gettext\\Languages\\Exporter\\Html' => $vendorDir . '/gettext/languages/src/Exporter/Html.php', + 'Gettext\\Languages\\Exporter\\Json' => $vendorDir . '/gettext/languages/src/Exporter/Json.php', + 'Gettext\\Languages\\Exporter\\Php' => $vendorDir . '/gettext/languages/src/Exporter/Php.php', + 'Gettext\\Languages\\Exporter\\Po' => $vendorDir . '/gettext/languages/src/Exporter/Po.php', + 'Gettext\\Languages\\Exporter\\Prettyjson' => $vendorDir . '/gettext/languages/src/Exporter/Prettyjson.php', + 'Gettext\\Languages\\Exporter\\Xml' => $vendorDir . '/gettext/languages/src/Exporter/Xml.php', + 'Gettext\\Languages\\FormulaConverter' => $vendorDir . '/gettext/languages/src/FormulaConverter.php', + 'Gettext\\Languages\\Language' => $vendorDir . '/gettext/languages/src/Language.php', + 'Gettext\\Merge' => $vendorDir . '/gettext/gettext/src/Merge.php', + 'Gettext\\Translation' => $vendorDir . '/gettext/gettext/src/Translation.php', + 'Gettext\\Translations' => $vendorDir . '/gettext/gettext/src/Translations.php', + 'Gettext\\Translator' => $vendorDir . '/gettext/gettext/src/Translator.php', + 'Gettext\\TranslatorInterface' => $vendorDir . '/gettext/gettext/src/TranslatorInterface.php', + 'Gettext\\Utils\\CsvTrait' => $vendorDir . '/gettext/gettext/src/Utils/CsvTrait.php', + 'Gettext\\Utils\\DictionaryTrait' => $vendorDir . '/gettext/gettext/src/Utils/DictionaryTrait.php', + 'Gettext\\Utils\\FunctionsScanner' => $vendorDir . '/gettext/gettext/src/Utils/FunctionsScanner.php', + 'Gettext\\Utils\\HeadersExtractorTrait' => $vendorDir . '/gettext/gettext/src/Utils/HeadersExtractorTrait.php', + 'Gettext\\Utils\\HeadersGeneratorTrait' => $vendorDir . '/gettext/gettext/src/Utils/HeadersGeneratorTrait.php', + 'Gettext\\Utils\\JsFunctionsScanner' => $vendorDir . '/gettext/gettext/src/Utils/JsFunctionsScanner.php', + 'Gettext\\Utils\\MultidimensionalArrayTrait' => $vendorDir . '/gettext/gettext/src/Utils/MultidimensionalArrayTrait.php', + 'Gettext\\Utils\\ParsedComment' => $vendorDir . '/gettext/gettext/src/Utils/ParsedComment.php', + 'Gettext\\Utils\\ParsedFunction' => $vendorDir . '/gettext/gettext/src/Utils/ParsedFunction.php', + 'Gettext\\Utils\\PhpFunctionsScanner' => $vendorDir . '/gettext/gettext/src/Utils/PhpFunctionsScanner.php', + 'Gettext\\Utils\\StringReader' => $vendorDir . '/gettext/gettext/src/Utils/StringReader.php', + 'Gumlet\\ImageResize' => $vendorDir . '/gumlet/php-image-resize/lib/ImageResize.php', + 'Gumlet\\ImageResizeException' => $vendorDir . '/gumlet/php-image-resize/lib/ImageResizeException.php', + 'GuzzleHttp\\Client' => $vendorDir . '/guzzlehttp/guzzle/src/Client.php', + 'GuzzleHttp\\ClientInterface' => $vendorDir . '/guzzlehttp/guzzle/src/ClientInterface.php', + 'GuzzleHttp\\Cookie\\CookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php', + 'GuzzleHttp\\Cookie\\CookieJarInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php', + 'GuzzleHttp\\Cookie\\FileCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php', + 'GuzzleHttp\\Cookie\\SessionCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php', + 'GuzzleHttp\\Cookie\\SetCookie' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php', + 'GuzzleHttp\\Exception\\BadResponseException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php', + 'GuzzleHttp\\Exception\\ClientException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ClientException.php', + 'GuzzleHttp\\Exception\\ConnectException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ConnectException.php', + 'GuzzleHttp\\Exception\\GuzzleException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php', + 'GuzzleHttp\\Exception\\RequestException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/RequestException.php', + 'GuzzleHttp\\Exception\\SeekException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/SeekException.php', + 'GuzzleHttp\\Exception\\ServerException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ServerException.php', + 'GuzzleHttp\\Exception\\TooManyRedirectsException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php', + 'GuzzleHttp\\Exception\\TransferException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TransferException.php', + 'GuzzleHttp\\HandlerStack' => $vendorDir . '/guzzlehttp/guzzle/src/HandlerStack.php', + 'GuzzleHttp\\Handler\\CurlFactory' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php', + 'GuzzleHttp\\Handler\\CurlFactoryInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php', + 'GuzzleHttp\\Handler\\CurlHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php', + 'GuzzleHttp\\Handler\\CurlMultiHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php', + 'GuzzleHttp\\Handler\\EasyHandle' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php', + 'GuzzleHttp\\Handler\\MockHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/MockHandler.php', + 'GuzzleHttp\\Handler\\Proxy' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/Proxy.php', + 'GuzzleHttp\\Handler\\StreamHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php', + 'GuzzleHttp\\MessageFormatter' => $vendorDir . '/guzzlehttp/guzzle/src/MessageFormatter.php', + 'GuzzleHttp\\Middleware' => $vendorDir . '/guzzlehttp/guzzle/src/Middleware.php', + 'GuzzleHttp\\Pool' => $vendorDir . '/guzzlehttp/guzzle/src/Pool.php', + 'GuzzleHttp\\PrepareBodyMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php', + 'GuzzleHttp\\Promise\\AggregateException' => $vendorDir . '/guzzlehttp/promises/src/AggregateException.php', + 'GuzzleHttp\\Promise\\CancellationException' => $vendorDir . '/guzzlehttp/promises/src/CancellationException.php', + 'GuzzleHttp\\Promise\\Coroutine' => $vendorDir . '/guzzlehttp/promises/src/Coroutine.php', + 'GuzzleHttp\\Promise\\EachPromise' => $vendorDir . '/guzzlehttp/promises/src/EachPromise.php', + 'GuzzleHttp\\Promise\\FulfilledPromise' => $vendorDir . '/guzzlehttp/promises/src/FulfilledPromise.php', + 'GuzzleHttp\\Promise\\Promise' => $vendorDir . '/guzzlehttp/promises/src/Promise.php', + 'GuzzleHttp\\Promise\\PromiseInterface' => $vendorDir . '/guzzlehttp/promises/src/PromiseInterface.php', + 'GuzzleHttp\\Promise\\PromisorInterface' => $vendorDir . '/guzzlehttp/promises/src/PromisorInterface.php', + 'GuzzleHttp\\Promise\\RejectedPromise' => $vendorDir . '/guzzlehttp/promises/src/RejectedPromise.php', + 'GuzzleHttp\\Promise\\RejectionException' => $vendorDir . '/guzzlehttp/promises/src/RejectionException.php', + 'GuzzleHttp\\Promise\\TaskQueue' => $vendorDir . '/guzzlehttp/promises/src/TaskQueue.php', + 'GuzzleHttp\\Promise\\TaskQueueInterface' => $vendorDir . '/guzzlehttp/promises/src/TaskQueueInterface.php', + 'GuzzleHttp\\Psr7\\AppendStream' => $vendorDir . '/guzzlehttp/psr7/src/AppendStream.php', + 'GuzzleHttp\\Psr7\\BufferStream' => $vendorDir . '/guzzlehttp/psr7/src/BufferStream.php', + 'GuzzleHttp\\Psr7\\CachingStream' => $vendorDir . '/guzzlehttp/psr7/src/CachingStream.php', + 'GuzzleHttp\\Psr7\\DroppingStream' => $vendorDir . '/guzzlehttp/psr7/src/DroppingStream.php', + 'GuzzleHttp\\Psr7\\FnStream' => $vendorDir . '/guzzlehttp/psr7/src/FnStream.php', + 'GuzzleHttp\\Psr7\\InflateStream' => $vendorDir . '/guzzlehttp/psr7/src/InflateStream.php', + 'GuzzleHttp\\Psr7\\LazyOpenStream' => $vendorDir . '/guzzlehttp/psr7/src/LazyOpenStream.php', + 'GuzzleHttp\\Psr7\\LimitStream' => $vendorDir . '/guzzlehttp/psr7/src/LimitStream.php', + 'GuzzleHttp\\Psr7\\MessageTrait' => $vendorDir . '/guzzlehttp/psr7/src/MessageTrait.php', + 'GuzzleHttp\\Psr7\\MultipartStream' => $vendorDir . '/guzzlehttp/psr7/src/MultipartStream.php', + 'GuzzleHttp\\Psr7\\NoSeekStream' => $vendorDir . '/guzzlehttp/psr7/src/NoSeekStream.php', + 'GuzzleHttp\\Psr7\\PumpStream' => $vendorDir . '/guzzlehttp/psr7/src/PumpStream.php', + 'GuzzleHttp\\Psr7\\Request' => $vendorDir . '/guzzlehttp/psr7/src/Request.php', + 'GuzzleHttp\\Psr7\\Response' => $vendorDir . '/guzzlehttp/psr7/src/Response.php', + 'GuzzleHttp\\Psr7\\Rfc7230' => $vendorDir . '/guzzlehttp/psr7/src/Rfc7230.php', + 'GuzzleHttp\\Psr7\\ServerRequest' => $vendorDir . '/guzzlehttp/psr7/src/ServerRequest.php', + 'GuzzleHttp\\Psr7\\Stream' => $vendorDir . '/guzzlehttp/psr7/src/Stream.php', + 'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => $vendorDir . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php', + 'GuzzleHttp\\Psr7\\StreamWrapper' => $vendorDir . '/guzzlehttp/psr7/src/StreamWrapper.php', + 'GuzzleHttp\\Psr7\\UploadedFile' => $vendorDir . '/guzzlehttp/psr7/src/UploadedFile.php', + 'GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php', + 'GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/guzzlehttp/psr7/src/UriNormalizer.php', + 'GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/guzzlehttp/psr7/src/UriResolver.php', + 'GuzzleHttp\\RedirectMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RedirectMiddleware.php', + 'GuzzleHttp\\RequestOptions' => $vendorDir . '/guzzlehttp/guzzle/src/RequestOptions.php', + 'GuzzleHttp\\RetryMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RetryMiddleware.php', + 'GuzzleHttp\\TransferStats' => $vendorDir . '/guzzlehttp/guzzle/src/TransferStats.php', + 'GuzzleHttp\\UriTemplate' => $vendorDir . '/guzzlehttp/guzzle/src/UriTemplate.php', + 'Handlebars\\Arguments' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Arguments.php', + 'Handlebars\\Autoloader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Autoloader.php', + 'Handlebars\\BaseString' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/BaseString.php', + 'Handlebars\\Cache' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache.php', + 'Handlebars\\Cache\\APC' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache/APC.php', + 'Handlebars\\Cache\\Disk' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache/Disk.php', + 'Handlebars\\Cache\\Dummy' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache/Dummy.php', + 'Handlebars\\ChildContext' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/ChildContext.php', + 'Handlebars\\Context' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Context.php', + 'Handlebars\\Handlebars' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Handlebars.php', + 'Handlebars\\Helper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper.php', + 'Handlebars\\Helper\\BindAttrHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/BindAttrHelper.php', + 'Handlebars\\Helper\\EachHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/EachHelper.php', + 'Handlebars\\Helper\\IfHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/IfHelper.php', + 'Handlebars\\Helper\\UnlessHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/UnlessHelper.php', + 'Handlebars\\Helper\\WithHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/WithHelper.php', + 'Handlebars\\Helpers' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helpers.php', + 'Handlebars\\Loader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader.php', + 'Handlebars\\Loader\\ArrayLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/ArrayLoader.php', + 'Handlebars\\Loader\\FilesystemLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/FilesystemLoader.php', + 'Handlebars\\Loader\\InlineLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/InlineLoader.php', + 'Handlebars\\Loader\\StringLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/StringLoader.php', + 'Handlebars\\Parser' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Parser.php', + 'Handlebars\\SafeString' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/SafeString.php', + 'Handlebars\\String' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/String.php', + 'Handlebars\\StringWrapper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/StringWrapper.php', + 'Handlebars\\Template' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Template.php', + 'Handlebars\\Tokenizer' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Tokenizer.php', + 'Hautelook\\Phpass\\PasswordHash' => $vendorDir . '/hautelook/phpass/src/Hautelook/Phpass/PasswordHash.php', + 'Illuminate\\Contracts\\Auth\\Access\\Authorizable' => $vendorDir . '/illuminate/contracts/Auth/Access/Authorizable.php', + 'Illuminate\\Contracts\\Auth\\Access\\Gate' => $vendorDir . '/illuminate/contracts/Auth/Access/Gate.php', + 'Illuminate\\Contracts\\Auth\\Authenticatable' => $vendorDir . '/illuminate/contracts/Auth/Authenticatable.php', + 'Illuminate\\Contracts\\Auth\\CanResetPassword' => $vendorDir . '/illuminate/contracts/Auth/CanResetPassword.php', + 'Illuminate\\Contracts\\Auth\\Factory' => $vendorDir . '/illuminate/contracts/Auth/Factory.php', + 'Illuminate\\Contracts\\Auth\\Guard' => $vendorDir . '/illuminate/contracts/Auth/Guard.php', + 'Illuminate\\Contracts\\Auth\\MustVerifyEmail' => $vendorDir . '/illuminate/contracts/Auth/MustVerifyEmail.php', + 'Illuminate\\Contracts\\Auth\\PasswordBroker' => $vendorDir . '/illuminate/contracts/Auth/PasswordBroker.php', + 'Illuminate\\Contracts\\Auth\\PasswordBrokerFactory' => $vendorDir . '/illuminate/contracts/Auth/PasswordBrokerFactory.php', + 'Illuminate\\Contracts\\Auth\\StatefulGuard' => $vendorDir . '/illuminate/contracts/Auth/StatefulGuard.php', + 'Illuminate\\Contracts\\Auth\\SupportsBasicAuth' => $vendorDir . '/illuminate/contracts/Auth/SupportsBasicAuth.php', + 'Illuminate\\Contracts\\Auth\\UserProvider' => $vendorDir . '/illuminate/contracts/Auth/UserProvider.php', + 'Illuminate\\Contracts\\Broadcasting\\Broadcaster' => $vendorDir . '/illuminate/contracts/Broadcasting/Broadcaster.php', + 'Illuminate\\Contracts\\Broadcasting\\Factory' => $vendorDir . '/illuminate/contracts/Broadcasting/Factory.php', + 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcast' => $vendorDir . '/illuminate/contracts/Broadcasting/ShouldBroadcast.php', + 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcastNow' => $vendorDir . '/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php', + 'Illuminate\\Contracts\\Bus\\Dispatcher' => $vendorDir . '/illuminate/contracts/Bus/Dispatcher.php', + 'Illuminate\\Contracts\\Bus\\QueueingDispatcher' => $vendorDir . '/illuminate/contracts/Bus/QueueingDispatcher.php', + 'Illuminate\\Contracts\\Cache\\Factory' => $vendorDir . '/illuminate/contracts/Cache/Factory.php', + 'Illuminate\\Contracts\\Cache\\Lock' => $vendorDir . '/illuminate/contracts/Cache/Lock.php', + 'Illuminate\\Contracts\\Cache\\LockProvider' => $vendorDir . '/illuminate/contracts/Cache/LockProvider.php', + 'Illuminate\\Contracts\\Cache\\LockTimeoutException' => $vendorDir . '/illuminate/contracts/Cache/LockTimeoutException.php', + 'Illuminate\\Contracts\\Cache\\Repository' => $vendorDir . '/illuminate/contracts/Cache/Repository.php', + 'Illuminate\\Contracts\\Cache\\Store' => $vendorDir . '/illuminate/contracts/Cache/Store.php', + 'Illuminate\\Contracts\\Config\\Repository' => $vendorDir . '/illuminate/contracts/Config/Repository.php', + 'Illuminate\\Contracts\\Console\\Application' => $vendorDir . '/illuminate/contracts/Console/Application.php', + 'Illuminate\\Contracts\\Console\\Kernel' => $vendorDir . '/illuminate/contracts/Console/Kernel.php', + 'Illuminate\\Contracts\\Container\\BindingResolutionException' => $vendorDir . '/illuminate/contracts/Container/BindingResolutionException.php', + 'Illuminate\\Contracts\\Container\\Container' => $vendorDir . '/illuminate/contracts/Container/Container.php', + 'Illuminate\\Contracts\\Container\\ContextualBindingBuilder' => $vendorDir . '/illuminate/contracts/Container/ContextualBindingBuilder.php', + 'Illuminate\\Contracts\\Cookie\\Factory' => $vendorDir . '/illuminate/contracts/Cookie/Factory.php', + 'Illuminate\\Contracts\\Cookie\\QueueingFactory' => $vendorDir . '/illuminate/contracts/Cookie/QueueingFactory.php', + 'Illuminate\\Contracts\\Database\\Events\\MigrationEvent' => $vendorDir . '/illuminate/contracts/Database/Events/MigrationEvent.php', + 'Illuminate\\Contracts\\Database\\ModelIdentifier' => $vendorDir . '/illuminate/contracts/Database/ModelIdentifier.php', + 'Illuminate\\Contracts\\Debug\\ExceptionHandler' => $vendorDir . '/illuminate/contracts/Debug/ExceptionHandler.php', + 'Illuminate\\Contracts\\Encryption\\DecryptException' => $vendorDir . '/illuminate/contracts/Encryption/DecryptException.php', + 'Illuminate\\Contracts\\Encryption\\EncryptException' => $vendorDir . '/illuminate/contracts/Encryption/EncryptException.php', + 'Illuminate\\Contracts\\Encryption\\Encrypter' => $vendorDir . '/illuminate/contracts/Encryption/Encrypter.php', + 'Illuminate\\Contracts\\Events\\Dispatcher' => $vendorDir . '/illuminate/contracts/Events/Dispatcher.php', + 'Illuminate\\Contracts\\Filesystem\\Cloud' => $vendorDir . '/illuminate/contracts/Filesystem/Cloud.php', + 'Illuminate\\Contracts\\Filesystem\\Factory' => $vendorDir . '/illuminate/contracts/Filesystem/Factory.php', + 'Illuminate\\Contracts\\Filesystem\\FileExistsException' => $vendorDir . '/illuminate/contracts/Filesystem/FileExistsException.php', + 'Illuminate\\Contracts\\Filesystem\\FileNotFoundException' => $vendorDir . '/illuminate/contracts/Filesystem/FileNotFoundException.php', + 'Illuminate\\Contracts\\Filesystem\\Filesystem' => $vendorDir . '/illuminate/contracts/Filesystem/Filesystem.php', + 'Illuminate\\Contracts\\Foundation\\Application' => $vendorDir . '/illuminate/contracts/Foundation/Application.php', + 'Illuminate\\Contracts\\Hashing\\Hasher' => $vendorDir . '/illuminate/contracts/Hashing/Hasher.php', + 'Illuminate\\Contracts\\Http\\Kernel' => $vendorDir . '/illuminate/contracts/Http/Kernel.php', + 'Illuminate\\Contracts\\Mail\\MailQueue' => $vendorDir . '/illuminate/contracts/Mail/MailQueue.php', + 'Illuminate\\Contracts\\Mail\\Mailable' => $vendorDir . '/illuminate/contracts/Mail/Mailable.php', + 'Illuminate\\Contracts\\Mail\\Mailer' => $vendorDir . '/illuminate/contracts/Mail/Mailer.php', + 'Illuminate\\Contracts\\Notifications\\Dispatcher' => $vendorDir . '/illuminate/contracts/Notifications/Dispatcher.php', + 'Illuminate\\Contracts\\Notifications\\Factory' => $vendorDir . '/illuminate/contracts/Notifications/Factory.php', + 'Illuminate\\Contracts\\Pagination\\LengthAwarePaginator' => $vendorDir . '/illuminate/contracts/Pagination/LengthAwarePaginator.php', + 'Illuminate\\Contracts\\Pagination\\Paginator' => $vendorDir . '/illuminate/contracts/Pagination/Paginator.php', + 'Illuminate\\Contracts\\Pipeline\\Hub' => $vendorDir . '/illuminate/contracts/Pipeline/Hub.php', + 'Illuminate\\Contracts\\Pipeline\\Pipeline' => $vendorDir . '/illuminate/contracts/Pipeline/Pipeline.php', + 'Illuminate\\Contracts\\Queue\\EntityNotFoundException' => $vendorDir . '/illuminate/contracts/Queue/EntityNotFoundException.php', + 'Illuminate\\Contracts\\Queue\\EntityResolver' => $vendorDir . '/illuminate/contracts/Queue/EntityResolver.php', + 'Illuminate\\Contracts\\Queue\\Factory' => $vendorDir . '/illuminate/contracts/Queue/Factory.php', + 'Illuminate\\Contracts\\Queue\\Job' => $vendorDir . '/illuminate/contracts/Queue/Job.php', + 'Illuminate\\Contracts\\Queue\\Monitor' => $vendorDir . '/illuminate/contracts/Queue/Monitor.php', + 'Illuminate\\Contracts\\Queue\\Queue' => $vendorDir . '/illuminate/contracts/Queue/Queue.php', + 'Illuminate\\Contracts\\Queue\\QueueableCollection' => $vendorDir . '/illuminate/contracts/Queue/QueueableCollection.php', + 'Illuminate\\Contracts\\Queue\\QueueableEntity' => $vendorDir . '/illuminate/contracts/Queue/QueueableEntity.php', + 'Illuminate\\Contracts\\Queue\\ShouldQueue' => $vendorDir . '/illuminate/contracts/Queue/ShouldQueue.php', + 'Illuminate\\Contracts\\Redis\\Connection' => $vendorDir . '/illuminate/contracts/Redis/Connection.php', + 'Illuminate\\Contracts\\Redis\\Factory' => $vendorDir . '/illuminate/contracts/Redis/Factory.php', + 'Illuminate\\Contracts\\Redis\\LimiterTimeoutException' => $vendorDir . '/illuminate/contracts/Redis/LimiterTimeoutException.php', + 'Illuminate\\Contracts\\Routing\\BindingRegistrar' => $vendorDir . '/illuminate/contracts/Routing/BindingRegistrar.php', + 'Illuminate\\Contracts\\Routing\\Registrar' => $vendorDir . '/illuminate/contracts/Routing/Registrar.php', + 'Illuminate\\Contracts\\Routing\\ResponseFactory' => $vendorDir . '/illuminate/contracts/Routing/ResponseFactory.php', + 'Illuminate\\Contracts\\Routing\\UrlGenerator' => $vendorDir . '/illuminate/contracts/Routing/UrlGenerator.php', + 'Illuminate\\Contracts\\Routing\\UrlRoutable' => $vendorDir . '/illuminate/contracts/Routing/UrlRoutable.php', + 'Illuminate\\Contracts\\Session\\Session' => $vendorDir . '/illuminate/contracts/Session/Session.php', + 'Illuminate\\Contracts\\Support\\Arrayable' => $vendorDir . '/illuminate/contracts/Support/Arrayable.php', + 'Illuminate\\Contracts\\Support\\DeferrableProvider' => $vendorDir . '/illuminate/contracts/Support/DeferrableProvider.php', + 'Illuminate\\Contracts\\Support\\Htmlable' => $vendorDir . '/illuminate/contracts/Support/Htmlable.php', + 'Illuminate\\Contracts\\Support\\Jsonable' => $vendorDir . '/illuminate/contracts/Support/Jsonable.php', + 'Illuminate\\Contracts\\Support\\MessageBag' => $vendorDir . '/illuminate/contracts/Support/MessageBag.php', + 'Illuminate\\Contracts\\Support\\MessageProvider' => $vendorDir . '/illuminate/contracts/Support/MessageProvider.php', + 'Illuminate\\Contracts\\Support\\Renderable' => $vendorDir . '/illuminate/contracts/Support/Renderable.php', + 'Illuminate\\Contracts\\Support\\Responsable' => $vendorDir . '/illuminate/contracts/Support/Responsable.php', + 'Illuminate\\Contracts\\Translation\\HasLocalePreference' => $vendorDir . '/illuminate/contracts/Translation/HasLocalePreference.php', + 'Illuminate\\Contracts\\Translation\\Loader' => $vendorDir . '/illuminate/contracts/Translation/Loader.php', + 'Illuminate\\Contracts\\Translation\\Translator' => $vendorDir . '/illuminate/contracts/Translation/Translator.php', + 'Illuminate\\Contracts\\Validation\\Factory' => $vendorDir . '/illuminate/contracts/Validation/Factory.php', + 'Illuminate\\Contracts\\Validation\\ImplicitRule' => $vendorDir . '/illuminate/contracts/Validation/ImplicitRule.php', + 'Illuminate\\Contracts\\Validation\\Rule' => $vendorDir . '/illuminate/contracts/Validation/Rule.php', + 'Illuminate\\Contracts\\Validation\\ValidatesWhenResolved' => $vendorDir . '/illuminate/contracts/Validation/ValidatesWhenResolved.php', + 'Illuminate\\Contracts\\Validation\\Validator' => $vendorDir . '/illuminate/contracts/Validation/Validator.php', + 'Illuminate\\Contracts\\View\\Engine' => $vendorDir . '/illuminate/contracts/View/Engine.php', + 'Illuminate\\Contracts\\View\\Factory' => $vendorDir . '/illuminate/contracts/View/Factory.php', + 'Illuminate\\Contracts\\View\\View' => $vendorDir . '/illuminate/contracts/View/View.php', + 'Illuminate\\Support\\AggregateServiceProvider' => $vendorDir . '/illuminate/support/AggregateServiceProvider.php', + 'Illuminate\\Support\\Arr' => $vendorDir . '/illuminate/support/Arr.php', + 'Illuminate\\Support\\Carbon' => $vendorDir . '/illuminate/support/Carbon.php', + 'Illuminate\\Support\\Collection' => $vendorDir . '/illuminate/support/Collection.php', + 'Illuminate\\Support\\Composer' => $vendorDir . '/illuminate/support/Composer.php', + 'Illuminate\\Support\\ConfigurationUrlParser' => $vendorDir . '/illuminate/support/ConfigurationUrlParser.php', + 'Illuminate\\Support\\DateFactory' => $vendorDir . '/illuminate/support/DateFactory.php', + 'Illuminate\\Support\\Facades\\App' => $vendorDir . '/illuminate/support/Facades/App.php', + 'Illuminate\\Support\\Facades\\Artisan' => $vendorDir . '/illuminate/support/Facades/Artisan.php', + 'Illuminate\\Support\\Facades\\Auth' => $vendorDir . '/illuminate/support/Facades/Auth.php', + 'Illuminate\\Support\\Facades\\Blade' => $vendorDir . '/illuminate/support/Facades/Blade.php', + 'Illuminate\\Support\\Facades\\Broadcast' => $vendorDir . '/illuminate/support/Facades/Broadcast.php', + 'Illuminate\\Support\\Facades\\Bus' => $vendorDir . '/illuminate/support/Facades/Bus.php', + 'Illuminate\\Support\\Facades\\Cache' => $vendorDir . '/illuminate/support/Facades/Cache.php', + 'Illuminate\\Support\\Facades\\Config' => $vendorDir . '/illuminate/support/Facades/Config.php', + 'Illuminate\\Support\\Facades\\Cookie' => $vendorDir . '/illuminate/support/Facades/Cookie.php', + 'Illuminate\\Support\\Facades\\Crypt' => $vendorDir . '/illuminate/support/Facades/Crypt.php', + 'Illuminate\\Support\\Facades\\DB' => $vendorDir . '/illuminate/support/Facades/DB.php', + 'Illuminate\\Support\\Facades\\Date' => $vendorDir . '/illuminate/support/Facades/Date.php', + 'Illuminate\\Support\\Facades\\Event' => $vendorDir . '/illuminate/support/Facades/Event.php', + 'Illuminate\\Support\\Facades\\Facade' => $vendorDir . '/illuminate/support/Facades/Facade.php', + 'Illuminate\\Support\\Facades\\File' => $vendorDir . '/illuminate/support/Facades/File.php', + 'Illuminate\\Support\\Facades\\Gate' => $vendorDir . '/illuminate/support/Facades/Gate.php', + 'Illuminate\\Support\\Facades\\Hash' => $vendorDir . '/illuminate/support/Facades/Hash.php', + 'Illuminate\\Support\\Facades\\Input' => $vendorDir . '/illuminate/support/Facades/Input.php', + 'Illuminate\\Support\\Facades\\Lang' => $vendorDir . '/illuminate/support/Facades/Lang.php', + 'Illuminate\\Support\\Facades\\Log' => $vendorDir . '/illuminate/support/Facades/Log.php', + 'Illuminate\\Support\\Facades\\Mail' => $vendorDir . '/illuminate/support/Facades/Mail.php', + 'Illuminate\\Support\\Facades\\Notification' => $vendorDir . '/illuminate/support/Facades/Notification.php', + 'Illuminate\\Support\\Facades\\Password' => $vendorDir . '/illuminate/support/Facades/Password.php', + 'Illuminate\\Support\\Facades\\Queue' => $vendorDir . '/illuminate/support/Facades/Queue.php', + 'Illuminate\\Support\\Facades\\Redirect' => $vendorDir . '/illuminate/support/Facades/Redirect.php', + 'Illuminate\\Support\\Facades\\Redis' => $vendorDir . '/illuminate/support/Facades/Redis.php', + 'Illuminate\\Support\\Facades\\Request' => $vendorDir . '/illuminate/support/Facades/Request.php', + 'Illuminate\\Support\\Facades\\Response' => $vendorDir . '/illuminate/support/Facades/Response.php', + 'Illuminate\\Support\\Facades\\Route' => $vendorDir . '/illuminate/support/Facades/Route.php', + 'Illuminate\\Support\\Facades\\Schema' => $vendorDir . '/illuminate/support/Facades/Schema.php', + 'Illuminate\\Support\\Facades\\Session' => $vendorDir . '/illuminate/support/Facades/Session.php', + 'Illuminate\\Support\\Facades\\Storage' => $vendorDir . '/illuminate/support/Facades/Storage.php', + 'Illuminate\\Support\\Facades\\URL' => $vendorDir . '/illuminate/support/Facades/URL.php', + 'Illuminate\\Support\\Facades\\Validator' => $vendorDir . '/illuminate/support/Facades/Validator.php', + 'Illuminate\\Support\\Facades\\View' => $vendorDir . '/illuminate/support/Facades/View.php', + 'Illuminate\\Support\\Fluent' => $vendorDir . '/illuminate/support/Fluent.php', + 'Illuminate\\Support\\HigherOrderCollectionProxy' => $vendorDir . '/illuminate/support/HigherOrderCollectionProxy.php', + 'Illuminate\\Support\\HigherOrderTapProxy' => $vendorDir . '/illuminate/support/HigherOrderTapProxy.php', + 'Illuminate\\Support\\HtmlString' => $vendorDir . '/illuminate/support/HtmlString.php', + 'Illuminate\\Support\\InteractsWithTime' => $vendorDir . '/illuminate/support/InteractsWithTime.php', + 'Illuminate\\Support\\Manager' => $vendorDir . '/illuminate/support/Manager.php', + 'Illuminate\\Support\\MessageBag' => $vendorDir . '/illuminate/support/MessageBag.php', + 'Illuminate\\Support\\NamespacedItemResolver' => $vendorDir . '/illuminate/support/NamespacedItemResolver.php', + 'Illuminate\\Support\\Optional' => $vendorDir . '/illuminate/support/Optional.php', + 'Illuminate\\Support\\Pluralizer' => $vendorDir . '/illuminate/support/Pluralizer.php', + 'Illuminate\\Support\\ProcessUtils' => $vendorDir . '/illuminate/support/ProcessUtils.php', + 'Illuminate\\Support\\ServiceProvider' => $vendorDir . '/illuminate/support/ServiceProvider.php', + 'Illuminate\\Support\\Str' => $vendorDir . '/illuminate/support/Str.php', + 'Illuminate\\Support\\Testing\\Fakes\\BusFake' => $vendorDir . '/illuminate/support/Testing/Fakes/BusFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\EventFake' => $vendorDir . '/illuminate/support/Testing/Fakes/EventFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\MailFake' => $vendorDir . '/illuminate/support/Testing/Fakes/MailFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\NotificationFake' => $vendorDir . '/illuminate/support/Testing/Fakes/NotificationFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\PendingMailFake' => $vendorDir . '/illuminate/support/Testing/Fakes/PendingMailFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\QueueFake' => $vendorDir . '/illuminate/support/Testing/Fakes/QueueFake.php', + 'Illuminate\\Support\\Traits\\CapsuleManagerTrait' => $vendorDir . '/illuminate/support/Traits/CapsuleManagerTrait.php', + 'Illuminate\\Support\\Traits\\ForwardsCalls' => $vendorDir . '/illuminate/support/Traits/ForwardsCalls.php', + 'Illuminate\\Support\\Traits\\Localizable' => $vendorDir . '/illuminate/support/Traits/Localizable.php', + 'Illuminate\\Support\\Traits\\Macroable' => $vendorDir . '/illuminate/support/Traits/Macroable.php', + 'Illuminate\\Support\\Traits\\Tappable' => $vendorDir . '/illuminate/support/Traits/Tappable.php', + 'Illuminate\\Support\\ViewErrorBag' => $vendorDir . '/illuminate/support/ViewErrorBag.php', + 'Import_Command' => $vendorDir . '/wp-cli/import-command/src/Import_Command.php', + 'JsonException' => $vendorDir . '/symfony/polyfill-php73/Resources/stubs/JsonException.php', + 'JsonSchema\\Constraints\\BaseConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php', + 'JsonSchema\\Constraints\\CollectionConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php', + 'JsonSchema\\Constraints\\Constraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php', + 'JsonSchema\\Constraints\\ConstraintInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php', + 'JsonSchema\\Constraints\\EnumConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php', + 'JsonSchema\\Constraints\\Factory' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php', + 'JsonSchema\\Constraints\\FormatConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php', + 'JsonSchema\\Constraints\\NumberConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php', + 'JsonSchema\\Constraints\\ObjectConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php', + 'JsonSchema\\Constraints\\SchemaConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php', + 'JsonSchema\\Constraints\\StringConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php', + 'JsonSchema\\Constraints\\TypeCheck\\LooseTypeCheck' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php', + 'JsonSchema\\Constraints\\TypeCheck\\StrictTypeCheck' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php', + 'JsonSchema\\Constraints\\TypeCheck\\TypeCheckInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php', + 'JsonSchema\\Constraints\\TypeConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php', + 'JsonSchema\\Constraints\\UndefinedConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php', + 'JsonSchema\\Entity\\JsonPointer' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php', + 'JsonSchema\\Exception\\ExceptionInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php', + 'JsonSchema\\Exception\\InvalidArgumentException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php', + 'JsonSchema\\Exception\\InvalidConfigException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php', + 'JsonSchema\\Exception\\InvalidSchemaException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php', + 'JsonSchema\\Exception\\InvalidSchemaMediaTypeException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php', + 'JsonSchema\\Exception\\InvalidSourceUriException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php', + 'JsonSchema\\Exception\\JsonDecodingException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php', + 'JsonSchema\\Exception\\ResourceNotFoundException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php', + 'JsonSchema\\Exception\\RuntimeException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php', + 'JsonSchema\\Exception\\UnresolvableJsonPointerException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php', + 'JsonSchema\\Exception\\UriResolverException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php', + 'JsonSchema\\Exception\\ValidationException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php', + 'JsonSchema\\Iterator\\ObjectIterator' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php', + 'JsonSchema\\Rfc3339' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php', + 'JsonSchema\\SchemaStorage' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php', + 'JsonSchema\\SchemaStorageInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php', + 'JsonSchema\\UriResolverInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php', + 'JsonSchema\\UriRetrieverInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php', + 'JsonSchema\\Uri\\Retrievers\\AbstractRetriever' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php', + 'JsonSchema\\Uri\\Retrievers\\Curl' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php', + 'JsonSchema\\Uri\\Retrievers\\FileGetContents' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php', + 'JsonSchema\\Uri\\Retrievers\\PredefinedArray' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php', + 'JsonSchema\\Uri\\Retrievers\\UriRetrieverInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php', + 'JsonSchema\\Uri\\UriResolver' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php', + 'JsonSchema\\Uri\\UriRetriever' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php', + 'JsonSchema\\Validator' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Validator.php', + 'Language_Namespace' => $vendorDir . '/wp-cli/language-command/src/Language_Namespace.php', + 'Media_Command' => $vendorDir . '/wp-cli/media-command/src/Media_Command.php', + 'Menu_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Command.php', + 'Menu_Item_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Item_Command.php', + 'Menu_Location_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Location_Command.php', + 'MikeMcLin\\WpPassword\\Contracts\\WpPassword' => $vendorDir . '/mikemclin/laravel-wp-password/src/Contracts/WpPassword.php', + 'MikeMcLin\\WpPassword\\Facades\\WpPassword' => $vendorDir . '/mikemclin/laravel-wp-password/src/Facades/WpPassword.php', + 'MikeMcLin\\WpPassword\\WpPassword' => $vendorDir . '/mikemclin/laravel-wp-password/src/WpPassword.php', + 'MikeMcLin\\WpPassword\\WpPasswordProvider' => $vendorDir . '/mikemclin/laravel-wp-password/src/WpPasswordProvider.php', + 'Mustache_Autoloader' => $vendorDir . '/mustache/mustache/src/Mustache/Autoloader.php', + 'Mustache_Cache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache.php', + 'Mustache_Cache_AbstractCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/AbstractCache.php', + 'Mustache_Cache_FilesystemCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/FilesystemCache.php', + 'Mustache_Cache_NoopCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/NoopCache.php', + 'Mustache_Compiler' => $vendorDir . '/mustache/mustache/src/Mustache/Compiler.php', + 'Mustache_Context' => $vendorDir . '/mustache/mustache/src/Mustache/Context.php', + 'Mustache_Engine' => $vendorDir . '/mustache/mustache/src/Mustache/Engine.php', + 'Mustache_Exception' => $vendorDir . '/mustache/mustache/src/Mustache/Exception.php', + 'Mustache_Exception_InvalidArgumentException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/InvalidArgumentException.php', + 'Mustache_Exception_LogicException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/LogicException.php', + 'Mustache_Exception_RuntimeException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/RuntimeException.php', + 'Mustache_Exception_SyntaxException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/SyntaxException.php', + 'Mustache_Exception_UnknownFilterException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownFilterException.php', + 'Mustache_Exception_UnknownHelperException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownHelperException.php', + 'Mustache_Exception_UnknownTemplateException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownTemplateException.php', + 'Mustache_HelperCollection' => $vendorDir . '/mustache/mustache/src/Mustache/HelperCollection.php', + 'Mustache_LambdaHelper' => $vendorDir . '/mustache/mustache/src/Mustache/LambdaHelper.php', + 'Mustache_Loader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader.php', + 'Mustache_Loader_ArrayLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/ArrayLoader.php', + 'Mustache_Loader_CascadingLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/CascadingLoader.php', + 'Mustache_Loader_FilesystemLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/FilesystemLoader.php', + 'Mustache_Loader_InlineLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/InlineLoader.php', + 'Mustache_Loader_MutableLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/MutableLoader.php', + 'Mustache_Loader_ProductionFilesystemLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/ProductionFilesystemLoader.php', + 'Mustache_Loader_StringLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/StringLoader.php', + 'Mustache_Logger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger.php', + 'Mustache_Logger_AbstractLogger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger/AbstractLogger.php', + 'Mustache_Logger_StreamLogger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger/StreamLogger.php', + 'Mustache_Parser' => $vendorDir . '/mustache/mustache/src/Mustache/Parser.php', + 'Mustache_Source' => $vendorDir . '/mustache/mustache/src/Mustache/Source.php', + 'Mustache_Source_FilesystemSource' => $vendorDir . '/mustache/mustache/src/Mustache/Source/FilesystemSource.php', + 'Mustache_Template' => $vendorDir . '/mustache/mustache/src/Mustache/Template.php', + 'Mustache_Tokenizer' => $vendorDir . '/mustache/mustache/src/Mustache/Tokenizer.php', + 'Mustangostang\\Spyc' => $vendorDir . '/wp-cli/mustangostang-spyc/src/Spyc.php', + 'MySQLDump' => $vendorDir . '/dg/mysql-dump/src/MySQLDump.php', + 'MySQLImport' => $vendorDir . '/dg/mysql-dump/src/MySQLImport.php', + 'Network_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Network_Meta_Command.php', + 'Network_Namespace' => $vendorDir . '/wp-cli/entity-command/src/Network_Namespace.php', + 'Option_Command' => $vendorDir . '/wp-cli/entity-command/src/Option_Command.php', + 'Oxymel' => $vendorDir . '/nb/oxymel/Oxymel.php', + 'OxymelException' => $vendorDir . '/nb/oxymel/Oxymel.php', + 'OxymelTest' => $vendorDir . '/nb/oxymel/OxymelTest.php', + 'PHPUnit\\Exception' => $vendorDir . '/phpunit/phpunit/src/Exception.php', + 'PHPUnit\\Framework\\Assert' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert.php', + 'PHPUnit\\Framework\\AssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/Framework/AssertionFailedError.php', + 'PHPUnit\\Framework\\CodeCoverageException' => $vendorDir . '/phpunit/phpunit/src/Framework/CodeCoverageException.php', + 'PHPUnit\\Framework\\Constraint\\ArrayHasKey' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArrayHasKey.php', + 'PHPUnit\\Framework\\Constraint\\ArraySubset' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArraySubset.php', + 'PHPUnit\\Framework\\Constraint\\Attribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Attribute.php', + 'PHPUnit\\Framework\\Constraint\\Callback' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Callback.php', + 'PHPUnit\\Framework\\Constraint\\ClassHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasAttribute.php', + 'PHPUnit\\Framework\\Constraint\\ClassHasStaticAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasStaticAttribute.php', + 'PHPUnit\\Framework\\Constraint\\Composite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Composite.php', + 'PHPUnit\\Framework\\Constraint\\Constraint' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Constraint.php', + 'PHPUnit\\Framework\\Constraint\\Count' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Count.php', + 'PHPUnit\\Framework\\Constraint\\DirectoryExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/DirectoryExists.php', + 'PHPUnit\\Framework\\Constraint\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception.php', + 'PHPUnit\\Framework\\Constraint\\ExceptionCode' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionCode.php', + 'PHPUnit\\Framework\\Constraint\\ExceptionMessage' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessage.php', + 'PHPUnit\\Framework\\Constraint\\ExceptionMessageRegularExpression' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessageRegularExpression.php', + 'PHPUnit\\Framework\\Constraint\\FileExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/FileExists.php', + 'PHPUnit\\Framework\\Constraint\\GreaterThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/GreaterThan.php', + 'PHPUnit\\Framework\\Constraint\\IsAnything' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php', + 'PHPUnit\\Framework\\Constraint\\IsEmpty' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEmpty.php', + 'PHPUnit\\Framework\\Constraint\\IsEqual' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEqual.php', + 'PHPUnit\\Framework\\Constraint\\IsFalse' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFalse.php', + 'PHPUnit\\Framework\\Constraint\\IsFinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFinite.php', + 'PHPUnit\\Framework\\Constraint\\IsIdentical' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php', + 'PHPUnit\\Framework\\Constraint\\IsInfinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInfinite.php', + 'PHPUnit\\Framework\\Constraint\\IsInstanceOf' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInstanceOf.php', + 'PHPUnit\\Framework\\Constraint\\IsJson' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsJson.php', + 'PHPUnit\\Framework\\Constraint\\IsNan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNan.php', + 'PHPUnit\\Framework\\Constraint\\IsNull' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNull.php', + 'PHPUnit\\Framework\\Constraint\\IsReadable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsReadable.php', + 'PHPUnit\\Framework\\Constraint\\IsTrue' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsTrue.php', + 'PHPUnit\\Framework\\Constraint\\IsType' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsType.php', + 'PHPUnit\\Framework\\Constraint\\IsWritable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsWritable.php', + 'PHPUnit\\Framework\\Constraint\\JsonMatches' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php', + 'PHPUnit\\Framework\\Constraint\\JsonMatchesErrorMessageProvider' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatchesErrorMessageProvider.php', + 'PHPUnit\\Framework\\Constraint\\LessThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LessThan.php', + 'PHPUnit\\Framework\\Constraint\\LogicalAnd' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalAnd.php', + 'PHPUnit\\Framework\\Constraint\\LogicalNot' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalNot.php', + 'PHPUnit\\Framework\\Constraint\\LogicalOr' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalOr.php', + 'PHPUnit\\Framework\\Constraint\\LogicalXor' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalXor.php', + 'PHPUnit\\Framework\\Constraint\\ObjectHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ObjectHasAttribute.php', + 'PHPUnit\\Framework\\Constraint\\RegularExpression' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/RegularExpression.php', + 'PHPUnit\\Framework\\Constraint\\SameSize' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/SameSize.php', + 'PHPUnit\\Framework\\Constraint\\StringContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringContains.php', + 'PHPUnit\\Framework\\Constraint\\StringEndsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringEndsWith.php', + 'PHPUnit\\Framework\\Constraint\\StringMatchesFormatDescription' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringMatchesFormatDescription.php', + 'PHPUnit\\Framework\\Constraint\\StringStartsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringStartsWith.php', + 'PHPUnit\\Framework\\Constraint\\TraversableContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContains.php', + 'PHPUnit\\Framework\\Constraint\\TraversableContainsOnly' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContainsOnly.php', + 'PHPUnit\\Framework\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/phpunit/src/Framework/CoveredCodeNotExecutedException.php', + 'PHPUnit\\Framework\\DataProviderTestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/DataProviderTestSuite.php', + 'PHPUnit\\Framework\\Error\\Deprecated' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Deprecated.php', + 'PHPUnit\\Framework\\Error\\Error' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Error.php', + 'PHPUnit\\Framework\\Error\\Notice' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Notice.php', + 'PHPUnit\\Framework\\Error\\Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Warning.php', + 'PHPUnit\\Framework\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception.php', + 'PHPUnit\\Framework\\ExceptionWrapper' => $vendorDir . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php', + 'PHPUnit\\Framework\\ExpectationFailedException' => $vendorDir . '/phpunit/phpunit/src/Framework/ExpectationFailedException.php', + 'PHPUnit\\Framework\\IncompleteTest' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTest.php', + 'PHPUnit\\Framework\\IncompleteTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php', + 'PHPUnit\\Framework\\IncompleteTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestError.php', + 'PHPUnit\\Framework\\InvalidCoversTargetException' => $vendorDir . '/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php', + 'PHPUnit\\Framework\\MissingCoversAnnotationException' => $vendorDir . '/phpunit/phpunit/src/Framework/MissingCoversAnnotationException.php', + 'PHPUnit\\Framework\\MockObject\\BadMethodCallException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\Identity' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/Identity.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\InvocationMocker' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/InvocationMocker.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\Match' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/Match.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\MethodNameMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/MethodNameMatch.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\NamespaceMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/NamespaceMatch.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\ParametersMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/ParametersMatch.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\Stub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/Stub.php', + 'PHPUnit\\Framework\\MockObject\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php', + 'PHPUnit\\Framework\\MockObject\\Generator' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator.php', + 'PHPUnit\\Framework\\MockObject\\Invocation' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Invocation/Invocation.php', + 'PHPUnit\\Framework\\MockObject\\InvocationMocker' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/InvocationMocker.php', + 'PHPUnit\\Framework\\MockObject\\Invocation\\ObjectInvocation' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Invocation/ObjectInvocation.php', + 'PHPUnit\\Framework\\MockObject\\Invocation\\StaticInvocation' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Invocation/StaticInvocation.php', + 'PHPUnit\\Framework\\MockObject\\Invokable' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Invokable.php', + 'PHPUnit\\Framework\\MockObject\\Matcher' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\AnyInvokedCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/AnyInvokedCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\AnyParameters' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/AnyParameters.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\ConsecutiveParameters' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/ConsecutiveParameters.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\DeferredError' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/DeferredError.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\Invocation' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/Invocation.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtIndex' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtIndex.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtLeastCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastOnce' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtLeastOnce.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtMostCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtMostCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedRecorder' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedRecorder.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\MethodName' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/MethodName.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\Parameters' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/Parameters.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\StatelessInvocation' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/StatelessInvocation.php', + 'PHPUnit\\Framework\\MockObject\\MockBuilder' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockBuilder.php', + 'PHPUnit\\Framework\\MockObject\\MockMethod' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockMethod.php', + 'PHPUnit\\Framework\\MockObject\\MockMethodSet' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockMethodSet.php', + 'PHPUnit\\Framework\\MockObject\\MockObject' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/ForwardCompatibility/MockObject.php', + 'PHPUnit\\Framework\\MockObject\\RuntimeException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php', + 'PHPUnit\\Framework\\MockObject\\Stub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ConsecutiveCalls' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ConsecutiveCalls.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/Exception.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\MatcherCollection' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/MatcherCollection.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnArgument' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnArgument.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnCallback' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnCallback.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnReference' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnReference.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnSelf' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnSelf.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnStub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnStub.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnValueMap' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnValueMap.php', + 'PHPUnit\\Framework\\MockObject\\Verifiable' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Verifiable.php', + 'PHPUnit\\Framework\\OutputError' => $vendorDir . '/phpunit/phpunit/src/Framework/OutputError.php', + 'PHPUnit\\Framework\\RiskyTest' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTest.php', + 'PHPUnit\\Framework\\RiskyTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTestError.php', + 'PHPUnit\\Framework\\SelfDescribing' => $vendorDir . '/phpunit/phpunit/src/Framework/SelfDescribing.php', + 'PHPUnit\\Framework\\SkippedTest' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTest.php', + 'PHPUnit\\Framework\\SkippedTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestCase.php', + 'PHPUnit\\Framework\\SkippedTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestError.php', + 'PHPUnit\\Framework\\SkippedTestSuiteError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php', + 'PHPUnit\\Framework\\SyntheticError' => $vendorDir . '/phpunit/phpunit/src/Framework/SyntheticError.php', + 'PHPUnit\\Framework\\Test' => $vendorDir . '/phpunit/phpunit/src/Framework/Test.php', + 'PHPUnit\\Framework\\TestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/TestCase.php', + 'PHPUnit\\Framework\\TestFailure' => $vendorDir . '/phpunit/phpunit/src/Framework/TestFailure.php', + 'PHPUnit\\Framework\\TestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListener.php', + 'PHPUnit\\Framework\\TestListenerDefaultImplementation' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListenerDefaultImplementation.php', + 'PHPUnit\\Framework\\TestResult' => $vendorDir . '/phpunit/phpunit/src/Framework/TestResult.php', + 'PHPUnit\\Framework\\TestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuite.php', + 'PHPUnit\\Framework\\TestSuiteIterator' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuiteIterator.php', + 'PHPUnit\\Framework\\UnintentionallyCoveredCodeError' => $vendorDir . '/phpunit/phpunit/src/Framework/UnintentionallyCoveredCodeError.php', + 'PHPUnit\\Framework\\Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Warning.php', + 'PHPUnit\\Framework\\WarningTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/WarningTestCase.php', + 'PHPUnit\\Runner\\AfterIncompleteTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterIncompleteTestHook.php', + 'PHPUnit\\Runner\\AfterLastTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterLastTestHook.php', + 'PHPUnit\\Runner\\AfterRiskyTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterRiskyTestHook.php', + 'PHPUnit\\Runner\\AfterSkippedTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterSkippedTestHook.php', + 'PHPUnit\\Runner\\AfterSuccessfulTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterSuccessfulTestHook.php', + 'PHPUnit\\Runner\\AfterTestErrorHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestErrorHook.php', + 'PHPUnit\\Runner\\AfterTestFailureHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestFailureHook.php', + 'PHPUnit\\Runner\\AfterTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestHook.php', + 'PHPUnit\\Runner\\AfterTestWarningHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestWarningHook.php', + 'PHPUnit\\Runner\\BaseTestRunner' => $vendorDir . '/phpunit/phpunit/src/Runner/BaseTestRunner.php', + 'PHPUnit\\Runner\\BeforeFirstTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/BeforeFirstTestHook.php', + 'PHPUnit\\Runner\\BeforeTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/BeforeTestHook.php', + 'PHPUnit\\Runner\\Exception' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception.php', + 'PHPUnit\\Runner\\Filter\\ExcludeGroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php', + 'PHPUnit\\Runner\\Filter\\Factory' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Factory.php', + 'PHPUnit\\Runner\\Filter\\GroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php', + 'PHPUnit\\Runner\\Filter\\IncludeGroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php', + 'PHPUnit\\Runner\\Filter\\NameFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php', + 'PHPUnit\\Runner\\Hook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/Hook.php', + 'PHPUnit\\Runner\\NullTestResultCache' => $vendorDir . '/phpunit/phpunit/src/Util/NullTestResultCache.php', + 'PHPUnit\\Runner\\PhptTestCase' => $vendorDir . '/phpunit/phpunit/src/Runner/PhptTestCase.php', + 'PHPUnit\\Runner\\ResultCacheExtension' => $vendorDir . '/phpunit/phpunit/src/Runner/ResultCacheExtension.php', + 'PHPUnit\\Runner\\StandardTestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php', + 'PHPUnit\\Runner\\TestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/TestHook.php', + 'PHPUnit\\Runner\\TestListenerAdapter' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/TestListenerAdapter.php', + 'PHPUnit\\Runner\\TestResultCache' => $vendorDir . '/phpunit/phpunit/src/Util/TestResultCache.php', + 'PHPUnit\\Runner\\TestResultCacheInterface' => $vendorDir . '/phpunit/phpunit/src/Util/TestResultCacheInterface.php', + 'PHPUnit\\Runner\\TestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php', + 'PHPUnit\\Runner\\TestSuiteSorter' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteSorter.php', + 'PHPUnit\\Runner\\Version' => $vendorDir . '/phpunit/phpunit/src/Runner/Version.php', + 'PHPUnit\\TextUI\\Command' => $vendorDir . '/phpunit/phpunit/src/TextUI/Command.php', + 'PHPUnit\\TextUI\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/ResultPrinter.php', + 'PHPUnit\\TextUI\\TestRunner' => $vendorDir . '/phpunit/phpunit/src/TextUI/TestRunner.php', + 'PHPUnit\\Util\\Blacklist' => $vendorDir . '/phpunit/phpunit/src/Util/Blacklist.php', + 'PHPUnit\\Util\\Configuration' => $vendorDir . '/phpunit/phpunit/src/Util/Configuration.php', + 'PHPUnit\\Util\\ConfigurationGenerator' => $vendorDir . '/phpunit/phpunit/src/Util/ConfigurationGenerator.php', + 'PHPUnit\\Util\\ErrorHandler' => $vendorDir . '/phpunit/phpunit/src/Util/ErrorHandler.php', + 'PHPUnit\\Util\\FileLoader' => $vendorDir . '/phpunit/phpunit/src/Util/FileLoader.php', + 'PHPUnit\\Util\\Filesystem' => $vendorDir . '/phpunit/phpunit/src/Util/Filesystem.php', + 'PHPUnit\\Util\\Filter' => $vendorDir . '/phpunit/phpunit/src/Util/Filter.php', + 'PHPUnit\\Util\\Getopt' => $vendorDir . '/phpunit/phpunit/src/Util/Getopt.php', + 'PHPUnit\\Util\\GlobalState' => $vendorDir . '/phpunit/phpunit/src/Util/GlobalState.php', + 'PHPUnit\\Util\\InvalidArgumentHelper' => $vendorDir . '/phpunit/phpunit/src/Util/InvalidArgumentHelper.php', + 'PHPUnit\\Util\\Json' => $vendorDir . '/phpunit/phpunit/src/Util/Json.php', + 'PHPUnit\\Util\\Log\\JUnit' => $vendorDir . '/phpunit/phpunit/src/Util/Log/JUnit.php', + 'PHPUnit\\Util\\Log\\TeamCity' => $vendorDir . '/phpunit/phpunit/src/Util/Log/TeamCity.php', + 'PHPUnit\\Util\\PHP\\AbstractPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/AbstractPhpProcess.php', + 'PHPUnit\\Util\\PHP\\DefaultPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/DefaultPhpProcess.php', + 'PHPUnit\\Util\\PHP\\WindowsPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/WindowsPhpProcess.php', + 'PHPUnit\\Util\\Printer' => $vendorDir . '/phpunit/phpunit/src/Util/Printer.php', + 'PHPUnit\\Util\\RegularExpression' => $vendorDir . '/phpunit/phpunit/src/Util/RegularExpression.php', + 'PHPUnit\\Util\\Test' => $vendorDir . '/phpunit/phpunit/src/Util/Test.php', + 'PHPUnit\\Util\\TestDox\\CliTestDoxPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/CliTestDoxPrinter.php', + 'PHPUnit\\Util\\TestDox\\HtmlResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/HtmlResultPrinter.php', + 'PHPUnit\\Util\\TestDox\\NamePrettifier' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php', + 'PHPUnit\\Util\\TestDox\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php', + 'PHPUnit\\Util\\TestDox\\TestResult' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/TestResult.php', + 'PHPUnit\\Util\\TestDox\\TextResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/TextResultPrinter.php', + 'PHPUnit\\Util\\TestDox\\XmlResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/XmlResultPrinter.php', + 'PHPUnit\\Util\\TextTestListRenderer' => $vendorDir . '/phpunit/phpunit/src/Util/TextTestListRenderer.php', + 'PHPUnit\\Util\\Type' => $vendorDir . '/phpunit/phpunit/src/Util/Type.php', + 'PHPUnit\\Util\\XdebugFilterScriptGenerator' => $vendorDir . '/phpunit/phpunit/src/Util/XdebugFilterScriptGenerator.php', + 'PHPUnit\\Util\\Xml' => $vendorDir . '/phpunit/phpunit/src/Util/Xml.php', + 'PHPUnit\\Util\\XmlTestListRenderer' => $vendorDir . '/phpunit/phpunit/src/Util/XmlTestListRenderer.php', + 'PHPUnit_Framework_MockObject_MockObject' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockObject.php', + 'PHP_Token' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_TokenWithScope' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_TokenWithScopeAndVisibility' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ABSTRACT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AMPERSAND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AND_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ARRAY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ARRAY_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BACKTICK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BAD_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BOOLEAN_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BOOLEAN_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BOOL_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BREAK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CALLABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CARET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CASE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CATCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLASS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLASS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLASS_NAME_CONSTANT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLONE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COALESCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COALESCE_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COMMA' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONCAT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONSTANT_ENCAPSED_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONTINUE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CURLY_OPEN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DEC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DEFAULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DIR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DIV' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DIV_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOC_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOLLAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOLLAR_OPEN_CURLY_BRACES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_ARROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_QUOTES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ELLIPSIS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ELSE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ELSEIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EMPTY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENCAPSED_AND_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDDECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDFOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDFOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDSWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDWHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_END_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EVAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EXCLAMATION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EXIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EXTENDS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FINAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FINALLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FUNC_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_GLOBAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_GOTO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_HALT_COMPILER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IMPLEMENTS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INCLUDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INCLUDE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INLINE_HTML' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INSTANCEOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INSTEADOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INTERFACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ISSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_GREATER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_NOT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_NOT_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_SMALLER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_Includes' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LINE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LIST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LOGICAL_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LOGICAL_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LOGICAL_XOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_METHOD_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MINUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MINUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MOD_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MUL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NAMESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NEW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NS_SEPARATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NUM_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OBJECT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OBJECT_OPERATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_TAG_WITH_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PAAMAYIM_NEKUDOTAYIM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PERCENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PIPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PLUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PLUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_POW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_POW_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PRINT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PRIVATE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PROTECTED' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PUBLIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_QUESTION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_REQUIRE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_REQUIRE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_RETURN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SEMICOLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SPACESHIP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_START_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STATIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STRING_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STRING_VARNAME' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_Stream' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream.php', + 'PHP_Token_Stream_CachingFactory' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php', + 'PHP_Token_THROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TILDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TRAIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TRAIT_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TRY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_UNSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_UNSET_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_USE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_USE_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_Util' => $vendorDir . '/phpunit/php-token-stream/src/Token/Util.php', + 'PHP_Token_VAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_VARIABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_WHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XOR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_YIELD' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_YIELD_FROM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', + 'Package_Command' => $vendorDir . '/wp-cli/package-command/src/Package_Command.php', + 'Peast\\Formatter\\Base' => $vendorDir . '/mck89/peast/lib/Peast/Formatter/Base.php', + 'Peast\\Formatter\\Compact' => $vendorDir . '/mck89/peast/lib/Peast/Formatter/Compact.php', + 'Peast\\Formatter\\Expanded' => $vendorDir . '/mck89/peast/lib/Peast/Formatter/Expanded.php', + 'Peast\\Formatter\\PrettyPrint' => $vendorDir . '/mck89/peast/lib/Peast/Formatter/PrettyPrint.php', + 'Peast\\Peast' => $vendorDir . '/mck89/peast/lib/Peast/Peast.php', + 'Peast\\Renderer' => $vendorDir . '/mck89/peast/lib/Peast/Renderer.php', + 'Peast\\Syntax\\CommentsRegistry' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/CommentsRegistry.php', + 'Peast\\Syntax\\ES2015\\Parser' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2015/Parser.php', + 'Peast\\Syntax\\ES2015\\Scanner' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2015/Scanner.php', + 'Peast\\Syntax\\ES2016\\Parser' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2016/Parser.php', + 'Peast\\Syntax\\ES2016\\Scanner' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2016/Scanner.php', + 'Peast\\Syntax\\ES2017\\Parser' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2017/Parser.php', + 'Peast\\Syntax\\ES2017\\Scanner' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2017/Scanner.php', + 'Peast\\Syntax\\ES2018\\Parser' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2018/Parser.php', + 'Peast\\Syntax\\ES2018\\Scanner' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2018/Scanner.php', + 'Peast\\Syntax\\ES2019\\Parser' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2019/Parser.php', + 'Peast\\Syntax\\ES2019\\Scanner' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2019/Scanner.php', + 'Peast\\Syntax\\EventsEmitter' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/EventsEmitter.php', + 'Peast\\Syntax\\Exception' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Exception.php', + 'Peast\\Syntax\\JSX\\Parser' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/JSX/Parser.php', + 'Peast\\Syntax\\JSX\\Scanner' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/JSX/Scanner.php', + 'Peast\\Syntax\\LSM' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/LSM.php', + 'Peast\\Syntax\\Node\\ArrayExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ArrayExpression.php', + 'Peast\\Syntax\\Node\\ArrayPattern' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ArrayPattern.php', + 'Peast\\Syntax\\Node\\ArrowFunctionExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ArrowFunctionExpression.php', + 'Peast\\Syntax\\Node\\AssignmentExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/AssignmentExpression.php', + 'Peast\\Syntax\\Node\\AssignmentPattern' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/AssignmentPattern.php', + 'Peast\\Syntax\\Node\\AssignmentProperty' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/AssignmentProperty.php', + 'Peast\\Syntax\\Node\\AwaitExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/AwaitExpression.php', + 'Peast\\Syntax\\Node\\BinaryExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/BinaryExpression.php', + 'Peast\\Syntax\\Node\\BlockStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/BlockStatement.php', + 'Peast\\Syntax\\Node\\BooleanLiteral' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/BooleanLiteral.php', + 'Peast\\Syntax\\Node\\BreakStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/BreakStatement.php', + 'Peast\\Syntax\\Node\\CallExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/CallExpression.php', + 'Peast\\Syntax\\Node\\CatchClause' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/CatchClause.php', + 'Peast\\Syntax\\Node\\ClassBody' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ClassBody.php', + 'Peast\\Syntax\\Node\\ClassDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ClassDeclaration.php', + 'Peast\\Syntax\\Node\\ClassExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ClassExpression.php', + 'Peast\\Syntax\\Node\\Class_' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Class_.php', + 'Peast\\Syntax\\Node\\Comment' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Comment.php', + 'Peast\\Syntax\\Node\\ConditionalExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ConditionalExpression.php', + 'Peast\\Syntax\\Node\\ContinueStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ContinueStatement.php', + 'Peast\\Syntax\\Node\\DebuggerStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/DebuggerStatement.php', + 'Peast\\Syntax\\Node\\Declaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Declaration.php', + 'Peast\\Syntax\\Node\\DoWhileStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/DoWhileStatement.php', + 'Peast\\Syntax\\Node\\EmptyStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/EmptyStatement.php', + 'Peast\\Syntax\\Node\\ExportAllDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ExportAllDeclaration.php', + 'Peast\\Syntax\\Node\\ExportDefaultDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ExportDefaultDeclaration.php', + 'Peast\\Syntax\\Node\\ExportNamedDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ExportNamedDeclaration.php', + 'Peast\\Syntax\\Node\\ExportSpecifier' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ExportSpecifier.php', + 'Peast\\Syntax\\Node\\Expression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Expression.php', + 'Peast\\Syntax\\Node\\ExpressionStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ExpressionStatement.php', + 'Peast\\Syntax\\Node\\ForInStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ForInStatement.php', + 'Peast\\Syntax\\Node\\ForOfStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ForOfStatement.php', + 'Peast\\Syntax\\Node\\ForStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ForStatement.php', + 'Peast\\Syntax\\Node\\FunctionDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/FunctionDeclaration.php', + 'Peast\\Syntax\\Node\\FunctionExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/FunctionExpression.php', + 'Peast\\Syntax\\Node\\Function_' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Function_.php', + 'Peast\\Syntax\\Node\\Identifier' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Identifier.php', + 'Peast\\Syntax\\Node\\IfStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/IfStatement.php', + 'Peast\\Syntax\\Node\\ImportDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ImportDeclaration.php', + 'Peast\\Syntax\\Node\\ImportDefaultSpecifier' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ImportDefaultSpecifier.php', + 'Peast\\Syntax\\Node\\ImportNamespaceSpecifier' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ImportNamespaceSpecifier.php', + 'Peast\\Syntax\\Node\\ImportSpecifier' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ImportSpecifier.php', + 'Peast\\Syntax\\Node\\JSX\\JSXAttribute' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXAttribute.php', + 'Peast\\Syntax\\Node\\JSX\\JSXBoundaryElement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXBoundaryElement.php', + 'Peast\\Syntax\\Node\\JSX\\JSXClosingElement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXClosingElement.php', + 'Peast\\Syntax\\Node\\JSX\\JSXClosingFragment' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXClosingFragment.php', + 'Peast\\Syntax\\Node\\JSX\\JSXElement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXElement.php', + 'Peast\\Syntax\\Node\\JSX\\JSXEmptyExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXEmptyExpression.php', + 'Peast\\Syntax\\Node\\JSX\\JSXExpressionContainer' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXExpressionContainer.php', + 'Peast\\Syntax\\Node\\JSX\\JSXFragment' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXFragment.php', + 'Peast\\Syntax\\Node\\JSX\\JSXIdentifier' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXIdentifier.php', + 'Peast\\Syntax\\Node\\JSX\\JSXMemberExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXMemberExpression.php', + 'Peast\\Syntax\\Node\\JSX\\JSXNamespacedName' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXNamespacedName.php', + 'Peast\\Syntax\\Node\\JSX\\JSXOpeningElement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXOpeningElement.php', + 'Peast\\Syntax\\Node\\JSX\\JSXOpeningFragment' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXOpeningFragment.php', + 'Peast\\Syntax\\Node\\JSX\\JSXSpreadAttribute' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXSpreadAttribute.php', + 'Peast\\Syntax\\Node\\JSX\\JSXSpreadChild' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXSpreadChild.php', + 'Peast\\Syntax\\Node\\JSX\\JSXText' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXText.php', + 'Peast\\Syntax\\Node\\LabeledStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/LabeledStatement.php', + 'Peast\\Syntax\\Node\\Literal' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Literal.php', + 'Peast\\Syntax\\Node\\LogicalExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/LogicalExpression.php', + 'Peast\\Syntax\\Node\\MemberExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/MemberExpression.php', + 'Peast\\Syntax\\Node\\MetaProperty' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/MetaProperty.php', + 'Peast\\Syntax\\Node\\MethodDefinition' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/MethodDefinition.php', + 'Peast\\Syntax\\Node\\ModuleDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ModuleDeclaration.php', + 'Peast\\Syntax\\Node\\ModuleSpecifier' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ModuleSpecifier.php', + 'Peast\\Syntax\\Node\\NewExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/NewExpression.php', + 'Peast\\Syntax\\Node\\Node' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Node.php', + 'Peast\\Syntax\\Node\\NullLiteral' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/NullLiteral.php', + 'Peast\\Syntax\\Node\\NumericLiteral' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/NumericLiteral.php', + 'Peast\\Syntax\\Node\\ObjectExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ObjectExpression.php', + 'Peast\\Syntax\\Node\\ObjectPattern' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ObjectPattern.php', + 'Peast\\Syntax\\Node\\ParenthesizedExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ParenthesizedExpression.php', + 'Peast\\Syntax\\Node\\Pattern' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Pattern.php', + 'Peast\\Syntax\\Node\\Program' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Program.php', + 'Peast\\Syntax\\Node\\Property' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Property.php', + 'Peast\\Syntax\\Node\\RegExpLiteral' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/RegExpLiteral.php', + 'Peast\\Syntax\\Node\\RestElement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/RestElement.php', + 'Peast\\Syntax\\Node\\ReturnStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ReturnStatement.php', + 'Peast\\Syntax\\Node\\SequenceExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/SequenceExpression.php', + 'Peast\\Syntax\\Node\\SpreadElement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/SpreadElement.php', + 'Peast\\Syntax\\Node\\Statement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Statement.php', + 'Peast\\Syntax\\Node\\StringLiteral' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/StringLiteral.php', + 'Peast\\Syntax\\Node\\Super' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Super.php', + 'Peast\\Syntax\\Node\\SwitchCase' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/SwitchCase.php', + 'Peast\\Syntax\\Node\\SwitchStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/SwitchStatement.php', + 'Peast\\Syntax\\Node\\TaggedTemplateExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/TaggedTemplateExpression.php', + 'Peast\\Syntax\\Node\\TemplateElement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/TemplateElement.php', + 'Peast\\Syntax\\Node\\TemplateLiteral' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/TemplateLiteral.php', + 'Peast\\Syntax\\Node\\ThisExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ThisExpression.php', + 'Peast\\Syntax\\Node\\ThrowStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ThrowStatement.php', + 'Peast\\Syntax\\Node\\TryStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/TryStatement.php', + 'Peast\\Syntax\\Node\\UnaryExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/UnaryExpression.php', + 'Peast\\Syntax\\Node\\UpdateExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/UpdateExpression.php', + 'Peast\\Syntax\\Node\\VariableDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/VariableDeclaration.php', + 'Peast\\Syntax\\Node\\VariableDeclarator' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/VariableDeclarator.php', + 'Peast\\Syntax\\Node\\WhileStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/WhileStatement.php', + 'Peast\\Syntax\\Node\\WithStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/WithStatement.php', + 'Peast\\Syntax\\Node\\YieldExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/YieldExpression.php', + 'Peast\\Syntax\\Parser' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Parser.php', + 'Peast\\Syntax\\Position' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Position.php', + 'Peast\\Syntax\\Scanner' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Scanner.php', + 'Peast\\Syntax\\SourceLocation' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/SourceLocation.php', + 'Peast\\Syntax\\Token' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Token.php', + 'Peast\\Syntax\\Utils' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Utils.php', + 'Peast\\Traverser' => $vendorDir . '/mck89/peast/lib/Peast/Traverser.php', + 'Peast\\test\\PeastTest' => $vendorDir . '/mck89/peast/test/Peast/PeastTest.php', + 'Peast\\test\\Syntax\\CommentsRegistryTest' => $vendorDir . '/mck89/peast/test/Peast/Syntax/CommentsRegistryTest.php', + 'Peast\\test\\Syntax\\ES2015\\ES2015Test' => $vendorDir . '/mck89/peast/test/Peast/Syntax/ES2015/ES2015Test.php', + 'Peast\\test\\Syntax\\ES2016\\ES2016Test' => $vendorDir . '/mck89/peast/test/Peast/Syntax/ES2016/ES2016Test.php', + 'Peast\\test\\Syntax\\ES2017\\ES2017Test' => $vendorDir . '/mck89/peast/test/Peast/Syntax/ES2017/ES2017Test.php', + 'Peast\\test\\Syntax\\ES2018\\ES2018Test' => $vendorDir . '/mck89/peast/test/Peast/Syntax/ES2018/ES2018Test.php', + 'Peast\\test\\Syntax\\ES2019\\ES2019Test' => $vendorDir . '/mck89/peast/test/Peast/Syntax/ES2019/ES2019Test.php', + 'Peast\\test\\Syntax\\Node\\BooleanLiteralTest' => $vendorDir . '/mck89/peast/test/Peast/Syntax/Node/BooleanLiteralTest.php', + 'Peast\\test\\Syntax\\Node\\CommentTest' => $vendorDir . '/mck89/peast/test/Peast/Syntax/Node/CommentTest.php', + 'Peast\\test\\Syntax\\Node\\NullLiteralTest' => $vendorDir . '/mck89/peast/test/Peast/Syntax/Node/NullLiteralTest.php', + 'Peast\\test\\Syntax\\Node\\NumericLiteralTest' => $vendorDir . '/mck89/peast/test/Peast/Syntax/Node/NumericLiteralTest.php', + 'Peast\\test\\Syntax\\Node\\StringLiteralTest' => $vendorDir . '/mck89/peast/test/Peast/Syntax/Node/StringLiteralTest.php', + 'Peast\\test\\TestBase' => $vendorDir . '/mck89/peast/test/Peast/TestBase.php', + 'Peast\\test\\TestCaseBase' => $vendorDir . '/mck89/peast/test/Peast/TestCaseBase.php', + 'Peast\\test\\Traverser\\RendererTest' => $vendorDir . '/mck89/peast/test/Peast/RendererTest.php', + 'Peast\\test\\Traverser\\TraverserTest' => $vendorDir . '/mck89/peast/test/Peast/TraverserTest.php', + 'PharIo\\Manifest\\Application' => $vendorDir . '/phar-io/manifest/src/values/Application.php', + 'PharIo\\Manifest\\ApplicationName' => $vendorDir . '/phar-io/manifest/src/values/ApplicationName.php', + 'PharIo\\Manifest\\Author' => $vendorDir . '/phar-io/manifest/src/values/Author.php', + 'PharIo\\Manifest\\AuthorCollection' => $vendorDir . '/phar-io/manifest/src/values/AuthorCollection.php', + 'PharIo\\Manifest\\AuthorCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/AuthorCollectionIterator.php', + 'PharIo\\Manifest\\AuthorElement' => $vendorDir . '/phar-io/manifest/src/xml/AuthorElement.php', + 'PharIo\\Manifest\\AuthorElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/AuthorElementCollection.php', + 'PharIo\\Manifest\\BundledComponent' => $vendorDir . '/phar-io/manifest/src/values/BundledComponent.php', + 'PharIo\\Manifest\\BundledComponentCollection' => $vendorDir . '/phar-io/manifest/src/values/BundledComponentCollection.php', + 'PharIo\\Manifest\\BundledComponentCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/BundledComponentCollectionIterator.php', + 'PharIo\\Manifest\\BundlesElement' => $vendorDir . '/phar-io/manifest/src/xml/BundlesElement.php', + 'PharIo\\Manifest\\ComponentElement' => $vendorDir . '/phar-io/manifest/src/xml/ComponentElement.php', + 'PharIo\\Manifest\\ComponentElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ComponentElementCollection.php', + 'PharIo\\Manifest\\ContainsElement' => $vendorDir . '/phar-io/manifest/src/xml/ContainsElement.php', + 'PharIo\\Manifest\\CopyrightElement' => $vendorDir . '/phar-io/manifest/src/xml/CopyrightElement.php', + 'PharIo\\Manifest\\CopyrightInformation' => $vendorDir . '/phar-io/manifest/src/values/CopyrightInformation.php', + 'PharIo\\Manifest\\ElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ElementCollection.php', + 'PharIo\\Manifest\\Email' => $vendorDir . '/phar-io/manifest/src/values/Email.php', + 'PharIo\\Manifest\\Exception' => $vendorDir . '/phar-io/manifest/src/exceptions/Exception.php', + 'PharIo\\Manifest\\ExtElement' => $vendorDir . '/phar-io/manifest/src/xml/ExtElement.php', + 'PharIo\\Manifest\\ExtElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ExtElementCollection.php', + 'PharIo\\Manifest\\Extension' => $vendorDir . '/phar-io/manifest/src/values/Extension.php', + 'PharIo\\Manifest\\ExtensionElement' => $vendorDir . '/phar-io/manifest/src/xml/ExtensionElement.php', + 'PharIo\\Manifest\\InvalidApplicationNameException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php', + 'PharIo\\Manifest\\InvalidEmailException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidEmailException.php', + 'PharIo\\Manifest\\InvalidUrlException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidUrlException.php', + 'PharIo\\Manifest\\Library' => $vendorDir . '/phar-io/manifest/src/values/Library.php', + 'PharIo\\Manifest\\License' => $vendorDir . '/phar-io/manifest/src/values/License.php', + 'PharIo\\Manifest\\LicenseElement' => $vendorDir . '/phar-io/manifest/src/xml/LicenseElement.php', + 'PharIo\\Manifest\\Manifest' => $vendorDir . '/phar-io/manifest/src/values/Manifest.php', + 'PharIo\\Manifest\\ManifestDocument' => $vendorDir . '/phar-io/manifest/src/xml/ManifestDocument.php', + 'PharIo\\Manifest\\ManifestDocumentException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentException.php', + 'PharIo\\Manifest\\ManifestDocumentLoadingException' => $vendorDir . '/phar-io/manifest/src/xml/ManifestDocumentLoadingException.php', + 'PharIo\\Manifest\\ManifestDocumentMapper' => $vendorDir . '/phar-io/manifest/src/ManifestDocumentMapper.php', + 'PharIo\\Manifest\\ManifestDocumentMapperException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php', + 'PharIo\\Manifest\\ManifestElement' => $vendorDir . '/phar-io/manifest/src/xml/ManifestElement.php', + 'PharIo\\Manifest\\ManifestElementException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestElementException.php', + 'PharIo\\Manifest\\ManifestLoader' => $vendorDir . '/phar-io/manifest/src/ManifestLoader.php', + 'PharIo\\Manifest\\ManifestLoaderException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestLoaderException.php', + 'PharIo\\Manifest\\ManifestSerializer' => $vendorDir . '/phar-io/manifest/src/ManifestSerializer.php', + 'PharIo\\Manifest\\PhpElement' => $vendorDir . '/phar-io/manifest/src/xml/PhpElement.php', + 'PharIo\\Manifest\\PhpExtensionRequirement' => $vendorDir . '/phar-io/manifest/src/values/PhpExtensionRequirement.php', + 'PharIo\\Manifest\\PhpVersionRequirement' => $vendorDir . '/phar-io/manifest/src/values/PhpVersionRequirement.php', + 'PharIo\\Manifest\\Requirement' => $vendorDir . '/phar-io/manifest/src/values/Requirement.php', + 'PharIo\\Manifest\\RequirementCollection' => $vendorDir . '/phar-io/manifest/src/values/RequirementCollection.php', + 'PharIo\\Manifest\\RequirementCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/RequirementCollectionIterator.php', + 'PharIo\\Manifest\\RequiresElement' => $vendorDir . '/phar-io/manifest/src/xml/RequiresElement.php', + 'PharIo\\Manifest\\Type' => $vendorDir . '/phar-io/manifest/src/values/Type.php', + 'PharIo\\Manifest\\Url' => $vendorDir . '/phar-io/manifest/src/values/Url.php', + 'PharIo\\Version\\AbstractVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/AbstractVersionConstraint.php', + 'PharIo\\Version\\AndVersionConstraintGroup' => $vendorDir . '/phar-io/version/src/constraints/AndVersionConstraintGroup.php', + 'PharIo\\Version\\AnyVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/AnyVersionConstraint.php', + 'PharIo\\Version\\ExactVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/ExactVersionConstraint.php', + 'PharIo\\Version\\Exception' => $vendorDir . '/phar-io/version/src/exceptions/Exception.php', + 'PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/GreaterThanOrEqualToVersionConstraint.php', + 'PharIo\\Version\\InvalidPreReleaseSuffixException' => $vendorDir . '/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.php', + 'PharIo\\Version\\InvalidVersionException' => $vendorDir . '/phar-io/version/src/exceptions/InvalidVersionException.php', + 'PharIo\\Version\\OrVersionConstraintGroup' => $vendorDir . '/phar-io/version/src/constraints/OrVersionConstraintGroup.php', + 'PharIo\\Version\\PreReleaseSuffix' => $vendorDir . '/phar-io/version/src/PreReleaseSuffix.php', + 'PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/SpecificMajorAndMinorVersionConstraint.php', + 'PharIo\\Version\\SpecificMajorVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/SpecificMajorVersionConstraint.php', + 'PharIo\\Version\\UnsupportedVersionConstraintException' => $vendorDir . '/phar-io/version/src/exceptions/UnsupportedVersionConstraintException.php', + 'PharIo\\Version\\Version' => $vendorDir . '/phar-io/version/src/Version.php', + 'PharIo\\Version\\VersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/VersionConstraint.php', + 'PharIo\\Version\\VersionConstraintParser' => $vendorDir . '/phar-io/version/src/VersionConstraintParser.php', + 'PharIo\\Version\\VersionConstraintValue' => $vendorDir . '/phar-io/version/src/VersionConstraintValue.php', + 'PharIo\\Version\\VersionNumber' => $vendorDir . '/phar-io/version/src/VersionNumber.php', + 'PhpOption\\LazyOption' => $vendorDir . '/phpoption/phpoption/src/PhpOption/LazyOption.php', + 'PhpOption\\None' => $vendorDir . '/phpoption/phpoption/src/PhpOption/None.php', + 'PhpOption\\Option' => $vendorDir . '/phpoption/phpoption/src/PhpOption/Option.php', + 'PhpOption\\Some' => $vendorDir . '/phpoption/phpoption/src/PhpOption/Some.php', + 'Plugin_Command' => $vendorDir . '/wp-cli/extension-command/src/Plugin_Command.php', + 'Plugin_Command_Namespace' => $vendorDir . '/wp-cli/checksum-command/src/Plugin_Command_Namespace.php', + 'Plugin_Language_Command' => $vendorDir . '/wp-cli/language-command/src/Plugin_Language_Command.php', + 'Post_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Command.php', + 'Post_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Meta_Command.php', + 'Post_Term_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Term_Command.php', + 'Post_Type_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Type_Command.php', + 'Prophecy\\Argument' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument.php', + 'Prophecy\\Argument\\ArgumentsWildcard' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/ArgumentsWildcard.php', + 'Prophecy\\Argument\\Token\\AnyValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValueToken.php', + 'Prophecy\\Argument\\Token\\AnyValuesToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php', + 'Prophecy\\Argument\\Token\\ApproximateValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ApproximateValueToken.php', + 'Prophecy\\Argument\\Token\\ArrayCountToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayCountToken.php', + 'Prophecy\\Argument\\Token\\ArrayEntryToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEntryToken.php', + 'Prophecy\\Argument\\Token\\ArrayEveryEntryToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEveryEntryToken.php', + 'Prophecy\\Argument\\Token\\CallbackToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/CallbackToken.php', + 'Prophecy\\Argument\\Token\\ExactValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ExactValueToken.php', + 'Prophecy\\Argument\\Token\\IdenticalValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/IdenticalValueToken.php', + 'Prophecy\\Argument\\Token\\LogicalAndToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalAndToken.php', + 'Prophecy\\Argument\\Token\\LogicalNotToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php', + 'Prophecy\\Argument\\Token\\ObjectStateToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ObjectStateToken.php', + 'Prophecy\\Argument\\Token\\StringContainsToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/StringContainsToken.php', + 'Prophecy\\Argument\\Token\\TokenInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/TokenInterface.php', + 'Prophecy\\Argument\\Token\\TypeToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/TypeToken.php', + 'Prophecy\\Call\\Call' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Call/Call.php', + 'Prophecy\\Call\\CallCenter' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Call/CallCenter.php', + 'Prophecy\\Comparator\\ClosureComparator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/ClosureComparator.php', + 'Prophecy\\Comparator\\Factory' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/Factory.php', + 'Prophecy\\Comparator\\ProphecyComparator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/ProphecyComparator.php', + 'Prophecy\\Doubler\\CachedDoubler' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/CachedDoubler.php', + 'Prophecy\\Doubler\\ClassPatch\\ClassPatchInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php', + 'Prophecy\\Doubler\\ClassPatch\\DisableConstructorPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\HhvmExceptionPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\KeywordPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/KeywordPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\MagicCallPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/MagicCallPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\ProphecySubjectPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\ReflectionClassNewInstancePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php', + 'Prophecy\\Doubler\\ClassPatch\\SplFileInfoPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/SplFileInfoPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\ThrowablePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ThrowablePatch.php', + 'Prophecy\\Doubler\\ClassPatch\\TraversablePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/TraversablePatch.php', + 'Prophecy\\Doubler\\DoubleInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/DoubleInterface.php', + 'Prophecy\\Doubler\\Doubler' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Doubler.php', + 'Prophecy\\Doubler\\Generator\\ClassCodeGenerator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCodeGenerator.php', + 'Prophecy\\Doubler\\Generator\\ClassCreator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCreator.php', + 'Prophecy\\Doubler\\Generator\\ClassMirror' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassMirror.php', + 'Prophecy\\Doubler\\Generator\\Node\\ArgumentNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ArgumentNode.php', + 'Prophecy\\Doubler\\Generator\\Node\\ClassNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ClassNode.php', + 'Prophecy\\Doubler\\Generator\\Node\\MethodNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/MethodNode.php', + 'Prophecy\\Doubler\\Generator\\ReflectionInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ReflectionInterface.php', + 'Prophecy\\Doubler\\Generator\\TypeHintReference' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/TypeHintReference.php', + 'Prophecy\\Doubler\\LazyDouble' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/LazyDouble.php', + 'Prophecy\\Doubler\\NameGenerator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/NameGenerator.php', + 'Prophecy\\Exception\\Call\\UnexpectedCallException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Call/UnexpectedCallException.php', + 'Prophecy\\Exception\\Doubler\\ClassCreatorException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassCreatorException.php', + 'Prophecy\\Exception\\Doubler\\ClassMirrorException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassMirrorException.php', + 'Prophecy\\Exception\\Doubler\\ClassNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\DoubleException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.php', + 'Prophecy\\Exception\\Doubler\\DoublerException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php', + 'Prophecy\\Exception\\Doubler\\InterfaceNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/InterfaceNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\MethodNotExtendableException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotExtendableException.php', + 'Prophecy\\Exception\\Doubler\\MethodNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\ReturnByReferenceException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ReturnByReferenceException.php', + 'Prophecy\\Exception\\Exception' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Exception.php', + 'Prophecy\\Exception\\InvalidArgumentException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php', + 'Prophecy\\Exception\\Prediction\\AggregateException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/AggregateException.php', + 'Prophecy\\Exception\\Prediction\\FailedPredictionException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/FailedPredictionException.php', + 'Prophecy\\Exception\\Prediction\\NoCallsException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/NoCallsException.php', + 'Prophecy\\Exception\\Prediction\\PredictionException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/PredictionException.php', + 'Prophecy\\Exception\\Prediction\\UnexpectedCallsCountException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsCountException.php', + 'Prophecy\\Exception\\Prediction\\UnexpectedCallsException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsException.php', + 'Prophecy\\Exception\\Prophecy\\MethodProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/MethodProphecyException.php', + 'Prophecy\\Exception\\Prophecy\\ObjectProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ObjectProphecyException.php', + 'Prophecy\\Exception\\Prophecy\\ProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php', + 'Prophecy\\PhpDocumentor\\ClassAndInterfaceTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php', + 'Prophecy\\PhpDocumentor\\ClassTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassTagRetriever.php', + 'Prophecy\\PhpDocumentor\\LegacyClassTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php', + 'Prophecy\\PhpDocumentor\\MethodTagRetrieverInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php', + 'Prophecy\\Prediction\\CallPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallPrediction.php', + 'Prophecy\\Prediction\\CallTimesPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallTimesPrediction.php', + 'Prophecy\\Prediction\\CallbackPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallbackPrediction.php', + 'Prophecy\\Prediction\\NoCallsPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/NoCallsPrediction.php', + 'Prophecy\\Prediction\\PredictionInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/PredictionInterface.php', + 'Prophecy\\Promise\\CallbackPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/CallbackPromise.php', + 'Prophecy\\Promise\\PromiseInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/PromiseInterface.php', + 'Prophecy\\Promise\\ReturnArgumentPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ReturnArgumentPromise.php', + 'Prophecy\\Promise\\ReturnPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ReturnPromise.php', + 'Prophecy\\Promise\\ThrowPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ThrowPromise.php', + 'Prophecy\\Prophecy\\MethodProphecy' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/MethodProphecy.php', + 'Prophecy\\Prophecy\\ObjectProphecy' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php', + 'Prophecy\\Prophecy\\ProphecyInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecyInterface.php', + 'Prophecy\\Prophecy\\ProphecySubjectInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecySubjectInterface.php', + 'Prophecy\\Prophecy\\Revealer' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/Revealer.php', + 'Prophecy\\Prophecy\\RevealerInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/RevealerInterface.php', + 'Prophecy\\Prophet' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophet.php', + 'Prophecy\\Util\\ExportUtil' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Util/ExportUtil.php', + 'Prophecy\\Util\\StringUtil' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Util/StringUtil.php', + 'Psr\\Container\\ContainerExceptionInterface' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php', + 'Psr\\Container\\ContainerInterface' => $vendorDir . '/psr/container/src/ContainerInterface.php', + 'Psr\\Container\\NotFoundExceptionInterface' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php', + 'Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/psr/http-message/src/MessageInterface.php', + 'Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/psr/http-message/src/RequestInterface.php', + 'Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/psr/http-message/src/ResponseInterface.php', + 'Psr\\Http\\Message\\ServerRequestInterface' => $vendorDir . '/psr/http-message/src/ServerRequestInterface.php', + 'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php', + 'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php', + 'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php', + 'Psr\\Log\\AbstractLogger' => $vendorDir . '/psr/log/Psr/Log/AbstractLogger.php', + 'Psr\\Log\\InvalidArgumentException' => $vendorDir . '/psr/log/Psr/Log/InvalidArgumentException.php', + 'Psr\\Log\\LogLevel' => $vendorDir . '/psr/log/Psr/Log/LogLevel.php', + 'Psr\\Log\\LoggerAwareInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareInterface.php', + 'Psr\\Log\\LoggerAwareTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareTrait.php', + 'Psr\\Log\\LoggerInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerInterface.php', + 'Psr\\Log\\LoggerTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerTrait.php', + 'Psr\\Log\\NullLogger' => $vendorDir . '/psr/log/Psr/Log/NullLogger.php', + 'Psr\\Log\\Test\\DummyTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', + 'Psr\\Log\\Test\\LoggerInterfaceTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', + 'Psr\\Log\\Test\\TestLogger' => $vendorDir . '/psr/log/Psr/Log/Test/TestLogger.php', + 'Psr\\SimpleCache\\CacheException' => $vendorDir . '/psr/simple-cache/src/CacheException.php', + 'Psr\\SimpleCache\\CacheInterface' => $vendorDir . '/psr/simple-cache/src/CacheInterface.php', + 'Psr\\SimpleCache\\InvalidArgumentException' => $vendorDir . '/psr/simple-cache/src/InvalidArgumentException.php', + 'Requests' => $vendorDir . '/rmccue/requests/library/Requests.php', + 'Requests_Auth' => $vendorDir . '/rmccue/requests/library/Requests/Auth.php', + 'Requests_Auth_Basic' => $vendorDir . '/rmccue/requests/library/Requests/Auth/Basic.php', + 'Requests_Cookie' => $vendorDir . '/rmccue/requests/library/Requests/Cookie.php', + 'Requests_Cookie_Jar' => $vendorDir . '/rmccue/requests/library/Requests/Cookie/Jar.php', + 'Requests_Exception' => $vendorDir . '/rmccue/requests/library/Requests/Exception.php', + 'Requests_Exception_HTTP' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP.php', + 'Requests_Exception_HTTP_304' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/304.php', + 'Requests_Exception_HTTP_305' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/305.php', + 'Requests_Exception_HTTP_306' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/306.php', + 'Requests_Exception_HTTP_400' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/400.php', + 'Requests_Exception_HTTP_401' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/401.php', + 'Requests_Exception_HTTP_402' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/402.php', + 'Requests_Exception_HTTP_403' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/403.php', + 'Requests_Exception_HTTP_404' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/404.php', + 'Requests_Exception_HTTP_405' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/405.php', + 'Requests_Exception_HTTP_406' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/406.php', + 'Requests_Exception_HTTP_407' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/407.php', + 'Requests_Exception_HTTP_408' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/408.php', + 'Requests_Exception_HTTP_409' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/409.php', + 'Requests_Exception_HTTP_410' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/410.php', + 'Requests_Exception_HTTP_411' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/411.php', + 'Requests_Exception_HTTP_412' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/412.php', + 'Requests_Exception_HTTP_413' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/413.php', + 'Requests_Exception_HTTP_414' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/414.php', + 'Requests_Exception_HTTP_415' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/415.php', + 'Requests_Exception_HTTP_416' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/416.php', + 'Requests_Exception_HTTP_417' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/417.php', + 'Requests_Exception_HTTP_418' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/418.php', + 'Requests_Exception_HTTP_428' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/428.php', + 'Requests_Exception_HTTP_429' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/429.php', + 'Requests_Exception_HTTP_431' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/431.php', + 'Requests_Exception_HTTP_500' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/500.php', + 'Requests_Exception_HTTP_501' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/501.php', + 'Requests_Exception_HTTP_502' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/502.php', + 'Requests_Exception_HTTP_503' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/503.php', + 'Requests_Exception_HTTP_504' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/504.php', + 'Requests_Exception_HTTP_505' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/505.php', + 'Requests_Exception_HTTP_511' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/511.php', + 'Requests_Exception_HTTP_Unknown' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/Unknown.php', + 'Requests_Exception_Transport' => $vendorDir . '/rmccue/requests/library/Requests/Exception/Transport.php', + 'Requests_Exception_Transport_cURL' => $vendorDir . '/rmccue/requests/library/Requests/Exception/Transport/cURL.php', + 'Requests_Hooker' => $vendorDir . '/rmccue/requests/library/Requests/Hooker.php', + 'Requests_Hooks' => $vendorDir . '/rmccue/requests/library/Requests/Hooks.php', + 'Requests_IDNAEncoder' => $vendorDir . '/rmccue/requests/library/Requests/IDNAEncoder.php', + 'Requests_IPv6' => $vendorDir . '/rmccue/requests/library/Requests/IPv6.php', + 'Requests_IRI' => $vendorDir . '/rmccue/requests/library/Requests/IRI.php', + 'Requests_Proxy' => $vendorDir . '/rmccue/requests/library/Requests/Proxy.php', + 'Requests_Proxy_HTTP' => $vendorDir . '/rmccue/requests/library/Requests/Proxy/HTTP.php', + 'Requests_Response' => $vendorDir . '/rmccue/requests/library/Requests/Response.php', + 'Requests_Response_Headers' => $vendorDir . '/rmccue/requests/library/Requests/Response/Headers.php', + 'Requests_SSL' => $vendorDir . '/rmccue/requests/library/Requests/SSL.php', + 'Requests_Session' => $vendorDir . '/rmccue/requests/library/Requests/Session.php', + 'Requests_Transport' => $vendorDir . '/rmccue/requests/library/Requests/Transport.php', + 'Requests_Transport_cURL' => $vendorDir . '/rmccue/requests/library/Requests/Transport/cURL.php', + 'Requests_Transport_fsockopen' => $vendorDir . '/rmccue/requests/library/Requests/Transport/fsockopen.php', + 'Requests_Utility_CaseInsensitiveDictionary' => $vendorDir . '/rmccue/requests/library/Requests/Utility/CaseInsensitiveDictionary.php', + 'Requests_Utility_FilteredIterator' => $vendorDir . '/rmccue/requests/library/Requests/Utility/FilteredIterator.php', + 'Rewrite_Command' => $vendorDir . '/wp-cli/rewrite-command/src/Rewrite_Command.php', + 'Role_Command' => $vendorDir . '/wp-cli/role-command/src/Role_Command.php', + 'Scaffold_Command' => $vendorDir . '/wp-cli/scaffold-command/src/Scaffold_Command.php', + 'Search_Replace_Command' => $vendorDir . '/wp-cli/search-replace-command/src/Search_Replace_Command.php', + 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage.php', + 'SebastianBergmann\\CodeCoverage\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php', + 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Driver.php', + 'SebastianBergmann\\CodeCoverage\\Driver\\PHPDBG' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/PHPDBG.php', + 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Xdebug.php', + 'SebastianBergmann\\CodeCoverage\\Exception' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/Exception.php', + 'SebastianBergmann\\CodeCoverage\\Filter' => $vendorDir . '/phpunit/php-code-coverage/src/Filter.php', + 'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php', + 'SebastianBergmann\\CodeCoverage\\MissingCoversAnnotationException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php', + 'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => $vendorDir . '/phpunit/php-code-coverage/src/Node/AbstractNode.php', + 'SebastianBergmann\\CodeCoverage\\Node\\Builder' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Builder.php', + 'SebastianBergmann\\CodeCoverage\\Node\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Directory.php', + 'SebastianBergmann\\CodeCoverage\\Node\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Node/File.php', + 'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Iterator.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Clover' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Clover.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Crap4j.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Facade.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php', + 'SebastianBergmann\\CodeCoverage\\Report\\PHP' => $vendorDir . '/phpunit/php-code-coverage/src/Report/PHP.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Text' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Text.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/File.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Method.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Node.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Project.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Report.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Source.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php', + 'SebastianBergmann\\CodeCoverage\\RuntimeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/RuntimeException.php', + 'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php', + 'SebastianBergmann\\CodeCoverage\\Util' => $vendorDir . '/phpunit/php-code-coverage/src/Util.php', + 'SebastianBergmann\\CodeCoverage\\Version' => $vendorDir . '/phpunit/php-code-coverage/src/Version.php', + 'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => $vendorDir . '/sebastian/code-unit-reverse-lookup/src/Wizard.php', + 'SebastianBergmann\\Comparator\\ArrayComparator' => $vendorDir . '/sebastian/comparator/src/ArrayComparator.php', + 'SebastianBergmann\\Comparator\\Comparator' => $vendorDir . '/sebastian/comparator/src/Comparator.php', + 'SebastianBergmann\\Comparator\\ComparisonFailure' => $vendorDir . '/sebastian/comparator/src/ComparisonFailure.php', + 'SebastianBergmann\\Comparator\\DOMNodeComparator' => $vendorDir . '/sebastian/comparator/src/DOMNodeComparator.php', + 'SebastianBergmann\\Comparator\\DateTimeComparator' => $vendorDir . '/sebastian/comparator/src/DateTimeComparator.php', + 'SebastianBergmann\\Comparator\\DoubleComparator' => $vendorDir . '/sebastian/comparator/src/DoubleComparator.php', + 'SebastianBergmann\\Comparator\\ExceptionComparator' => $vendorDir . '/sebastian/comparator/src/ExceptionComparator.php', + 'SebastianBergmann\\Comparator\\Factory' => $vendorDir . '/sebastian/comparator/src/Factory.php', + 'SebastianBergmann\\Comparator\\MockObjectComparator' => $vendorDir . '/sebastian/comparator/src/MockObjectComparator.php', + 'SebastianBergmann\\Comparator\\NumericComparator' => $vendorDir . '/sebastian/comparator/src/NumericComparator.php', + 'SebastianBergmann\\Comparator\\ObjectComparator' => $vendorDir . '/sebastian/comparator/src/ObjectComparator.php', + 'SebastianBergmann\\Comparator\\ResourceComparator' => $vendorDir . '/sebastian/comparator/src/ResourceComparator.php', + 'SebastianBergmann\\Comparator\\ScalarComparator' => $vendorDir . '/sebastian/comparator/src/ScalarComparator.php', + 'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => $vendorDir . '/sebastian/comparator/src/SplObjectStorageComparator.php', + 'SebastianBergmann\\Comparator\\TypeComparator' => $vendorDir . '/sebastian/comparator/src/TypeComparator.php', + 'SebastianBergmann\\Diff\\Chunk' => $vendorDir . '/sebastian/diff/src/Chunk.php', + 'SebastianBergmann\\Diff\\ConfigurationException' => $vendorDir . '/sebastian/diff/src/Exception/ConfigurationException.php', + 'SebastianBergmann\\Diff\\Diff' => $vendorDir . '/sebastian/diff/src/Diff.php', + 'SebastianBergmann\\Diff\\Differ' => $vendorDir . '/sebastian/diff/src/Differ.php', + 'SebastianBergmann\\Diff\\Exception' => $vendorDir . '/sebastian/diff/src/Exception/Exception.php', + 'SebastianBergmann\\Diff\\InvalidArgumentException' => $vendorDir . '/sebastian/diff/src/Exception/InvalidArgumentException.php', + 'SebastianBergmann\\Diff\\Line' => $vendorDir . '/sebastian/diff/src/Line.php', + 'SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/LongestCommonSubsequenceCalculator.php', + 'SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php', + 'SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php', + 'SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php', + 'SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => $vendorDir . '/sebastian/diff/src/Output/DiffOutputBuilderInterface.php', + 'SebastianBergmann\\Diff\\Output\\StrictUnifiedDiffOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php', + 'SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php', + 'SebastianBergmann\\Diff\\Parser' => $vendorDir . '/sebastian/diff/src/Parser.php', + 'SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php', + 'SebastianBergmann\\Environment\\Console' => $vendorDir . '/sebastian/environment/src/Console.php', + 'SebastianBergmann\\Environment\\OperatingSystem' => $vendorDir . '/sebastian/environment/src/OperatingSystem.php', + 'SebastianBergmann\\Environment\\Runtime' => $vendorDir . '/sebastian/environment/src/Runtime.php', + 'SebastianBergmann\\Exporter\\Exporter' => $vendorDir . '/sebastian/exporter/src/Exporter.php', + 'SebastianBergmann\\FileIterator\\Facade' => $vendorDir . '/phpunit/php-file-iterator/src/Facade.php', + 'SebastianBergmann\\FileIterator\\Factory' => $vendorDir . '/phpunit/php-file-iterator/src/Factory.php', + 'SebastianBergmann\\FileIterator\\Iterator' => $vendorDir . '/phpunit/php-file-iterator/src/Iterator.php', + 'SebastianBergmann\\GlobalState\\Blacklist' => $vendorDir . '/sebastian/global-state/src/Blacklist.php', + 'SebastianBergmann\\GlobalState\\CodeExporter' => $vendorDir . '/sebastian/global-state/src/CodeExporter.php', + 'SebastianBergmann\\GlobalState\\Exception' => $vendorDir . '/sebastian/global-state/src/exceptions/Exception.php', + 'SebastianBergmann\\GlobalState\\Restorer' => $vendorDir . '/sebastian/global-state/src/Restorer.php', + 'SebastianBergmann\\GlobalState\\RuntimeException' => $vendorDir . '/sebastian/global-state/src/exceptions/RuntimeException.php', + 'SebastianBergmann\\GlobalState\\Snapshot' => $vendorDir . '/sebastian/global-state/src/Snapshot.php', + 'SebastianBergmann\\ObjectEnumerator\\Enumerator' => $vendorDir . '/sebastian/object-enumerator/src/Enumerator.php', + 'SebastianBergmann\\ObjectEnumerator\\Exception' => $vendorDir . '/sebastian/object-enumerator/src/Exception.php', + 'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => $vendorDir . '/sebastian/object-enumerator/src/InvalidArgumentException.php', + 'SebastianBergmann\\ObjectReflector\\Exception' => $vendorDir . '/sebastian/object-reflector/src/Exception.php', + 'SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => $vendorDir . '/sebastian/object-reflector/src/InvalidArgumentException.php', + 'SebastianBergmann\\ObjectReflector\\ObjectReflector' => $vendorDir . '/sebastian/object-reflector/src/ObjectReflector.php', + 'SebastianBergmann\\RecursionContext\\Context' => $vendorDir . '/sebastian/recursion-context/src/Context.php', + 'SebastianBergmann\\RecursionContext\\Exception' => $vendorDir . '/sebastian/recursion-context/src/Exception.php', + 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => $vendorDir . '/sebastian/recursion-context/src/InvalidArgumentException.php', + 'SebastianBergmann\\ResourceOperations\\ResourceOperations' => $vendorDir . '/sebastian/resource-operations/src/ResourceOperations.php', + 'SebastianBergmann\\Timer\\Exception' => $vendorDir . '/phpunit/php-timer/src/Exception.php', + 'SebastianBergmann\\Timer\\RuntimeException' => $vendorDir . '/phpunit/php-timer/src/RuntimeException.php', + 'SebastianBergmann\\Timer\\Timer' => $vendorDir . '/phpunit/php-timer/src/Timer.php', + 'SebastianBergmann\\Version' => $vendorDir . '/sebastian/version/src/Version.php', + 'Seld\\JsonLint\\DuplicateKeyException' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php', + 'Seld\\JsonLint\\JsonParser' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/JsonParser.php', + 'Seld\\JsonLint\\Lexer' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/Lexer.php', + 'Seld\\JsonLint\\ParsingException' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/ParsingException.php', + 'Seld\\JsonLint\\Undefined' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/Undefined.php', + 'Seld\\PharUtils\\Timestamps' => $vendorDir . '/seld/phar-utils/src/Timestamps.php', + 'Server_Command' => $vendorDir . '/wp-cli/server-command/src/Server_Command.php', + 'Shell_Command' => $vendorDir . '/wp-cli/shell-command/src/Shell_Command.php', + 'Sidebar_Command' => $vendorDir . '/wp-cli/widget-command/src/Sidebar_Command.php', + 'Site_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Command.php', + 'Site_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Meta_Command.php', + 'Site_Option_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Option_Command.php', + 'Site_Switch_Language_Command' => $vendorDir . '/wp-cli/language-command/src/Site_Switch_Language_Command.php', + 'Super_Admin_Command' => $vendorDir . '/wp-cli/super-admin-command/src/Super_Admin_Command.php', + 'Symfony\\Component\\BrowserKit\\AbstractBrowser' => $vendorDir . '/symfony/browser-kit/AbstractBrowser.php', + 'Symfony\\Component\\BrowserKit\\Client' => $vendorDir . '/symfony/browser-kit/Client.php', + 'Symfony\\Component\\BrowserKit\\Cookie' => $vendorDir . '/symfony/browser-kit/Cookie.php', + 'Symfony\\Component\\BrowserKit\\CookieJar' => $vendorDir . '/symfony/browser-kit/CookieJar.php', + 'Symfony\\Component\\BrowserKit\\Exception\\BadMethodCallException' => $vendorDir . '/symfony/browser-kit/Exception/BadMethodCallException.php', + 'Symfony\\Component\\BrowserKit\\History' => $vendorDir . '/symfony/browser-kit/History.php', + 'Symfony\\Component\\BrowserKit\\HttpBrowser' => $vendorDir . '/symfony/browser-kit/HttpBrowser.php', + 'Symfony\\Component\\BrowserKit\\Request' => $vendorDir . '/symfony/browser-kit/Request.php', + 'Symfony\\Component\\BrowserKit\\Response' => $vendorDir . '/symfony/browser-kit/Response.php', + 'Symfony\\Component\\BrowserKit\\Test\\Constraint\\BrowserCookieValueSame' => $vendorDir . '/symfony/browser-kit/Test/Constraint/BrowserCookieValueSame.php', + 'Symfony\\Component\\BrowserKit\\Test\\Constraint\\BrowserHasCookie' => $vendorDir . '/symfony/browser-kit/Test/Constraint/BrowserHasCookie.php', + 'Symfony\\Component\\Console\\Application' => $vendorDir . '/symfony/console/Application.php', + 'Symfony\\Component\\Console\\CommandLoader\\CommandLoaderInterface' => $vendorDir . '/symfony/console/CommandLoader/CommandLoaderInterface.php', + 'Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader' => $vendorDir . '/symfony/console/CommandLoader/ContainerCommandLoader.php', + 'Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader' => $vendorDir . '/symfony/console/CommandLoader/FactoryCommandLoader.php', + 'Symfony\\Component\\Console\\Command\\Command' => $vendorDir . '/symfony/console/Command/Command.php', + 'Symfony\\Component\\Console\\Command\\HelpCommand' => $vendorDir . '/symfony/console/Command/HelpCommand.php', + 'Symfony\\Component\\Console\\Command\\ListCommand' => $vendorDir . '/symfony/console/Command/ListCommand.php', + 'Symfony\\Component\\Console\\Command\\LockableTrait' => $vendorDir . '/symfony/console/Command/LockableTrait.php', + 'Symfony\\Component\\Console\\ConsoleEvents' => $vendorDir . '/symfony/console/ConsoleEvents.php', + 'Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass' => $vendorDir . '/symfony/console/DependencyInjection/AddConsoleCommandPass.php', + 'Symfony\\Component\\Console\\Descriptor\\ApplicationDescription' => $vendorDir . '/symfony/console/Descriptor/ApplicationDescription.php', + 'Symfony\\Component\\Console\\Descriptor\\Descriptor' => $vendorDir . '/symfony/console/Descriptor/Descriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\DescriptorInterface' => $vendorDir . '/symfony/console/Descriptor/DescriptorInterface.php', + 'Symfony\\Component\\Console\\Descriptor\\JsonDescriptor' => $vendorDir . '/symfony/console/Descriptor/JsonDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\MarkdownDescriptor' => $vendorDir . '/symfony/console/Descriptor/MarkdownDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\TextDescriptor' => $vendorDir . '/symfony/console/Descriptor/TextDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\XmlDescriptor' => $vendorDir . '/symfony/console/Descriptor/XmlDescriptor.php', + 'Symfony\\Component\\Console\\EventListener\\ErrorListener' => $vendorDir . '/symfony/console/EventListener/ErrorListener.php', + 'Symfony\\Component\\Console\\Event\\ConsoleCommandEvent' => $vendorDir . '/symfony/console/Event/ConsoleCommandEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleErrorEvent' => $vendorDir . '/symfony/console/Event/ConsoleErrorEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleEvent' => $vendorDir . '/symfony/console/Event/ConsoleEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent' => $vendorDir . '/symfony/console/Event/ConsoleTerminateEvent.php', + 'Symfony\\Component\\Console\\Exception\\CommandNotFoundException' => $vendorDir . '/symfony/console/Exception/CommandNotFoundException.php', + 'Symfony\\Component\\Console\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/console/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Console\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/console/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\Console\\Exception\\InvalidOptionException' => $vendorDir . '/symfony/console/Exception/InvalidOptionException.php', + 'Symfony\\Component\\Console\\Exception\\LogicException' => $vendorDir . '/symfony/console/Exception/LogicException.php', + 'Symfony\\Component\\Console\\Exception\\NamespaceNotFoundException' => $vendorDir . '/symfony/console/Exception/NamespaceNotFoundException.php', + 'Symfony\\Component\\Console\\Exception\\RuntimeException' => $vendorDir . '/symfony/console/Exception/RuntimeException.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatter' => $vendorDir . '/symfony/console/Formatter/OutputFormatter.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterInterface.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyle.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleInterface.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleStack.php', + 'Symfony\\Component\\Console\\Formatter\\WrappableOutputFormatterInterface' => $vendorDir . '/symfony/console/Formatter/WrappableOutputFormatterInterface.php', + 'Symfony\\Component\\Console\\Helper\\DebugFormatterHelper' => $vendorDir . '/symfony/console/Helper/DebugFormatterHelper.php', + 'Symfony\\Component\\Console\\Helper\\DescriptorHelper' => $vendorDir . '/symfony/console/Helper/DescriptorHelper.php', + 'Symfony\\Component\\Console\\Helper\\Dumper' => $vendorDir . '/symfony/console/Helper/Dumper.php', + 'Symfony\\Component\\Console\\Helper\\FormatterHelper' => $vendorDir . '/symfony/console/Helper/FormatterHelper.php', + 'Symfony\\Component\\Console\\Helper\\Helper' => $vendorDir . '/symfony/console/Helper/Helper.php', + 'Symfony\\Component\\Console\\Helper\\HelperInterface' => $vendorDir . '/symfony/console/Helper/HelperInterface.php', + 'Symfony\\Component\\Console\\Helper\\HelperSet' => $vendorDir . '/symfony/console/Helper/HelperSet.php', + 'Symfony\\Component\\Console\\Helper\\InputAwareHelper' => $vendorDir . '/symfony/console/Helper/InputAwareHelper.php', + 'Symfony\\Component\\Console\\Helper\\ProcessHelper' => $vendorDir . '/symfony/console/Helper/ProcessHelper.php', + 'Symfony\\Component\\Console\\Helper\\ProgressBar' => $vendorDir . '/symfony/console/Helper/ProgressBar.php', + 'Symfony\\Component\\Console\\Helper\\ProgressIndicator' => $vendorDir . '/symfony/console/Helper/ProgressIndicator.php', + 'Symfony\\Component\\Console\\Helper\\QuestionHelper' => $vendorDir . '/symfony/console/Helper/QuestionHelper.php', + 'Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper' => $vendorDir . '/symfony/console/Helper/SymfonyQuestionHelper.php', + 'Symfony\\Component\\Console\\Helper\\Table' => $vendorDir . '/symfony/console/Helper/Table.php', + 'Symfony\\Component\\Console\\Helper\\TableCell' => $vendorDir . '/symfony/console/Helper/TableCell.php', + 'Symfony\\Component\\Console\\Helper\\TableRows' => $vendorDir . '/symfony/console/Helper/TableRows.php', + 'Symfony\\Component\\Console\\Helper\\TableSeparator' => $vendorDir . '/symfony/console/Helper/TableSeparator.php', + 'Symfony\\Component\\Console\\Helper\\TableStyle' => $vendorDir . '/symfony/console/Helper/TableStyle.php', + 'Symfony\\Component\\Console\\Input\\ArgvInput' => $vendorDir . '/symfony/console/Input/ArgvInput.php', + 'Symfony\\Component\\Console\\Input\\ArrayInput' => $vendorDir . '/symfony/console/Input/ArrayInput.php', + 'Symfony\\Component\\Console\\Input\\Input' => $vendorDir . '/symfony/console/Input/Input.php', + 'Symfony\\Component\\Console\\Input\\InputArgument' => $vendorDir . '/symfony/console/Input/InputArgument.php', + 'Symfony\\Component\\Console\\Input\\InputAwareInterface' => $vendorDir . '/symfony/console/Input/InputAwareInterface.php', + 'Symfony\\Component\\Console\\Input\\InputDefinition' => $vendorDir . '/symfony/console/Input/InputDefinition.php', + 'Symfony\\Component\\Console\\Input\\InputInterface' => $vendorDir . '/symfony/console/Input/InputInterface.php', + 'Symfony\\Component\\Console\\Input\\InputOption' => $vendorDir . '/symfony/console/Input/InputOption.php', + 'Symfony\\Component\\Console\\Input\\StreamableInputInterface' => $vendorDir . '/symfony/console/Input/StreamableInputInterface.php', + 'Symfony\\Component\\Console\\Input\\StringInput' => $vendorDir . '/symfony/console/Input/StringInput.php', + 'Symfony\\Component\\Console\\Logger\\ConsoleLogger' => $vendorDir . '/symfony/console/Logger/ConsoleLogger.php', + 'Symfony\\Component\\Console\\Output\\BufferedOutput' => $vendorDir . '/symfony/console/Output/BufferedOutput.php', + 'Symfony\\Component\\Console\\Output\\ConsoleOutput' => $vendorDir . '/symfony/console/Output/ConsoleOutput.php', + 'Symfony\\Component\\Console\\Output\\ConsoleOutputInterface' => $vendorDir . '/symfony/console/Output/ConsoleOutputInterface.php', + 'Symfony\\Component\\Console\\Output\\ConsoleSectionOutput' => $vendorDir . '/symfony/console/Output/ConsoleSectionOutput.php', + 'Symfony\\Component\\Console\\Output\\NullOutput' => $vendorDir . '/symfony/console/Output/NullOutput.php', + 'Symfony\\Component\\Console\\Output\\Output' => $vendorDir . '/symfony/console/Output/Output.php', + 'Symfony\\Component\\Console\\Output\\OutputInterface' => $vendorDir . '/symfony/console/Output/OutputInterface.php', + 'Symfony\\Component\\Console\\Output\\StreamOutput' => $vendorDir . '/symfony/console/Output/StreamOutput.php', + 'Symfony\\Component\\Console\\Question\\ChoiceQuestion' => $vendorDir . '/symfony/console/Question/ChoiceQuestion.php', + 'Symfony\\Component\\Console\\Question\\ConfirmationQuestion' => $vendorDir . '/symfony/console/Question/ConfirmationQuestion.php', + 'Symfony\\Component\\Console\\Question\\Question' => $vendorDir . '/symfony/console/Question/Question.php', + 'Symfony\\Component\\Console\\Style\\OutputStyle' => $vendorDir . '/symfony/console/Style/OutputStyle.php', + 'Symfony\\Component\\Console\\Style\\StyleInterface' => $vendorDir . '/symfony/console/Style/StyleInterface.php', + 'Symfony\\Component\\Console\\Style\\SymfonyStyle' => $vendorDir . '/symfony/console/Style/SymfonyStyle.php', + 'Symfony\\Component\\Console\\Terminal' => $vendorDir . '/symfony/console/Terminal.php', + 'Symfony\\Component\\Console\\Tester\\ApplicationTester' => $vendorDir . '/symfony/console/Tester/ApplicationTester.php', + 'Symfony\\Component\\Console\\Tester\\CommandTester' => $vendorDir . '/symfony/console/Tester/CommandTester.php', + 'Symfony\\Component\\Console\\Tester\\TesterTrait' => $vendorDir . '/symfony/console/Tester/TesterTrait.php', + 'Symfony\\Component\\CssSelector\\CssSelectorConverter' => $vendorDir . '/symfony/css-selector/CssSelectorConverter.php', + 'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/css-selector/Exception/ExceptionInterface.php', + 'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => $vendorDir . '/symfony/css-selector/Exception/ExpressionErrorException.php', + 'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => $vendorDir . '/symfony/css-selector/Exception/InternalErrorException.php', + 'Symfony\\Component\\CssSelector\\Exception\\ParseException' => $vendorDir . '/symfony/css-selector/Exception/ParseException.php', + 'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => $vendorDir . '/symfony/css-selector/Exception/SyntaxErrorException.php', + 'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => $vendorDir . '/symfony/css-selector/Node/AbstractNode.php', + 'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => $vendorDir . '/symfony/css-selector/Node/AttributeNode.php', + 'Symfony\\Component\\CssSelector\\Node\\ClassNode' => $vendorDir . '/symfony/css-selector/Node/ClassNode.php', + 'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => $vendorDir . '/symfony/css-selector/Node/CombinedSelectorNode.php', + 'Symfony\\Component\\CssSelector\\Node\\ElementNode' => $vendorDir . '/symfony/css-selector/Node/ElementNode.php', + 'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => $vendorDir . '/symfony/css-selector/Node/FunctionNode.php', + 'Symfony\\Component\\CssSelector\\Node\\HashNode' => $vendorDir . '/symfony/css-selector/Node/HashNode.php', + 'Symfony\\Component\\CssSelector\\Node\\NegationNode' => $vendorDir . '/symfony/css-selector/Node/NegationNode.php', + 'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => $vendorDir . '/symfony/css-selector/Node/NodeInterface.php', + 'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => $vendorDir . '/symfony/css-selector/Node/PseudoNode.php', + 'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => $vendorDir . '/symfony/css-selector/Node/SelectorNode.php', + 'Symfony\\Component\\CssSelector\\Node\\Specificity' => $vendorDir . '/symfony/css-selector/Node/Specificity.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/CommentHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => $vendorDir . '/symfony/css-selector/Parser/Handler/HandlerInterface.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/HashHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/NumberHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/StringHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Parser' => $vendorDir . '/symfony/css-selector/Parser/Parser.php', + 'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => $vendorDir . '/symfony/css-selector/Parser/ParserInterface.php', + 'Symfony\\Component\\CssSelector\\Parser\\Reader' => $vendorDir . '/symfony/css-selector/Parser/Reader.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ClassParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ElementParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/HashParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Token' => $vendorDir . '/symfony/css-selector/Parser/Token.php', + 'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => $vendorDir . '/symfony/css-selector/Parser/TokenStream.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/AbstractExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/CombinationExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => $vendorDir . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/FunctionExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/HtmlExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/NodeExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Translator' => $vendorDir . '/symfony/css-selector/XPath/Translator.php', + 'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => $vendorDir . '/symfony/css-selector/XPath/TranslatorInterface.php', + 'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => $vendorDir . '/symfony/css-selector/XPath/XPathExpr.php', + 'Symfony\\Component\\DomCrawler\\AbstractUriElement' => $vendorDir . '/symfony/dom-crawler/AbstractUriElement.php', + 'Symfony\\Component\\DomCrawler\\Crawler' => $vendorDir . '/symfony/dom-crawler/Crawler.php', + 'Symfony\\Component\\DomCrawler\\Field\\ChoiceFormField' => $vendorDir . '/symfony/dom-crawler/Field/ChoiceFormField.php', + 'Symfony\\Component\\DomCrawler\\Field\\FileFormField' => $vendorDir . '/symfony/dom-crawler/Field/FileFormField.php', + 'Symfony\\Component\\DomCrawler\\Field\\FormField' => $vendorDir . '/symfony/dom-crawler/Field/FormField.php', + 'Symfony\\Component\\DomCrawler\\Field\\InputFormField' => $vendorDir . '/symfony/dom-crawler/Field/InputFormField.php', + 'Symfony\\Component\\DomCrawler\\Field\\TextareaFormField' => $vendorDir . '/symfony/dom-crawler/Field/TextareaFormField.php', + 'Symfony\\Component\\DomCrawler\\Form' => $vendorDir . '/symfony/dom-crawler/Form.php', + 'Symfony\\Component\\DomCrawler\\FormFieldRegistry' => $vendorDir . '/symfony/dom-crawler/FormFieldRegistry.php', + 'Symfony\\Component\\DomCrawler\\Image' => $vendorDir . '/symfony/dom-crawler/Image.php', + 'Symfony\\Component\\DomCrawler\\Link' => $vendorDir . '/symfony/dom-crawler/Link.php', + 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorAttributeValueSame' => $vendorDir . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorAttributeValueSame.php', + 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorExists' => $vendorDir . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorExists.php', + 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorTextContains' => $vendorDir . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorTextContains.php', + 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorTextSame' => $vendorDir . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorTextSame.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcherInterface' => $vendorDir . '/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener' => $vendorDir . '/symfony/event-dispatcher/Debug/WrappedListener.php', + 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\ExtractingEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', + 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\RegisterListenersPass' => $vendorDir . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', + 'Symfony\\Component\\EventDispatcher\\Event' => $vendorDir . '/symfony/event-dispatcher/Event.php', + 'Symfony\\Component\\EventDispatcher\\EventDispatcher' => $vendorDir . '/symfony/event-dispatcher/EventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\EventDispatcherInterface' => $vendorDir . '/symfony/event-dispatcher/EventDispatcherInterface.php', + 'Symfony\\Component\\EventDispatcher\\EventSubscriberInterface' => $vendorDir . '/symfony/event-dispatcher/EventSubscriberInterface.php', + 'Symfony\\Component\\EventDispatcher\\GenericEvent' => $vendorDir . '/symfony/event-dispatcher/GenericEvent.php', + 'Symfony\\Component\\EventDispatcher\\ImmutableEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/ImmutableEventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\LegacyEventDispatcherProxy' => $vendorDir . '/symfony/event-dispatcher/LegacyEventDispatcherProxy.php', + 'Symfony\\Component\\EventDispatcher\\LegacyEventProxy' => $vendorDir . '/symfony/event-dispatcher/LegacyEventProxy.php', + 'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => $vendorDir . '/symfony/filesystem/Exception/FileNotFoundException.php', + 'Symfony\\Component\\Filesystem\\Exception\\IOException' => $vendorDir . '/symfony/filesystem/Exception/IOException.php', + 'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/IOExceptionInterface.php', + 'Symfony\\Component\\Filesystem\\Filesystem' => $vendorDir . '/symfony/filesystem/Filesystem.php', + 'Symfony\\Component\\Filesystem\\LockHandler' => $vendorDir . '/symfony/filesystem/LockHandler.php', + 'Symfony\\Component\\Finder\\Comparator\\Comparator' => $vendorDir . '/symfony/finder/Comparator/Comparator.php', + 'Symfony\\Component\\Finder\\Comparator\\DateComparator' => $vendorDir . '/symfony/finder/Comparator/DateComparator.php', + 'Symfony\\Component\\Finder\\Comparator\\NumberComparator' => $vendorDir . '/symfony/finder/Comparator/NumberComparator.php', + 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException' => $vendorDir . '/symfony/finder/Exception/AccessDeniedException.php', + 'Symfony\\Component\\Finder\\Exception\\DirectoryNotFoundException' => $vendorDir . '/symfony/finder/Exception/DirectoryNotFoundException.php', + 'Symfony\\Component\\Finder\\Finder' => $vendorDir . '/symfony/finder/Finder.php', + 'Symfony\\Component\\Finder\\Gitignore' => $vendorDir . '/symfony/finder/Gitignore.php', + 'Symfony\\Component\\Finder\\Glob' => $vendorDir . '/symfony/finder/Glob.php', + 'Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator' => $vendorDir . '/symfony/finder/Iterator/CustomFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DateRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DepthRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator' => $vendorDir . '/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FileTypeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilecontentFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilenameFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator' => $vendorDir . '/symfony/finder/Iterator/MultiplePcreFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\PathFilterIterator' => $vendorDir . '/symfony/finder/Iterator/PathFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator' => $vendorDir . '/symfony/finder/Iterator/RecursiveDirectoryIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/SizeRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => $vendorDir . '/symfony/finder/Iterator/SortableIterator.php', + 'Symfony\\Component\\Finder\\SplFileInfo' => $vendorDir . '/symfony/finder/SplFileInfo.php', + 'Symfony\\Component\\Process\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/process/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Process\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/process/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\Process\\Exception\\LogicException' => $vendorDir . '/symfony/process/Exception/LogicException.php', + 'Symfony\\Component\\Process\\Exception\\ProcessFailedException' => $vendorDir . '/symfony/process/Exception/ProcessFailedException.php', + 'Symfony\\Component\\Process\\Exception\\ProcessSignaledException' => $vendorDir . '/symfony/process/Exception/ProcessSignaledException.php', + 'Symfony\\Component\\Process\\Exception\\ProcessTimedOutException' => $vendorDir . '/symfony/process/Exception/ProcessTimedOutException.php', + 'Symfony\\Component\\Process\\Exception\\RuntimeException' => $vendorDir . '/symfony/process/Exception/RuntimeException.php', + 'Symfony\\Component\\Process\\ExecutableFinder' => $vendorDir . '/symfony/process/ExecutableFinder.php', + 'Symfony\\Component\\Process\\InputStream' => $vendorDir . '/symfony/process/InputStream.php', + 'Symfony\\Component\\Process\\PhpExecutableFinder' => $vendorDir . '/symfony/process/PhpExecutableFinder.php', + 'Symfony\\Component\\Process\\PhpProcess' => $vendorDir . '/symfony/process/PhpProcess.php', + 'Symfony\\Component\\Process\\Pipes\\AbstractPipes' => $vendorDir . '/symfony/process/Pipes/AbstractPipes.php', + 'Symfony\\Component\\Process\\Pipes\\PipesInterface' => $vendorDir . '/symfony/process/Pipes/PipesInterface.php', + 'Symfony\\Component\\Process\\Pipes\\UnixPipes' => $vendorDir . '/symfony/process/Pipes/UnixPipes.php', + 'Symfony\\Component\\Process\\Pipes\\WindowsPipes' => $vendorDir . '/symfony/process/Pipes/WindowsPipes.php', + 'Symfony\\Component\\Process\\Process' => $vendorDir . '/symfony/process/Process.php', + 'Symfony\\Component\\Process\\ProcessUtils' => $vendorDir . '/symfony/process/ProcessUtils.php', + 'Symfony\\Component\\Translation\\Catalogue\\AbstractOperation' => $vendorDir . '/symfony/translation/Catalogue/AbstractOperation.php', + 'Symfony\\Component\\Translation\\Catalogue\\MergeOperation' => $vendorDir . '/symfony/translation/Catalogue/MergeOperation.php', + 'Symfony\\Component\\Translation\\Catalogue\\OperationInterface' => $vendorDir . '/symfony/translation/Catalogue/OperationInterface.php', + 'Symfony\\Component\\Translation\\Catalogue\\TargetOperation' => $vendorDir . '/symfony/translation/Catalogue/TargetOperation.php', + 'Symfony\\Component\\Translation\\Command\\XliffLintCommand' => $vendorDir . '/symfony/translation/Command/XliffLintCommand.php', + 'Symfony\\Component\\Translation\\DataCollectorTranslator' => $vendorDir . '/symfony/translation/DataCollectorTranslator.php', + 'Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector' => $vendorDir . '/symfony/translation/DataCollector/TranslationDataCollector.php', + 'Symfony\\Component\\Translation\\DependencyInjection\\TranslationDumperPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslationDumperPass.php', + 'Symfony\\Component\\Translation\\DependencyInjection\\TranslationExtractorPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslationExtractorPass.php', + 'Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslatorPass.php', + 'Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslatorPathsPass.php', + 'Symfony\\Component\\Translation\\Dumper\\CsvFileDumper' => $vendorDir . '/symfony/translation/Dumper/CsvFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\DumperInterface' => $vendorDir . '/symfony/translation/Dumper/DumperInterface.php', + 'Symfony\\Component\\Translation\\Dumper\\FileDumper' => $vendorDir . '/symfony/translation/Dumper/FileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper' => $vendorDir . '/symfony/translation/Dumper/IcuResFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\IniFileDumper' => $vendorDir . '/symfony/translation/Dumper/IniFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\JsonFileDumper' => $vendorDir . '/symfony/translation/Dumper/JsonFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\MoFileDumper' => $vendorDir . '/symfony/translation/Dumper/MoFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\PhpFileDumper' => $vendorDir . '/symfony/translation/Dumper/PhpFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\PoFileDumper' => $vendorDir . '/symfony/translation/Dumper/PoFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\QtFileDumper' => $vendorDir . '/symfony/translation/Dumper/QtFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\XliffFileDumper' => $vendorDir . '/symfony/translation/Dumper/XliffFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\YamlFileDumper' => $vendorDir . '/symfony/translation/Dumper/YamlFileDumper.php', + 'Symfony\\Component\\Translation\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/translation/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Translation\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/translation/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\Translation\\Exception\\InvalidResourceException' => $vendorDir . '/symfony/translation/Exception/InvalidResourceException.php', + 'Symfony\\Component\\Translation\\Exception\\LogicException' => $vendorDir . '/symfony/translation/Exception/LogicException.php', + 'Symfony\\Component\\Translation\\Exception\\NotFoundResourceException' => $vendorDir . '/symfony/translation/Exception/NotFoundResourceException.php', + 'Symfony\\Component\\Translation\\Exception\\RuntimeException' => $vendorDir . '/symfony/translation/Exception/RuntimeException.php', + 'Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor' => $vendorDir . '/symfony/translation/Extractor/AbstractFileExtractor.php', + 'Symfony\\Component\\Translation\\Extractor\\ChainExtractor' => $vendorDir . '/symfony/translation/Extractor/ChainExtractor.php', + 'Symfony\\Component\\Translation\\Extractor\\ExtractorInterface' => $vendorDir . '/symfony/translation/Extractor/ExtractorInterface.php', + 'Symfony\\Component\\Translation\\Extractor\\PhpExtractor' => $vendorDir . '/symfony/translation/Extractor/PhpExtractor.php', + 'Symfony\\Component\\Translation\\Extractor\\PhpStringTokenParser' => $vendorDir . '/symfony/translation/Extractor/PhpStringTokenParser.php', + 'Symfony\\Component\\Translation\\Formatter\\ChoiceMessageFormatterInterface' => $vendorDir . '/symfony/translation/Formatter/ChoiceMessageFormatterInterface.php', + 'Symfony\\Component\\Translation\\Formatter\\IntlFormatter' => $vendorDir . '/symfony/translation/Formatter/IntlFormatter.php', + 'Symfony\\Component\\Translation\\Formatter\\IntlFormatterInterface' => $vendorDir . '/symfony/translation/Formatter/IntlFormatterInterface.php', + 'Symfony\\Component\\Translation\\Formatter\\MessageFormatter' => $vendorDir . '/symfony/translation/Formatter/MessageFormatter.php', + 'Symfony\\Component\\Translation\\Formatter\\MessageFormatterInterface' => $vendorDir . '/symfony/translation/Formatter/MessageFormatterInterface.php', + 'Symfony\\Component\\Translation\\IdentityTranslator' => $vendorDir . '/symfony/translation/IdentityTranslator.php', + 'Symfony\\Component\\Translation\\Interval' => $vendorDir . '/symfony/translation/Interval.php', + 'Symfony\\Component\\Translation\\Loader\\ArrayLoader' => $vendorDir . '/symfony/translation/Loader/ArrayLoader.php', + 'Symfony\\Component\\Translation\\Loader\\CsvFileLoader' => $vendorDir . '/symfony/translation/Loader/CsvFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\FileLoader' => $vendorDir . '/symfony/translation/Loader/FileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IcuDatFileLoader' => $vendorDir . '/symfony/translation/Loader/IcuDatFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IcuResFileLoader' => $vendorDir . '/symfony/translation/Loader/IcuResFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IniFileLoader' => $vendorDir . '/symfony/translation/Loader/IniFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\JsonFileLoader' => $vendorDir . '/symfony/translation/Loader/JsonFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\LoaderInterface' => $vendorDir . '/symfony/translation/Loader/LoaderInterface.php', + 'Symfony\\Component\\Translation\\Loader\\MoFileLoader' => $vendorDir . '/symfony/translation/Loader/MoFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\PhpFileLoader' => $vendorDir . '/symfony/translation/Loader/PhpFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\PoFileLoader' => $vendorDir . '/symfony/translation/Loader/PoFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\QtFileLoader' => $vendorDir . '/symfony/translation/Loader/QtFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\XliffFileLoader' => $vendorDir . '/symfony/translation/Loader/XliffFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\YamlFileLoader' => $vendorDir . '/symfony/translation/Loader/YamlFileLoader.php', + 'Symfony\\Component\\Translation\\LoggingTranslator' => $vendorDir . '/symfony/translation/LoggingTranslator.php', + 'Symfony\\Component\\Translation\\MessageCatalogue' => $vendorDir . '/symfony/translation/MessageCatalogue.php', + 'Symfony\\Component\\Translation\\MessageCatalogueInterface' => $vendorDir . '/symfony/translation/MessageCatalogueInterface.php', + 'Symfony\\Component\\Translation\\MessageSelector' => $vendorDir . '/symfony/translation/MessageSelector.php', + 'Symfony\\Component\\Translation\\MetadataAwareInterface' => $vendorDir . '/symfony/translation/MetadataAwareInterface.php', + 'Symfony\\Component\\Translation\\PluralizationRules' => $vendorDir . '/symfony/translation/PluralizationRules.php', + 'Symfony\\Component\\Translation\\Reader\\TranslationReader' => $vendorDir . '/symfony/translation/Reader/TranslationReader.php', + 'Symfony\\Component\\Translation\\Reader\\TranslationReaderInterface' => $vendorDir . '/symfony/translation/Reader/TranslationReaderInterface.php', + 'Symfony\\Component\\Translation\\Translator' => $vendorDir . '/symfony/translation/Translator.php', + 'Symfony\\Component\\Translation\\TranslatorBagInterface' => $vendorDir . '/symfony/translation/TranslatorBagInterface.php', + 'Symfony\\Component\\Translation\\TranslatorInterface' => $vendorDir . '/symfony/translation/TranslatorInterface.php', + 'Symfony\\Component\\Translation\\Util\\ArrayConverter' => $vendorDir . '/symfony/translation/Util/ArrayConverter.php', + 'Symfony\\Component\\Translation\\Util\\XliffUtils' => $vendorDir . '/symfony/translation/Util/XliffUtils.php', + 'Symfony\\Component\\Translation\\Writer\\TranslationWriter' => $vendorDir . '/symfony/translation/Writer/TranslationWriter.php', + 'Symfony\\Component\\Translation\\Writer\\TranslationWriterInterface' => $vendorDir . '/symfony/translation/Writer/TranslationWriterInterface.php', + 'Symfony\\Component\\Yaml\\Command\\LintCommand' => $vendorDir . '/symfony/yaml/Command/LintCommand.php', + 'Symfony\\Component\\Yaml\\Dumper' => $vendorDir . '/symfony/yaml/Dumper.php', + 'Symfony\\Component\\Yaml\\Escaper' => $vendorDir . '/symfony/yaml/Escaper.php', + 'Symfony\\Component\\Yaml\\Exception\\DumpException' => $vendorDir . '/symfony/yaml/Exception/DumpException.php', + 'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/yaml/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Yaml\\Exception\\ParseException' => $vendorDir . '/symfony/yaml/Exception/ParseException.php', + 'Symfony\\Component\\Yaml\\Exception\\RuntimeException' => $vendorDir . '/symfony/yaml/Exception/RuntimeException.php', + 'Symfony\\Component\\Yaml\\Inline' => $vendorDir . '/symfony/yaml/Inline.php', + 'Symfony\\Component\\Yaml\\Parser' => $vendorDir . '/symfony/yaml/Parser.php', + 'Symfony\\Component\\Yaml\\Tag\\TaggedValue' => $vendorDir . '/symfony/yaml/Tag/TaggedValue.php', + 'Symfony\\Component\\Yaml\\Unescaper' => $vendorDir . '/symfony/yaml/Unescaper.php', + 'Symfony\\Component\\Yaml\\Yaml' => $vendorDir . '/symfony/yaml/Yaml.php', + 'Symfony\\Contracts\\EventDispatcher\\Event' => $vendorDir . '/symfony/event-dispatcher-contracts/Event.php', + 'Symfony\\Contracts\\EventDispatcher\\EventDispatcherInterface' => $vendorDir . '/symfony/event-dispatcher-contracts/EventDispatcherInterface.php', + 'Symfony\\Contracts\\Service\\ResetInterface' => $vendorDir . '/symfony/service-contracts/ResetInterface.php', + 'Symfony\\Contracts\\Service\\ServiceLocatorTrait' => $vendorDir . '/symfony/service-contracts/ServiceLocatorTrait.php', + 'Symfony\\Contracts\\Service\\ServiceProviderInterface' => $vendorDir . '/symfony/service-contracts/ServiceProviderInterface.php', + 'Symfony\\Contracts\\Service\\ServiceSubscriberInterface' => $vendorDir . '/symfony/service-contracts/ServiceSubscriberInterface.php', + 'Symfony\\Contracts\\Service\\ServiceSubscriberTrait' => $vendorDir . '/symfony/service-contracts/ServiceSubscriberTrait.php', + 'Symfony\\Contracts\\Service\\Test\\ServiceLocatorTest' => $vendorDir . '/symfony/service-contracts/Test/ServiceLocatorTest.php', + 'Symfony\\Contracts\\Translation\\LocaleAwareInterface' => $vendorDir . '/symfony/translation-contracts/LocaleAwareInterface.php', + 'Symfony\\Contracts\\Translation\\Test\\TranslatorTest' => $vendorDir . '/symfony/translation-contracts/Test/TranslatorTest.php', + 'Symfony\\Contracts\\Translation\\TranslatorInterface' => $vendorDir . '/symfony/translation-contracts/TranslatorInterface.php', + 'Symfony\\Contracts\\Translation\\TranslatorTrait' => $vendorDir . '/symfony/translation-contracts/TranslatorTrait.php', + 'Symfony\\Polyfill\\Ctype\\Ctype' => $vendorDir . '/symfony/polyfill-ctype/Ctype.php', + 'Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir . '/symfony/polyfill-mbstring/Mbstring.php', + 'Symfony\\Polyfill\\Php73\\Php73' => $vendorDir . '/symfony/polyfill-php73/Php73.php', + 'Taxonomy_Command' => $vendorDir . '/wp-cli/entity-command/src/Taxonomy_Command.php', + 'Term_Command' => $vendorDir . '/wp-cli/entity-command/src/Term_Command.php', + 'Term_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Term_Meta_Command.php', + 'Text_Template' => $vendorDir . '/phpunit/php-text-template/src/Template.php', + 'TheSeer\\Tokenizer\\Exception' => $vendorDir . '/theseer/tokenizer/src/Exception.php', + 'TheSeer\\Tokenizer\\NamespaceUri' => $vendorDir . '/theseer/tokenizer/src/NamespaceUri.php', + 'TheSeer\\Tokenizer\\NamespaceUriException' => $vendorDir . '/theseer/tokenizer/src/NamespaceUriException.php', + 'TheSeer\\Tokenizer\\Token' => $vendorDir . '/theseer/tokenizer/src/Token.php', + 'TheSeer\\Tokenizer\\TokenCollection' => $vendorDir . '/theseer/tokenizer/src/TokenCollection.php', + 'TheSeer\\Tokenizer\\TokenCollectionException' => $vendorDir . '/theseer/tokenizer/src/TokenCollectionException.php', + 'TheSeer\\Tokenizer\\Tokenizer' => $vendorDir . '/theseer/tokenizer/src/Tokenizer.php', + 'TheSeer\\Tokenizer\\XMLSerializer' => $vendorDir . '/theseer/tokenizer/src/XMLSerializer.php', + 'Theme_Command' => $vendorDir . '/wp-cli/extension-command/src/Theme_Command.php', + 'Theme_Language_Command' => $vendorDir . '/wp-cli/language-command/src/Theme_Language_Command.php', + 'Theme_Mod_Command' => $vendorDir . '/wp-cli/extension-command/src/Theme_Mod_Command.php', + 'Transient_Command' => $vendorDir . '/wp-cli/cache-command/src/Transient_Command.php', + 'User_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Command.php', + 'User_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Meta_Command.php', + 'User_Session_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Session_Command.php', + 'User_Term_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Term_Command.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Cart_Items' => $baseDir . '/includes/connection/class-cart-items.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Coupons' => $baseDir . '/includes/connection/class-coupons.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Customers' => $baseDir . '/includes/connection/class-customers.php', @@ -113,5 +2621,252 @@ 'WPGraphQL\\Extensions\\WooCommerce\\Type_Registry' => $baseDir . '/includes/class-type-registry.php', 'WPGraphQL\\Extensions\\WooCommerce\\Utils\\QL_Session_Handler' => $baseDir . '/includes/utils/class-ql-session-handler.php', 'WPGraphQL\\Extensions\\WooCommerce\\WooCommerce_Filters' => $baseDir . '/includes/class-woocommerce-filters.php', + 'WP_CLI' => $vendorDir . '/wp-cli/wp-cli/php/class-wp-cli.php', + 'WP_CLI\\Autoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Autoloader.php', + 'WP_CLI\\Bootstrap\\AutoloaderStep' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/AutoloaderStep.php', + 'WP_CLI\\Bootstrap\\BootstrapState' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapState.php', + 'WP_CLI\\Bootstrap\\BootstrapStep' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapStep.php', + 'WP_CLI\\Bootstrap\\ConfigureRunner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/ConfigureRunner.php', + 'WP_CLI\\Bootstrap\\DeclareAbstractBaseCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareAbstractBaseCommand.php', + 'WP_CLI\\Bootstrap\\DeclareMainClass' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareMainClass.php', + 'WP_CLI\\Bootstrap\\DefineProtectedCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DefineProtectedCommands.php', + 'WP_CLI\\Bootstrap\\IncludeFallbackAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFallbackAutoloader.php', + 'WP_CLI\\Bootstrap\\IncludeFrameworkAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFrameworkAutoloader.php', + 'WP_CLI\\Bootstrap\\IncludePackageAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludePackageAutoloader.php', + 'WP_CLI\\Bootstrap\\InitializeColorization' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeColorization.php', + 'WP_CLI\\Bootstrap\\InitializeLogger' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeLogger.php', + 'WP_CLI\\Bootstrap\\LaunchRunner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php', + 'WP_CLI\\Bootstrap\\LoadDispatcher' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadDispatcher.php', + 'WP_CLI\\Bootstrap\\LoadRequiredCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadRequiredCommand.php', + 'WP_CLI\\Bootstrap\\LoadUtilityFunctions' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadUtilityFunctions.php', + 'WP_CLI\\Bootstrap\\RegisterDeferredCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterDeferredCommands.php', + 'WP_CLI\\Bootstrap\\RegisterFrameworkCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterFrameworkCommands.php', + 'WP_CLI\\Bootstrap\\RunnerInstance' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RunnerInstance.php', + 'WP_CLI\\CommandWithDBObject' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithDBObject.php', + 'WP_CLI\\CommandWithMeta' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithMeta.php', + 'WP_CLI\\CommandWithTerms' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithTerms.php', + 'WP_CLI\\CommandWithTranslation' => $vendorDir . '/wp-cli/language-command/src/WP_CLI/CommandWithTranslation.php', + 'WP_CLI\\CommandWithUpgrade' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/CommandWithUpgrade.php', + 'WP_CLI\\Completions' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Completions.php', + 'WP_CLI\\ComposerIO' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ComposerIO.php', + 'WP_CLI\\Configurator' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Configurator.php', + 'WP_CLI\\Core\\CoreUpgrader' => $vendorDir . '/wp-cli/core-command/src/WP_CLI/Core/CoreUpgrader.php', + 'WP_CLI\\Core\\NonDestructiveCoreUpgrader' => $vendorDir . '/wp-cli/core-command/src/WP_CLI/Core/NonDestructiveCoreUpgrader.php', + 'WP_CLI\\DestructivePluginUpgrader' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/DestructivePluginUpgrader.php', + 'WP_CLI\\DestructiveThemeUpgrader' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/DestructiveThemeUpgrader.php', + 'WP_CLI\\Dispatcher\\CommandAddition' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandAddition.php', + 'WP_CLI\\Dispatcher\\CommandFactory' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandFactory.php', + 'WP_CLI\\Dispatcher\\CommandNamespace' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandNamespace.php', + 'WP_CLI\\Dispatcher\\CompositeCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CompositeCommand.php', + 'WP_CLI\\Dispatcher\\RootCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/RootCommand.php', + 'WP_CLI\\Dispatcher\\Subcommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/Subcommand.php', + 'WP_CLI\\DocParser' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/DocParser.php', + 'WP_CLI\\Embeds\\Cache_Command' => $vendorDir . '/wp-cli/embed-command/src/Cache_Command.php', + 'WP_CLI\\Embeds\\Embeds_Namespace' => $vendorDir . '/wp-cli/embed-command/src/Embeds_Namespace.php', + 'WP_CLI\\Embeds\\Fetch_Command' => $vendorDir . '/wp-cli/embed-command/src/Fetch_Command.php', + 'WP_CLI\\Embeds\\Handler_Command' => $vendorDir . '/wp-cli/embed-command/src/Handler_Command.php', + 'WP_CLI\\Embeds\\Provider_Command' => $vendorDir . '/wp-cli/embed-command/src/Provider_Command.php', + 'WP_CLI\\Embeds\\oEmbed' => $vendorDir . '/wp-cli/embed-command/src/oEmbed.php', + 'WP_CLI\\Entity\\NonExistentKeyException' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Entity/NonExistentKeyException.php', + 'WP_CLI\\Entity\\RecursiveDataStructureTraverser' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Entity/RecursiveDataStructureTraverser.php', + 'WP_CLI\\Entity\\Utils' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Entity/Utils.php', + 'WP_CLI\\ExitException' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ExitException.php', + 'WP_CLI\\Extractor' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Extractor.php', + 'WP_CLI\\Fetchers\\Base' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Base.php', + 'WP_CLI\\Fetchers\\Comment' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Comment.php', + 'WP_CLI\\Fetchers\\Plugin' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/Fetchers/Plugin.php', + 'WP_CLI\\Fetchers\\Post' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Post.php', + 'WP_CLI\\Fetchers\\Site' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Site.php', + 'WP_CLI\\Fetchers\\Theme' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/Fetchers/Theme.php', + 'WP_CLI\\Fetchers\\UnfilteredPlugin' => $vendorDir . '/wp-cli/checksum-command/src/WP_CLI/Fetchers/UnfilteredPlugin.php', + 'WP_CLI\\Fetchers\\User' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/User.php', + 'WP_CLI\\FileCache' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/FileCache.php', + 'WP_CLI\\Formatter' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Formatter.php', + 'WP_CLI\\I18n\\CommandNamespace' => $vendorDir . '/wp-cli/i18n-command/src/CommandNamespace.php', + 'WP_CLI\\I18n\\IterableCodeExtractor' => $vendorDir . '/wp-cli/i18n-command/src/IterableCodeExtractor.php', + 'WP_CLI\\I18n\\JedGenerator' => $vendorDir . '/wp-cli/i18n-command/src/JedGenerator.php', + 'WP_CLI\\I18n\\JsCodeExtractor' => $vendorDir . '/wp-cli/i18n-command/src/JsCodeExtractor.php', + 'WP_CLI\\I18n\\JsFunctionsScanner' => $vendorDir . '/wp-cli/i18n-command/src/JsFunctionsScanner.php', + 'WP_CLI\\I18n\\MakeJsonCommand' => $vendorDir . '/wp-cli/i18n-command/src/MakeJsonCommand.php', + 'WP_CLI\\I18n\\MakePotCommand' => $vendorDir . '/wp-cli/i18n-command/src/MakePotCommand.php', + 'WP_CLI\\I18n\\MapCodeExtractor' => $vendorDir . '/wp-cli/i18n-command/src/MapCodeExtractor.php', + 'WP_CLI\\I18n\\PhpCodeExtractor' => $vendorDir . '/wp-cli/i18n-command/src/PhpCodeExtractor.php', + 'WP_CLI\\I18n\\PhpFunctionsScanner' => $vendorDir . '/wp-cli/i18n-command/src/PhpFunctionsScanner.php', + 'WP_CLI\\I18n\\PotGenerator' => $vendorDir . '/wp-cli/i18n-command/src/PotGenerator.php', + 'WP_CLI\\Inflector' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Inflector.php', + 'WP_CLI\\Iterators\\CSV' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/CSV.php', + 'WP_CLI\\Iterators\\Exception' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Exception.php', + 'WP_CLI\\Iterators\\Query' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Query.php', + 'WP_CLI\\Iterators\\Table' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Table.php', + 'WP_CLI\\Iterators\\Transform' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Transform.php', + 'WP_CLI\\JsonManipulator' => $vendorDir . '/wp-cli/package-command/src/WP_CLI/JsonManipulator.php', + 'WP_CLI\\LanguagePackUpgrader' => $vendorDir . '/wp-cli/language-command/src/WP_CLI/LanguagePackUpgrader.php', + 'WP_CLI\\Loggers\\Base' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Base.php', + 'WP_CLI\\Loggers\\Execution' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Execution.php', + 'WP_CLI\\Loggers\\Quiet' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Quiet.php', + 'WP_CLI\\Loggers\\Regular' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Regular.php', + 'WP_CLI\\MaintenanceMode\\MaintenanceModeCommand' => $vendorDir . '/wp-cli/maintenance-mode-command/src/MaintenanceModeCommand.php', + 'WP_CLI\\NoOp' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/NoOp.php', + 'WP_CLI\\PackageManagerEventSubscriber' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/PackageManagerEventSubscriber.php', + 'WP_CLI\\Process' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Process.php', + 'WP_CLI\\ProcessRun' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ProcessRun.php', + 'WP_CLI\\Runner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Runner.php', + 'WP_CLI\\SearchReplacer' => $vendorDir . '/wp-cli/search-replace-command/src/WP_CLI/SearchReplacer.php', + 'WP_CLI\\Shell\\REPL' => $vendorDir . '/wp-cli/shell-command/src/WP_CLI/Shell/REPL.php', + 'WP_CLI\\SynopsisParser' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/SynopsisParser.php', + 'WP_CLI\\SynopsisValidator' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/SynopsisValidator.php', + 'WP_CLI\\UpgraderSkin' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/UpgraderSkin.php', + 'WP_CLI\\WpHttpCacheManager' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/WpHttpCacheManager.php', + 'WP_CLI_Command' => $vendorDir . '/wp-cli/wp-cli/php/class-wp-cli-command.php', + 'WP_Export_Base_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Base_Writer.php', + 'WP_Export_Exception' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Exception.php', + 'WP_Export_File_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_File_Writer.php', + 'WP_Export_Oxymel' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Oxymel.php', + 'WP_Export_Query' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Query.php', + 'WP_Export_Returner' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Returner.php', + 'WP_Export_Split_Files_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Split_Files_Writer.php', + 'WP_Export_Term_Exception' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Term_Exception.php', + 'WP_Export_WXR_Formatter' => $vendorDir . '/wp-cli/export-command/src/WP_Export_WXR_Formatter.php', + 'WP_Export_XML_Over_HTTP' => $vendorDir . '/wp-cli/export-command/src/WP_Export_XML_Over_HTTP.php', 'WP_GraphQL_WooCommerce' => $baseDir . '/includes/class-wp-graphql-woocommerce.php', + 'WP_Iterator_Exception' => $vendorDir . '/wp-cli/export-command/src/WP_Iterator_Exception.php', + 'WP_Map_Iterator' => $vendorDir . '/wp-cli/export-command/src/WP_Map_Iterator.php', + 'WP_Post_IDs_Iterator' => $vendorDir . '/wp-cli/export-command/src/WP_Post_IDs_Iterator.php', + 'Webmozart\\Assert\\Assert' => $vendorDir . '/webmozart/assert/src/Assert.php', + 'Widget_Command' => $vendorDir . '/wp-cli/widget-command/src/Widget_Command.php', + 'cli\\Arguments' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Arguments.php', + 'cli\\Colors' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Colors.php', + 'cli\\Memoize' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Memoize.php', + 'cli\\Notify' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Notify.php', + 'cli\\Progress' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Progress.php', + 'cli\\Shell' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Shell.php', + 'cli\\Streams' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Streams.php', + 'cli\\Table' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Table.php', + 'cli\\Tree' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Tree.php', + 'cli\\arguments\\Argument' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/Argument.php', + 'cli\\arguments\\HelpScreen' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/HelpScreen.php', + 'cli\\arguments\\InvalidArguments' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/InvalidArguments.php', + 'cli\\arguments\\Lexer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/Lexer.php', + 'cli\\notify\\Dots' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/notify/Dots.php', + 'cli\\notify\\Spinner' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/notify/Spinner.php', + 'cli\\progress\\Bar' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/progress/Bar.php', + 'cli\\table\\Ascii' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Ascii.php', + 'cli\\table\\Renderer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Renderer.php', + 'cli\\table\\Tabular' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Tabular.php', + 'cli\\tree\\Ascii' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Ascii.php', + 'cli\\tree\\Markdown' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Markdown.php', + 'cli\\tree\\Renderer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Renderer.php', + 'phpDocumentor\\Reflection\\DocBlock' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock.php', + 'phpDocumentor\\Reflection\\DocBlockFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlockFactory.php', + 'phpDocumentor\\Reflection\\DocBlockFactoryInterface' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php', + 'phpDocumentor\\Reflection\\DocBlock\\Description' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Description.php', + 'phpDocumentor\\Reflection\\DocBlock\\DescriptionFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/DescriptionFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\ExampleFinder' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/ExampleFinder.php', + 'phpDocumentor\\Reflection\\DocBlock\\Serializer' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Serializer.php', + 'phpDocumentor\\Reflection\\DocBlock\\StandardTagFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/StandardTagFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tag' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tag.php', + 'phpDocumentor\\Reflection\\DocBlock\\TagFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/TagFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Author' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Author.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\BaseTag' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/BaseTag.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Covers' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Covers.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Deprecated' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Deprecated.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Example' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\StaticMethod' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/StaticMethod.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\Strategy' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/Strategy.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\AlignFormatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/AlignFormatter.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\PassthroughFormatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/PassthroughFormatter.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Generic' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Generic.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Link' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Link.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Method' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Method.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Param' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Param.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Property' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Property.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyRead' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyRead.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyWrite' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyWrite.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Fqsen' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Fqsen.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Reference' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Reference.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Url' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Url.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Return_' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Return_.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\See' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/See.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Since' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Source' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Source.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Throws' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Throws.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Uses' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Uses.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Var_' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Var_.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Version' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Version.php', + 'phpDocumentor\\Reflection\\Element' => $vendorDir . '/phpdocumentor/reflection-common/src/Element.php', + 'phpDocumentor\\Reflection\\File' => $vendorDir . '/phpdocumentor/reflection-common/src/File.php', + 'phpDocumentor\\Reflection\\Fqsen' => $vendorDir . '/phpdocumentor/reflection-common/src/Fqsen.php', + 'phpDocumentor\\Reflection\\FqsenResolver' => $vendorDir . '/phpdocumentor/type-resolver/src/FqsenResolver.php', + 'phpDocumentor\\Reflection\\Location' => $vendorDir . '/phpdocumentor/reflection-common/src/Location.php', + 'phpDocumentor\\Reflection\\Project' => $vendorDir . '/phpdocumentor/reflection-common/src/Project.php', + 'phpDocumentor\\Reflection\\ProjectFactory' => $vendorDir . '/phpdocumentor/reflection-common/src/ProjectFactory.php', + 'phpDocumentor\\Reflection\\Type' => $vendorDir . '/phpdocumentor/type-resolver/src/Type.php', + 'phpDocumentor\\Reflection\\TypeResolver' => $vendorDir . '/phpdocumentor/type-resolver/src/TypeResolver.php', + 'phpDocumentor\\Reflection\\Types\\Array_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Array_.php', + 'phpDocumentor\\Reflection\\Types\\Boolean' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Boolean.php', + 'phpDocumentor\\Reflection\\Types\\Callable_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Callable_.php', + 'phpDocumentor\\Reflection\\Types\\Compound' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Compound.php', + 'phpDocumentor\\Reflection\\Types\\Context' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Context.php', + 'phpDocumentor\\Reflection\\Types\\ContextFactory' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/ContextFactory.php', + 'phpDocumentor\\Reflection\\Types\\Float_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Float_.php', + 'phpDocumentor\\Reflection\\Types\\Integer' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Integer.php', + 'phpDocumentor\\Reflection\\Types\\Iterable_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Iterable_.php', + 'phpDocumentor\\Reflection\\Types\\Mixed_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Mixed_.php', + 'phpDocumentor\\Reflection\\Types\\Null_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Null_.php', + 'phpDocumentor\\Reflection\\Types\\Nullable' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Nullable.php', + 'phpDocumentor\\Reflection\\Types\\Object_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Object_.php', + 'phpDocumentor\\Reflection\\Types\\Parent_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Parent_.php', + 'phpDocumentor\\Reflection\\Types\\Resource_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Resource_.php', + 'phpDocumentor\\Reflection\\Types\\Scalar' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Scalar.php', + 'phpDocumentor\\Reflection\\Types\\Self_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Self_.php', + 'phpDocumentor\\Reflection\\Types\\Static_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Static_.php', + 'phpDocumentor\\Reflection\\Types\\String_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/String_.php', + 'phpDocumentor\\Reflection\\Types\\This' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/This.php', + 'phpDocumentor\\Reflection\\Types\\Void_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Void_.php', + 'tad\\WPBrowser\\Adapters\\WP' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Adapters/WP.php', + 'tad\\WPBrowser\\Connector\\WordPress' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Connector/WordPress.php', + 'tad\\WPBrowser\\Documentation\\TableGenerator' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Documentation/TableGenerator.php', + 'tad\\WPBrowser\\Environment\\Constants' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/Constants.php', + 'tad\\WPBrowser\\Environment\\Executor' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/Executor.php', + 'tad\\WPBrowser\\Environment\\System' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/System.php', + 'tad\\WPBrowser\\Extension\\Copier' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Extension/Copier.php', + 'tad\\WPBrowser\\Extension\\Symlinker' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Extension/Symlinker.php', + 'tad\\WPBrowser\\Filesystem\\FileReplacers\\AbstractFileReplacer' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/AbstractFileReplacer.php', + 'tad\\WPBrowser\\Filesystem\\FileReplacers\\HtaccesReplacer' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/HtaccesReplacer.php', + 'tad\\WPBrowser\\Filesystem\\FileReplacers\\WPConfigReplacer' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/WPConfigReplacer.php', + 'tad\\WPBrowser\\Filesystem\\Filesystem' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/Filesystem.php', + 'tad\\WPBrowser\\Filesystem\\Utils' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/Utils.php', + 'tad\\WPBrowser\\Generators\\Blog' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Blog.php', + 'tad\\WPBrowser\\Generators\\Comment' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Comment.php', + 'tad\\WPBrowser\\Generators\\Date' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Date.php', + 'tad\\WPBrowser\\Generators\\Links' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Links.php', + 'tad\\WPBrowser\\Generators\\Post' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Post.php', + 'tad\\WPBrowser\\Generators\\RedirectingWPConfig' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/RedirectingWPConfig.php', + 'tad\\WPBrowser\\Generators\\SubdomainHtaccess' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/SubdomainHtaccess.php', + 'tad\\WPBrowser\\Generators\\SubfolderHtaccess' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/SubfolderHtaccess.php', + 'tad\\WPBrowser\\Generators\\Tables' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Tables.php', + 'tad\\WPBrowser\\Generators\\TemplateProviderInterface' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/TemplateProviderInterface.php', + 'tad\\WPBrowser\\Generators\\User' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/User.php', + 'tad\\WPBrowser\\Generators\\User\\Roles' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/User/Roles.php', + 'tad\\WPBrowser\\Generators\\WpPassword' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/WpPassword.php', + 'tad\\WPBrowser\\Iterators\\Filters\\ActionsQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/ActionsQueriesFilter.php', + 'tad\\WPBrowser\\Iterators\\Filters\\ClassMethodQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/ClassMethodQueriesFilter.php', + 'tad\\WPBrowser\\Iterators\\Filters\\FactoryQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FactoryQueriesFilter.php', + 'tad\\WPBrowser\\Iterators\\Filters\\FiltersQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FiltersQueriesFilter.php', + 'tad\\WPBrowser\\Iterators\\Filters\\FunctionQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FunctionQueriesFilter.php', + 'tad\\WPBrowser\\Iterators\\Filters\\MainStatementQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/MainStatementQueriesFilter.php', + 'tad\\WPBrowser\\Iterators\\Filters\\QueriesCallerBasedFilterIterator' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/QueriesCallerBasedFilterIterator.php', + 'tad\\WPBrowser\\Iterators\\Filters\\QueriesCallerBasedKeepingFilterIterator' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/QueriesCallerBasedKeepingFilterIterator.php', + 'tad\\WPBrowser\\Iterators\\Filters\\SetupTearDownQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/SetupTearDownQueriesFilter.php', + 'tad\\WPBrowser\\Module\\Support\\DbDump' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/Support/DbDump.php', + 'tad\\WPBrowser\\Module\\Support\\UriToIndexMapper' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/Support/UriToIndexMapper.php', + 'tad\\WPBrowser\\Module\\WPLoader\\FactoryStore' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/FactoryStore.php', + 'tad\\WPBrowser\\Module\\WPLoader\\Filters' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/Filters.php', + 'tad\\WPBrowser\\Module\\WPLoader\\FiltersGroup' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/FiltersGroup.php', + 'tad\\WPBrowser\\Services\\Db\\MySQLDumpFactory' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpFactory.php', + 'tad\\WPBrowser\\Services\\Db\\MySQLDumpFactoryInterface' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpFactoryInterface.php', + 'tad\\WPBrowser\\Services\\Db\\MySQLDumpInterface' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpInterface.php', + 'tad\\WPBrowser\\Services\\WP\\Bootstrapper' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/WP/Bootstrapper.php', + 'tad\\WPBrowser\\Template\\Data' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Template/Data.php', ); diff --git a/vendor/composer/autoload_files.php b/vendor/composer/autoload_files.php new file mode 100644 index 000000000..93d16cad2 --- /dev/null +++ b/vendor/composer/autoload_files.php @@ -0,0 +1,47 @@ + $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', + '0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php', + 'ba366f96f4fddbdef61ad7a862b44f61' => $vendorDir . '/wp-cli/package-command/package-command.php', + 'be01b9b16925dcb22165c40b46681ac6' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/cli.php', + '3937806105cc8e221b8fa8db5b70d2f2' => $vendorDir . '/wp-cli/mustangostang-spyc/includes/functions.php', + 'd979c11fe80ba96ae3037b43429fe546' => $vendorDir . '/wp-cli/scaffold-command/scaffold-command.php', + '3f201033d5aceb2293314273be88f7c6' => $vendorDir . '/wp-cli/extension-command/extension-command.php', + 'f3f0199a3ecd9f501d0a3b361bd2f61c' => $vendorDir . '/wp-cli/entity-command/entity-command.php', + 'c65f753375faee349b7adc48c2ee7cc2' => $vendorDir . '/wp-cli/db-command/db-command.php', + '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php', + 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php', + '30cbb6e4122dc988e494c6b9c0438233' => $vendorDir . '/wp-cli/import-command/import-command.php', + 'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php', + 'b66d29757fcb2fb7a9608d068e3716b0' => $vendorDir . '/wp-cli/checksum-command/checksum-command.php', + '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', + '5e099d3cac677dd2bec1003ea7707745' => $vendorDir . '/wp-cli/media-command/media-command.php', + '5c6ec5cff8f9d625772c8ed147f6b894' => $vendorDir . '/wp-cli/export-command/export-command.php', + 'ac949ce40a981819ba132473518a9a31' => $vendorDir . '/wp-cli/wp-config-transformer/src/WPConfigTransformer.php', + '8a0ad02df6a5087f2c380f8fd52db273' => $vendorDir . '/wp-cli/cache-command/cache-command.php', + '72579e7bd17821bb1321b87411366eae' => $vendorDir . '/illuminate/support/helpers.php', + '1f05372afcc7d0c51a305cef1d56dd01' => $vendorDir . '/wp-cli/widget-command/widget-command.php', + '8519779bbb65eeb842af2f629ce7b6f8' => $vendorDir . '/wp-cli/super-admin-command/super-admin-command.php', + '129d58fa8151374aceb8571bcaa97504' => $vendorDir . '/wp-cli/shell-command/shell-command.php', + '9f04dd0aa5d67ec75a75c88c345a079e' => $vendorDir . '/wp-cli/server-command/server-command.php', + '8ecb13f8bbc22b1b34d12b14ec01077a' => $vendorDir . '/wp-cli/search-replace-command/search-replace-command.php', + '080fadd667195d055c5a23386f270261' => $vendorDir . '/wp-cli/role-command/role-command.php', + 'f399c1c8d0c787d5c94c09884cdd9762' => $vendorDir . '/wp-cli/rewrite-command/rewrite-command.php', + '1c88c1eff05217a8cac80c64c9ac2080' => $vendorDir . '/wp-cli/maintenance-mode-command/maintenance-mode-command.php', + 'ace0d205db7f4135ec32132a0076d555' => $vendorDir . '/wp-cli/language-command/language-command.php', + 'ffb465a494c3101218c4417180c2c9a2' => $vendorDir . '/wp-cli/i18n-command/i18n-command.php', + 'f958dca3f412fd7975da1700912a9321' => $vendorDir . '/wp-cli/eval-command/eval-command.php', + '021d3a13471556f0b57038d679f7f8ea' => $vendorDir . '/wp-cli/embed-command/embed-command.php', + '7654e00bf0e632580764400bd8293a9c' => $vendorDir . '/wp-cli/cron-command/cron-command.php', + '68c39b88215b6cf7a0da164166670ef9' => $vendorDir . '/wp-cli/core-command/core-command.php', + '5deaf6ce9c8bbdfb65104c7e938d5875' => $vendorDir . '/wp-cli/config-command/config-command.php', + '6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', + 'e2b8090921f5e293ca4eb0c107749811' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/functions.php', +); diff --git a/vendor/composer/autoload_namespaces.php b/vendor/composer/autoload_namespaces.php index b7fc0125d..d7cf64112 100644 --- a/vendor/composer/autoload_namespaces.php +++ b/vendor/composer/autoload_namespaces.php @@ -6,4 +6,14 @@ $baseDir = dirname($vendorDir); return array( + 'cli' => array($vendorDir . '/wp-cli/php-cli-tools/lib'), + 'WP_CLI' => array($vendorDir . '/wp-cli/wp-cli/php'), + 'Requests' => array($vendorDir . '/rmccue/requests/library'), + 'PhpOption\\' => array($vendorDir . '/phpoption/phpoption/src'), + 'Oxymel' => array($vendorDir . '/nb/oxymel'), + 'Mustache' => array($vendorDir . '/mustache/mustache/src'), + 'Hautelook' => array($vendorDir . '/hautelook/phpass/src'), + 'Handlebars' => array($vendorDir . '/xamin/handlebars.php/src'), + 'Behat\\Gherkin' => array($vendorDir . '/behat/gherkin/src'), + 'BaconStringUtils' => array($vendorDir . '/bacon/bacon-string-utils/src'), ); diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php index 0e04ec26c..4aeae82a5 100644 --- a/vendor/composer/autoload_psr4.php +++ b/vendor/composer/autoload_psr4.php @@ -6,5 +6,63 @@ $baseDir = dirname($vendorDir); return array( + 'tad\\' => array($vendorDir . '/lucatume/wp-browser-commons/src/tad', $vendorDir . '/lucatume/wp-browser/src/tad'), + 'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/type-resolver/src', $vendorDir . '/phpdocumentor/reflection-docblock/src'), + 'Webmozart\\Assert\\' => array($vendorDir . '/webmozart/assert/src'), + 'WP_CLI\\MaintenanceMode\\' => array($vendorDir . '/wp-cli/maintenance-mode-command/src'), + 'WP_CLI\\I18n\\' => array($vendorDir . '/wp-cli/i18n-command/src'), + 'WP_CLI\\Embeds\\' => array($vendorDir . '/wp-cli/embed-command/src'), + 'WP_CLI\\' => array($vendorDir . '/wp-cli/shell-command/src/WP_CLI', $vendorDir . '/wp-cli/entity-command/src/WP_CLI'), 'WPGraphQL\\Extensions\\WooCommerce\\' => array($baseDir . '/includes'), + 'Symfony\\Polyfill\\Php73\\' => array($vendorDir . '/symfony/polyfill-php73'), + 'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'), + 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'), + 'Symfony\\Contracts\\Translation\\' => array($vendorDir . '/symfony/translation-contracts'), + 'Symfony\\Contracts\\Service\\' => array($vendorDir . '/symfony/service-contracts'), + 'Symfony\\Contracts\\EventDispatcher\\' => array($vendorDir . '/symfony/event-dispatcher-contracts'), + 'Symfony\\Component\\Yaml\\' => array($vendorDir . '/symfony/yaml'), + 'Symfony\\Component\\Translation\\' => array($vendorDir . '/symfony/translation'), + 'Symfony\\Component\\Process\\' => array($vendorDir . '/symfony/process'), + 'Symfony\\Component\\Finder\\' => array($vendorDir . '/symfony/finder'), + 'Symfony\\Component\\Filesystem\\' => array($vendorDir . '/symfony/filesystem'), + 'Symfony\\Component\\EventDispatcher\\' => array($vendorDir . '/symfony/event-dispatcher'), + 'Symfony\\Component\\DomCrawler\\' => array($vendorDir . '/symfony/dom-crawler'), + 'Symfony\\Component\\CssSelector\\' => array($vendorDir . '/symfony/css-selector'), + 'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'), + 'Symfony\\Component\\BrowserKit\\' => array($vendorDir . '/symfony/browser-kit'), + 'Seld\\PharUtils\\' => array($vendorDir . '/seld/phar-utils/src'), + 'Seld\\JsonLint\\' => array($vendorDir . '/seld/jsonlint/src/Seld/JsonLint'), + 'Psr\\SimpleCache\\' => array($vendorDir . '/psr/simple-cache/src'), + 'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'), + 'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src'), + 'Psr\\Container\\' => array($vendorDir . '/psr/container/src'), + 'Prophecy\\' => array($vendorDir . '/phpspec/prophecy/src/Prophecy'), + 'Peast\\test\\' => array($vendorDir . '/mck89/peast/test/Peast'), + 'Peast\\' => array($vendorDir . '/mck89/peast/lib/Peast'), + 'Mustangostang\\' => array($vendorDir . '/wp-cli/mustangostang-spyc/src'), + 'MikeMcLin\\WpPassword\\' => array($vendorDir . '/mikemclin/laravel-wp-password/src'), + 'JsonSchema\\' => array($vendorDir . '/justinrainbow/json-schema/src/JsonSchema'), + 'Illuminate\\Support\\' => array($vendorDir . '/illuminate/support'), + 'Illuminate\\Contracts\\' => array($vendorDir . '/illuminate/contracts'), + 'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'), + 'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'), + 'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'), + 'Gumlet\\' => array($vendorDir . '/gumlet/php-image-resize/lib'), + 'Gettext\\Languages\\' => array($vendorDir . '/gettext/languages/src'), + 'Gettext\\' => array($vendorDir . '/gettext/gettext/src'), + 'Facebook\\WebDriver\\' => array($vendorDir . '/facebook/webdriver/lib'), + 'Dotenv\\' => array($vendorDir . '/vlucas/phpdotenv/src'), + 'Doctrine\\Instantiator\\' => array($vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator'), + 'Doctrine\\Common\\Inflector\\' => array($vendorDir . '/doctrine/inflector/lib/Doctrine/Common/Inflector'), + 'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'), + 'Composer\\XdebugHandler\\' => array($vendorDir . '/composer/xdebug-handler/src'), + 'Composer\\Spdx\\' => array($vendorDir . '/composer/spdx-licenses/src'), + 'Composer\\Semver\\' => array($vendorDir . '/composer/semver/src'), + 'Composer\\CaBundle\\' => array($vendorDir . '/composer/ca-bundle/src'), + 'Composer\\' => array($vendorDir . '/composer/composer/src/Composer'), + 'Codeception\\PHPUnit\\' => array($vendorDir . '/codeception/phpunit-wrapper/src'), + 'Codeception\\Extension\\' => array($vendorDir . '/codeception/codeception/ext'), + 'Codeception\\' => array($vendorDir . '/codeception/stub/src', $vendorDir . '/codeception/codeception/src/Codeception', $vendorDir . '/lucatume/wp-browser/src/Codeception'), + 'Carbon\\' => array($vendorDir . '/nesbot/carbon/src/Carbon'), + '' => array($vendorDir . '/wp-cli/widget-command/src', $vendorDir . '/wp-cli/super-admin-command/src', $vendorDir . '/wp-cli/shell-command/src', $vendorDir . '/wp-cli/server-command/src', $vendorDir . '/wp-cli/search-replace-command/src', $vendorDir . '/wp-cli/scaffold-command/src', $vendorDir . '/wp-cli/role-command/src', $vendorDir . '/wp-cli/rewrite-command/src', $vendorDir . '/wp-cli/package-command/src', $vendorDir . '/wp-cli/media-command/src', $vendorDir . '/wp-cli/language-command/src', $vendorDir . '/wp-cli/import-command/src', $vendorDir . '/wp-cli/extension-command/src', $vendorDir . '/wp-cli/export-command/src', $vendorDir . '/wp-cli/eval-command/src', $vendorDir . '/wp-cli/entity-command/src', $vendorDir . '/wp-cli/db-command/src', $vendorDir . '/wp-cli/cron-command/src', $vendorDir . '/wp-cli/core-command/src', $vendorDir . '/wp-cli/config-command/src', $vendorDir . '/wp-cli/checksum-command/src', $vendorDir . '/wp-cli/cache-command/src'), ); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index 5512d11e0..d8ddaa7ca 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -47,6 +47,24 @@ public static function getLoader() $loader->register(true); + if ($useStaticLoader) { + $includeFiles = Composer\Autoload\ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$files; + } else { + $includeFiles = require __DIR__ . '/autoload_files.php'; + } + foreach ($includeFiles as $fileIdentifier => $file) { + composerRequire7a6810d883e7e56f4120cefc43c77766($fileIdentifier, $file); + } + return $loader; } } + +function composerRequire7a6810d883e7e56f4120cefc43c77766($fileIdentifier, $file) +{ + if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { + require $file; + + $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; + } +} diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 5839aa9f2..3df641394 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -6,21 +6,2986 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 { + public static $files = array ( + '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', + '0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php', + 'ba366f96f4fddbdef61ad7a862b44f61' => __DIR__ . '/..' . '/wp-cli/package-command/package-command.php', + 'be01b9b16925dcb22165c40b46681ac6' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/cli.php', + '3937806105cc8e221b8fa8db5b70d2f2' => __DIR__ . '/..' . '/wp-cli/mustangostang-spyc/includes/functions.php', + 'd979c11fe80ba96ae3037b43429fe546' => __DIR__ . '/..' . '/wp-cli/scaffold-command/scaffold-command.php', + '3f201033d5aceb2293314273be88f7c6' => __DIR__ . '/..' . '/wp-cli/extension-command/extension-command.php', + 'f3f0199a3ecd9f501d0a3b361bd2f61c' => __DIR__ . '/..' . '/wp-cli/entity-command/entity-command.php', + 'c65f753375faee349b7adc48c2ee7cc2' => __DIR__ . '/..' . '/wp-cli/db-command/db-command.php', + '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php', + 'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php', + '30cbb6e4122dc988e494c6b9c0438233' => __DIR__ . '/..' . '/wp-cli/import-command/import-command.php', + 'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php', + 'b66d29757fcb2fb7a9608d068e3716b0' => __DIR__ . '/..' . '/wp-cli/checksum-command/checksum-command.php', + '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php', + '5e099d3cac677dd2bec1003ea7707745' => __DIR__ . '/..' . '/wp-cli/media-command/media-command.php', + '5c6ec5cff8f9d625772c8ed147f6b894' => __DIR__ . '/..' . '/wp-cli/export-command/export-command.php', + 'ac949ce40a981819ba132473518a9a31' => __DIR__ . '/..' . '/wp-cli/wp-config-transformer/src/WPConfigTransformer.php', + '8a0ad02df6a5087f2c380f8fd52db273' => __DIR__ . '/..' . '/wp-cli/cache-command/cache-command.php', + '72579e7bd17821bb1321b87411366eae' => __DIR__ . '/..' . '/illuminate/support/helpers.php', + '1f05372afcc7d0c51a305cef1d56dd01' => __DIR__ . '/..' . '/wp-cli/widget-command/widget-command.php', + '8519779bbb65eeb842af2f629ce7b6f8' => __DIR__ . '/..' . '/wp-cli/super-admin-command/super-admin-command.php', + '129d58fa8151374aceb8571bcaa97504' => __DIR__ . '/..' . '/wp-cli/shell-command/shell-command.php', + '9f04dd0aa5d67ec75a75c88c345a079e' => __DIR__ . '/..' . '/wp-cli/server-command/server-command.php', + '8ecb13f8bbc22b1b34d12b14ec01077a' => __DIR__ . '/..' . '/wp-cli/search-replace-command/search-replace-command.php', + '080fadd667195d055c5a23386f270261' => __DIR__ . '/..' . '/wp-cli/role-command/role-command.php', + 'f399c1c8d0c787d5c94c09884cdd9762' => __DIR__ . '/..' . '/wp-cli/rewrite-command/rewrite-command.php', + '1c88c1eff05217a8cac80c64c9ac2080' => __DIR__ . '/..' . '/wp-cli/maintenance-mode-command/maintenance-mode-command.php', + 'ace0d205db7f4135ec32132a0076d555' => __DIR__ . '/..' . '/wp-cli/language-command/language-command.php', + 'ffb465a494c3101218c4417180c2c9a2' => __DIR__ . '/..' . '/wp-cli/i18n-command/i18n-command.php', + 'f958dca3f412fd7975da1700912a9321' => __DIR__ . '/..' . '/wp-cli/eval-command/eval-command.php', + '021d3a13471556f0b57038d679f7f8ea' => __DIR__ . '/..' . '/wp-cli/embed-command/embed-command.php', + '7654e00bf0e632580764400bd8293a9c' => __DIR__ . '/..' . '/wp-cli/cron-command/cron-command.php', + '68c39b88215b6cf7a0da164166670ef9' => __DIR__ . '/..' . '/wp-cli/core-command/core-command.php', + '5deaf6ce9c8bbdfb65104c7e938d5875' => __DIR__ . '/..' . '/wp-cli/config-command/config-command.php', + '6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', + 'e2b8090921f5e293ca4eb0c107749811' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/functions.php', + ); + public static $prefixLengthsPsr4 = array ( + 't' => + array ( + 'tad\\' => 4, + ), + 'p' => + array ( + 'phpDocumentor\\Reflection\\' => 25, + ), 'W' => array ( + 'Webmozart\\Assert\\' => 17, + 'WP_CLI\\MaintenanceMode\\' => 23, + 'WP_CLI\\I18n\\' => 12, + 'WP_CLI\\Embeds\\' => 14, + 'WP_CLI\\' => 7, 'WPGraphQL\\Extensions\\WooCommerce\\' => 33, ), + 'S' => + array ( + 'Symfony\\Polyfill\\Php73\\' => 23, + 'Symfony\\Polyfill\\Mbstring\\' => 26, + 'Symfony\\Polyfill\\Ctype\\' => 23, + 'Symfony\\Contracts\\Translation\\' => 30, + 'Symfony\\Contracts\\Service\\' => 26, + 'Symfony\\Contracts\\EventDispatcher\\' => 34, + 'Symfony\\Component\\Yaml\\' => 23, + 'Symfony\\Component\\Translation\\' => 30, + 'Symfony\\Component\\Process\\' => 26, + 'Symfony\\Component\\Finder\\' => 25, + 'Symfony\\Component\\Filesystem\\' => 29, + 'Symfony\\Component\\EventDispatcher\\' => 34, + 'Symfony\\Component\\DomCrawler\\' => 29, + 'Symfony\\Component\\CssSelector\\' => 30, + 'Symfony\\Component\\Console\\' => 26, + 'Symfony\\Component\\BrowserKit\\' => 29, + 'Seld\\PharUtils\\' => 15, + 'Seld\\JsonLint\\' => 14, + ), + 'P' => + array ( + 'Psr\\SimpleCache\\' => 16, + 'Psr\\Log\\' => 8, + 'Psr\\Http\\Message\\' => 17, + 'Psr\\Container\\' => 14, + 'Prophecy\\' => 9, + 'Peast\\test\\' => 11, + 'Peast\\' => 6, + ), + 'M' => + array ( + 'Mustangostang\\' => 14, + 'MikeMcLin\\WpPassword\\' => 21, + ), + 'J' => + array ( + 'JsonSchema\\' => 11, + ), + 'I' => + array ( + 'Illuminate\\Support\\' => 19, + 'Illuminate\\Contracts\\' => 21, + ), + 'G' => + array ( + 'GuzzleHttp\\Psr7\\' => 16, + 'GuzzleHttp\\Promise\\' => 19, + 'GuzzleHttp\\' => 11, + 'Gumlet\\' => 7, + 'Gettext\\Languages\\' => 18, + 'Gettext\\' => 8, + ), + 'F' => + array ( + 'Facebook\\WebDriver\\' => 19, + ), + 'D' => + array ( + 'Dotenv\\' => 7, + 'Doctrine\\Instantiator\\' => 22, + 'Doctrine\\Common\\Inflector\\' => 26, + 'DeepCopy\\' => 9, + ), + 'C' => + array ( + 'Composer\\XdebugHandler\\' => 23, + 'Composer\\Spdx\\' => 14, + 'Composer\\Semver\\' => 16, + 'Composer\\CaBundle\\' => 18, + 'Composer\\' => 9, + 'Codeception\\PHPUnit\\' => 20, + 'Codeception\\Extension\\' => 22, + 'Codeception\\' => 12, + 'Carbon\\' => 7, + ), ); public static $prefixDirsPsr4 = array ( + 'tad\\' => + array ( + 0 => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad', + 1 => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad', + ), + 'phpDocumentor\\Reflection\\' => + array ( + 0 => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src', + 1 => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src', + 2 => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src', + ), + 'Webmozart\\Assert\\' => + array ( + 0 => __DIR__ . '/..' . '/webmozart/assert/src', + ), + 'WP_CLI\\MaintenanceMode\\' => + array ( + 0 => __DIR__ . '/..' . '/wp-cli/maintenance-mode-command/src', + ), + 'WP_CLI\\I18n\\' => + array ( + 0 => __DIR__ . '/..' . '/wp-cli/i18n-command/src', + ), + 'WP_CLI\\Embeds\\' => + array ( + 0 => __DIR__ . '/..' . '/wp-cli/embed-command/src', + ), + 'WP_CLI\\' => + array ( + 0 => __DIR__ . '/..' . '/wp-cli/shell-command/src/WP_CLI', + 1 => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI', + ), 'WPGraphQL\\Extensions\\WooCommerce\\' => array ( 0 => __DIR__ . '/../..' . '/includes', ), + 'Symfony\\Polyfill\\Php73\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/polyfill-php73', + ), + 'Symfony\\Polyfill\\Mbstring\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring', + ), + 'Symfony\\Polyfill\\Ctype\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/polyfill-ctype', + ), + 'Symfony\\Contracts\\Translation\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/translation-contracts', + ), + 'Symfony\\Contracts\\Service\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/service-contracts', + ), + 'Symfony\\Contracts\\EventDispatcher\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/event-dispatcher-contracts', + ), + 'Symfony\\Component\\Yaml\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/yaml', + ), + 'Symfony\\Component\\Translation\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/translation', + ), + 'Symfony\\Component\\Process\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/process', + ), + 'Symfony\\Component\\Finder\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/finder', + ), + 'Symfony\\Component\\Filesystem\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/filesystem', + ), + 'Symfony\\Component\\EventDispatcher\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/event-dispatcher', + ), + 'Symfony\\Component\\DomCrawler\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/dom-crawler', + ), + 'Symfony\\Component\\CssSelector\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/css-selector', + ), + 'Symfony\\Component\\Console\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/console', + ), + 'Symfony\\Component\\BrowserKit\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/browser-kit', + ), + 'Seld\\PharUtils\\' => + array ( + 0 => __DIR__ . '/..' . '/seld/phar-utils/src', + ), + 'Seld\\JsonLint\\' => + array ( + 0 => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint', + ), + 'Psr\\SimpleCache\\' => + array ( + 0 => __DIR__ . '/..' . '/psr/simple-cache/src', + ), + 'Psr\\Log\\' => + array ( + 0 => __DIR__ . '/..' . '/psr/log/Psr/Log', + ), + 'Psr\\Http\\Message\\' => + array ( + 0 => __DIR__ . '/..' . '/psr/http-message/src', + ), + 'Psr\\Container\\' => + array ( + 0 => __DIR__ . '/..' . '/psr/container/src', + ), + 'Prophecy\\' => + array ( + 0 => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy', + ), + 'Peast\\test\\' => + array ( + 0 => __DIR__ . '/..' . '/mck89/peast/test/Peast', + ), + 'Peast\\' => + array ( + 0 => __DIR__ . '/..' . '/mck89/peast/lib/Peast', + ), + 'Mustangostang\\' => + array ( + 0 => __DIR__ . '/..' . '/wp-cli/mustangostang-spyc/src', + ), + 'MikeMcLin\\WpPassword\\' => + array ( + 0 => __DIR__ . '/..' . '/mikemclin/laravel-wp-password/src', + ), + 'JsonSchema\\' => + array ( + 0 => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema', + ), + 'Illuminate\\Support\\' => + array ( + 0 => __DIR__ . '/..' . '/illuminate/support', + ), + 'Illuminate\\Contracts\\' => + array ( + 0 => __DIR__ . '/..' . '/illuminate/contracts', + ), + 'GuzzleHttp\\Psr7\\' => + array ( + 0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src', + ), + 'GuzzleHttp\\Promise\\' => + array ( + 0 => __DIR__ . '/..' . '/guzzlehttp/promises/src', + ), + 'GuzzleHttp\\' => + array ( + 0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src', + ), + 'Gumlet\\' => + array ( + 0 => __DIR__ . '/..' . '/gumlet/php-image-resize/lib', + ), + 'Gettext\\Languages\\' => + array ( + 0 => __DIR__ . '/..' . '/gettext/languages/src', + ), + 'Gettext\\' => + array ( + 0 => __DIR__ . '/..' . '/gettext/gettext/src', + ), + 'Facebook\\WebDriver\\' => + array ( + 0 => __DIR__ . '/..' . '/facebook/webdriver/lib', + ), + 'Dotenv\\' => + array ( + 0 => __DIR__ . '/..' . '/vlucas/phpdotenv/src', + ), + 'Doctrine\\Instantiator\\' => + array ( + 0 => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator', + ), + 'Doctrine\\Common\\Inflector\\' => + array ( + 0 => __DIR__ . '/..' . '/doctrine/inflector/lib/Doctrine/Common/Inflector', + ), + 'DeepCopy\\' => + array ( + 0 => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy', + ), + 'Composer\\XdebugHandler\\' => + array ( + 0 => __DIR__ . '/..' . '/composer/xdebug-handler/src', + ), + 'Composer\\Spdx\\' => + array ( + 0 => __DIR__ . '/..' . '/composer/spdx-licenses/src', + ), + 'Composer\\Semver\\' => + array ( + 0 => __DIR__ . '/..' . '/composer/semver/src', + ), + 'Composer\\CaBundle\\' => + array ( + 0 => __DIR__ . '/..' . '/composer/ca-bundle/src', + ), + 'Composer\\' => + array ( + 0 => __DIR__ . '/..' . '/composer/composer/src/Composer', + ), + 'Codeception\\PHPUnit\\' => + array ( + 0 => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src', + ), + 'Codeception\\Extension\\' => + array ( + 0 => __DIR__ . '/..' . '/codeception/codeception/ext', + ), + 'Codeception\\' => + array ( + 0 => __DIR__ . '/..' . '/codeception/stub/src', + 1 => __DIR__ . '/..' . '/codeception/codeception/src/Codeception', + 2 => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception', + ), + 'Carbon\\' => + array ( + 0 => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon', + ), + ); + + public static $fallbackDirsPsr4 = array ( + 0 => __DIR__ . '/..' . '/wp-cli/widget-command/src', + 1 => __DIR__ . '/..' . '/wp-cli/super-admin-command/src', + 2 => __DIR__ . '/..' . '/wp-cli/shell-command/src', + 3 => __DIR__ . '/..' . '/wp-cli/server-command/src', + 4 => __DIR__ . '/..' . '/wp-cli/search-replace-command/src', + 5 => __DIR__ . '/..' . '/wp-cli/scaffold-command/src', + 6 => __DIR__ . '/..' . '/wp-cli/role-command/src', + 7 => __DIR__ . '/..' . '/wp-cli/rewrite-command/src', + 8 => __DIR__ . '/..' . '/wp-cli/package-command/src', + 9 => __DIR__ . '/..' . '/wp-cli/media-command/src', + 10 => __DIR__ . '/..' . '/wp-cli/language-command/src', + 11 => __DIR__ . '/..' . '/wp-cli/import-command/src', + 12 => __DIR__ . '/..' . '/wp-cli/extension-command/src', + 13 => __DIR__ . '/..' . '/wp-cli/export-command/src', + 14 => __DIR__ . '/..' . '/wp-cli/eval-command/src', + 15 => __DIR__ . '/..' . '/wp-cli/entity-command/src', + 16 => __DIR__ . '/..' . '/wp-cli/db-command/src', + 17 => __DIR__ . '/..' . '/wp-cli/cron-command/src', + 18 => __DIR__ . '/..' . '/wp-cli/core-command/src', + 19 => __DIR__ . '/..' . '/wp-cli/config-command/src', + 20 => __DIR__ . '/..' . '/wp-cli/checksum-command/src', + 21 => __DIR__ . '/..' . '/wp-cli/cache-command/src', + ); + + public static $prefixesPsr0 = array ( + 'c' => + array ( + 'cli' => + array ( + 0 => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib', + ), + ), + 'W' => + array ( + 'WP_CLI' => + array ( + 0 => __DIR__ . '/..' . '/wp-cli/wp-cli/php', + ), + ), + 'R' => + array ( + 'Requests' => + array ( + 0 => __DIR__ . '/..' . '/rmccue/requests/library', + ), + ), + 'P' => + array ( + 'PhpOption\\' => + array ( + 0 => __DIR__ . '/..' . '/phpoption/phpoption/src', + ), + ), + 'O' => + array ( + 'Oxymel' => + array ( + 0 => __DIR__ . '/..' . '/nb/oxymel', + ), + ), + 'M' => + array ( + 'Mustache' => + array ( + 0 => __DIR__ . '/..' . '/mustache/mustache/src', + ), + ), + 'H' => + array ( + 'Hautelook' => + array ( + 0 => __DIR__ . '/..' . '/hautelook/phpass/src', + ), + 'Handlebars' => + array ( + 0 => __DIR__ . '/..' . '/xamin/handlebars.php/src', + ), + ), + 'B' => + array ( + 'Behat\\Gherkin' => + array ( + 0 => __DIR__ . '/..' . '/behat/gherkin/src', + ), + 'BaconStringUtils' => + array ( + 0 => __DIR__ . '/..' . '/bacon/bacon-string-utils/src', + ), + ), ); public static $classMap = array ( + 'BaconStringUtils\\Filter\\Slugify' => __DIR__ . '/..' . '/bacon/bacon-string-utils/src/BaconStringUtils/Filter/Slugify.php', + 'BaconStringUtils\\Filter\\SlugifyFactory' => __DIR__ . '/..' . '/bacon/bacon-string-utils/src/BaconStringUtils/Filter/SlugifyFactory.php', + 'BaconStringUtils\\Module' => __DIR__ . '/..' . '/bacon/bacon-string-utils/src/BaconStringUtils/Module.php', + 'BaconStringUtils\\Slugifier' => __DIR__ . '/..' . '/bacon/bacon-string-utils/src/BaconStringUtils/Slugifier.php', + 'BaconStringUtils\\SlugifierFactory' => __DIR__ . '/..' . '/bacon/bacon-string-utils/src/BaconStringUtils/SlugifierFactory.php', + 'BaconStringUtils\\UniDecoder' => __DIR__ . '/..' . '/bacon/bacon-string-utils/src/BaconStringUtils/UniDecoder.php', + 'Behat\\Gherkin\\Cache\\CacheInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Cache/CacheInterface.php', + 'Behat\\Gherkin\\Cache\\FileCache' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Cache/FileCache.php', + 'Behat\\Gherkin\\Cache\\MemoryCache' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Cache/MemoryCache.php', + 'Behat\\Gherkin\\Exception\\CacheException' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Exception/CacheException.php', + 'Behat\\Gherkin\\Exception\\Exception' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Exception/Exception.php', + 'Behat\\Gherkin\\Exception\\LexerException' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Exception/LexerException.php', + 'Behat\\Gherkin\\Exception\\NodeException' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Exception/NodeException.php', + 'Behat\\Gherkin\\Exception\\ParserException' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Exception/ParserException.php', + 'Behat\\Gherkin\\Filter\\ComplexFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/ComplexFilter.php', + 'Behat\\Gherkin\\Filter\\ComplexFilterInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/ComplexFilterInterface.php', + 'Behat\\Gherkin\\Filter\\FeatureFilterInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/FeatureFilterInterface.php', + 'Behat\\Gherkin\\Filter\\FilterInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/FilterInterface.php', + 'Behat\\Gherkin\\Filter\\LineFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/LineFilter.php', + 'Behat\\Gherkin\\Filter\\LineRangeFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/LineRangeFilter.php', + 'Behat\\Gherkin\\Filter\\NameFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/NameFilter.php', + 'Behat\\Gherkin\\Filter\\NarrativeFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/NarrativeFilter.php', + 'Behat\\Gherkin\\Filter\\PathsFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/PathsFilter.php', + 'Behat\\Gherkin\\Filter\\RoleFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/RoleFilter.php', + 'Behat\\Gherkin\\Filter\\SimpleFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/SimpleFilter.php', + 'Behat\\Gherkin\\Filter\\TagFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/TagFilter.php', + 'Behat\\Gherkin\\Gherkin' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Gherkin.php', + 'Behat\\Gherkin\\Keywords\\ArrayKeywords' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Keywords/ArrayKeywords.php', + 'Behat\\Gherkin\\Keywords\\CachedArrayKeywords' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Keywords/CachedArrayKeywords.php', + 'Behat\\Gherkin\\Keywords\\CucumberKeywords' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Keywords/CucumberKeywords.php', + 'Behat\\Gherkin\\Keywords\\KeywordsDumper' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Keywords/KeywordsDumper.php', + 'Behat\\Gherkin\\Keywords\\KeywordsInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Keywords/KeywordsInterface.php', + 'Behat\\Gherkin\\Lexer' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Lexer.php', + 'Behat\\Gherkin\\Loader\\AbstractFileLoader' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Loader/AbstractFileLoader.php', + 'Behat\\Gherkin\\Loader\\ArrayLoader' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Loader/ArrayLoader.php', + 'Behat\\Gherkin\\Loader\\DirectoryLoader' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Loader/DirectoryLoader.php', + 'Behat\\Gherkin\\Loader\\FileLoaderInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Loader/FileLoaderInterface.php', + 'Behat\\Gherkin\\Loader\\GherkinFileLoader' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Loader/GherkinFileLoader.php', + 'Behat\\Gherkin\\Loader\\LoaderInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Loader/LoaderInterface.php', + 'Behat\\Gherkin\\Loader\\YamlFileLoader' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Loader/YamlFileLoader.php', + 'Behat\\Gherkin\\Node\\ArgumentInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/ArgumentInterface.php', + 'Behat\\Gherkin\\Node\\BackgroundNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/BackgroundNode.php', + 'Behat\\Gherkin\\Node\\ExampleNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/ExampleNode.php', + 'Behat\\Gherkin\\Node\\ExampleTableNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/ExampleTableNode.php', + 'Behat\\Gherkin\\Node\\FeatureNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/FeatureNode.php', + 'Behat\\Gherkin\\Node\\KeywordNodeInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/KeywordNodeInterface.php', + 'Behat\\Gherkin\\Node\\NodeInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/NodeInterface.php', + 'Behat\\Gherkin\\Node\\OutlineNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/OutlineNode.php', + 'Behat\\Gherkin\\Node\\PyStringNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/PyStringNode.php', + 'Behat\\Gherkin\\Node\\ScenarioInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioInterface.php', + 'Behat\\Gherkin\\Node\\ScenarioLikeInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioLikeInterface.php', + 'Behat\\Gherkin\\Node\\ScenarioNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioNode.php', + 'Behat\\Gherkin\\Node\\StepContainerInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/StepContainerInterface.php', + 'Behat\\Gherkin\\Node\\StepNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/StepNode.php', + 'Behat\\Gherkin\\Node\\TableNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/TableNode.php', + 'Behat\\Gherkin\\Node\\TaggedNodeInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/TaggedNodeInterface.php', + 'Behat\\Gherkin\\Parser' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Parser.php', + 'Cache_Command' => __DIR__ . '/..' . '/wp-cli/cache-command/src/Cache_Command.php', + 'Capabilities_Command' => __DIR__ . '/..' . '/wp-cli/role-command/src/Capabilities_Command.php', + 'Carbon\\Carbon' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Carbon.php', + 'Carbon\\CarbonImmutable' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonImmutable.php', + 'Carbon\\CarbonInterface' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonInterface.php', + 'Carbon\\CarbonInterval' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonInterval.php', + 'Carbon\\CarbonPeriod' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonPeriod.php', + 'Carbon\\CarbonTimeZone' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonTimeZone.php', + 'Carbon\\Cli\\Invoker' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Cli/Invoker.php', + 'Carbon\\Exceptions\\InvalidDateException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php', + 'Carbon\\Factory' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Factory.php', + 'Carbon\\FactoryImmutable' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/FactoryImmutable.php', + 'Carbon\\Language' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Language.php', + 'Carbon\\Laravel\\ServiceProvider' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Laravel/ServiceProvider.php', + 'Carbon\\Traits\\Boundaries' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Boundaries.php', + 'Carbon\\Traits\\Comparison' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Comparison.php', + 'Carbon\\Traits\\Converter' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Converter.php', + 'Carbon\\Traits\\Creator' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Creator.php', + 'Carbon\\Traits\\Date' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Date.php', + 'Carbon\\Traits\\Difference' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Difference.php', + 'Carbon\\Traits\\Localization' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Localization.php', + 'Carbon\\Traits\\Macro' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Macro.php', + 'Carbon\\Traits\\Modifiers' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Modifiers.php', + 'Carbon\\Traits\\Mutability' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Mutability.php', + 'Carbon\\Traits\\Options' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Options.php', + 'Carbon\\Traits\\Rounding' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Rounding.php', + 'Carbon\\Traits\\Serialization' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Serialization.php', + 'Carbon\\Traits\\Test' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Test.php', + 'Carbon\\Traits\\Timestamp' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Timestamp.php', + 'Carbon\\Traits\\Units' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Units.php', + 'Carbon\\Traits\\Week' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Week.php', + 'Carbon\\Translator' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Translator.php', + 'Checksum_Base_Command' => __DIR__ . '/..' . '/wp-cli/checksum-command/src/Checksum_Base_Command.php', + 'Checksum_Core_Command' => __DIR__ . '/..' . '/wp-cli/checksum-command/src/Checksum_Core_Command.php', + 'Checksum_Plugin_Command' => __DIR__ . '/..' . '/wp-cli/checksum-command/src/Checksum_Plugin_Command.php', + 'Codeception\\Actor' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Actor.php', + 'Codeception\\Application' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Application.php', + 'Codeception\\Codecept' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Codecept.php', + 'Codeception\\Command\\Bootstrap' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Bootstrap.php', + 'Codeception\\Command\\Build' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Build.php', + 'Codeception\\Command\\Clean' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Clean.php', + 'Codeception\\Command\\Completion' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Completion.php', + 'Codeception\\Command\\CompletionFallback' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/CompletionFallback.php', + 'Codeception\\Command\\ConfigValidate' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/ConfigValidate.php', + 'Codeception\\Command\\Console' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Console.php', + 'Codeception\\Command\\DryRun' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/DryRun.php', + 'Codeception\\Command\\GenerateCept' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateCept.php', + 'Codeception\\Command\\GenerateCest' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateCest.php', + 'Codeception\\Command\\GenerateEnvironment' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateEnvironment.php', + 'Codeception\\Command\\GenerateFeature' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateFeature.php', + 'Codeception\\Command\\GenerateGroup' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateGroup.php', + 'Codeception\\Command\\GenerateHelper' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateHelper.php', + 'Codeception\\Command\\GeneratePageObject' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GeneratePageObject.php', + 'Codeception\\Command\\GenerateScenarios' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateScenarios.php', + 'Codeception\\Command\\GenerateSnapshot' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateSnapshot.php', + 'Codeception\\Command\\GenerateStepObject' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateStepObject.php', + 'Codeception\\Command\\GenerateSuite' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateSuite.php', + 'Codeception\\Command\\GenerateTest' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateTest.php', + 'Codeception\\Command\\GenerateWPAjax' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPAjax.php', + 'Codeception\\Command\\GenerateWPCanonical' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPCanonical.php', + 'Codeception\\Command\\GenerateWPRestApi' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestApi.php', + 'Codeception\\Command\\GenerateWPRestController' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestController.php', + 'Codeception\\Command\\GenerateWPRestPostTypeController' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestPostTypeController.php', + 'Codeception\\Command\\GenerateWPUnit' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPUnit.php', + 'Codeception\\Command\\GenerateWPXMLRPC' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPXMLRPC.php', + 'Codeception\\Command\\GherkinSnippets' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GherkinSnippets.php', + 'Codeception\\Command\\GherkinSteps' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GherkinSteps.php', + 'Codeception\\Command\\Init' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Init.php', + 'Codeception\\Command\\Run' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Run.php', + 'Codeception\\Command\\SelfUpdate' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/SelfUpdate.php', + 'Codeception\\Command\\Shared\\Config' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Shared/Config.php', + 'Codeception\\Command\\Shared\\FileSystem' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Shared/FileSystem.php', + 'Codeception\\Command\\Shared\\Style' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Shared/Style.php', + 'Codeception\\Configuration' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Configuration.php', + 'Codeception\\Coverage\\Filter' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Coverage/Filter.php', + 'Codeception\\Coverage\\Subscriber\\Local' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Coverage/Subscriber/Local.php', + 'Codeception\\Coverage\\Subscriber\\LocalServer' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Coverage/Subscriber/LocalServer.php', + 'Codeception\\Coverage\\Subscriber\\Printer' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Coverage/Subscriber/Printer.php', + 'Codeception\\Coverage\\Subscriber\\RemoteServer' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Coverage/Subscriber/RemoteServer.php', + 'Codeception\\Coverage\\SuiteSubscriber' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Coverage/SuiteSubscriber.php', + 'Codeception\\CustomCommandInterface' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/CustomCommandInterface.php', + 'Codeception\\Event\\FailEvent' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Event/FailEvent.php', + 'Codeception\\Event\\PrintResultEvent' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Event/PrintResultEvent.php', + 'Codeception\\Event\\StepEvent' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Event/StepEvent.php', + 'Codeception\\Event\\SuiteEvent' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Event/SuiteEvent.php', + 'Codeception\\Event\\TestEvent' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Event/TestEvent.php', + 'Codeception\\Events' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Events.php', + 'Codeception\\Example' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Example.php', + 'Codeception\\Exception\\ConditionalAssertionFailed' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ConditionalAssertionFailed.php', + 'Codeception\\Exception\\ConfigurationException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ConfigurationException.php', + 'Codeception\\Exception\\ConnectionException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ConnectionException.php', + 'Codeception\\Exception\\ContentNotFound' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ContentNotFound.php', + 'Codeception\\Exception\\ElementNotFound' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ElementNotFound.php', + 'Codeception\\Exception\\ExtensionException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ExtensionException.php', + 'Codeception\\Exception\\ExternalUrlException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ExternalUrlException.php', + 'Codeception\\Exception\\Fail' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/Fail.php', + 'Codeception\\Exception\\Incomplete' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/Incomplete.php', + 'Codeception\\Exception\\InjectionException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/InjectionException.php', + 'Codeception\\Exception\\MalformedLocatorException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/MalformedLocatorException.php', + 'Codeception\\Exception\\ModuleConfigException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ModuleConfigException.php', + 'Codeception\\Exception\\ModuleConflictException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ModuleConflictException.php', + 'Codeception\\Exception\\ModuleException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ModuleException.php', + 'Codeception\\Exception\\ModuleRequireException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ModuleRequireException.php', + 'Codeception\\Exception\\ParseException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ParseException.php', + 'Codeception\\Exception\\RemoteException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/RemoteException.php', + 'Codeception\\Exception\\Skip' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/Skip.php', + 'Codeception\\Exception\\TestParseException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/TestParseException.php', + 'Codeception\\Exception\\TestRuntimeException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/TestRuntimeException.php', + 'Codeception\\Extension' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Extension.php', + 'Codeception\\Extension\\DotReporter' => __DIR__ . '/..' . '/codeception/codeception/ext/DotReporter.php', + 'Codeception\\Extension\\Logger' => __DIR__ . '/..' . '/codeception/codeception/ext/Logger.php', + 'Codeception\\Extension\\Recorder' => __DIR__ . '/..' . '/codeception/codeception/ext/Recorder.php', + 'Codeception\\Extension\\RunBefore' => __DIR__ . '/..' . '/codeception/codeception/ext/RunBefore.php', + 'Codeception\\Extension\\RunFailed' => __DIR__ . '/..' . '/codeception/codeception/ext/RunFailed.php', + 'Codeception\\Extension\\RunProcess' => __DIR__ . '/..' . '/codeception/codeception/ext/RunProcess.php', + 'Codeception\\Extension\\SimpleReporter' => __DIR__ . '/..' . '/codeception/codeception/ext/SimpleReporter.php', + 'Codeception\\GroupObject' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/GroupObject.php', + 'Codeception\\InitTemplate' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/InitTemplate.php', + 'Codeception\\Lib\\Actor\\Shared\\Comment' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Actor/Shared/Comment.php', + 'Codeception\\Lib\\Actor\\Shared\\Friend' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Actor/Shared/Friend.php', + 'Codeception\\Lib\\Connector\\Guzzle' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Guzzle.php', + 'Codeception\\Lib\\Connector\\Guzzle6' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Guzzle6.php', + 'Codeception\\Lib\\Connector\\Laravel5' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Laravel5.php', + 'Codeception\\Lib\\Connector\\Laravel5\\ExceptionHandlerDecorator' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Laravel5/ExceptionHandlerDecorator.php', + 'Codeception\\Lib\\Connector\\Lumen' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Lumen.php', + 'Codeception\\Lib\\Connector\\Lumen\\DummyKernel' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Lumen/DummyKernel.php', + 'Codeception\\Lib\\Connector\\Phalcon' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Phalcon.php', + 'Codeception\\Lib\\Connector\\Phalcon\\MemorySession' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Phalcon/MemorySession.php', + 'Codeception\\Lib\\Connector\\Shared\\LaravelCommon' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Shared/LaravelCommon.php', + 'Codeception\\Lib\\Connector\\Shared\\PhpSuperGlobalsConverter' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Shared/PhpSuperGlobalsConverter.php', + 'Codeception\\Lib\\Connector\\Symfony' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Symfony.php', + 'Codeception\\Lib\\Connector\\Universal' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Universal.php', + 'Codeception\\Lib\\Connector\\Yii1' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Yii1.php', + 'Codeception\\Lib\\Connector\\Yii2' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2.php', + 'Codeception\\Lib\\Connector\\Yii2\\ConnectionWatcher' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/ConnectionWatcher.php', + 'Codeception\\Lib\\Connector\\Yii2\\FixturesStore' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/FixturesStore.php', + 'Codeception\\Lib\\Connector\\Yii2\\Logger' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/Logger.php', + 'Codeception\\Lib\\Connector\\Yii2\\TestMailer' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/TestMailer.php', + 'Codeception\\Lib\\Connector\\Yii2\\TransactionForcer' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/TransactionForcer.php', + 'Codeception\\Lib\\Connector\\ZF1' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/ZF1.php', + 'Codeception\\Lib\\Connector\\ZF2' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/ZF2.php', + 'Codeception\\Lib\\Connector\\ZF2\\PersistentServiceManager' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/ZF2/PersistentServiceManager.php', + 'Codeception\\Lib\\Connector\\ZendExpressive' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/ZendExpressive.php', + 'Codeception\\Lib\\Connector\\ZendExpressive\\ResponseCollector' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/ZendExpressive/ResponseCollector.php', + 'Codeception\\Lib\\Console\\Colorizer' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Console/Colorizer.php', + 'Codeception\\Lib\\Console\\DiffFactory' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Console/DiffFactory.php', + 'Codeception\\Lib\\Console\\Message' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Console/Message.php', + 'Codeception\\Lib\\Console\\MessageFactory' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Console/MessageFactory.php', + 'Codeception\\Lib\\Console\\Output' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Console/Output.php', + 'Codeception\\Lib\\DbPopulator' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/DbPopulator.php', + 'Codeception\\Lib\\Di' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Di.php', + 'Codeception\\Lib\\Driver\\AmazonSQS' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/AmazonSQS.php', + 'Codeception\\Lib\\Driver\\Beanstalk' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/Beanstalk.php', + 'Codeception\\Lib\\Driver\\Db' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/Db.php', + 'Codeception\\Lib\\Driver\\ExtendedDbDriver' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Driver/ExtendedDbDriver.php', + 'Codeception\\Lib\\Driver\\ExtendedMySql' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Driver/ExtendedMySql.php', + 'Codeception\\Lib\\Driver\\Facebook' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/Facebook.php', + 'Codeception\\Lib\\Driver\\Iron' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/Iron.php', + 'Codeception\\Lib\\Driver\\MongoDb' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/MongoDb.php', + 'Codeception\\Lib\\Driver\\MySql' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/MySql.php', + 'Codeception\\Lib\\Driver\\Oci' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/Oci.php', + 'Codeception\\Lib\\Driver\\PostgreSql' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/PostgreSql.php', + 'Codeception\\Lib\\Driver\\SqlSrv' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/SqlSrv.php', + 'Codeception\\Lib\\Driver\\Sqlite' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/Sqlite.php', + 'Codeception\\Lib\\Framework' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Framework.php', + 'Codeception\\Lib\\Friend' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Friend.php', + 'Codeception\\Lib\\Generator\\AbstractGenerator' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Generator/AbstractGenerator.php', + 'Codeception\\Lib\\Generator\\AcceptanceSuiteConfig' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Generator/AcceptanceSuiteConfig.php', + 'Codeception\\Lib\\Generator\\Actions' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Actions.php', + 'Codeception\\Lib\\Generator\\Actor' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Actor.php', + 'Codeception\\Lib\\Generator\\Cept' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Cept.php', + 'Codeception\\Lib\\Generator\\Cest' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Cest.php', + 'Codeception\\Lib\\Generator\\Feature' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Feature.php', + 'Codeception\\Lib\\Generator\\FunctionalSuiteConfig' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Generator/FunctionalSuiteConfig.php', + 'Codeception\\Lib\\Generator\\GeneratorInterface' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Generator/GeneratorInterface.php', + 'Codeception\\Lib\\Generator\\GherkinSnippets' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/GherkinSnippets.php', + 'Codeception\\Lib\\Generator\\Group' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Group.php', + 'Codeception\\Lib\\Generator\\Helper' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Helper.php', + 'Codeception\\Lib\\Generator\\IntegrationSuiteConfig' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Generator/IntegrationSuiteConfig.php', + 'Codeception\\Lib\\Generator\\IntegrationSuiteThemeConfig' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Generator/IntegrationSuiteThemeConfig.php', + 'Codeception\\Lib\\Generator\\PageObject' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/PageObject.php', + 'Codeception\\Lib\\Generator\\Shared\\Classname' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Shared/Classname.php', + 'Codeception\\Lib\\Generator\\Snapshot' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Snapshot.php', + 'Codeception\\Lib\\Generator\\StepObject' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/StepObject.php', + 'Codeception\\Lib\\Generator\\Test' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Test.php', + 'Codeception\\Lib\\Generator\\WPUnit' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Generator/WPUnit.php', + 'Codeception\\Lib\\GroupManager' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/GroupManager.php', + 'Codeception\\Lib\\InnerBrowser' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/InnerBrowser.php', + 'Codeception\\Lib\\Interfaces\\API' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/API.php', + 'Codeception\\Lib\\Interfaces\\ActiveRecord' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/ActiveRecord.php', + 'Codeception\\Lib\\Interfaces\\ConflictsWithModule' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/ConflictsWithModule.php', + 'Codeception\\Lib\\Interfaces\\DataMapper' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/DataMapper.php', + 'Codeception\\Lib\\Interfaces\\Db' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/Db.php', + 'Codeception\\Lib\\Interfaces\\DependsOnModule' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/DependsOnModule.php', + 'Codeception\\Lib\\Interfaces\\DoctrineProvider' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/DoctrineProvider.php', + 'Codeception\\Lib\\Interfaces\\ElementLocator' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/ElementLocator.php', + 'Codeception\\Lib\\Interfaces\\MultiSession' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/MultiSession.php', + 'Codeception\\Lib\\Interfaces\\ORM' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/ORM.php', + 'Codeception\\Lib\\Interfaces\\PageSourceSaver' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/PageSourceSaver.php', + 'Codeception\\Lib\\Interfaces\\PartedModule' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/PartedModule.php', + 'Codeception\\Lib\\Interfaces\\Queue' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/Queue.php', + 'Codeception\\Lib\\Interfaces\\Remote' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/Remote.php', + 'Codeception\\Lib\\Interfaces\\RequiresPackage' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/RequiresPackage.php', + 'Codeception\\Lib\\Interfaces\\ScreenshotSaver' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/ScreenshotSaver.php', + 'Codeception\\Lib\\Interfaces\\SessionSnapshot' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/SessionSnapshot.php', + 'Codeception\\Lib\\Interfaces\\Web' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/Web.php', + 'Codeception\\Lib\\ModuleContainer' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/ModuleContainer.php', + 'Codeception\\Lib\\Notification' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Notification.php', + 'Codeception\\Lib\\ParamsLoader' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/ParamsLoader.php', + 'Codeception\\Lib\\Parser' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Parser.php', + 'Codeception\\Lib\\Shared\\LaravelCommon' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Shared/LaravelCommon.php', + 'Codeception\\Module' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module.php', + 'Codeception\\Module\\AMQP' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/AMQP.php', + 'Codeception\\Module\\AngularJS' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/AngularJS.php', + 'Codeception\\Module\\Apc' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Apc.php', + 'Codeception\\Module\\Asserts' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Asserts.php', + 'Codeception\\Module\\Cli' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Cli.php', + 'Codeception\\Module\\DataFactory' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/DataFactory.php', + 'Codeception\\Module\\Db' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Db.php', + 'Codeception\\Module\\Doctrine2' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Doctrine2.php', + 'Codeception\\Module\\FTP' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/FTP.php', + 'Codeception\\Module\\Facebook' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Facebook.php', + 'Codeception\\Module\\Filesystem' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Filesystem.php', + 'Codeception\\Module\\Laravel5' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Laravel5.php', + 'Codeception\\Module\\Lumen' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Lumen.php', + 'Codeception\\Module\\Memcache' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Memcache.php', + 'Codeception\\Module\\MongoDb' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/MongoDb.php', + 'Codeception\\Module\\Phalcon' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Phalcon.php', + 'Codeception\\Module\\PhpBrowser' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/PhpBrowser.php', + 'Codeception\\Module\\Queue' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Queue.php', + 'Codeception\\Module\\REST' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/REST.php', + 'Codeception\\Module\\Redis' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Redis.php', + 'Codeception\\Module\\SOAP' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/SOAP.php', + 'Codeception\\Module\\Sequence' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Sequence.php', + 'Codeception\\Module\\Silex' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Silex.php', + 'Codeception\\Module\\Symfony' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Symfony.php', + 'Codeception\\Module\\WPBrowser' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPBrowser.php', + 'Codeception\\Module\\WPBrowserMethods' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPBrowserMethods.php', + 'Codeception\\Module\\WPCLI' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPCLI.php', + 'Codeception\\Module\\WPDb' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPDb.php', + 'Codeception\\Module\\WPFilesystem' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPFilesystem.php', + 'Codeception\\Module\\WPLoader' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPLoader.php', + 'Codeception\\Module\\WPQueries' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPQueries.php', + 'Codeception\\Module\\WPWebDriver' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPWebDriver.php', + 'Codeception\\Module\\WebDriver' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/WebDriver.php', + 'Codeception\\Module\\WordPress' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WordPress.php', + 'Codeception\\Module\\XMLRPC' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/XMLRPC.php', + 'Codeception\\Module\\Yii1' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Yii1.php', + 'Codeception\\Module\\Yii2' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Yii2.php', + 'Codeception\\Module\\ZF1' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/ZF1.php', + 'Codeception\\Module\\ZF2' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/ZF2.php', + 'Codeception\\Module\\ZendExpressive' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/ZendExpressive.php', + 'Codeception\\PHPUnit\\ConsolePrinter' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/ConsolePrinter.php', + 'Codeception\\PHPUnit\\Constraint\\Crawler' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Constraint/Crawler.php', + 'Codeception\\PHPUnit\\Constraint\\CrawlerNot' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Constraint/CrawlerNot.php', + 'Codeception\\PHPUnit\\Constraint\\JsonContains' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Constraint/JsonContains.php', + 'Codeception\\PHPUnit\\Constraint\\JsonType' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Constraint/JsonType.php', + 'Codeception\\PHPUnit\\Constraint\\Page' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Constraint/Page.php', + 'Codeception\\PHPUnit\\Constraint\\WebDriver' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Constraint/WebDriver.php', + 'Codeception\\PHPUnit\\Constraint\\WebDriverNot' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Constraint/WebDriverNot.php', + 'Codeception\\PHPUnit\\FilterTest' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/FilterTest.php', + 'Codeception\\PHPUnit\\Init' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Init.php', + 'Codeception\\PHPUnit\\Listener' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Listener.php', + 'Codeception\\PHPUnit\\Log\\JUnit' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Log/JUnit.php', + 'Codeception\\PHPUnit\\Log\\PhpUnit' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Log/PhpUnit.php', + 'Codeception\\PHPUnit\\ResultPrinter' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/ResultPrinter.php', + 'Codeception\\PHPUnit\\ResultPrinter\\HTML' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/ResultPrinter/HTML.php', + 'Codeception\\PHPUnit\\ResultPrinter\\Report' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/ResultPrinter/Report.php', + 'Codeception\\PHPUnit\\ResultPrinter\\UI' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/ResultPrinter/UI.php', + 'Codeception\\PHPUnit\\Runner' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Runner.php', + 'Codeception\\PHPUnit\\TestCase' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/TestCase.php', + 'Codeception\\Scenario' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Scenario.php', + 'Codeception\\Snapshot' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Snapshot.php', + 'Codeception\\Step' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step.php', + 'Codeception\\Step\\Action' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Action.php', + 'Codeception\\Step\\Argument\\FormattedOutput' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Argument/FormattedOutput.php', + 'Codeception\\Step\\Argument\\PasswordArgument' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Argument/PasswordArgument.php', + 'Codeception\\Step\\Assertion' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Assertion.php', + 'Codeception\\Step\\Comment' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Comment.php', + 'Codeception\\Step\\Condition' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Condition.php', + 'Codeception\\Step\\ConditionalAssertion' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/ConditionalAssertion.php', + 'Codeception\\Step\\Executor' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Executor.php', + 'Codeception\\Step\\Incomplete' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Incomplete.php', + 'Codeception\\Step\\Meta' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Meta.php', + 'Codeception\\Step\\Skip' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Skip.php', + 'Codeception\\Stub' => __DIR__ . '/..' . '/codeception/stub/src/Stub.php', + 'Codeception\\Stub\\ConsecutiveMap' => __DIR__ . '/..' . '/codeception/stub/src/Stub/ConsecutiveMap.php', + 'Codeception\\Stub\\Expected' => __DIR__ . '/..' . '/codeception/stub/src/Stub/Expected.php', + 'Codeception\\Stub\\StubMarshaler' => __DIR__ . '/..' . '/codeception/stub/src/Stub/StubMarshaler.php', + 'Codeception\\Subscriber\\AutoRebuild' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/AutoRebuild.php', + 'Codeception\\Subscriber\\BeforeAfterTest' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/BeforeAfterTest.php', + 'Codeception\\Subscriber\\Bootstrap' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/Bootstrap.php', + 'Codeception\\Subscriber\\Console' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/Console.php', + 'Codeception\\Subscriber\\Dependencies' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/Dependencies.php', + 'Codeception\\Subscriber\\ErrorHandler' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/ErrorHandler.php', + 'Codeception\\Subscriber\\ExtensionLoader' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/ExtensionLoader.php', + 'Codeception\\Subscriber\\FailFast' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/FailFast.php', + 'Codeception\\Subscriber\\GracefulTermination' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/GracefulTermination.php', + 'Codeception\\Subscriber\\Module' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/Module.php', + 'Codeception\\Subscriber\\PrepareTest' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/PrepareTest.php', + 'Codeception\\Subscriber\\Shared\\StaticEvents' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/Shared/StaticEvents.php', + 'Codeception\\Suite' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Suite.php', + 'Codeception\\SuiteManager' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/SuiteManager.php', + 'Codeception\\Template\\Acceptance' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Template/Acceptance.php', + 'Codeception\\Template\\Api' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Template/Api.php', + 'Codeception\\Template\\Bootstrap' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Template/Bootstrap.php', + 'Codeception\\Template\\Unit' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Template/Unit.php', + 'Codeception\\Template\\Wpbrowser' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Template/Wpbrowser.php', + 'Codeception\\TestCase\\WPAjaxTestCase' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/TestCase/WPAjaxTestCase.php', + 'Codeception\\TestCase\\WPCanonicalTestCase' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/TestCase/WPCanonicalTestCase.php', + 'Codeception\\TestCase\\WPRestApiTestCase' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestApiTestCase.php', + 'Codeception\\TestCase\\WPRestControllerTestCase' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestControllerTestCase.php', + 'Codeception\\TestCase\\WPRestPostTypeControllerTestCase' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestPostTypeControllerTestCase.php', + 'Codeception\\TestCase\\WPTestCase' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/TestCase/WPTestCase.php', + 'Codeception\\TestCase\\WPXMLRPCTestCase' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/TestCase/WPXMLRPCTestCase.php', + 'Codeception\\TestInterface' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/TestInterface.php', + 'Codeception\\Test\\Cept' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Cept.php', + 'Codeception\\Test\\Cest' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Cest.php', + 'Codeception\\Test\\Descriptor' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Descriptor.php', + 'Codeception\\Test\\Feature\\AssertionCounter' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Feature/AssertionCounter.php', + 'Codeception\\Test\\Feature\\CodeCoverage' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Feature/CodeCoverage.php', + 'Codeception\\Test\\Feature\\ErrorLogger' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Feature/ErrorLogger.php', + 'Codeception\\Test\\Feature\\IgnoreIfMetadataBlocked' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Feature/IgnoreIfMetadataBlocked.php', + 'Codeception\\Test\\Feature\\MetadataCollector' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Feature/MetadataCollector.php', + 'Codeception\\Test\\Feature\\ScenarioLoader' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Feature/ScenarioLoader.php', + 'Codeception\\Test\\Feature\\Stub' => __DIR__ . '/..' . '/codeception/stub/src/Test/Feature/Stub.php', + 'Codeception\\Test\\Gherkin' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Gherkin.php', + 'Codeception\\Test\\Interfaces\\Dependent' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Interfaces/Dependent.php', + 'Codeception\\Test\\Interfaces\\Descriptive' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Interfaces/Descriptive.php', + 'Codeception\\Test\\Interfaces\\Plain' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Interfaces/Plain.php', + 'Codeception\\Test\\Interfaces\\Reported' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Interfaces/Reported.php', + 'Codeception\\Test\\Interfaces\\ScenarioDriven' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Interfaces/ScenarioDriven.php', + 'Codeception\\Test\\Interfaces\\StrictCoverage' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Interfaces/StrictCoverage.php', + 'Codeception\\Test\\Loader' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Loader.php', + 'Codeception\\Test\\Loader\\Cept' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Loader/Cept.php', + 'Codeception\\Test\\Loader\\Cest' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Loader/Cest.php', + 'Codeception\\Test\\Loader\\Gherkin' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Loader/Gherkin.php', + 'Codeception\\Test\\Loader\\LoaderInterface' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Loader/LoaderInterface.php', + 'Codeception\\Test\\Loader\\Unit' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Loader/Unit.php', + 'Codeception\\Test\\Metadata' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Metadata.php', + 'Codeception\\Test\\Test' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Test.php', + 'Codeception\\Test\\Unit' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Unit.php', + 'Codeception\\Util\\ActionSequence' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/ActionSequence.php', + 'Codeception\\Util\\Annotation' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Annotation.php', + 'Codeception\\Util\\ArrayContainsComparator' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/ArrayContainsComparator.php', + 'Codeception\\Util\\Autoload' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Autoload.php', + 'Codeception\\Util\\Debug' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Debug.php', + 'Codeception\\Util\\FileSystem' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/FileSystem.php', + 'Codeception\\Util\\Fixtures' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Fixtures.php', + 'Codeception\\Util\\HttpCode' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/HttpCode.php', + 'Codeception\\Util\\JsonArray' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/JsonArray.php', + 'Codeception\\Util\\JsonType' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/JsonType.php', + 'Codeception\\Util\\Locator' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Locator.php', + 'Codeception\\Util\\Maybe' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Maybe.php', + 'Codeception\\Util\\PathResolver' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/PathResolver.php', + 'Codeception\\Util\\PropertyAccess' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/PropertyAccess.php', + 'Codeception\\Util\\ReflectionHelper' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/ReflectionHelper.php', + 'Codeception\\Util\\Shared\\Asserts' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Shared/Asserts.php', + 'Codeception\\Util\\Shared\\Namespaces' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Shared/Namespaces.php', + 'Codeception\\Util\\Soap' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Soap.php', + 'Codeception\\Util\\Stub' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Stub.php', + 'Codeception\\Util\\Template' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Template.php', + 'Codeception\\Util\\Uri' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Uri.php', + 'Codeception\\Util\\Xml' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Xml.php', + 'Codeception\\Util\\XmlBuilder' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/XmlBuilder.php', + 'Codeception\\Util\\XmlStructure' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/XmlStructure.php', + 'Comment_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Comment_Command.php', + 'Comment_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Comment_Meta_Command.php', + 'Composer\\Autoload\\AutoloadGenerator' => __DIR__ . '/..' . '/composer/composer/src/Composer/Autoload/AutoloadGenerator.php', + 'Composer\\Autoload\\ClassLoader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Autoload/ClassLoader.php', + 'Composer\\Autoload\\ClassMapGenerator' => __DIR__ . '/..' . '/composer/composer/src/Composer/Autoload/ClassMapGenerator.php', + 'Composer\\CaBundle\\CaBundle' => __DIR__ . '/..' . '/composer/ca-bundle/src/CaBundle.php', + 'Composer\\Cache' => __DIR__ . '/..' . '/composer/composer/src/Composer/Cache.php', + 'Composer\\Command\\AboutCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/AboutCommand.php', + 'Composer\\Command\\ArchiveCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ArchiveCommand.php', + 'Composer\\Command\\BaseCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/BaseCommand.php', + 'Composer\\Command\\BaseDependencyCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/BaseDependencyCommand.php', + 'Composer\\Command\\CheckPlatformReqsCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php', + 'Composer\\Command\\ClearCacheCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ClearCacheCommand.php', + 'Composer\\Command\\ConfigCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ConfigCommand.php', + 'Composer\\Command\\CreateProjectCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/CreateProjectCommand.php', + 'Composer\\Command\\DependsCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/DependsCommand.php', + 'Composer\\Command\\DiagnoseCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/DiagnoseCommand.php', + 'Composer\\Command\\DumpAutoloadCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/DumpAutoloadCommand.php', + 'Composer\\Command\\ExecCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ExecCommand.php', + 'Composer\\Command\\GlobalCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/GlobalCommand.php', + 'Composer\\Command\\HomeCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/HomeCommand.php', + 'Composer\\Command\\InitCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/InitCommand.php', + 'Composer\\Command\\InstallCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/InstallCommand.php', + 'Composer\\Command\\LicensesCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/LicensesCommand.php', + 'Composer\\Command\\OutdatedCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/OutdatedCommand.php', + 'Composer\\Command\\ProhibitsCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ProhibitsCommand.php', + 'Composer\\Command\\RemoveCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/RemoveCommand.php', + 'Composer\\Command\\RequireCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/RequireCommand.php', + 'Composer\\Command\\RunScriptCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/RunScriptCommand.php', + 'Composer\\Command\\ScriptAliasCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ScriptAliasCommand.php', + 'Composer\\Command\\SearchCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/SearchCommand.php', + 'Composer\\Command\\SelfUpdateCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/SelfUpdateCommand.php', + 'Composer\\Command\\ShowCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ShowCommand.php', + 'Composer\\Command\\StatusCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/StatusCommand.php', + 'Composer\\Command\\SuggestsCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/SuggestsCommand.php', + 'Composer\\Command\\UpdateCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/UpdateCommand.php', + 'Composer\\Command\\ValidateCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ValidateCommand.php', + 'Composer\\Compiler' => __DIR__ . '/..' . '/composer/composer/src/Composer/Compiler.php', + 'Composer\\Composer' => __DIR__ . '/..' . '/composer/composer/src/Composer/Composer.php', + 'Composer\\Config' => __DIR__ . '/..' . '/composer/composer/src/Composer/Config.php', + 'Composer\\Config\\ConfigSourceInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Config/ConfigSourceInterface.php', + 'Composer\\Config\\JsonConfigSource' => __DIR__ . '/..' . '/composer/composer/src/Composer/Config/JsonConfigSource.php', + 'Composer\\Console\\Application' => __DIR__ . '/..' . '/composer/composer/src/Composer/Console/Application.php', + 'Composer\\Console\\HtmlOutputFormatter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Console/HtmlOutputFormatter.php', + 'Composer\\DependencyResolver\\Decisions' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Decisions.php', + 'Composer\\DependencyResolver\\DefaultPolicy' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/DefaultPolicy.php', + 'Composer\\DependencyResolver\\GenericRule' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/GenericRule.php', + 'Composer\\DependencyResolver\\Operation\\InstallOperation' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Operation/InstallOperation.php', + 'Composer\\DependencyResolver\\Operation\\MarkAliasInstalledOperation' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php', + 'Composer\\DependencyResolver\\Operation\\MarkAliasUninstalledOperation' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php', + 'Composer\\DependencyResolver\\Operation\\OperationInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Operation/OperationInterface.php', + 'Composer\\DependencyResolver\\Operation\\SolverOperation' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Operation/SolverOperation.php', + 'Composer\\DependencyResolver\\Operation\\UninstallOperation' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Operation/UninstallOperation.php', + 'Composer\\DependencyResolver\\Operation\\UpdateOperation' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Operation/UpdateOperation.php', + 'Composer\\DependencyResolver\\PolicyInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php', + 'Composer\\DependencyResolver\\Pool' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Pool.php', + 'Composer\\DependencyResolver\\Problem' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Problem.php', + 'Composer\\DependencyResolver\\Request' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Request.php', + 'Composer\\DependencyResolver\\Rule' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Rule.php', + 'Composer\\DependencyResolver\\Rule2Literals' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Rule2Literals.php', + 'Composer\\DependencyResolver\\RuleSet' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/RuleSet.php', + 'Composer\\DependencyResolver\\RuleSetGenerator' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/RuleSetGenerator.php', + 'Composer\\DependencyResolver\\RuleSetIterator' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/RuleSetIterator.php', + 'Composer\\DependencyResolver\\RuleWatchChain' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/RuleWatchChain.php', + 'Composer\\DependencyResolver\\RuleWatchGraph' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/RuleWatchGraph.php', + 'Composer\\DependencyResolver\\RuleWatchNode' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/RuleWatchNode.php', + 'Composer\\DependencyResolver\\Solver' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Solver.php', + 'Composer\\DependencyResolver\\SolverBugException' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/SolverBugException.php', + 'Composer\\DependencyResolver\\SolverProblemsException' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/SolverProblemsException.php', + 'Composer\\DependencyResolver\\Transaction' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Transaction.php', + 'Composer\\Downloader\\ArchiveDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/ArchiveDownloader.php', + 'Composer\\Downloader\\ChangeReportInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/ChangeReportInterface.php', + 'Composer\\Downloader\\DownloadManager' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/DownloadManager.php', + 'Composer\\Downloader\\DownloaderInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/DownloaderInterface.php', + 'Composer\\Downloader\\DvcsDownloaderInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/DvcsDownloaderInterface.php', + 'Composer\\Downloader\\FileDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/FileDownloader.php', + 'Composer\\Downloader\\FilesystemException' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/FilesystemException.php', + 'Composer\\Downloader\\FossilDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/FossilDownloader.php', + 'Composer\\Downloader\\GitDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/GitDownloader.php', + 'Composer\\Downloader\\GzipDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/GzipDownloader.php', + 'Composer\\Downloader\\HgDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/HgDownloader.php', + 'Composer\\Downloader\\PathDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/PathDownloader.php', + 'Composer\\Downloader\\PearPackageExtractor' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/PearPackageExtractor.php', + 'Composer\\Downloader\\PerforceDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/PerforceDownloader.php', + 'Composer\\Downloader\\PharDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/PharDownloader.php', + 'Composer\\Downloader\\RarDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/RarDownloader.php', + 'Composer\\Downloader\\SvnDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/SvnDownloader.php', + 'Composer\\Downloader\\TarDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/TarDownloader.php', + 'Composer\\Downloader\\TransportException' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/TransportException.php', + 'Composer\\Downloader\\VcsCapableDownloaderInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/VcsCapableDownloaderInterface.php', + 'Composer\\Downloader\\VcsDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/VcsDownloader.php', + 'Composer\\Downloader\\XzDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/XzDownloader.php', + 'Composer\\Downloader\\ZipDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/ZipDownloader.php', + 'Composer\\EventDispatcher\\Event' => __DIR__ . '/..' . '/composer/composer/src/Composer/EventDispatcher/Event.php', + 'Composer\\EventDispatcher\\EventDispatcher' => __DIR__ . '/..' . '/composer/composer/src/Composer/EventDispatcher/EventDispatcher.php', + 'Composer\\EventDispatcher\\EventSubscriberInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/EventDispatcher/EventSubscriberInterface.php', + 'Composer\\EventDispatcher\\ScriptExecutionException' => __DIR__ . '/..' . '/composer/composer/src/Composer/EventDispatcher/ScriptExecutionException.php', + 'Composer\\Exception\\NoSslException' => __DIR__ . '/..' . '/composer/composer/src/Composer/Exception/NoSslException.php', + 'Composer\\Factory' => __DIR__ . '/..' . '/composer/composer/src/Composer/Factory.php', + 'Composer\\IO\\BaseIO' => __DIR__ . '/..' . '/composer/composer/src/Composer/IO/BaseIO.php', + 'Composer\\IO\\BufferIO' => __DIR__ . '/..' . '/composer/composer/src/Composer/IO/BufferIO.php', + 'Composer\\IO\\ConsoleIO' => __DIR__ . '/..' . '/composer/composer/src/Composer/IO/ConsoleIO.php', + 'Composer\\IO\\IOInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/IO/IOInterface.php', + 'Composer\\IO\\NullIO' => __DIR__ . '/..' . '/composer/composer/src/Composer/IO/NullIO.php', + 'Composer\\Installer' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer.php', + 'Composer\\Installer\\BinaryInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/BinaryInstaller.php', + 'Composer\\Installer\\BinaryPresenceInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/BinaryPresenceInterface.php', + 'Composer\\Installer\\InstallationManager' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/InstallationManager.php', + 'Composer\\Installer\\InstallerEvent' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/InstallerEvent.php', + 'Composer\\Installer\\InstallerEvents' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/InstallerEvents.php', + 'Composer\\Installer\\InstallerInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/InstallerInterface.php', + 'Composer\\Installer\\LibraryInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/LibraryInstaller.php', + 'Composer\\Installer\\MetapackageInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/MetapackageInstaller.php', + 'Composer\\Installer\\NoopInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/NoopInstaller.php', + 'Composer\\Installer\\PackageEvent' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/PackageEvent.php', + 'Composer\\Installer\\PackageEvents' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/PackageEvents.php', + 'Composer\\Installer\\PearBinaryInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/PearBinaryInstaller.php', + 'Composer\\Installer\\PearInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/PearInstaller.php', + 'Composer\\Installer\\PluginInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/PluginInstaller.php', + 'Composer\\Installer\\ProjectInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/ProjectInstaller.php', + 'Composer\\Installer\\SuggestedPackagesReporter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/SuggestedPackagesReporter.php', + 'Composer\\Json\\JsonFile' => __DIR__ . '/..' . '/composer/composer/src/Composer/Json/JsonFile.php', + 'Composer\\Json\\JsonFormatter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Json/JsonFormatter.php', + 'Composer\\Json\\JsonManipulator' => __DIR__ . '/..' . '/composer/composer/src/Composer/Json/JsonManipulator.php', + 'Composer\\Json\\JsonValidationException' => __DIR__ . '/..' . '/composer/composer/src/Composer/Json/JsonValidationException.php', + 'Composer\\Package\\AliasPackage' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/AliasPackage.php', + 'Composer\\Package\\Archiver\\ArchivableFilesFilter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFilter.php', + 'Composer\\Package\\Archiver\\ArchivableFilesFinder' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFinder.php', + 'Composer\\Package\\Archiver\\ArchiveManager' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/ArchiveManager.php', + 'Composer\\Package\\Archiver\\ArchiverInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php', + 'Composer\\Package\\Archiver\\BaseExcludeFilter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/BaseExcludeFilter.php', + 'Composer\\Package\\Archiver\\ComposerExcludeFilter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/ComposerExcludeFilter.php', + 'Composer\\Package\\Archiver\\GitExcludeFilter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/GitExcludeFilter.php', + 'Composer\\Package\\Archiver\\HgExcludeFilter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/HgExcludeFilter.php', + 'Composer\\Package\\Archiver\\PharArchiver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/PharArchiver.php', + 'Composer\\Package\\Archiver\\ZipArchiver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/ZipArchiver.php', + 'Composer\\Package\\BasePackage' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/BasePackage.php', + 'Composer\\Package\\Comparer\\Comparer' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Comparer/Comparer.php', + 'Composer\\Package\\CompletePackage' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/CompletePackage.php', + 'Composer\\Package\\CompletePackageInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/CompletePackageInterface.php', + 'Composer\\Package\\Dumper\\ArrayDumper' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php', + 'Composer\\Package\\Link' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Link.php', + 'Composer\\Package\\LinkConstraint\\EmptyConstraint' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/LinkConstraint/EmptyConstraint.php', + 'Composer\\Package\\LinkConstraint\\LinkConstraintInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/LinkConstraint/LinkConstraintInterface.php', + 'Composer\\Package\\LinkConstraint\\MultiConstraint' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/LinkConstraint/MultiConstraint.php', + 'Composer\\Package\\LinkConstraint\\SpecificConstraint' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/LinkConstraint/SpecificConstraint.php', + 'Composer\\Package\\LinkConstraint\\VersionConstraint' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/LinkConstraint/VersionConstraint.php', + 'Composer\\Package\\Loader\\ArrayLoader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Loader/ArrayLoader.php', + 'Composer\\Package\\Loader\\InvalidPackageException' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Loader/InvalidPackageException.php', + 'Composer\\Package\\Loader\\JsonLoader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Loader/JsonLoader.php', + 'Composer\\Package\\Loader\\LoaderInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Loader/LoaderInterface.php', + 'Composer\\Package\\Loader\\RootPackageLoader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Loader/RootPackageLoader.php', + 'Composer\\Package\\Loader\\ValidatingArrayLoader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php', + 'Composer\\Package\\Locker' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Locker.php', + 'Composer\\Package\\Package' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Package.php', + 'Composer\\Package\\PackageInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/PackageInterface.php', + 'Composer\\Package\\RootAliasPackage' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/RootAliasPackage.php', + 'Composer\\Package\\RootPackage' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/RootPackage.php', + 'Composer\\Package\\RootPackageInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/RootPackageInterface.php', + 'Composer\\Package\\Version\\VersionGuesser' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Version/VersionGuesser.php', + 'Composer\\Package\\Version\\VersionParser' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Version/VersionParser.php', + 'Composer\\Package\\Version\\VersionSelector' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Version/VersionSelector.php', + 'Composer\\Plugin\\Capability\\Capability' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/Capability/Capability.php', + 'Composer\\Plugin\\Capability\\CommandProvider' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/Capability/CommandProvider.php', + 'Composer\\Plugin\\Capable' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/Capable.php', + 'Composer\\Plugin\\CommandEvent' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/CommandEvent.php', + 'Composer\\Plugin\\PluginEvents' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/PluginEvents.php', + 'Composer\\Plugin\\PluginInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/PluginInterface.php', + 'Composer\\Plugin\\PluginManager' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/PluginManager.php', + 'Composer\\Plugin\\PreCommandRunEvent' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/PreCommandRunEvent.php', + 'Composer\\Plugin\\PreFileDownloadEvent' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/PreFileDownloadEvent.php', + 'Composer\\Question\\StrictConfirmationQuestion' => __DIR__ . '/..' . '/composer/composer/src/Composer/Question/StrictConfirmationQuestion.php', + 'Composer\\Repository\\ArrayRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/ArrayRepository.php', + 'Composer\\Repository\\ArtifactRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/ArtifactRepository.php', + 'Composer\\Repository\\BaseRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/BaseRepository.php', + 'Composer\\Repository\\ComposerRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/ComposerRepository.php', + 'Composer\\Repository\\CompositeRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/CompositeRepository.php', + 'Composer\\Repository\\ConfigurableRepositoryInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/ConfigurableRepositoryInterface.php', + 'Composer\\Repository\\FilesystemRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/FilesystemRepository.php', + 'Composer\\Repository\\InstalledArrayRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/InstalledArrayRepository.php', + 'Composer\\Repository\\InstalledFilesystemRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/InstalledFilesystemRepository.php', + 'Composer\\Repository\\InstalledRepositoryInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/InstalledRepositoryInterface.php', + 'Composer\\Repository\\InvalidRepositoryException' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/InvalidRepositoryException.php', + 'Composer\\Repository\\PackageRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/PackageRepository.php', + 'Composer\\Repository\\PathRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/PathRepository.php', + 'Composer\\Repository\\PearRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/PearRepository.php', + 'Composer\\Repository\\Pear\\BaseChannelReader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/BaseChannelReader.php', + 'Composer\\Repository\\Pear\\ChannelInfo' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/ChannelInfo.php', + 'Composer\\Repository\\Pear\\ChannelReader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/ChannelReader.php', + 'Composer\\Repository\\Pear\\ChannelRest10Reader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/ChannelRest10Reader.php', + 'Composer\\Repository\\Pear\\ChannelRest11Reader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/ChannelRest11Reader.php', + 'Composer\\Repository\\Pear\\DependencyConstraint' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/DependencyConstraint.php', + 'Composer\\Repository\\Pear\\DependencyInfo' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/DependencyInfo.php', + 'Composer\\Repository\\Pear\\PackageDependencyParser' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/PackageDependencyParser.php', + 'Composer\\Repository\\Pear\\PackageInfo' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/PackageInfo.php', + 'Composer\\Repository\\Pear\\ReleaseInfo' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/ReleaseInfo.php', + 'Composer\\Repository\\PlatformRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/PlatformRepository.php', + 'Composer\\Repository\\RepositoryFactory' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/RepositoryFactory.php', + 'Composer\\Repository\\RepositoryInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/RepositoryInterface.php', + 'Composer\\Repository\\RepositoryManager' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/RepositoryManager.php', + 'Composer\\Repository\\RepositorySecurityException' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/RepositorySecurityException.php', + 'Composer\\Repository\\VcsRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/VcsRepository.php', + 'Composer\\Repository\\Vcs\\BitbucketDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/BitbucketDriver.php', + 'Composer\\Repository\\Vcs\\FossilDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php', + 'Composer\\Repository\\Vcs\\GitBitbucketDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/GitBitbucketDriver.php', + 'Composer\\Repository\\Vcs\\GitDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/GitDriver.php', + 'Composer\\Repository\\Vcs\\GitHubDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php', + 'Composer\\Repository\\Vcs\\GitLabDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php', + 'Composer\\Repository\\Vcs\\HgBitbucketDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/HgBitbucketDriver.php', + 'Composer\\Repository\\Vcs\\HgDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/HgDriver.php', + 'Composer\\Repository\\Vcs\\PerforceDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php', + 'Composer\\Repository\\Vcs\\SvnDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/SvnDriver.php', + 'Composer\\Repository\\Vcs\\VcsDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/VcsDriver.php', + 'Composer\\Repository\\Vcs\\VcsDriverInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/VcsDriverInterface.php', + 'Composer\\Repository\\VersionCacheInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/VersionCacheInterface.php', + 'Composer\\Repository\\WritableArrayRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/WritableArrayRepository.php', + 'Composer\\Repository\\WritableRepositoryInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/WritableRepositoryInterface.php', + 'Composer\\Script\\CommandEvent' => __DIR__ . '/..' . '/composer/composer/src/Composer/Script/CommandEvent.php', + 'Composer\\Script\\Event' => __DIR__ . '/..' . '/composer/composer/src/Composer/Script/Event.php', + 'Composer\\Script\\PackageEvent' => __DIR__ . '/..' . '/composer/composer/src/Composer/Script/PackageEvent.php', + 'Composer\\Script\\ScriptEvents' => __DIR__ . '/..' . '/composer/composer/src/Composer/Script/ScriptEvents.php', + 'Composer\\SelfUpdate\\Keys' => __DIR__ . '/..' . '/composer/composer/src/Composer/SelfUpdate/Keys.php', + 'Composer\\SelfUpdate\\Versions' => __DIR__ . '/..' . '/composer/composer/src/Composer/SelfUpdate/Versions.php', + 'Composer\\Semver\\Comparator' => __DIR__ . '/..' . '/composer/semver/src/Comparator.php', + 'Composer\\Semver\\Constraint\\AbstractConstraint' => __DIR__ . '/..' . '/composer/semver/src/Constraint/AbstractConstraint.php', + 'Composer\\Semver\\Constraint\\Constraint' => __DIR__ . '/..' . '/composer/semver/src/Constraint/Constraint.php', + 'Composer\\Semver\\Constraint\\ConstraintInterface' => __DIR__ . '/..' . '/composer/semver/src/Constraint/ConstraintInterface.php', + 'Composer\\Semver\\Constraint\\EmptyConstraint' => __DIR__ . '/..' . '/composer/semver/src/Constraint/EmptyConstraint.php', + 'Composer\\Semver\\Constraint\\MultiConstraint' => __DIR__ . '/..' . '/composer/semver/src/Constraint/MultiConstraint.php', + 'Composer\\Semver\\Semver' => __DIR__ . '/..' . '/composer/semver/src/Semver.php', + 'Composer\\Semver\\VersionParser' => __DIR__ . '/..' . '/composer/semver/src/VersionParser.php', + 'Composer\\Spdx\\SpdxLicenses' => __DIR__ . '/..' . '/composer/spdx-licenses/src/SpdxLicenses.php', + 'Composer\\Spdx\\SpdxLicensesUpdater' => __DIR__ . '/..' . '/composer/spdx-licenses/src/SpdxLicensesUpdater.php', + 'Composer\\Util\\AuthHelper' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/AuthHelper.php', + 'Composer\\Util\\Bitbucket' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Bitbucket.php', + 'Composer\\Util\\ComposerMirror' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/ComposerMirror.php', + 'Composer\\Util\\ConfigValidator' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/ConfigValidator.php', + 'Composer\\Util\\ErrorHandler' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/ErrorHandler.php', + 'Composer\\Util\\Filesystem' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Filesystem.php', + 'Composer\\Util\\Git' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Git.php', + 'Composer\\Util\\GitHub' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/GitHub.php', + 'Composer\\Util\\GitLab' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/GitLab.php', + 'Composer\\Util\\Hg' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Hg.php', + 'Composer\\Util\\IniHelper' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/IniHelper.php', + 'Composer\\Util\\NoProxyPattern' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/NoProxyPattern.php', + 'Composer\\Util\\Perforce' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Perforce.php', + 'Composer\\Util\\Platform' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Platform.php', + 'Composer\\Util\\ProcessExecutor' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/ProcessExecutor.php', + 'Composer\\Util\\RemoteFilesystem' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/RemoteFilesystem.php', + 'Composer\\Util\\Silencer' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Silencer.php', + 'Composer\\Util\\SpdxLicense' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/SpdxLicense.php', + 'Composer\\Util\\StreamContextFactory' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/StreamContextFactory.php', + 'Composer\\Util\\Svn' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Svn.php', + 'Composer\\Util\\TlsHelper' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/TlsHelper.php', + 'Composer\\Util\\Url' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Url.php', + 'Composer\\XdebugHandler' => __DIR__ . '/..' . '/composer/composer/src/Composer/XdebugHandler.php', + 'Composer\\XdebugHandler\\PhpConfig' => __DIR__ . '/..' . '/composer/xdebug-handler/src/PhpConfig.php', + 'Composer\\XdebugHandler\\Process' => __DIR__ . '/..' . '/composer/xdebug-handler/src/Process.php', + 'Composer\\XdebugHandler\\Status' => __DIR__ . '/..' . '/composer/xdebug-handler/src/Status.php', + 'Composer\\XdebugHandler\\XdebugHandler' => __DIR__ . '/..' . '/composer/xdebug-handler/src/XdebugHandler.php', + 'Config_Command' => __DIR__ . '/..' . '/wp-cli/config-command/src/Config_Command.php', + 'Core_Command' => __DIR__ . '/..' . '/wp-cli/core-command/src/Core_Command.php', + 'Core_Command_Namespace' => __DIR__ . '/..' . '/wp-cli/checksum-command/src/Core_Command_Namespace.php', + 'Core_Language_Command' => __DIR__ . '/..' . '/wp-cli/language-command/src/Core_Language_Command.php', + 'Cron_Command' => __DIR__ . '/..' . '/wp-cli/cron-command/src/Cron_Command.php', + 'Cron_Event_Command' => __DIR__ . '/..' . '/wp-cli/cron-command/src/Cron_Event_Command.php', + 'Cron_Schedule_Command' => __DIR__ . '/..' . '/wp-cli/cron-command/src/Cron_Schedule_Command.php', + 'DB_Command' => __DIR__ . '/..' . '/wp-cli/db-command/src/DB_Command.php', + 'DeepCopy\\DeepCopy' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/DeepCopy.php', + 'DeepCopy\\Exception\\CloneException' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Exception/CloneException.php', + 'DeepCopy\\Exception\\PropertyException' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Exception/PropertyException.php', + 'DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php', + 'DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php', + 'DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php', + 'DeepCopy\\Filter\\Filter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php', + 'DeepCopy\\Filter\\KeepFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php', + 'DeepCopy\\Filter\\ReplaceFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/ReplaceFilter.php', + 'DeepCopy\\Filter\\SetNullFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/SetNullFilter.php', + 'DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php', + 'DeepCopy\\Matcher\\Matcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php', + 'DeepCopy\\Matcher\\PropertyMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyMatcher.php', + 'DeepCopy\\Matcher\\PropertyNameMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyNameMatcher.php', + 'DeepCopy\\Matcher\\PropertyTypeMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php', + 'DeepCopy\\Reflection\\ReflectionHelper' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php', + 'DeepCopy\\TypeFilter\\Date\\DateIntervalFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DateIntervalFilter.php', + 'DeepCopy\\TypeFilter\\ReplaceFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php', + 'DeepCopy\\TypeFilter\\ShallowCopyFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php', + 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php', + 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedListFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php', + 'DeepCopy\\TypeFilter\\TypeFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php', + 'DeepCopy\\TypeMatcher\\TypeMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeMatcher/TypeMatcher.php', + 'Doctrine\\Common\\Inflector\\Inflector' => __DIR__ . '/..' . '/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php', + 'Doctrine\\Instantiator\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php', + 'Doctrine\\Instantiator\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php', + 'Doctrine\\Instantiator\\Exception\\UnexpectedValueException' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php', + 'Doctrine\\Instantiator\\Instantiator' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php', + 'Doctrine\\Instantiator\\InstantiatorInterface' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php', + 'Dotenv\\Dotenv' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Dotenv.php', + 'Dotenv\\Environment\\AbstractVariables' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/AbstractVariables.php', + 'Dotenv\\Environment\\Adapter\\AdapterInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/Adapter/AdapterInterface.php', + 'Dotenv\\Environment\\Adapter\\ApacheAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/Adapter/ApacheAdapter.php', + 'Dotenv\\Environment\\Adapter\\ArrayAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/Adapter/ArrayAdapter.php', + 'Dotenv\\Environment\\Adapter\\EnvConstAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/Adapter/EnvConstAdapter.php', + 'Dotenv\\Environment\\Adapter\\PutenvAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/Adapter/PutenvAdapter.php', + 'Dotenv\\Environment\\Adapter\\ServerConstAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/Adapter/ServerConstAdapter.php', + 'Dotenv\\Environment\\DotenvFactory' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/DotenvFactory.php', + 'Dotenv\\Environment\\DotenvVariables' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/DotenvVariables.php', + 'Dotenv\\Environment\\FactoryInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/FactoryInterface.php', + 'Dotenv\\Environment\\VariablesInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/VariablesInterface.php', + 'Dotenv\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/ExceptionInterface.php', + 'Dotenv\\Exception\\InvalidFileException' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/InvalidFileException.php', + 'Dotenv\\Exception\\InvalidPathException' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/InvalidPathException.php', + 'Dotenv\\Exception\\ValidationException' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/ValidationException.php', + 'Dotenv\\Lines' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Lines.php', + 'Dotenv\\Loader' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Loader.php', + 'Dotenv\\Parser' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Parser.php', + 'Dotenv\\Regex\\Error' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Regex/Error.php', + 'Dotenv\\Regex\\Regex' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Regex/Regex.php', + 'Dotenv\\Regex\\Result' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Regex/Result.php', + 'Dotenv\\Regex\\Success' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Regex/Success.php', + 'Dotenv\\Validator' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Validator.php', + 'EvalFile_Command' => __DIR__ . '/..' . '/wp-cli/eval-command/src/EvalFile_Command.php', + 'Eval_Command' => __DIR__ . '/..' . '/wp-cli/eval-command/src/Eval_Command.php', + 'Export_Command' => __DIR__ . '/..' . '/wp-cli/export-command/src/Export_Command.php', + 'Facebook\\WebDriver\\AbstractWebDriverCheckboxOrRadio' => __DIR__ . '/..' . '/facebook/webdriver/lib/AbstractWebDriverCheckboxOrRadio.php', + 'Facebook\\WebDriver\\Chrome\\ChromeDriver' => __DIR__ . '/..' . '/facebook/webdriver/lib/Chrome/ChromeDriver.php', + 'Facebook\\WebDriver\\Chrome\\ChromeDriverService' => __DIR__ . '/..' . '/facebook/webdriver/lib/Chrome/ChromeDriverService.php', + 'Facebook\\WebDriver\\Chrome\\ChromeOptions' => __DIR__ . '/..' . '/facebook/webdriver/lib/Chrome/ChromeOptions.php', + 'Facebook\\WebDriver\\Cookie' => __DIR__ . '/..' . '/facebook/webdriver/lib/Cookie.php', + 'Facebook\\WebDriver\\Exception\\ElementNotSelectableException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/ElementNotSelectableException.php', + 'Facebook\\WebDriver\\Exception\\ElementNotVisibleException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/ElementNotVisibleException.php', + 'Facebook\\WebDriver\\Exception\\ExpectedException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/ExpectedException.php', + 'Facebook\\WebDriver\\Exception\\IMEEngineActivationFailedException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/IMEEngineActivationFailedException.php', + 'Facebook\\WebDriver\\Exception\\IMENotAvailableException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/IMENotAvailableException.php', + 'Facebook\\WebDriver\\Exception\\IndexOutOfBoundsException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/IndexOutOfBoundsException.php', + 'Facebook\\WebDriver\\Exception\\InvalidCookieDomainException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/InvalidCookieDomainException.php', + 'Facebook\\WebDriver\\Exception\\InvalidCoordinatesException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/InvalidCoordinatesException.php', + 'Facebook\\WebDriver\\Exception\\InvalidElementStateException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/InvalidElementStateException.php', + 'Facebook\\WebDriver\\Exception\\InvalidSelectorException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/InvalidSelectorException.php', + 'Facebook\\WebDriver\\Exception\\MoveTargetOutOfBoundsException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/MoveTargetOutOfBoundsException.php', + 'Facebook\\WebDriver\\Exception\\NoAlertOpenException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoAlertOpenException.php', + 'Facebook\\WebDriver\\Exception\\NoCollectionException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoCollectionException.php', + 'Facebook\\WebDriver\\Exception\\NoScriptResultException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoScriptResultException.php', + 'Facebook\\WebDriver\\Exception\\NoStringException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoStringException.php', + 'Facebook\\WebDriver\\Exception\\NoStringLengthException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoStringLengthException.php', + 'Facebook\\WebDriver\\Exception\\NoStringWrapperException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoStringWrapperException.php', + 'Facebook\\WebDriver\\Exception\\NoSuchCollectionException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoSuchCollectionException.php', + 'Facebook\\WebDriver\\Exception\\NoSuchDocumentException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoSuchDocumentException.php', + 'Facebook\\WebDriver\\Exception\\NoSuchDriverException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoSuchDriverException.php', + 'Facebook\\WebDriver\\Exception\\NoSuchElementException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoSuchElementException.php', + 'Facebook\\WebDriver\\Exception\\NoSuchFrameException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoSuchFrameException.php', + 'Facebook\\WebDriver\\Exception\\NoSuchWindowException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoSuchWindowException.php', + 'Facebook\\WebDriver\\Exception\\NullPointerException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NullPointerException.php', + 'Facebook\\WebDriver\\Exception\\ScriptTimeoutException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/ScriptTimeoutException.php', + 'Facebook\\WebDriver\\Exception\\SessionNotCreatedException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/SessionNotCreatedException.php', + 'Facebook\\WebDriver\\Exception\\StaleElementReferenceException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/StaleElementReferenceException.php', + 'Facebook\\WebDriver\\Exception\\TimeOutException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/TimeOutException.php', + 'Facebook\\WebDriver\\Exception\\UnableToSetCookieException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnableToSetCookieException.php', + 'Facebook\\WebDriver\\Exception\\UnexpectedAlertOpenException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnexpectedAlertOpenException.php', + 'Facebook\\WebDriver\\Exception\\UnexpectedJavascriptException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnexpectedJavascriptException.php', + 'Facebook\\WebDriver\\Exception\\UnexpectedTagNameException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnexpectedTagNameException.php', + 'Facebook\\WebDriver\\Exception\\UnknownCommandException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnknownCommandException.php', + 'Facebook\\WebDriver\\Exception\\UnknownServerException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnknownServerException.php', + 'Facebook\\WebDriver\\Exception\\UnrecognizedExceptionException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnrecognizedExceptionException.php', + 'Facebook\\WebDriver\\Exception\\UnsupportedOperationException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnsupportedOperationException.php', + 'Facebook\\WebDriver\\Exception\\WebDriverCurlException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/WebDriverCurlException.php', + 'Facebook\\WebDriver\\Exception\\WebDriverException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/WebDriverException.php', + 'Facebook\\WebDriver\\Exception\\XPathLookupException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/XPathLookupException.php', + 'Facebook\\WebDriver\\Firefox\\FirefoxDriver' => __DIR__ . '/..' . '/facebook/webdriver/lib/Firefox/FirefoxDriver.php', + 'Facebook\\WebDriver\\Firefox\\FirefoxPreferences' => __DIR__ . '/..' . '/facebook/webdriver/lib/Firefox/FirefoxPreferences.php', + 'Facebook\\WebDriver\\Firefox\\FirefoxProfile' => __DIR__ . '/..' . '/facebook/webdriver/lib/Firefox/FirefoxProfile.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverButtonReleaseAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverButtonReleaseAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverClickAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverClickAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverClickAndHoldAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverClickAndHoldAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverContextClickAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverContextClickAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverCoordinates' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverCoordinates.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverDoubleClickAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverDoubleClickAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeyDownAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeyDownAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeyUpAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeyUpAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeysRelatedAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeysRelatedAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMouseAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMouseAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMouseMoveAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMouseMoveAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMoveToOffsetAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMoveToOffsetAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverSendKeysAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverSendKeysAction.php', + 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverSingleKeyAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverSingleKeyAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverDoubleTapAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverDoubleTapAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverDownAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverDownAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverFlickAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverFlickAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverFlickFromElementAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverFlickFromElementAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverLongPressAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverLongPressAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverMoveAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverMoveAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverScrollAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverScrollAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverScrollFromElementAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverScrollFromElementAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTapAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTapAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTouchAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTouchAction.php', + 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTouchScreen' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTouchScreen.php', + 'Facebook\\WebDriver\\Interactions\\WebDriverActions' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/WebDriverActions.php', + 'Facebook\\WebDriver\\Interactions\\WebDriverCompositeAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/WebDriverCompositeAction.php', + 'Facebook\\WebDriver\\Interactions\\WebDriverTouchActions' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/WebDriverTouchActions.php', + 'Facebook\\WebDriver\\Internal\\WebDriverLocatable' => __DIR__ . '/..' . '/facebook/webdriver/lib/Internal/WebDriverLocatable.php', + 'Facebook\\WebDriver\\JavaScriptExecutor' => __DIR__ . '/..' . '/facebook/webdriver/lib/JavaScriptExecutor.php', + 'Facebook\\WebDriver\\Net\\URLChecker' => __DIR__ . '/..' . '/facebook/webdriver/lib/Net/URLChecker.php', + 'Facebook\\WebDriver\\Remote\\DesiredCapabilities' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/DesiredCapabilities.php', + 'Facebook\\WebDriver\\Remote\\DriverCommand' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/DriverCommand.php', + 'Facebook\\WebDriver\\Remote\\ExecuteMethod' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/ExecuteMethod.php', + 'Facebook\\WebDriver\\Remote\\FileDetector' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/FileDetector.php', + 'Facebook\\WebDriver\\Remote\\HttpCommandExecutor' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/HttpCommandExecutor.php', + 'Facebook\\WebDriver\\Remote\\LocalFileDetector' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/LocalFileDetector.php', + 'Facebook\\WebDriver\\Remote\\RemoteExecuteMethod' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/RemoteExecuteMethod.php', + 'Facebook\\WebDriver\\Remote\\RemoteKeyboard' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/RemoteKeyboard.php', + 'Facebook\\WebDriver\\Remote\\RemoteMouse' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/RemoteMouse.php', + 'Facebook\\WebDriver\\Remote\\RemoteTargetLocator' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/RemoteTargetLocator.php', + 'Facebook\\WebDriver\\Remote\\RemoteTouchScreen' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/RemoteTouchScreen.php', + 'Facebook\\WebDriver\\Remote\\RemoteWebDriver' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/RemoteWebDriver.php', + 'Facebook\\WebDriver\\Remote\\RemoteWebElement' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/RemoteWebElement.php', + 'Facebook\\WebDriver\\Remote\\Service\\DriverCommandExecutor' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/Service/DriverCommandExecutor.php', + 'Facebook\\WebDriver\\Remote\\Service\\DriverService' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/Service/DriverService.php', + 'Facebook\\WebDriver\\Remote\\UselessFileDetector' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/UselessFileDetector.php', + 'Facebook\\WebDriver\\Remote\\WebDriverBrowserType' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/WebDriverBrowserType.php', + 'Facebook\\WebDriver\\Remote\\WebDriverCapabilityType' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/WebDriverCapabilityType.php', + 'Facebook\\WebDriver\\Remote\\WebDriverCommand' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/WebDriverCommand.php', + 'Facebook\\WebDriver\\Remote\\WebDriverResponse' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/WebDriverResponse.php', + 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriver' => __DIR__ . '/..' . '/facebook/webdriver/lib/Support/Events/EventFiringWebDriver.php', + 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriverNavigation' => __DIR__ . '/..' . '/facebook/webdriver/lib/Support/Events/EventFiringWebDriverNavigation.php', + 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebElement' => __DIR__ . '/..' . '/facebook/webdriver/lib/Support/Events/EventFiringWebElement.php', + 'Facebook\\WebDriver\\Support\\XPathEscaper' => __DIR__ . '/..' . '/facebook/webdriver/lib/Support/XPathEscaper.php', + 'Facebook\\WebDriver\\WebDriver' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriver.php', + 'Facebook\\WebDriver\\WebDriverAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverAction.php', + 'Facebook\\WebDriver\\WebDriverAlert' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverAlert.php', + 'Facebook\\WebDriver\\WebDriverBy' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverBy.php', + 'Facebook\\WebDriver\\WebDriverCapabilities' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverCapabilities.php', + 'Facebook\\WebDriver\\WebDriverCheckboxes' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverCheckboxes.php', + 'Facebook\\WebDriver\\WebDriverCommandExecutor' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverCommandExecutor.php', + 'Facebook\\WebDriver\\WebDriverDimension' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverDimension.php', + 'Facebook\\WebDriver\\WebDriverDispatcher' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverDispatcher.php', + 'Facebook\\WebDriver\\WebDriverElement' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverElement.php', + 'Facebook\\WebDriver\\WebDriverEventListener' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverEventListener.php', + 'Facebook\\WebDriver\\WebDriverExpectedCondition' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverExpectedCondition.php', + 'Facebook\\WebDriver\\WebDriverHasInputDevices' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverHasInputDevices.php', + 'Facebook\\WebDriver\\WebDriverKeyboard' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverKeyboard.php', + 'Facebook\\WebDriver\\WebDriverKeys' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverKeys.php', + 'Facebook\\WebDriver\\WebDriverMouse' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverMouse.php', + 'Facebook\\WebDriver\\WebDriverNavigation' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverNavigation.php', + 'Facebook\\WebDriver\\WebDriverOptions' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverOptions.php', + 'Facebook\\WebDriver\\WebDriverPlatform' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverPlatform.php', + 'Facebook\\WebDriver\\WebDriverPoint' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverPoint.php', + 'Facebook\\WebDriver\\WebDriverRadios' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverRadios.php', + 'Facebook\\WebDriver\\WebDriverSearchContext' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverSearchContext.php', + 'Facebook\\WebDriver\\WebDriverSelect' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverSelect.php', + 'Facebook\\WebDriver\\WebDriverSelectInterface' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverSelectInterface.php', + 'Facebook\\WebDriver\\WebDriverTargetLocator' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverTargetLocator.php', + 'Facebook\\WebDriver\\WebDriverTimeouts' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverTimeouts.php', + 'Facebook\\WebDriver\\WebDriverUpAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverUpAction.php', + 'Facebook\\WebDriver\\WebDriverWait' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverWait.php', + 'Facebook\\WebDriver\\WebDriverWindow' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverWindow.php', + 'Gettext\\BaseTranslator' => __DIR__ . '/..' . '/gettext/gettext/src/BaseTranslator.php', + 'Gettext\\Extractors\\Blade' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Blade.php', + 'Gettext\\Extractors\\Csv' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Csv.php', + 'Gettext\\Extractors\\CsvDictionary' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/CsvDictionary.php', + 'Gettext\\Extractors\\Extractor' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Extractor.php', + 'Gettext\\Extractors\\ExtractorInterface' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/ExtractorInterface.php', + 'Gettext\\Extractors\\Jed' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Jed.php', + 'Gettext\\Extractors\\JsCode' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/JsCode.php', + 'Gettext\\Extractors\\Json' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Json.php', + 'Gettext\\Extractors\\JsonDictionary' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/JsonDictionary.php', + 'Gettext\\Extractors\\Mo' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Mo.php', + 'Gettext\\Extractors\\PhpArray' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/PhpArray.php', + 'Gettext\\Extractors\\PhpCode' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/PhpCode.php', + 'Gettext\\Extractors\\Po' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Po.php', + 'Gettext\\Extractors\\Twig' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Twig.php', + 'Gettext\\Extractors\\VueJs' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/VueJs.php', + 'Gettext\\Extractors\\Xliff' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Xliff.php', + 'Gettext\\Extractors\\Yaml' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Yaml.php', + 'Gettext\\Extractors\\YamlDictionary' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/YamlDictionary.php', + 'Gettext\\Generators\\Csv' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Csv.php', + 'Gettext\\Generators\\CsvDictionary' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/CsvDictionary.php', + 'Gettext\\Generators\\Generator' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Generator.php', + 'Gettext\\Generators\\GeneratorInterface' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/GeneratorInterface.php', + 'Gettext\\Generators\\Jed' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Jed.php', + 'Gettext\\Generators\\Json' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Json.php', + 'Gettext\\Generators\\JsonDictionary' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/JsonDictionary.php', + 'Gettext\\Generators\\Mo' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Mo.php', + 'Gettext\\Generators\\PhpArray' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/PhpArray.php', + 'Gettext\\Generators\\Po' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Po.php', + 'Gettext\\Generators\\Xliff' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Xliff.php', + 'Gettext\\Generators\\Yaml' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Yaml.php', + 'Gettext\\Generators\\YamlDictionary' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/YamlDictionary.php', + 'Gettext\\GettextTranslator' => __DIR__ . '/..' . '/gettext/gettext/src/GettextTranslator.php', + 'Gettext\\Languages\\Category' => __DIR__ . '/..' . '/gettext/languages/src/Category.php', + 'Gettext\\Languages\\CldrData' => __DIR__ . '/..' . '/gettext/languages/src/CldrData.php', + 'Gettext\\Languages\\Exporter\\Docs' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Docs.php', + 'Gettext\\Languages\\Exporter\\Exporter' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Exporter.php', + 'Gettext\\Languages\\Exporter\\Html' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Html.php', + 'Gettext\\Languages\\Exporter\\Json' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Json.php', + 'Gettext\\Languages\\Exporter\\Php' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Php.php', + 'Gettext\\Languages\\Exporter\\Po' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Po.php', + 'Gettext\\Languages\\Exporter\\Prettyjson' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Prettyjson.php', + 'Gettext\\Languages\\Exporter\\Xml' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Xml.php', + 'Gettext\\Languages\\FormulaConverter' => __DIR__ . '/..' . '/gettext/languages/src/FormulaConverter.php', + 'Gettext\\Languages\\Language' => __DIR__ . '/..' . '/gettext/languages/src/Language.php', + 'Gettext\\Merge' => __DIR__ . '/..' . '/gettext/gettext/src/Merge.php', + 'Gettext\\Translation' => __DIR__ . '/..' . '/gettext/gettext/src/Translation.php', + 'Gettext\\Translations' => __DIR__ . '/..' . '/gettext/gettext/src/Translations.php', + 'Gettext\\Translator' => __DIR__ . '/..' . '/gettext/gettext/src/Translator.php', + 'Gettext\\TranslatorInterface' => __DIR__ . '/..' . '/gettext/gettext/src/TranslatorInterface.php', + 'Gettext\\Utils\\CsvTrait' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/CsvTrait.php', + 'Gettext\\Utils\\DictionaryTrait' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/DictionaryTrait.php', + 'Gettext\\Utils\\FunctionsScanner' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/FunctionsScanner.php', + 'Gettext\\Utils\\HeadersExtractorTrait' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/HeadersExtractorTrait.php', + 'Gettext\\Utils\\HeadersGeneratorTrait' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/HeadersGeneratorTrait.php', + 'Gettext\\Utils\\JsFunctionsScanner' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/JsFunctionsScanner.php', + 'Gettext\\Utils\\MultidimensionalArrayTrait' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/MultidimensionalArrayTrait.php', + 'Gettext\\Utils\\ParsedComment' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/ParsedComment.php', + 'Gettext\\Utils\\ParsedFunction' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/ParsedFunction.php', + 'Gettext\\Utils\\PhpFunctionsScanner' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/PhpFunctionsScanner.php', + 'Gettext\\Utils\\StringReader' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/StringReader.php', + 'Gumlet\\ImageResize' => __DIR__ . '/..' . '/gumlet/php-image-resize/lib/ImageResize.php', + 'Gumlet\\ImageResizeException' => __DIR__ . '/..' . '/gumlet/php-image-resize/lib/ImageResizeException.php', + 'GuzzleHttp\\Client' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Client.php', + 'GuzzleHttp\\ClientInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/ClientInterface.php', + 'GuzzleHttp\\Cookie\\CookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php', + 'GuzzleHttp\\Cookie\\CookieJarInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php', + 'GuzzleHttp\\Cookie\\FileCookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php', + 'GuzzleHttp\\Cookie\\SessionCookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php', + 'GuzzleHttp\\Cookie\\SetCookie' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php', + 'GuzzleHttp\\Exception\\BadResponseException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php', + 'GuzzleHttp\\Exception\\ClientException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ClientException.php', + 'GuzzleHttp\\Exception\\ConnectException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ConnectException.php', + 'GuzzleHttp\\Exception\\GuzzleException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php', + 'GuzzleHttp\\Exception\\RequestException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/RequestException.php', + 'GuzzleHttp\\Exception\\SeekException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/SeekException.php', + 'GuzzleHttp\\Exception\\ServerException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ServerException.php', + 'GuzzleHttp\\Exception\\TooManyRedirectsException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php', + 'GuzzleHttp\\Exception\\TransferException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/TransferException.php', + 'GuzzleHttp\\HandlerStack' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/HandlerStack.php', + 'GuzzleHttp\\Handler\\CurlFactory' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php', + 'GuzzleHttp\\Handler\\CurlFactoryInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php', + 'GuzzleHttp\\Handler\\CurlHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php', + 'GuzzleHttp\\Handler\\CurlMultiHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php', + 'GuzzleHttp\\Handler\\EasyHandle' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php', + 'GuzzleHttp\\Handler\\MockHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/MockHandler.php', + 'GuzzleHttp\\Handler\\Proxy' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/Proxy.php', + 'GuzzleHttp\\Handler\\StreamHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php', + 'GuzzleHttp\\MessageFormatter' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/MessageFormatter.php', + 'GuzzleHttp\\Middleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Middleware.php', + 'GuzzleHttp\\Pool' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Pool.php', + 'GuzzleHttp\\PrepareBodyMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php', + 'GuzzleHttp\\Promise\\AggregateException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/AggregateException.php', + 'GuzzleHttp\\Promise\\CancellationException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/CancellationException.php', + 'GuzzleHttp\\Promise\\Coroutine' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Coroutine.php', + 'GuzzleHttp\\Promise\\EachPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/EachPromise.php', + 'GuzzleHttp\\Promise\\FulfilledPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/FulfilledPromise.php', + 'GuzzleHttp\\Promise\\Promise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Promise.php', + 'GuzzleHttp\\Promise\\PromiseInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromiseInterface.php', + 'GuzzleHttp\\Promise\\PromisorInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromisorInterface.php', + 'GuzzleHttp\\Promise\\RejectedPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectedPromise.php', + 'GuzzleHttp\\Promise\\RejectionException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectionException.php', + 'GuzzleHttp\\Promise\\TaskQueue' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueue.php', + 'GuzzleHttp\\Promise\\TaskQueueInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueueInterface.php', + 'GuzzleHttp\\Psr7\\AppendStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/AppendStream.php', + 'GuzzleHttp\\Psr7\\BufferStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/BufferStream.php', + 'GuzzleHttp\\Psr7\\CachingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/CachingStream.php', + 'GuzzleHttp\\Psr7\\DroppingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/DroppingStream.php', + 'GuzzleHttp\\Psr7\\FnStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/FnStream.php', + 'GuzzleHttp\\Psr7\\InflateStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/InflateStream.php', + 'GuzzleHttp\\Psr7\\LazyOpenStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LazyOpenStream.php', + 'GuzzleHttp\\Psr7\\LimitStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LimitStream.php', + 'GuzzleHttp\\Psr7\\MessageTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MessageTrait.php', + 'GuzzleHttp\\Psr7\\MultipartStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MultipartStream.php', + 'GuzzleHttp\\Psr7\\NoSeekStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/NoSeekStream.php', + 'GuzzleHttp\\Psr7\\PumpStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/PumpStream.php', + 'GuzzleHttp\\Psr7\\Request' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Request.php', + 'GuzzleHttp\\Psr7\\Response' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Response.php', + 'GuzzleHttp\\Psr7\\Rfc7230' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Rfc7230.php', + 'GuzzleHttp\\Psr7\\ServerRequest' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/ServerRequest.php', + 'GuzzleHttp\\Psr7\\Stream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Stream.php', + 'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php', + 'GuzzleHttp\\Psr7\\StreamWrapper' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamWrapper.php', + 'GuzzleHttp\\Psr7\\UploadedFile' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UploadedFile.php', + 'GuzzleHttp\\Psr7\\Uri' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Uri.php', + 'GuzzleHttp\\Psr7\\UriNormalizer' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriNormalizer.php', + 'GuzzleHttp\\Psr7\\UriResolver' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriResolver.php', + 'GuzzleHttp\\RedirectMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RedirectMiddleware.php', + 'GuzzleHttp\\RequestOptions' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RequestOptions.php', + 'GuzzleHttp\\RetryMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RetryMiddleware.php', + 'GuzzleHttp\\TransferStats' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/TransferStats.php', + 'GuzzleHttp\\UriTemplate' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/UriTemplate.php', + 'Handlebars\\Arguments' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Arguments.php', + 'Handlebars\\Autoloader' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Autoloader.php', + 'Handlebars\\BaseString' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/BaseString.php', + 'Handlebars\\Cache' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Cache.php', + 'Handlebars\\Cache\\APC' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Cache/APC.php', + 'Handlebars\\Cache\\Disk' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Cache/Disk.php', + 'Handlebars\\Cache\\Dummy' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Cache/Dummy.php', + 'Handlebars\\ChildContext' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/ChildContext.php', + 'Handlebars\\Context' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Context.php', + 'Handlebars\\Handlebars' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Handlebars.php', + 'Handlebars\\Helper' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Helper.php', + 'Handlebars\\Helper\\BindAttrHelper' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Helper/BindAttrHelper.php', + 'Handlebars\\Helper\\EachHelper' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Helper/EachHelper.php', + 'Handlebars\\Helper\\IfHelper' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Helper/IfHelper.php', + 'Handlebars\\Helper\\UnlessHelper' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Helper/UnlessHelper.php', + 'Handlebars\\Helper\\WithHelper' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Helper/WithHelper.php', + 'Handlebars\\Helpers' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Helpers.php', + 'Handlebars\\Loader' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Loader.php', + 'Handlebars\\Loader\\ArrayLoader' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Loader/ArrayLoader.php', + 'Handlebars\\Loader\\FilesystemLoader' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Loader/FilesystemLoader.php', + 'Handlebars\\Loader\\InlineLoader' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Loader/InlineLoader.php', + 'Handlebars\\Loader\\StringLoader' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Loader/StringLoader.php', + 'Handlebars\\Parser' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Parser.php', + 'Handlebars\\SafeString' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/SafeString.php', + 'Handlebars\\String' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/String.php', + 'Handlebars\\StringWrapper' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/StringWrapper.php', + 'Handlebars\\Template' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Template.php', + 'Handlebars\\Tokenizer' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Tokenizer.php', + 'Hautelook\\Phpass\\PasswordHash' => __DIR__ . '/..' . '/hautelook/phpass/src/Hautelook/Phpass/PasswordHash.php', + 'Illuminate\\Contracts\\Auth\\Access\\Authorizable' => __DIR__ . '/..' . '/illuminate/contracts/Auth/Access/Authorizable.php', + 'Illuminate\\Contracts\\Auth\\Access\\Gate' => __DIR__ . '/..' . '/illuminate/contracts/Auth/Access/Gate.php', + 'Illuminate\\Contracts\\Auth\\Authenticatable' => __DIR__ . '/..' . '/illuminate/contracts/Auth/Authenticatable.php', + 'Illuminate\\Contracts\\Auth\\CanResetPassword' => __DIR__ . '/..' . '/illuminate/contracts/Auth/CanResetPassword.php', + 'Illuminate\\Contracts\\Auth\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Auth/Factory.php', + 'Illuminate\\Contracts\\Auth\\Guard' => __DIR__ . '/..' . '/illuminate/contracts/Auth/Guard.php', + 'Illuminate\\Contracts\\Auth\\MustVerifyEmail' => __DIR__ . '/..' . '/illuminate/contracts/Auth/MustVerifyEmail.php', + 'Illuminate\\Contracts\\Auth\\PasswordBroker' => __DIR__ . '/..' . '/illuminate/contracts/Auth/PasswordBroker.php', + 'Illuminate\\Contracts\\Auth\\PasswordBrokerFactory' => __DIR__ . '/..' . '/illuminate/contracts/Auth/PasswordBrokerFactory.php', + 'Illuminate\\Contracts\\Auth\\StatefulGuard' => __DIR__ . '/..' . '/illuminate/contracts/Auth/StatefulGuard.php', + 'Illuminate\\Contracts\\Auth\\SupportsBasicAuth' => __DIR__ . '/..' . '/illuminate/contracts/Auth/SupportsBasicAuth.php', + 'Illuminate\\Contracts\\Auth\\UserProvider' => __DIR__ . '/..' . '/illuminate/contracts/Auth/UserProvider.php', + 'Illuminate\\Contracts\\Broadcasting\\Broadcaster' => __DIR__ . '/..' . '/illuminate/contracts/Broadcasting/Broadcaster.php', + 'Illuminate\\Contracts\\Broadcasting\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Broadcasting/Factory.php', + 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcast' => __DIR__ . '/..' . '/illuminate/contracts/Broadcasting/ShouldBroadcast.php', + 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcastNow' => __DIR__ . '/..' . '/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php', + 'Illuminate\\Contracts\\Bus\\Dispatcher' => __DIR__ . '/..' . '/illuminate/contracts/Bus/Dispatcher.php', + 'Illuminate\\Contracts\\Bus\\QueueingDispatcher' => __DIR__ . '/..' . '/illuminate/contracts/Bus/QueueingDispatcher.php', + 'Illuminate\\Contracts\\Cache\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Cache/Factory.php', + 'Illuminate\\Contracts\\Cache\\Lock' => __DIR__ . '/..' . '/illuminate/contracts/Cache/Lock.php', + 'Illuminate\\Contracts\\Cache\\LockProvider' => __DIR__ . '/..' . '/illuminate/contracts/Cache/LockProvider.php', + 'Illuminate\\Contracts\\Cache\\LockTimeoutException' => __DIR__ . '/..' . '/illuminate/contracts/Cache/LockTimeoutException.php', + 'Illuminate\\Contracts\\Cache\\Repository' => __DIR__ . '/..' . '/illuminate/contracts/Cache/Repository.php', + 'Illuminate\\Contracts\\Cache\\Store' => __DIR__ . '/..' . '/illuminate/contracts/Cache/Store.php', + 'Illuminate\\Contracts\\Config\\Repository' => __DIR__ . '/..' . '/illuminate/contracts/Config/Repository.php', + 'Illuminate\\Contracts\\Console\\Application' => __DIR__ . '/..' . '/illuminate/contracts/Console/Application.php', + 'Illuminate\\Contracts\\Console\\Kernel' => __DIR__ . '/..' . '/illuminate/contracts/Console/Kernel.php', + 'Illuminate\\Contracts\\Container\\BindingResolutionException' => __DIR__ . '/..' . '/illuminate/contracts/Container/BindingResolutionException.php', + 'Illuminate\\Contracts\\Container\\Container' => __DIR__ . '/..' . '/illuminate/contracts/Container/Container.php', + 'Illuminate\\Contracts\\Container\\ContextualBindingBuilder' => __DIR__ . '/..' . '/illuminate/contracts/Container/ContextualBindingBuilder.php', + 'Illuminate\\Contracts\\Cookie\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Cookie/Factory.php', + 'Illuminate\\Contracts\\Cookie\\QueueingFactory' => __DIR__ . '/..' . '/illuminate/contracts/Cookie/QueueingFactory.php', + 'Illuminate\\Contracts\\Database\\Events\\MigrationEvent' => __DIR__ . '/..' . '/illuminate/contracts/Database/Events/MigrationEvent.php', + 'Illuminate\\Contracts\\Database\\ModelIdentifier' => __DIR__ . '/..' . '/illuminate/contracts/Database/ModelIdentifier.php', + 'Illuminate\\Contracts\\Debug\\ExceptionHandler' => __DIR__ . '/..' . '/illuminate/contracts/Debug/ExceptionHandler.php', + 'Illuminate\\Contracts\\Encryption\\DecryptException' => __DIR__ . '/..' . '/illuminate/contracts/Encryption/DecryptException.php', + 'Illuminate\\Contracts\\Encryption\\EncryptException' => __DIR__ . '/..' . '/illuminate/contracts/Encryption/EncryptException.php', + 'Illuminate\\Contracts\\Encryption\\Encrypter' => __DIR__ . '/..' . '/illuminate/contracts/Encryption/Encrypter.php', + 'Illuminate\\Contracts\\Events\\Dispatcher' => __DIR__ . '/..' . '/illuminate/contracts/Events/Dispatcher.php', + 'Illuminate\\Contracts\\Filesystem\\Cloud' => __DIR__ . '/..' . '/illuminate/contracts/Filesystem/Cloud.php', + 'Illuminate\\Contracts\\Filesystem\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Filesystem/Factory.php', + 'Illuminate\\Contracts\\Filesystem\\FileExistsException' => __DIR__ . '/..' . '/illuminate/contracts/Filesystem/FileExistsException.php', + 'Illuminate\\Contracts\\Filesystem\\FileNotFoundException' => __DIR__ . '/..' . '/illuminate/contracts/Filesystem/FileNotFoundException.php', + 'Illuminate\\Contracts\\Filesystem\\Filesystem' => __DIR__ . '/..' . '/illuminate/contracts/Filesystem/Filesystem.php', + 'Illuminate\\Contracts\\Foundation\\Application' => __DIR__ . '/..' . '/illuminate/contracts/Foundation/Application.php', + 'Illuminate\\Contracts\\Hashing\\Hasher' => __DIR__ . '/..' . '/illuminate/contracts/Hashing/Hasher.php', + 'Illuminate\\Contracts\\Http\\Kernel' => __DIR__ . '/..' . '/illuminate/contracts/Http/Kernel.php', + 'Illuminate\\Contracts\\Mail\\MailQueue' => __DIR__ . '/..' . '/illuminate/contracts/Mail/MailQueue.php', + 'Illuminate\\Contracts\\Mail\\Mailable' => __DIR__ . '/..' . '/illuminate/contracts/Mail/Mailable.php', + 'Illuminate\\Contracts\\Mail\\Mailer' => __DIR__ . '/..' . '/illuminate/contracts/Mail/Mailer.php', + 'Illuminate\\Contracts\\Notifications\\Dispatcher' => __DIR__ . '/..' . '/illuminate/contracts/Notifications/Dispatcher.php', + 'Illuminate\\Contracts\\Notifications\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Notifications/Factory.php', + 'Illuminate\\Contracts\\Pagination\\LengthAwarePaginator' => __DIR__ . '/..' . '/illuminate/contracts/Pagination/LengthAwarePaginator.php', + 'Illuminate\\Contracts\\Pagination\\Paginator' => __DIR__ . '/..' . '/illuminate/contracts/Pagination/Paginator.php', + 'Illuminate\\Contracts\\Pipeline\\Hub' => __DIR__ . '/..' . '/illuminate/contracts/Pipeline/Hub.php', + 'Illuminate\\Contracts\\Pipeline\\Pipeline' => __DIR__ . '/..' . '/illuminate/contracts/Pipeline/Pipeline.php', + 'Illuminate\\Contracts\\Queue\\EntityNotFoundException' => __DIR__ . '/..' . '/illuminate/contracts/Queue/EntityNotFoundException.php', + 'Illuminate\\Contracts\\Queue\\EntityResolver' => __DIR__ . '/..' . '/illuminate/contracts/Queue/EntityResolver.php', + 'Illuminate\\Contracts\\Queue\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Queue/Factory.php', + 'Illuminate\\Contracts\\Queue\\Job' => __DIR__ . '/..' . '/illuminate/contracts/Queue/Job.php', + 'Illuminate\\Contracts\\Queue\\Monitor' => __DIR__ . '/..' . '/illuminate/contracts/Queue/Monitor.php', + 'Illuminate\\Contracts\\Queue\\Queue' => __DIR__ . '/..' . '/illuminate/contracts/Queue/Queue.php', + 'Illuminate\\Contracts\\Queue\\QueueableCollection' => __DIR__ . '/..' . '/illuminate/contracts/Queue/QueueableCollection.php', + 'Illuminate\\Contracts\\Queue\\QueueableEntity' => __DIR__ . '/..' . '/illuminate/contracts/Queue/QueueableEntity.php', + 'Illuminate\\Contracts\\Queue\\ShouldQueue' => __DIR__ . '/..' . '/illuminate/contracts/Queue/ShouldQueue.php', + 'Illuminate\\Contracts\\Redis\\Connection' => __DIR__ . '/..' . '/illuminate/contracts/Redis/Connection.php', + 'Illuminate\\Contracts\\Redis\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Redis/Factory.php', + 'Illuminate\\Contracts\\Redis\\LimiterTimeoutException' => __DIR__ . '/..' . '/illuminate/contracts/Redis/LimiterTimeoutException.php', + 'Illuminate\\Contracts\\Routing\\BindingRegistrar' => __DIR__ . '/..' . '/illuminate/contracts/Routing/BindingRegistrar.php', + 'Illuminate\\Contracts\\Routing\\Registrar' => __DIR__ . '/..' . '/illuminate/contracts/Routing/Registrar.php', + 'Illuminate\\Contracts\\Routing\\ResponseFactory' => __DIR__ . '/..' . '/illuminate/contracts/Routing/ResponseFactory.php', + 'Illuminate\\Contracts\\Routing\\UrlGenerator' => __DIR__ . '/..' . '/illuminate/contracts/Routing/UrlGenerator.php', + 'Illuminate\\Contracts\\Routing\\UrlRoutable' => __DIR__ . '/..' . '/illuminate/contracts/Routing/UrlRoutable.php', + 'Illuminate\\Contracts\\Session\\Session' => __DIR__ . '/..' . '/illuminate/contracts/Session/Session.php', + 'Illuminate\\Contracts\\Support\\Arrayable' => __DIR__ . '/..' . '/illuminate/contracts/Support/Arrayable.php', + 'Illuminate\\Contracts\\Support\\DeferrableProvider' => __DIR__ . '/..' . '/illuminate/contracts/Support/DeferrableProvider.php', + 'Illuminate\\Contracts\\Support\\Htmlable' => __DIR__ . '/..' . '/illuminate/contracts/Support/Htmlable.php', + 'Illuminate\\Contracts\\Support\\Jsonable' => __DIR__ . '/..' . '/illuminate/contracts/Support/Jsonable.php', + 'Illuminate\\Contracts\\Support\\MessageBag' => __DIR__ . '/..' . '/illuminate/contracts/Support/MessageBag.php', + 'Illuminate\\Contracts\\Support\\MessageProvider' => __DIR__ . '/..' . '/illuminate/contracts/Support/MessageProvider.php', + 'Illuminate\\Contracts\\Support\\Renderable' => __DIR__ . '/..' . '/illuminate/contracts/Support/Renderable.php', + 'Illuminate\\Contracts\\Support\\Responsable' => __DIR__ . '/..' . '/illuminate/contracts/Support/Responsable.php', + 'Illuminate\\Contracts\\Translation\\HasLocalePreference' => __DIR__ . '/..' . '/illuminate/contracts/Translation/HasLocalePreference.php', + 'Illuminate\\Contracts\\Translation\\Loader' => __DIR__ . '/..' . '/illuminate/contracts/Translation/Loader.php', + 'Illuminate\\Contracts\\Translation\\Translator' => __DIR__ . '/..' . '/illuminate/contracts/Translation/Translator.php', + 'Illuminate\\Contracts\\Validation\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Validation/Factory.php', + 'Illuminate\\Contracts\\Validation\\ImplicitRule' => __DIR__ . '/..' . '/illuminate/contracts/Validation/ImplicitRule.php', + 'Illuminate\\Contracts\\Validation\\Rule' => __DIR__ . '/..' . '/illuminate/contracts/Validation/Rule.php', + 'Illuminate\\Contracts\\Validation\\ValidatesWhenResolved' => __DIR__ . '/..' . '/illuminate/contracts/Validation/ValidatesWhenResolved.php', + 'Illuminate\\Contracts\\Validation\\Validator' => __DIR__ . '/..' . '/illuminate/contracts/Validation/Validator.php', + 'Illuminate\\Contracts\\View\\Engine' => __DIR__ . '/..' . '/illuminate/contracts/View/Engine.php', + 'Illuminate\\Contracts\\View\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/View/Factory.php', + 'Illuminate\\Contracts\\View\\View' => __DIR__ . '/..' . '/illuminate/contracts/View/View.php', + 'Illuminate\\Support\\AggregateServiceProvider' => __DIR__ . '/..' . '/illuminate/support/AggregateServiceProvider.php', + 'Illuminate\\Support\\Arr' => __DIR__ . '/..' . '/illuminate/support/Arr.php', + 'Illuminate\\Support\\Carbon' => __DIR__ . '/..' . '/illuminate/support/Carbon.php', + 'Illuminate\\Support\\Collection' => __DIR__ . '/..' . '/illuminate/support/Collection.php', + 'Illuminate\\Support\\Composer' => __DIR__ . '/..' . '/illuminate/support/Composer.php', + 'Illuminate\\Support\\ConfigurationUrlParser' => __DIR__ . '/..' . '/illuminate/support/ConfigurationUrlParser.php', + 'Illuminate\\Support\\DateFactory' => __DIR__ . '/..' . '/illuminate/support/DateFactory.php', + 'Illuminate\\Support\\Facades\\App' => __DIR__ . '/..' . '/illuminate/support/Facades/App.php', + 'Illuminate\\Support\\Facades\\Artisan' => __DIR__ . '/..' . '/illuminate/support/Facades/Artisan.php', + 'Illuminate\\Support\\Facades\\Auth' => __DIR__ . '/..' . '/illuminate/support/Facades/Auth.php', + 'Illuminate\\Support\\Facades\\Blade' => __DIR__ . '/..' . '/illuminate/support/Facades/Blade.php', + 'Illuminate\\Support\\Facades\\Broadcast' => __DIR__ . '/..' . '/illuminate/support/Facades/Broadcast.php', + 'Illuminate\\Support\\Facades\\Bus' => __DIR__ . '/..' . '/illuminate/support/Facades/Bus.php', + 'Illuminate\\Support\\Facades\\Cache' => __DIR__ . '/..' . '/illuminate/support/Facades/Cache.php', + 'Illuminate\\Support\\Facades\\Config' => __DIR__ . '/..' . '/illuminate/support/Facades/Config.php', + 'Illuminate\\Support\\Facades\\Cookie' => __DIR__ . '/..' . '/illuminate/support/Facades/Cookie.php', + 'Illuminate\\Support\\Facades\\Crypt' => __DIR__ . '/..' . '/illuminate/support/Facades/Crypt.php', + 'Illuminate\\Support\\Facades\\DB' => __DIR__ . '/..' . '/illuminate/support/Facades/DB.php', + 'Illuminate\\Support\\Facades\\Date' => __DIR__ . '/..' . '/illuminate/support/Facades/Date.php', + 'Illuminate\\Support\\Facades\\Event' => __DIR__ . '/..' . '/illuminate/support/Facades/Event.php', + 'Illuminate\\Support\\Facades\\Facade' => __DIR__ . '/..' . '/illuminate/support/Facades/Facade.php', + 'Illuminate\\Support\\Facades\\File' => __DIR__ . '/..' . '/illuminate/support/Facades/File.php', + 'Illuminate\\Support\\Facades\\Gate' => __DIR__ . '/..' . '/illuminate/support/Facades/Gate.php', + 'Illuminate\\Support\\Facades\\Hash' => __DIR__ . '/..' . '/illuminate/support/Facades/Hash.php', + 'Illuminate\\Support\\Facades\\Input' => __DIR__ . '/..' . '/illuminate/support/Facades/Input.php', + 'Illuminate\\Support\\Facades\\Lang' => __DIR__ . '/..' . '/illuminate/support/Facades/Lang.php', + 'Illuminate\\Support\\Facades\\Log' => __DIR__ . '/..' . '/illuminate/support/Facades/Log.php', + 'Illuminate\\Support\\Facades\\Mail' => __DIR__ . '/..' . '/illuminate/support/Facades/Mail.php', + 'Illuminate\\Support\\Facades\\Notification' => __DIR__ . '/..' . '/illuminate/support/Facades/Notification.php', + 'Illuminate\\Support\\Facades\\Password' => __DIR__ . '/..' . '/illuminate/support/Facades/Password.php', + 'Illuminate\\Support\\Facades\\Queue' => __DIR__ . '/..' . '/illuminate/support/Facades/Queue.php', + 'Illuminate\\Support\\Facades\\Redirect' => __DIR__ . '/..' . '/illuminate/support/Facades/Redirect.php', + 'Illuminate\\Support\\Facades\\Redis' => __DIR__ . '/..' . '/illuminate/support/Facades/Redis.php', + 'Illuminate\\Support\\Facades\\Request' => __DIR__ . '/..' . '/illuminate/support/Facades/Request.php', + 'Illuminate\\Support\\Facades\\Response' => __DIR__ . '/..' . '/illuminate/support/Facades/Response.php', + 'Illuminate\\Support\\Facades\\Route' => __DIR__ . '/..' . '/illuminate/support/Facades/Route.php', + 'Illuminate\\Support\\Facades\\Schema' => __DIR__ . '/..' . '/illuminate/support/Facades/Schema.php', + 'Illuminate\\Support\\Facades\\Session' => __DIR__ . '/..' . '/illuminate/support/Facades/Session.php', + 'Illuminate\\Support\\Facades\\Storage' => __DIR__ . '/..' . '/illuminate/support/Facades/Storage.php', + 'Illuminate\\Support\\Facades\\URL' => __DIR__ . '/..' . '/illuminate/support/Facades/URL.php', + 'Illuminate\\Support\\Facades\\Validator' => __DIR__ . '/..' . '/illuminate/support/Facades/Validator.php', + 'Illuminate\\Support\\Facades\\View' => __DIR__ . '/..' . '/illuminate/support/Facades/View.php', + 'Illuminate\\Support\\Fluent' => __DIR__ . '/..' . '/illuminate/support/Fluent.php', + 'Illuminate\\Support\\HigherOrderCollectionProxy' => __DIR__ . '/..' . '/illuminate/support/HigherOrderCollectionProxy.php', + 'Illuminate\\Support\\HigherOrderTapProxy' => __DIR__ . '/..' . '/illuminate/support/HigherOrderTapProxy.php', + 'Illuminate\\Support\\HtmlString' => __DIR__ . '/..' . '/illuminate/support/HtmlString.php', + 'Illuminate\\Support\\InteractsWithTime' => __DIR__ . '/..' . '/illuminate/support/InteractsWithTime.php', + 'Illuminate\\Support\\Manager' => __DIR__ . '/..' . '/illuminate/support/Manager.php', + 'Illuminate\\Support\\MessageBag' => __DIR__ . '/..' . '/illuminate/support/MessageBag.php', + 'Illuminate\\Support\\NamespacedItemResolver' => __DIR__ . '/..' . '/illuminate/support/NamespacedItemResolver.php', + 'Illuminate\\Support\\Optional' => __DIR__ . '/..' . '/illuminate/support/Optional.php', + 'Illuminate\\Support\\Pluralizer' => __DIR__ . '/..' . '/illuminate/support/Pluralizer.php', + 'Illuminate\\Support\\ProcessUtils' => __DIR__ . '/..' . '/illuminate/support/ProcessUtils.php', + 'Illuminate\\Support\\ServiceProvider' => __DIR__ . '/..' . '/illuminate/support/ServiceProvider.php', + 'Illuminate\\Support\\Str' => __DIR__ . '/..' . '/illuminate/support/Str.php', + 'Illuminate\\Support\\Testing\\Fakes\\BusFake' => __DIR__ . '/..' . '/illuminate/support/Testing/Fakes/BusFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\EventFake' => __DIR__ . '/..' . '/illuminate/support/Testing/Fakes/EventFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\MailFake' => __DIR__ . '/..' . '/illuminate/support/Testing/Fakes/MailFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\NotificationFake' => __DIR__ . '/..' . '/illuminate/support/Testing/Fakes/NotificationFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\PendingMailFake' => __DIR__ . '/..' . '/illuminate/support/Testing/Fakes/PendingMailFake.php', + 'Illuminate\\Support\\Testing\\Fakes\\QueueFake' => __DIR__ . '/..' . '/illuminate/support/Testing/Fakes/QueueFake.php', + 'Illuminate\\Support\\Traits\\CapsuleManagerTrait' => __DIR__ . '/..' . '/illuminate/support/Traits/CapsuleManagerTrait.php', + 'Illuminate\\Support\\Traits\\ForwardsCalls' => __DIR__ . '/..' . '/illuminate/support/Traits/ForwardsCalls.php', + 'Illuminate\\Support\\Traits\\Localizable' => __DIR__ . '/..' . '/illuminate/support/Traits/Localizable.php', + 'Illuminate\\Support\\Traits\\Macroable' => __DIR__ . '/..' . '/illuminate/support/Traits/Macroable.php', + 'Illuminate\\Support\\Traits\\Tappable' => __DIR__ . '/..' . '/illuminate/support/Traits/Tappable.php', + 'Illuminate\\Support\\ViewErrorBag' => __DIR__ . '/..' . '/illuminate/support/ViewErrorBag.php', + 'Import_Command' => __DIR__ . '/..' . '/wp-cli/import-command/src/Import_Command.php', + 'JsonException' => __DIR__ . '/..' . '/symfony/polyfill-php73/Resources/stubs/JsonException.php', + 'JsonSchema\\Constraints\\BaseConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php', + 'JsonSchema\\Constraints\\CollectionConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php', + 'JsonSchema\\Constraints\\Constraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php', + 'JsonSchema\\Constraints\\ConstraintInterface' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php', + 'JsonSchema\\Constraints\\EnumConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php', + 'JsonSchema\\Constraints\\Factory' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php', + 'JsonSchema\\Constraints\\FormatConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php', + 'JsonSchema\\Constraints\\NumberConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php', + 'JsonSchema\\Constraints\\ObjectConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php', + 'JsonSchema\\Constraints\\SchemaConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php', + 'JsonSchema\\Constraints\\StringConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php', + 'JsonSchema\\Constraints\\TypeCheck\\LooseTypeCheck' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php', + 'JsonSchema\\Constraints\\TypeCheck\\StrictTypeCheck' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php', + 'JsonSchema\\Constraints\\TypeCheck\\TypeCheckInterface' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php', + 'JsonSchema\\Constraints\\TypeConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php', + 'JsonSchema\\Constraints\\UndefinedConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php', + 'JsonSchema\\Entity\\JsonPointer' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php', + 'JsonSchema\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php', + 'JsonSchema\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php', + 'JsonSchema\\Exception\\InvalidConfigException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php', + 'JsonSchema\\Exception\\InvalidSchemaException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php', + 'JsonSchema\\Exception\\InvalidSchemaMediaTypeException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php', + 'JsonSchema\\Exception\\InvalidSourceUriException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php', + 'JsonSchema\\Exception\\JsonDecodingException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php', + 'JsonSchema\\Exception\\ResourceNotFoundException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php', + 'JsonSchema\\Exception\\RuntimeException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php', + 'JsonSchema\\Exception\\UnresolvableJsonPointerException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php', + 'JsonSchema\\Exception\\UriResolverException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php', + 'JsonSchema\\Exception\\ValidationException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php', + 'JsonSchema\\Iterator\\ObjectIterator' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php', + 'JsonSchema\\Rfc3339' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php', + 'JsonSchema\\SchemaStorage' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php', + 'JsonSchema\\SchemaStorageInterface' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php', + 'JsonSchema\\UriResolverInterface' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php', + 'JsonSchema\\UriRetrieverInterface' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php', + 'JsonSchema\\Uri\\Retrievers\\AbstractRetriever' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php', + 'JsonSchema\\Uri\\Retrievers\\Curl' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php', + 'JsonSchema\\Uri\\Retrievers\\FileGetContents' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php', + 'JsonSchema\\Uri\\Retrievers\\PredefinedArray' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php', + 'JsonSchema\\Uri\\Retrievers\\UriRetrieverInterface' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php', + 'JsonSchema\\Uri\\UriResolver' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php', + 'JsonSchema\\Uri\\UriRetriever' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php', + 'JsonSchema\\Validator' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Validator.php', + 'Language_Namespace' => __DIR__ . '/..' . '/wp-cli/language-command/src/Language_Namespace.php', + 'Media_Command' => __DIR__ . '/..' . '/wp-cli/media-command/src/Media_Command.php', + 'Menu_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Menu_Command.php', + 'Menu_Item_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Menu_Item_Command.php', + 'Menu_Location_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Menu_Location_Command.php', + 'MikeMcLin\\WpPassword\\Contracts\\WpPassword' => __DIR__ . '/..' . '/mikemclin/laravel-wp-password/src/Contracts/WpPassword.php', + 'MikeMcLin\\WpPassword\\Facades\\WpPassword' => __DIR__ . '/..' . '/mikemclin/laravel-wp-password/src/Facades/WpPassword.php', + 'MikeMcLin\\WpPassword\\WpPassword' => __DIR__ . '/..' . '/mikemclin/laravel-wp-password/src/WpPassword.php', + 'MikeMcLin\\WpPassword\\WpPasswordProvider' => __DIR__ . '/..' . '/mikemclin/laravel-wp-password/src/WpPasswordProvider.php', + 'Mustache_Autoloader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Autoloader.php', + 'Mustache_Cache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache.php', + 'Mustache_Cache_AbstractCache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache/AbstractCache.php', + 'Mustache_Cache_FilesystemCache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache/FilesystemCache.php', + 'Mustache_Cache_NoopCache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache/NoopCache.php', + 'Mustache_Compiler' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Compiler.php', + 'Mustache_Context' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Context.php', + 'Mustache_Engine' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Engine.php', + 'Mustache_Exception' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception.php', + 'Mustache_Exception_InvalidArgumentException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/InvalidArgumentException.php', + 'Mustache_Exception_LogicException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/LogicException.php', + 'Mustache_Exception_RuntimeException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/RuntimeException.php', + 'Mustache_Exception_SyntaxException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/SyntaxException.php', + 'Mustache_Exception_UnknownFilterException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/UnknownFilterException.php', + 'Mustache_Exception_UnknownHelperException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/UnknownHelperException.php', + 'Mustache_Exception_UnknownTemplateException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/UnknownTemplateException.php', + 'Mustache_HelperCollection' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/HelperCollection.php', + 'Mustache_LambdaHelper' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/LambdaHelper.php', + 'Mustache_Loader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader.php', + 'Mustache_Loader_ArrayLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/ArrayLoader.php', + 'Mustache_Loader_CascadingLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/CascadingLoader.php', + 'Mustache_Loader_FilesystemLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/FilesystemLoader.php', + 'Mustache_Loader_InlineLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/InlineLoader.php', + 'Mustache_Loader_MutableLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/MutableLoader.php', + 'Mustache_Loader_ProductionFilesystemLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/ProductionFilesystemLoader.php', + 'Mustache_Loader_StringLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/StringLoader.php', + 'Mustache_Logger' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Logger.php', + 'Mustache_Logger_AbstractLogger' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Logger/AbstractLogger.php', + 'Mustache_Logger_StreamLogger' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Logger/StreamLogger.php', + 'Mustache_Parser' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Parser.php', + 'Mustache_Source' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Source.php', + 'Mustache_Source_FilesystemSource' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Source/FilesystemSource.php', + 'Mustache_Template' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Template.php', + 'Mustache_Tokenizer' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Tokenizer.php', + 'Mustangostang\\Spyc' => __DIR__ . '/..' . '/wp-cli/mustangostang-spyc/src/Spyc.php', + 'MySQLDump' => __DIR__ . '/..' . '/dg/mysql-dump/src/MySQLDump.php', + 'MySQLImport' => __DIR__ . '/..' . '/dg/mysql-dump/src/MySQLImport.php', + 'Network_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Network_Meta_Command.php', + 'Network_Namespace' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Network_Namespace.php', + 'Option_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Option_Command.php', + 'Oxymel' => __DIR__ . '/..' . '/nb/oxymel/Oxymel.php', + 'OxymelException' => __DIR__ . '/..' . '/nb/oxymel/Oxymel.php', + 'OxymelTest' => __DIR__ . '/..' . '/nb/oxymel/OxymelTest.php', + 'PHPUnit\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Exception.php', + 'PHPUnit\\Framework\\Assert' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Assert.php', + 'PHPUnit\\Framework\\AssertionFailedError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/AssertionFailedError.php', + 'PHPUnit\\Framework\\CodeCoverageException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/CodeCoverageException.php', + 'PHPUnit\\Framework\\Constraint\\ArrayHasKey' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ArrayHasKey.php', + 'PHPUnit\\Framework\\Constraint\\ArraySubset' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ArraySubset.php', + 'PHPUnit\\Framework\\Constraint\\Attribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Attribute.php', + 'PHPUnit\\Framework\\Constraint\\Callback' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Callback.php', + 'PHPUnit\\Framework\\Constraint\\ClassHasAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ClassHasAttribute.php', + 'PHPUnit\\Framework\\Constraint\\ClassHasStaticAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ClassHasStaticAttribute.php', + 'PHPUnit\\Framework\\Constraint\\Composite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Composite.php', + 'PHPUnit\\Framework\\Constraint\\Constraint' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Constraint.php', + 'PHPUnit\\Framework\\Constraint\\Count' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Count.php', + 'PHPUnit\\Framework\\Constraint\\DirectoryExists' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/DirectoryExists.php', + 'PHPUnit\\Framework\\Constraint\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Exception.php', + 'PHPUnit\\Framework\\Constraint\\ExceptionCode' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionCode.php', + 'PHPUnit\\Framework\\Constraint\\ExceptionMessage' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessage.php', + 'PHPUnit\\Framework\\Constraint\\ExceptionMessageRegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessageRegularExpression.php', + 'PHPUnit\\Framework\\Constraint\\FileExists' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/FileExists.php', + 'PHPUnit\\Framework\\Constraint\\GreaterThan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/GreaterThan.php', + 'PHPUnit\\Framework\\Constraint\\IsAnything' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php', + 'PHPUnit\\Framework\\Constraint\\IsEmpty' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsEmpty.php', + 'PHPUnit\\Framework\\Constraint\\IsEqual' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsEqual.php', + 'PHPUnit\\Framework\\Constraint\\IsFalse' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsFalse.php', + 'PHPUnit\\Framework\\Constraint\\IsFinite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsFinite.php', + 'PHPUnit\\Framework\\Constraint\\IsIdentical' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php', + 'PHPUnit\\Framework\\Constraint\\IsInfinite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsInfinite.php', + 'PHPUnit\\Framework\\Constraint\\IsInstanceOf' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsInstanceOf.php', + 'PHPUnit\\Framework\\Constraint\\IsJson' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsJson.php', + 'PHPUnit\\Framework\\Constraint\\IsNan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsNan.php', + 'PHPUnit\\Framework\\Constraint\\IsNull' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsNull.php', + 'PHPUnit\\Framework\\Constraint\\IsReadable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsReadable.php', + 'PHPUnit\\Framework\\Constraint\\IsTrue' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsTrue.php', + 'PHPUnit\\Framework\\Constraint\\IsType' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsType.php', + 'PHPUnit\\Framework\\Constraint\\IsWritable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsWritable.php', + 'PHPUnit\\Framework\\Constraint\\JsonMatches' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php', + 'PHPUnit\\Framework\\Constraint\\JsonMatchesErrorMessageProvider' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/JsonMatchesErrorMessageProvider.php', + 'PHPUnit\\Framework\\Constraint\\LessThan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LessThan.php', + 'PHPUnit\\Framework\\Constraint\\LogicalAnd' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalAnd.php', + 'PHPUnit\\Framework\\Constraint\\LogicalNot' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalNot.php', + 'PHPUnit\\Framework\\Constraint\\LogicalOr' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalOr.php', + 'PHPUnit\\Framework\\Constraint\\LogicalXor' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalXor.php', + 'PHPUnit\\Framework\\Constraint\\ObjectHasAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ObjectHasAttribute.php', + 'PHPUnit\\Framework\\Constraint\\RegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/RegularExpression.php', + 'PHPUnit\\Framework\\Constraint\\SameSize' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/SameSize.php', + 'PHPUnit\\Framework\\Constraint\\StringContains' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringContains.php', + 'PHPUnit\\Framework\\Constraint\\StringEndsWith' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringEndsWith.php', + 'PHPUnit\\Framework\\Constraint\\StringMatchesFormatDescription' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringMatchesFormatDescription.php', + 'PHPUnit\\Framework\\Constraint\\StringStartsWith' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringStartsWith.php', + 'PHPUnit\\Framework\\Constraint\\TraversableContains' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/TraversableContains.php', + 'PHPUnit\\Framework\\Constraint\\TraversableContainsOnly' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/TraversableContainsOnly.php', + 'PHPUnit\\Framework\\CoveredCodeNotExecutedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/CoveredCodeNotExecutedException.php', + 'PHPUnit\\Framework\\DataProviderTestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/DataProviderTestSuite.php', + 'PHPUnit\\Framework\\Error\\Deprecated' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Deprecated.php', + 'PHPUnit\\Framework\\Error\\Error' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Error.php', + 'PHPUnit\\Framework\\Error\\Notice' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Notice.php', + 'PHPUnit\\Framework\\Error\\Warning' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Warning.php', + 'PHPUnit\\Framework\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception.php', + 'PHPUnit\\Framework\\ExceptionWrapper' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php', + 'PHPUnit\\Framework\\ExpectationFailedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/ExpectationFailedException.php', + 'PHPUnit\\Framework\\IncompleteTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTest.php', + 'PHPUnit\\Framework\\IncompleteTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php', + 'PHPUnit\\Framework\\IncompleteTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTestError.php', + 'PHPUnit\\Framework\\InvalidCoversTargetException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php', + 'PHPUnit\\Framework\\MissingCoversAnnotationException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MissingCoversAnnotationException.php', + 'PHPUnit\\Framework\\MockObject\\BadMethodCallException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\Identity' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/Identity.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\InvocationMocker' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/InvocationMocker.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\Match' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/Match.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\MethodNameMatch' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/MethodNameMatch.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\NamespaceMatch' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/NamespaceMatch.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\ParametersMatch' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/ParametersMatch.php', + 'PHPUnit\\Framework\\MockObject\\Builder\\Stub' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/Stub.php', + 'PHPUnit\\Framework\\MockObject\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php', + 'PHPUnit\\Framework\\MockObject\\Generator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator.php', + 'PHPUnit\\Framework\\MockObject\\Invocation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Invocation/Invocation.php', + 'PHPUnit\\Framework\\MockObject\\InvocationMocker' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/InvocationMocker.php', + 'PHPUnit\\Framework\\MockObject\\Invocation\\ObjectInvocation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Invocation/ObjectInvocation.php', + 'PHPUnit\\Framework\\MockObject\\Invocation\\StaticInvocation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Invocation/StaticInvocation.php', + 'PHPUnit\\Framework\\MockObject\\Invokable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Invokable.php', + 'PHPUnit\\Framework\\MockObject\\Matcher' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\AnyInvokedCount' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/AnyInvokedCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\AnyParameters' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/AnyParameters.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\ConsecutiveParameters' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/ConsecutiveParameters.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\DeferredError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/DeferredError.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\Invocation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/Invocation.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtIndex' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtIndex.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastCount' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtLeastCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastOnce' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtLeastOnce.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtMostCount' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtMostCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedCount' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedCount.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedRecorder' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedRecorder.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\MethodName' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/MethodName.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\Parameters' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/Parameters.php', + 'PHPUnit\\Framework\\MockObject\\Matcher\\StatelessInvocation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/StatelessInvocation.php', + 'PHPUnit\\Framework\\MockObject\\MockBuilder' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockBuilder.php', + 'PHPUnit\\Framework\\MockObject\\MockMethod' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockMethod.php', + 'PHPUnit\\Framework\\MockObject\\MockMethodSet' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockMethodSet.php', + 'PHPUnit\\Framework\\MockObject\\MockObject' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/ForwardCompatibility/MockObject.php', + 'PHPUnit\\Framework\\MockObject\\RuntimeException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php', + 'PHPUnit\\Framework\\MockObject\\Stub' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ConsecutiveCalls' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ConsecutiveCalls.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/Exception.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\MatcherCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/MatcherCollection.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnArgument' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnArgument.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnCallback' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnCallback.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnReference' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnReference.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnSelf' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnSelf.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnStub' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnStub.php', + 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnValueMap' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnValueMap.php', + 'PHPUnit\\Framework\\MockObject\\Verifiable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Verifiable.php', + 'PHPUnit\\Framework\\OutputError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/OutputError.php', + 'PHPUnit\\Framework\\RiskyTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/RiskyTest.php', + 'PHPUnit\\Framework\\RiskyTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/RiskyTestError.php', + 'PHPUnit\\Framework\\SelfDescribing' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SelfDescribing.php', + 'PHPUnit\\Framework\\SkippedTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTest.php', + 'PHPUnit\\Framework\\SkippedTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestCase.php', + 'PHPUnit\\Framework\\SkippedTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestError.php', + 'PHPUnit\\Framework\\SkippedTestSuiteError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php', + 'PHPUnit\\Framework\\SyntheticError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SyntheticError.php', + 'PHPUnit\\Framework\\Test' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Test.php', + 'PHPUnit\\Framework\\TestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestCase.php', + 'PHPUnit\\Framework\\TestFailure' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestFailure.php', + 'PHPUnit\\Framework\\TestListener' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestListener.php', + 'PHPUnit\\Framework\\TestListenerDefaultImplementation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestListenerDefaultImplementation.php', + 'PHPUnit\\Framework\\TestResult' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestResult.php', + 'PHPUnit\\Framework\\TestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestSuite.php', + 'PHPUnit\\Framework\\TestSuiteIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestSuiteIterator.php', + 'PHPUnit\\Framework\\UnintentionallyCoveredCodeError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/UnintentionallyCoveredCodeError.php', + 'PHPUnit\\Framework\\Warning' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Warning.php', + 'PHPUnit\\Framework\\WarningTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/WarningTestCase.php', + 'PHPUnit\\Runner\\AfterIncompleteTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterIncompleteTestHook.php', + 'PHPUnit\\Runner\\AfterLastTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterLastTestHook.php', + 'PHPUnit\\Runner\\AfterRiskyTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterRiskyTestHook.php', + 'PHPUnit\\Runner\\AfterSkippedTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterSkippedTestHook.php', + 'PHPUnit\\Runner\\AfterSuccessfulTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterSuccessfulTestHook.php', + 'PHPUnit\\Runner\\AfterTestErrorHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterTestErrorHook.php', + 'PHPUnit\\Runner\\AfterTestFailureHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterTestFailureHook.php', + 'PHPUnit\\Runner\\AfterTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterTestHook.php', + 'PHPUnit\\Runner\\AfterTestWarningHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterTestWarningHook.php', + 'PHPUnit\\Runner\\BaseTestRunner' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/BaseTestRunner.php', + 'PHPUnit\\Runner\\BeforeFirstTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/BeforeFirstTestHook.php', + 'PHPUnit\\Runner\\BeforeTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/BeforeTestHook.php', + 'PHPUnit\\Runner\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception.php', + 'PHPUnit\\Runner\\Filter\\ExcludeGroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php', + 'PHPUnit\\Runner\\Filter\\Factory' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/Factory.php', + 'PHPUnit\\Runner\\Filter\\GroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php', + 'PHPUnit\\Runner\\Filter\\IncludeGroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php', + 'PHPUnit\\Runner\\Filter\\NameFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php', + 'PHPUnit\\Runner\\Hook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/Hook.php', + 'PHPUnit\\Runner\\NullTestResultCache' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/NullTestResultCache.php', + 'PHPUnit\\Runner\\PhptTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/PhptTestCase.php', + 'PHPUnit\\Runner\\ResultCacheExtension' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/ResultCacheExtension.php', + 'PHPUnit\\Runner\\StandardTestSuiteLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php', + 'PHPUnit\\Runner\\TestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/TestHook.php', + 'PHPUnit\\Runner\\TestListenerAdapter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/TestListenerAdapter.php', + 'PHPUnit\\Runner\\TestResultCache' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestResultCache.php', + 'PHPUnit\\Runner\\TestResultCacheInterface' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestResultCacheInterface.php', + 'PHPUnit\\Runner\\TestSuiteLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php', + 'PHPUnit\\Runner\\TestSuiteSorter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestSuiteSorter.php', + 'PHPUnit\\Runner\\Version' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Version.php', + 'PHPUnit\\TextUI\\Command' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Command.php', + 'PHPUnit\\TextUI\\ResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/ResultPrinter.php', + 'PHPUnit\\TextUI\\TestRunner' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/TestRunner.php', + 'PHPUnit\\Util\\Blacklist' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Blacklist.php', + 'PHPUnit\\Util\\Configuration' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Configuration.php', + 'PHPUnit\\Util\\ConfigurationGenerator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/ConfigurationGenerator.php', + 'PHPUnit\\Util\\ErrorHandler' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/ErrorHandler.php', + 'PHPUnit\\Util\\FileLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/FileLoader.php', + 'PHPUnit\\Util\\Filesystem' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Filesystem.php', + 'PHPUnit\\Util\\Filter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Filter.php', + 'PHPUnit\\Util\\Getopt' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Getopt.php', + 'PHPUnit\\Util\\GlobalState' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/GlobalState.php', + 'PHPUnit\\Util\\InvalidArgumentHelper' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/InvalidArgumentHelper.php', + 'PHPUnit\\Util\\Json' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Json.php', + 'PHPUnit\\Util\\Log\\JUnit' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Log/JUnit.php', + 'PHPUnit\\Util\\Log\\TeamCity' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Log/TeamCity.php', + 'PHPUnit\\Util\\PHP\\AbstractPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/AbstractPhpProcess.php', + 'PHPUnit\\Util\\PHP\\DefaultPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/DefaultPhpProcess.php', + 'PHPUnit\\Util\\PHP\\WindowsPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/WindowsPhpProcess.php', + 'PHPUnit\\Util\\Printer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Printer.php', + 'PHPUnit\\Util\\RegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/RegularExpression.php', + 'PHPUnit\\Util\\Test' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Test.php', + 'PHPUnit\\Util\\TestDox\\CliTestDoxPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/CliTestDoxPrinter.php', + 'PHPUnit\\Util\\TestDox\\HtmlResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/HtmlResultPrinter.php', + 'PHPUnit\\Util\\TestDox\\NamePrettifier' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php', + 'PHPUnit\\Util\\TestDox\\ResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php', + 'PHPUnit\\Util\\TestDox\\TestResult' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/TestResult.php', + 'PHPUnit\\Util\\TestDox\\TextResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/TextResultPrinter.php', + 'PHPUnit\\Util\\TestDox\\XmlResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/XmlResultPrinter.php', + 'PHPUnit\\Util\\TextTestListRenderer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TextTestListRenderer.php', + 'PHPUnit\\Util\\Type' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Type.php', + 'PHPUnit\\Util\\XdebugFilterScriptGenerator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/XdebugFilterScriptGenerator.php', + 'PHPUnit\\Util\\Xml' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml.php', + 'PHPUnit\\Util\\XmlTestListRenderer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/XmlTestListRenderer.php', + 'PHPUnit_Framework_MockObject_MockObject' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockObject.php', + 'PHP_Token' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_TokenWithScope' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_TokenWithScopeAndVisibility' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ABSTRACT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AMPERSAND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AND_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ARRAY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ARRAY_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_AT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BACKTICK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BAD_CHARACTER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BOOLEAN_AND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BOOLEAN_OR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BOOL_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_BREAK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CALLABLE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CARET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CASE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CATCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CHARACTER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLASS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLASS_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLASS_NAME_CONSTANT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLONE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_BRACKET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_CURLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_SQUARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CLOSE_TAG' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COALESCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COALESCE_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COMMA' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_COMMENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONCAT_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONSTANT_ENCAPSED_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CONTINUE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_CURLY_OPEN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DEC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DECLARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DEFAULT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DIR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DIV' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DIV_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DNUMBER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOC_COMMENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOLLAR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOLLAR_OPEN_CURLY_BRACES' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_ARROW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_COLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_DOUBLE_QUOTES' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ECHO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ELLIPSIS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ELSE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ELSEIF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EMPTY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENCAPSED_AND_WHITESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDDECLARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDFOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDFOREACH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDIF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDSWITCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ENDWHILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_END_HEREDOC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EVAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EXCLAMATION_MARK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EXIT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_EXTENDS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FINAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FINALLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FOREACH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FUNCTION' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_FUNC_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_GLOBAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_GOTO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_GT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_HALT_COMPILER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IMPLEMENTS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INCLUDE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INCLUDE_ONCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INLINE_HTML' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INSTANCEOF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INSTEADOF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INTERFACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_INT_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_ISSET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_GREATER_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_IDENTICAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_NOT_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_NOT_IDENTICAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_IS_SMALLER_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_Includes' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LINE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LIST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LNUMBER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LOGICAL_AND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LOGICAL_OR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LOGICAL_XOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_LT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_METHOD_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MINUS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MINUS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MOD_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MULT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_MUL_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NAMESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NEW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NS_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NS_SEPARATOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_NUM_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OBJECT_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OBJECT_OPERATOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_BRACKET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_CURLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_SQUARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_TAG' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OPEN_TAG_WITH_ECHO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PAAMAYIM_NEKUDOTAYIM' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PERCENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PIPE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PLUS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PLUS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_POW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_POW_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PRINT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PRIVATE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PROTECTED' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_PUBLIC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_QUESTION_MARK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_REQUIRE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_REQUIRE_ONCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_RETURN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SEMICOLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SL_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SPACESHIP' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_START_HEREDOC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STATIC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STRING_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_STRING_VARNAME' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_SWITCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_Stream' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token/Stream.php', + 'PHP_Token_Stream_CachingFactory' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php', + 'PHP_Token_THROW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TILDE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TRAIT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TRAIT_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_TRY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_UNSET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_UNSET_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_USE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_USE_FUNCTION' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_Util' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token/Util.php', + 'PHP_Token_VAR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_VARIABLE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_WHILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_WHITESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_XOR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_YIELD' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'PHP_Token_YIELD_FROM' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', + 'Package_Command' => __DIR__ . '/..' . '/wp-cli/package-command/src/Package_Command.php', + 'Peast\\Formatter\\Base' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Formatter/Base.php', + 'Peast\\Formatter\\Compact' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Formatter/Compact.php', + 'Peast\\Formatter\\Expanded' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Formatter/Expanded.php', + 'Peast\\Formatter\\PrettyPrint' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Formatter/PrettyPrint.php', + 'Peast\\Peast' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Peast.php', + 'Peast\\Renderer' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Renderer.php', + 'Peast\\Syntax\\CommentsRegistry' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/CommentsRegistry.php', + 'Peast\\Syntax\\ES2015\\Parser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2015/Parser.php', + 'Peast\\Syntax\\ES2015\\Scanner' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2015/Scanner.php', + 'Peast\\Syntax\\ES2016\\Parser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2016/Parser.php', + 'Peast\\Syntax\\ES2016\\Scanner' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2016/Scanner.php', + 'Peast\\Syntax\\ES2017\\Parser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2017/Parser.php', + 'Peast\\Syntax\\ES2017\\Scanner' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2017/Scanner.php', + 'Peast\\Syntax\\ES2018\\Parser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2018/Parser.php', + 'Peast\\Syntax\\ES2018\\Scanner' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2018/Scanner.php', + 'Peast\\Syntax\\ES2019\\Parser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2019/Parser.php', + 'Peast\\Syntax\\ES2019\\Scanner' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2019/Scanner.php', + 'Peast\\Syntax\\EventsEmitter' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/EventsEmitter.php', + 'Peast\\Syntax\\Exception' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Exception.php', + 'Peast\\Syntax\\JSX\\Parser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/JSX/Parser.php', + 'Peast\\Syntax\\JSX\\Scanner' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/JSX/Scanner.php', + 'Peast\\Syntax\\LSM' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/LSM.php', + 'Peast\\Syntax\\Node\\ArrayExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ArrayExpression.php', + 'Peast\\Syntax\\Node\\ArrayPattern' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ArrayPattern.php', + 'Peast\\Syntax\\Node\\ArrowFunctionExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ArrowFunctionExpression.php', + 'Peast\\Syntax\\Node\\AssignmentExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/AssignmentExpression.php', + 'Peast\\Syntax\\Node\\AssignmentPattern' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/AssignmentPattern.php', + 'Peast\\Syntax\\Node\\AssignmentProperty' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/AssignmentProperty.php', + 'Peast\\Syntax\\Node\\AwaitExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/AwaitExpression.php', + 'Peast\\Syntax\\Node\\BinaryExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/BinaryExpression.php', + 'Peast\\Syntax\\Node\\BlockStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/BlockStatement.php', + 'Peast\\Syntax\\Node\\BooleanLiteral' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/BooleanLiteral.php', + 'Peast\\Syntax\\Node\\BreakStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/BreakStatement.php', + 'Peast\\Syntax\\Node\\CallExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/CallExpression.php', + 'Peast\\Syntax\\Node\\CatchClause' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/CatchClause.php', + 'Peast\\Syntax\\Node\\ClassBody' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ClassBody.php', + 'Peast\\Syntax\\Node\\ClassDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ClassDeclaration.php', + 'Peast\\Syntax\\Node\\ClassExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ClassExpression.php', + 'Peast\\Syntax\\Node\\Class_' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Class_.php', + 'Peast\\Syntax\\Node\\Comment' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Comment.php', + 'Peast\\Syntax\\Node\\ConditionalExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ConditionalExpression.php', + 'Peast\\Syntax\\Node\\ContinueStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ContinueStatement.php', + 'Peast\\Syntax\\Node\\DebuggerStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/DebuggerStatement.php', + 'Peast\\Syntax\\Node\\Declaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Declaration.php', + 'Peast\\Syntax\\Node\\DoWhileStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/DoWhileStatement.php', + 'Peast\\Syntax\\Node\\EmptyStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/EmptyStatement.php', + 'Peast\\Syntax\\Node\\ExportAllDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ExportAllDeclaration.php', + 'Peast\\Syntax\\Node\\ExportDefaultDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ExportDefaultDeclaration.php', + 'Peast\\Syntax\\Node\\ExportNamedDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ExportNamedDeclaration.php', + 'Peast\\Syntax\\Node\\ExportSpecifier' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ExportSpecifier.php', + 'Peast\\Syntax\\Node\\Expression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Expression.php', + 'Peast\\Syntax\\Node\\ExpressionStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ExpressionStatement.php', + 'Peast\\Syntax\\Node\\ForInStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ForInStatement.php', + 'Peast\\Syntax\\Node\\ForOfStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ForOfStatement.php', + 'Peast\\Syntax\\Node\\ForStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ForStatement.php', + 'Peast\\Syntax\\Node\\FunctionDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/FunctionDeclaration.php', + 'Peast\\Syntax\\Node\\FunctionExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/FunctionExpression.php', + 'Peast\\Syntax\\Node\\Function_' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Function_.php', + 'Peast\\Syntax\\Node\\Identifier' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Identifier.php', + 'Peast\\Syntax\\Node\\IfStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/IfStatement.php', + 'Peast\\Syntax\\Node\\ImportDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ImportDeclaration.php', + 'Peast\\Syntax\\Node\\ImportDefaultSpecifier' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ImportDefaultSpecifier.php', + 'Peast\\Syntax\\Node\\ImportNamespaceSpecifier' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ImportNamespaceSpecifier.php', + 'Peast\\Syntax\\Node\\ImportSpecifier' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ImportSpecifier.php', + 'Peast\\Syntax\\Node\\JSX\\JSXAttribute' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXAttribute.php', + 'Peast\\Syntax\\Node\\JSX\\JSXBoundaryElement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXBoundaryElement.php', + 'Peast\\Syntax\\Node\\JSX\\JSXClosingElement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXClosingElement.php', + 'Peast\\Syntax\\Node\\JSX\\JSXClosingFragment' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXClosingFragment.php', + 'Peast\\Syntax\\Node\\JSX\\JSXElement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXElement.php', + 'Peast\\Syntax\\Node\\JSX\\JSXEmptyExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXEmptyExpression.php', + 'Peast\\Syntax\\Node\\JSX\\JSXExpressionContainer' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXExpressionContainer.php', + 'Peast\\Syntax\\Node\\JSX\\JSXFragment' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXFragment.php', + 'Peast\\Syntax\\Node\\JSX\\JSXIdentifier' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXIdentifier.php', + 'Peast\\Syntax\\Node\\JSX\\JSXMemberExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXMemberExpression.php', + 'Peast\\Syntax\\Node\\JSX\\JSXNamespacedName' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXNamespacedName.php', + 'Peast\\Syntax\\Node\\JSX\\JSXOpeningElement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXOpeningElement.php', + 'Peast\\Syntax\\Node\\JSX\\JSXOpeningFragment' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXOpeningFragment.php', + 'Peast\\Syntax\\Node\\JSX\\JSXSpreadAttribute' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXSpreadAttribute.php', + 'Peast\\Syntax\\Node\\JSX\\JSXSpreadChild' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXSpreadChild.php', + 'Peast\\Syntax\\Node\\JSX\\JSXText' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXText.php', + 'Peast\\Syntax\\Node\\LabeledStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/LabeledStatement.php', + 'Peast\\Syntax\\Node\\Literal' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Literal.php', + 'Peast\\Syntax\\Node\\LogicalExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/LogicalExpression.php', + 'Peast\\Syntax\\Node\\MemberExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/MemberExpression.php', + 'Peast\\Syntax\\Node\\MetaProperty' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/MetaProperty.php', + 'Peast\\Syntax\\Node\\MethodDefinition' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/MethodDefinition.php', + 'Peast\\Syntax\\Node\\ModuleDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ModuleDeclaration.php', + 'Peast\\Syntax\\Node\\ModuleSpecifier' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ModuleSpecifier.php', + 'Peast\\Syntax\\Node\\NewExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/NewExpression.php', + 'Peast\\Syntax\\Node\\Node' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Node.php', + 'Peast\\Syntax\\Node\\NullLiteral' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/NullLiteral.php', + 'Peast\\Syntax\\Node\\NumericLiteral' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/NumericLiteral.php', + 'Peast\\Syntax\\Node\\ObjectExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ObjectExpression.php', + 'Peast\\Syntax\\Node\\ObjectPattern' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ObjectPattern.php', + 'Peast\\Syntax\\Node\\ParenthesizedExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ParenthesizedExpression.php', + 'Peast\\Syntax\\Node\\Pattern' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Pattern.php', + 'Peast\\Syntax\\Node\\Program' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Program.php', + 'Peast\\Syntax\\Node\\Property' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Property.php', + 'Peast\\Syntax\\Node\\RegExpLiteral' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/RegExpLiteral.php', + 'Peast\\Syntax\\Node\\RestElement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/RestElement.php', + 'Peast\\Syntax\\Node\\ReturnStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ReturnStatement.php', + 'Peast\\Syntax\\Node\\SequenceExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/SequenceExpression.php', + 'Peast\\Syntax\\Node\\SpreadElement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/SpreadElement.php', + 'Peast\\Syntax\\Node\\Statement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Statement.php', + 'Peast\\Syntax\\Node\\StringLiteral' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/StringLiteral.php', + 'Peast\\Syntax\\Node\\Super' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Super.php', + 'Peast\\Syntax\\Node\\SwitchCase' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/SwitchCase.php', + 'Peast\\Syntax\\Node\\SwitchStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/SwitchStatement.php', + 'Peast\\Syntax\\Node\\TaggedTemplateExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/TaggedTemplateExpression.php', + 'Peast\\Syntax\\Node\\TemplateElement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/TemplateElement.php', + 'Peast\\Syntax\\Node\\TemplateLiteral' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/TemplateLiteral.php', + 'Peast\\Syntax\\Node\\ThisExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ThisExpression.php', + 'Peast\\Syntax\\Node\\ThrowStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ThrowStatement.php', + 'Peast\\Syntax\\Node\\TryStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/TryStatement.php', + 'Peast\\Syntax\\Node\\UnaryExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/UnaryExpression.php', + 'Peast\\Syntax\\Node\\UpdateExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/UpdateExpression.php', + 'Peast\\Syntax\\Node\\VariableDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/VariableDeclaration.php', + 'Peast\\Syntax\\Node\\VariableDeclarator' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/VariableDeclarator.php', + 'Peast\\Syntax\\Node\\WhileStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/WhileStatement.php', + 'Peast\\Syntax\\Node\\WithStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/WithStatement.php', + 'Peast\\Syntax\\Node\\YieldExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/YieldExpression.php', + 'Peast\\Syntax\\Parser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Parser.php', + 'Peast\\Syntax\\Position' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Position.php', + 'Peast\\Syntax\\Scanner' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Scanner.php', + 'Peast\\Syntax\\SourceLocation' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/SourceLocation.php', + 'Peast\\Syntax\\Token' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Token.php', + 'Peast\\Syntax\\Utils' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Utils.php', + 'Peast\\Traverser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Traverser.php', + 'Peast\\test\\PeastTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/PeastTest.php', + 'Peast\\test\\Syntax\\CommentsRegistryTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/CommentsRegistryTest.php', + 'Peast\\test\\Syntax\\ES2015\\ES2015Test' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/ES2015/ES2015Test.php', + 'Peast\\test\\Syntax\\ES2016\\ES2016Test' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/ES2016/ES2016Test.php', + 'Peast\\test\\Syntax\\ES2017\\ES2017Test' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/ES2017/ES2017Test.php', + 'Peast\\test\\Syntax\\ES2018\\ES2018Test' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/ES2018/ES2018Test.php', + 'Peast\\test\\Syntax\\ES2019\\ES2019Test' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/ES2019/ES2019Test.php', + 'Peast\\test\\Syntax\\Node\\BooleanLiteralTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/Node/BooleanLiteralTest.php', + 'Peast\\test\\Syntax\\Node\\CommentTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/Node/CommentTest.php', + 'Peast\\test\\Syntax\\Node\\NullLiteralTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/Node/NullLiteralTest.php', + 'Peast\\test\\Syntax\\Node\\NumericLiteralTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/Node/NumericLiteralTest.php', + 'Peast\\test\\Syntax\\Node\\StringLiteralTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/Node/StringLiteralTest.php', + 'Peast\\test\\TestBase' => __DIR__ . '/..' . '/mck89/peast/test/Peast/TestBase.php', + 'Peast\\test\\TestCaseBase' => __DIR__ . '/..' . '/mck89/peast/test/Peast/TestCaseBase.php', + 'Peast\\test\\Traverser\\RendererTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/RendererTest.php', + 'Peast\\test\\Traverser\\TraverserTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/TraverserTest.php', + 'PharIo\\Manifest\\Application' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Application.php', + 'PharIo\\Manifest\\ApplicationName' => __DIR__ . '/..' . '/phar-io/manifest/src/values/ApplicationName.php', + 'PharIo\\Manifest\\Author' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Author.php', + 'PharIo\\Manifest\\AuthorCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/AuthorCollection.php', + 'PharIo\\Manifest\\AuthorCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/AuthorCollectionIterator.php', + 'PharIo\\Manifest\\AuthorElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/AuthorElement.php', + 'PharIo\\Manifest\\AuthorElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/AuthorElementCollection.php', + 'PharIo\\Manifest\\BundledComponent' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponent.php', + 'PharIo\\Manifest\\BundledComponentCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponentCollection.php', + 'PharIo\\Manifest\\BundledComponentCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponentCollectionIterator.php', + 'PharIo\\Manifest\\BundlesElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/BundlesElement.php', + 'PharIo\\Manifest\\ComponentElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ComponentElement.php', + 'PharIo\\Manifest\\ComponentElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ComponentElementCollection.php', + 'PharIo\\Manifest\\ContainsElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ContainsElement.php', + 'PharIo\\Manifest\\CopyrightElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/CopyrightElement.php', + 'PharIo\\Manifest\\CopyrightInformation' => __DIR__ . '/..' . '/phar-io/manifest/src/values/CopyrightInformation.php', + 'PharIo\\Manifest\\ElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ElementCollection.php', + 'PharIo\\Manifest\\Email' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Email.php', + 'PharIo\\Manifest\\Exception' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/Exception.php', + 'PharIo\\Manifest\\ExtElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtElement.php', + 'PharIo\\Manifest\\ExtElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtElementCollection.php', + 'PharIo\\Manifest\\Extension' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Extension.php', + 'PharIo\\Manifest\\ExtensionElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtensionElement.php', + 'PharIo\\Manifest\\InvalidApplicationNameException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php', + 'PharIo\\Manifest\\InvalidEmailException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidEmailException.php', + 'PharIo\\Manifest\\InvalidUrlException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidUrlException.php', + 'PharIo\\Manifest\\Library' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Library.php', + 'PharIo\\Manifest\\License' => __DIR__ . '/..' . '/phar-io/manifest/src/values/License.php', + 'PharIo\\Manifest\\LicenseElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/LicenseElement.php', + 'PharIo\\Manifest\\Manifest' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Manifest.php', + 'PharIo\\Manifest\\ManifestDocument' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ManifestDocument.php', + 'PharIo\\Manifest\\ManifestDocumentException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestDocumentException.php', + 'PharIo\\Manifest\\ManifestDocumentLoadingException' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ManifestDocumentLoadingException.php', + 'PharIo\\Manifest\\ManifestDocumentMapper' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestDocumentMapper.php', + 'PharIo\\Manifest\\ManifestDocumentMapperException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php', + 'PharIo\\Manifest\\ManifestElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ManifestElement.php', + 'PharIo\\Manifest\\ManifestElementException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestElementException.php', + 'PharIo\\Manifest\\ManifestLoader' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestLoader.php', + 'PharIo\\Manifest\\ManifestLoaderException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestLoaderException.php', + 'PharIo\\Manifest\\ManifestSerializer' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestSerializer.php', + 'PharIo\\Manifest\\PhpElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/PhpElement.php', + 'PharIo\\Manifest\\PhpExtensionRequirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/PhpExtensionRequirement.php', + 'PharIo\\Manifest\\PhpVersionRequirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/PhpVersionRequirement.php', + 'PharIo\\Manifest\\Requirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Requirement.php', + 'PharIo\\Manifest\\RequirementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/RequirementCollection.php', + 'PharIo\\Manifest\\RequirementCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/RequirementCollectionIterator.php', + 'PharIo\\Manifest\\RequiresElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/RequiresElement.php', + 'PharIo\\Manifest\\Type' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Type.php', + 'PharIo\\Manifest\\Url' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Url.php', + 'PharIo\\Version\\AbstractVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/AbstractVersionConstraint.php', + 'PharIo\\Version\\AndVersionConstraintGroup' => __DIR__ . '/..' . '/phar-io/version/src/constraints/AndVersionConstraintGroup.php', + 'PharIo\\Version\\AnyVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/AnyVersionConstraint.php', + 'PharIo\\Version\\ExactVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/ExactVersionConstraint.php', + 'PharIo\\Version\\Exception' => __DIR__ . '/..' . '/phar-io/version/src/exceptions/Exception.php', + 'PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/GreaterThanOrEqualToVersionConstraint.php', + 'PharIo\\Version\\InvalidPreReleaseSuffixException' => __DIR__ . '/..' . '/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.php', + 'PharIo\\Version\\InvalidVersionException' => __DIR__ . '/..' . '/phar-io/version/src/exceptions/InvalidVersionException.php', + 'PharIo\\Version\\OrVersionConstraintGroup' => __DIR__ . '/..' . '/phar-io/version/src/constraints/OrVersionConstraintGroup.php', + 'PharIo\\Version\\PreReleaseSuffix' => __DIR__ . '/..' . '/phar-io/version/src/PreReleaseSuffix.php', + 'PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/SpecificMajorAndMinorVersionConstraint.php', + 'PharIo\\Version\\SpecificMajorVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/SpecificMajorVersionConstraint.php', + 'PharIo\\Version\\UnsupportedVersionConstraintException' => __DIR__ . '/..' . '/phar-io/version/src/exceptions/UnsupportedVersionConstraintException.php', + 'PharIo\\Version\\Version' => __DIR__ . '/..' . '/phar-io/version/src/Version.php', + 'PharIo\\Version\\VersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/VersionConstraint.php', + 'PharIo\\Version\\VersionConstraintParser' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintParser.php', + 'PharIo\\Version\\VersionConstraintValue' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintValue.php', + 'PharIo\\Version\\VersionNumber' => __DIR__ . '/..' . '/phar-io/version/src/VersionNumber.php', + 'PhpOption\\LazyOption' => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption/LazyOption.php', + 'PhpOption\\None' => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption/None.php', + 'PhpOption\\Option' => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption/Option.php', + 'PhpOption\\Some' => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption/Some.php', + 'Plugin_Command' => __DIR__ . '/..' . '/wp-cli/extension-command/src/Plugin_Command.php', + 'Plugin_Command_Namespace' => __DIR__ . '/..' . '/wp-cli/checksum-command/src/Plugin_Command_Namespace.php', + 'Plugin_Language_Command' => __DIR__ . '/..' . '/wp-cli/language-command/src/Plugin_Language_Command.php', + 'Post_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Command.php', + 'Post_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Meta_Command.php', + 'Post_Term_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Term_Command.php', + 'Post_Type_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Type_Command.php', + 'Prophecy\\Argument' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument.php', + 'Prophecy\\Argument\\ArgumentsWildcard' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/ArgumentsWildcard.php', + 'Prophecy\\Argument\\Token\\AnyValueToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValueToken.php', + 'Prophecy\\Argument\\Token\\AnyValuesToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php', + 'Prophecy\\Argument\\Token\\ApproximateValueToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ApproximateValueToken.php', + 'Prophecy\\Argument\\Token\\ArrayCountToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayCountToken.php', + 'Prophecy\\Argument\\Token\\ArrayEntryToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEntryToken.php', + 'Prophecy\\Argument\\Token\\ArrayEveryEntryToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEveryEntryToken.php', + 'Prophecy\\Argument\\Token\\CallbackToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/CallbackToken.php', + 'Prophecy\\Argument\\Token\\ExactValueToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ExactValueToken.php', + 'Prophecy\\Argument\\Token\\IdenticalValueToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/IdenticalValueToken.php', + 'Prophecy\\Argument\\Token\\LogicalAndToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalAndToken.php', + 'Prophecy\\Argument\\Token\\LogicalNotToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php', + 'Prophecy\\Argument\\Token\\ObjectStateToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ObjectStateToken.php', + 'Prophecy\\Argument\\Token\\StringContainsToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/StringContainsToken.php', + 'Prophecy\\Argument\\Token\\TokenInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/TokenInterface.php', + 'Prophecy\\Argument\\Token\\TypeToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/TypeToken.php', + 'Prophecy\\Call\\Call' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Call/Call.php', + 'Prophecy\\Call\\CallCenter' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Call/CallCenter.php', + 'Prophecy\\Comparator\\ClosureComparator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Comparator/ClosureComparator.php', + 'Prophecy\\Comparator\\Factory' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Comparator/Factory.php', + 'Prophecy\\Comparator\\ProphecyComparator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Comparator/ProphecyComparator.php', + 'Prophecy\\Doubler\\CachedDoubler' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/CachedDoubler.php', + 'Prophecy\\Doubler\\ClassPatch\\ClassPatchInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php', + 'Prophecy\\Doubler\\ClassPatch\\DisableConstructorPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\HhvmExceptionPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\KeywordPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/KeywordPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\MagicCallPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/MagicCallPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\ProphecySubjectPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\ReflectionClassNewInstancePatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php', + 'Prophecy\\Doubler\\ClassPatch\\SplFileInfoPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/SplFileInfoPatch.php', + 'Prophecy\\Doubler\\ClassPatch\\ThrowablePatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ThrowablePatch.php', + 'Prophecy\\Doubler\\ClassPatch\\TraversablePatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/TraversablePatch.php', + 'Prophecy\\Doubler\\DoubleInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/DoubleInterface.php', + 'Prophecy\\Doubler\\Doubler' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Doubler.php', + 'Prophecy\\Doubler\\Generator\\ClassCodeGenerator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCodeGenerator.php', + 'Prophecy\\Doubler\\Generator\\ClassCreator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCreator.php', + 'Prophecy\\Doubler\\Generator\\ClassMirror' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassMirror.php', + 'Prophecy\\Doubler\\Generator\\Node\\ArgumentNode' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ArgumentNode.php', + 'Prophecy\\Doubler\\Generator\\Node\\ClassNode' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ClassNode.php', + 'Prophecy\\Doubler\\Generator\\Node\\MethodNode' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/MethodNode.php', + 'Prophecy\\Doubler\\Generator\\ReflectionInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ReflectionInterface.php', + 'Prophecy\\Doubler\\Generator\\TypeHintReference' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/TypeHintReference.php', + 'Prophecy\\Doubler\\LazyDouble' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/LazyDouble.php', + 'Prophecy\\Doubler\\NameGenerator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/NameGenerator.php', + 'Prophecy\\Exception\\Call\\UnexpectedCallException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Call/UnexpectedCallException.php', + 'Prophecy\\Exception\\Doubler\\ClassCreatorException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassCreatorException.php', + 'Prophecy\\Exception\\Doubler\\ClassMirrorException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassMirrorException.php', + 'Prophecy\\Exception\\Doubler\\ClassNotFoundException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\DoubleException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.php', + 'Prophecy\\Exception\\Doubler\\DoublerException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php', + 'Prophecy\\Exception\\Doubler\\InterfaceNotFoundException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/InterfaceNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\MethodNotExtendableException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotExtendableException.php', + 'Prophecy\\Exception\\Doubler\\MethodNotFoundException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php', + 'Prophecy\\Exception\\Doubler\\ReturnByReferenceException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ReturnByReferenceException.php', + 'Prophecy\\Exception\\Exception' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Exception.php', + 'Prophecy\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php', + 'Prophecy\\Exception\\Prediction\\AggregateException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/AggregateException.php', + 'Prophecy\\Exception\\Prediction\\FailedPredictionException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/FailedPredictionException.php', + 'Prophecy\\Exception\\Prediction\\NoCallsException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/NoCallsException.php', + 'Prophecy\\Exception\\Prediction\\PredictionException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/PredictionException.php', + 'Prophecy\\Exception\\Prediction\\UnexpectedCallsCountException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsCountException.php', + 'Prophecy\\Exception\\Prediction\\UnexpectedCallsException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsException.php', + 'Prophecy\\Exception\\Prophecy\\MethodProphecyException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/MethodProphecyException.php', + 'Prophecy\\Exception\\Prophecy\\ObjectProphecyException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ObjectProphecyException.php', + 'Prophecy\\Exception\\Prophecy\\ProphecyException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php', + 'Prophecy\\PhpDocumentor\\ClassAndInterfaceTagRetriever' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php', + 'Prophecy\\PhpDocumentor\\ClassTagRetriever' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassTagRetriever.php', + 'Prophecy\\PhpDocumentor\\LegacyClassTagRetriever' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php', + 'Prophecy\\PhpDocumentor\\MethodTagRetrieverInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php', + 'Prophecy\\Prediction\\CallPrediction' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/CallPrediction.php', + 'Prophecy\\Prediction\\CallTimesPrediction' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/CallTimesPrediction.php', + 'Prophecy\\Prediction\\CallbackPrediction' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/CallbackPrediction.php', + 'Prophecy\\Prediction\\NoCallsPrediction' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/NoCallsPrediction.php', + 'Prophecy\\Prediction\\PredictionInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/PredictionInterface.php', + 'Prophecy\\Promise\\CallbackPromise' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/CallbackPromise.php', + 'Prophecy\\Promise\\PromiseInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/PromiseInterface.php', + 'Prophecy\\Promise\\ReturnArgumentPromise' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/ReturnArgumentPromise.php', + 'Prophecy\\Promise\\ReturnPromise' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/ReturnPromise.php', + 'Prophecy\\Promise\\ThrowPromise' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/ThrowPromise.php', + 'Prophecy\\Prophecy\\MethodProphecy' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/MethodProphecy.php', + 'Prophecy\\Prophecy\\ObjectProphecy' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php', + 'Prophecy\\Prophecy\\ProphecyInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecyInterface.php', + 'Prophecy\\Prophecy\\ProphecySubjectInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecySubjectInterface.php', + 'Prophecy\\Prophecy\\Revealer' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/Revealer.php', + 'Prophecy\\Prophecy\\RevealerInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/RevealerInterface.php', + 'Prophecy\\Prophet' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophet.php', + 'Prophecy\\Util\\ExportUtil' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Util/ExportUtil.php', + 'Prophecy\\Util\\StringUtil' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Util/StringUtil.php', + 'Psr\\Container\\ContainerExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerExceptionInterface.php', + 'Psr\\Container\\ContainerInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerInterface.php', + 'Psr\\Container\\NotFoundExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/NotFoundExceptionInterface.php', + 'Psr\\Http\\Message\\MessageInterface' => __DIR__ . '/..' . '/psr/http-message/src/MessageInterface.php', + 'Psr\\Http\\Message\\RequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/RequestInterface.php', + 'Psr\\Http\\Message\\ResponseInterface' => __DIR__ . '/..' . '/psr/http-message/src/ResponseInterface.php', + 'Psr\\Http\\Message\\ServerRequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/ServerRequestInterface.php', + 'Psr\\Http\\Message\\StreamInterface' => __DIR__ . '/..' . '/psr/http-message/src/StreamInterface.php', + 'Psr\\Http\\Message\\UploadedFileInterface' => __DIR__ . '/..' . '/psr/http-message/src/UploadedFileInterface.php', + 'Psr\\Http\\Message\\UriInterface' => __DIR__ . '/..' . '/psr/http-message/src/UriInterface.php', + 'Psr\\Log\\AbstractLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/AbstractLogger.php', + 'Psr\\Log\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/log/Psr/Log/InvalidArgumentException.php', + 'Psr\\Log\\LogLevel' => __DIR__ . '/..' . '/psr/log/Psr/Log/LogLevel.php', + 'Psr\\Log\\LoggerAwareInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerAwareInterface.php', + 'Psr\\Log\\LoggerAwareTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerAwareTrait.php', + 'Psr\\Log\\LoggerInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerInterface.php', + 'Psr\\Log\\LoggerTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerTrait.php', + 'Psr\\Log\\NullLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/NullLogger.php', + 'Psr\\Log\\Test\\DummyTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', + 'Psr\\Log\\Test\\LoggerInterfaceTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', + 'Psr\\Log\\Test\\TestLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/TestLogger.php', + 'Psr\\SimpleCache\\CacheException' => __DIR__ . '/..' . '/psr/simple-cache/src/CacheException.php', + 'Psr\\SimpleCache\\CacheInterface' => __DIR__ . '/..' . '/psr/simple-cache/src/CacheInterface.php', + 'Psr\\SimpleCache\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/simple-cache/src/InvalidArgumentException.php', + 'Requests' => __DIR__ . '/..' . '/rmccue/requests/library/Requests.php', + 'Requests_Auth' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Auth.php', + 'Requests_Auth_Basic' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Auth/Basic.php', + 'Requests_Cookie' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Cookie.php', + 'Requests_Cookie_Jar' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Cookie/Jar.php', + 'Requests_Exception' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception.php', + 'Requests_Exception_HTTP' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP.php', + 'Requests_Exception_HTTP_304' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/304.php', + 'Requests_Exception_HTTP_305' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/305.php', + 'Requests_Exception_HTTP_306' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/306.php', + 'Requests_Exception_HTTP_400' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/400.php', + 'Requests_Exception_HTTP_401' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/401.php', + 'Requests_Exception_HTTP_402' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/402.php', + 'Requests_Exception_HTTP_403' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/403.php', + 'Requests_Exception_HTTP_404' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/404.php', + 'Requests_Exception_HTTP_405' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/405.php', + 'Requests_Exception_HTTP_406' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/406.php', + 'Requests_Exception_HTTP_407' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/407.php', + 'Requests_Exception_HTTP_408' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/408.php', + 'Requests_Exception_HTTP_409' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/409.php', + 'Requests_Exception_HTTP_410' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/410.php', + 'Requests_Exception_HTTP_411' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/411.php', + 'Requests_Exception_HTTP_412' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/412.php', + 'Requests_Exception_HTTP_413' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/413.php', + 'Requests_Exception_HTTP_414' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/414.php', + 'Requests_Exception_HTTP_415' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/415.php', + 'Requests_Exception_HTTP_416' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/416.php', + 'Requests_Exception_HTTP_417' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/417.php', + 'Requests_Exception_HTTP_418' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/418.php', + 'Requests_Exception_HTTP_428' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/428.php', + 'Requests_Exception_HTTP_429' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/429.php', + 'Requests_Exception_HTTP_431' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/431.php', + 'Requests_Exception_HTTP_500' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/500.php', + 'Requests_Exception_HTTP_501' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/501.php', + 'Requests_Exception_HTTP_502' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/502.php', + 'Requests_Exception_HTTP_503' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/503.php', + 'Requests_Exception_HTTP_504' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/504.php', + 'Requests_Exception_HTTP_505' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/505.php', + 'Requests_Exception_HTTP_511' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/511.php', + 'Requests_Exception_HTTP_Unknown' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/Unknown.php', + 'Requests_Exception_Transport' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/Transport.php', + 'Requests_Exception_Transport_cURL' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/Transport/cURL.php', + 'Requests_Hooker' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Hooker.php', + 'Requests_Hooks' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Hooks.php', + 'Requests_IDNAEncoder' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/IDNAEncoder.php', + 'Requests_IPv6' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/IPv6.php', + 'Requests_IRI' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/IRI.php', + 'Requests_Proxy' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Proxy.php', + 'Requests_Proxy_HTTP' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Proxy/HTTP.php', + 'Requests_Response' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Response.php', + 'Requests_Response_Headers' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Response/Headers.php', + 'Requests_SSL' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/SSL.php', + 'Requests_Session' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Session.php', + 'Requests_Transport' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Transport.php', + 'Requests_Transport_cURL' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Transport/cURL.php', + 'Requests_Transport_fsockopen' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Transport/fsockopen.php', + 'Requests_Utility_CaseInsensitiveDictionary' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Utility/CaseInsensitiveDictionary.php', + 'Requests_Utility_FilteredIterator' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Utility/FilteredIterator.php', + 'Rewrite_Command' => __DIR__ . '/..' . '/wp-cli/rewrite-command/src/Rewrite_Command.php', + 'Role_Command' => __DIR__ . '/..' . '/wp-cli/role-command/src/Role_Command.php', + 'Scaffold_Command' => __DIR__ . '/..' . '/wp-cli/scaffold-command/src/Scaffold_Command.php', + 'Search_Replace_Command' => __DIR__ . '/..' . '/wp-cli/search-replace-command/src/Search_Replace_Command.php', + 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/CodeCoverage.php', + 'SebastianBergmann\\CodeCoverage\\CoveredCodeNotExecutedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php', + 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Driver.php', + 'SebastianBergmann\\CodeCoverage\\Driver\\PHPDBG' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/PHPDBG.php', + 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Xdebug.php', + 'SebastianBergmann\\CodeCoverage\\Exception' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/Exception.php', + 'SebastianBergmann\\CodeCoverage\\Filter' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Filter.php', + 'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php', + 'SebastianBergmann\\CodeCoverage\\MissingCoversAnnotationException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php', + 'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/AbstractNode.php', + 'SebastianBergmann\\CodeCoverage\\Node\\Builder' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Builder.php', + 'SebastianBergmann\\CodeCoverage\\Node\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Directory.php', + 'SebastianBergmann\\CodeCoverage\\Node\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/File.php', + 'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Iterator.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Clover' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Clover.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Crap4j.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Facade.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php', + 'SebastianBergmann\\CodeCoverage\\Report\\PHP' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/PHP.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Text' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Text.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/File.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Method.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Node.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Project.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Report.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Source.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php', + 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php', + 'SebastianBergmann\\CodeCoverage\\RuntimeException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/RuntimeException.php', + 'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php', + 'SebastianBergmann\\CodeCoverage\\Util' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Util.php', + 'SebastianBergmann\\CodeCoverage\\Version' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Version.php', + 'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => __DIR__ . '/..' . '/sebastian/code-unit-reverse-lookup/src/Wizard.php', + 'SebastianBergmann\\Comparator\\ArrayComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ArrayComparator.php', + 'SebastianBergmann\\Comparator\\Comparator' => __DIR__ . '/..' . '/sebastian/comparator/src/Comparator.php', + 'SebastianBergmann\\Comparator\\ComparisonFailure' => __DIR__ . '/..' . '/sebastian/comparator/src/ComparisonFailure.php', + 'SebastianBergmann\\Comparator\\DOMNodeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DOMNodeComparator.php', + 'SebastianBergmann\\Comparator\\DateTimeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DateTimeComparator.php', + 'SebastianBergmann\\Comparator\\DoubleComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DoubleComparator.php', + 'SebastianBergmann\\Comparator\\ExceptionComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ExceptionComparator.php', + 'SebastianBergmann\\Comparator\\Factory' => __DIR__ . '/..' . '/sebastian/comparator/src/Factory.php', + 'SebastianBergmann\\Comparator\\MockObjectComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/MockObjectComparator.php', + 'SebastianBergmann\\Comparator\\NumericComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/NumericComparator.php', + 'SebastianBergmann\\Comparator\\ObjectComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ObjectComparator.php', + 'SebastianBergmann\\Comparator\\ResourceComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ResourceComparator.php', + 'SebastianBergmann\\Comparator\\ScalarComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ScalarComparator.php', + 'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/SplObjectStorageComparator.php', + 'SebastianBergmann\\Comparator\\TypeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/TypeComparator.php', + 'SebastianBergmann\\Diff\\Chunk' => __DIR__ . '/..' . '/sebastian/diff/src/Chunk.php', + 'SebastianBergmann\\Diff\\ConfigurationException' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/ConfigurationException.php', + 'SebastianBergmann\\Diff\\Diff' => __DIR__ . '/..' . '/sebastian/diff/src/Diff.php', + 'SebastianBergmann\\Diff\\Differ' => __DIR__ . '/..' . '/sebastian/diff/src/Differ.php', + 'SebastianBergmann\\Diff\\Exception' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/Exception.php', + 'SebastianBergmann\\Diff\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/InvalidArgumentException.php', + 'SebastianBergmann\\Diff\\Line' => __DIR__ . '/..' . '/sebastian/diff/src/Line.php', + 'SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/LongestCommonSubsequenceCalculator.php', + 'SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php', + 'SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php', + 'SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php', + 'SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => __DIR__ . '/..' . '/sebastian/diff/src/Output/DiffOutputBuilderInterface.php', + 'SebastianBergmann\\Diff\\Output\\StrictUnifiedDiffOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php', + 'SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php', + 'SebastianBergmann\\Diff\\Parser' => __DIR__ . '/..' . '/sebastian/diff/src/Parser.php', + 'SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php', + 'SebastianBergmann\\Environment\\Console' => __DIR__ . '/..' . '/sebastian/environment/src/Console.php', + 'SebastianBergmann\\Environment\\OperatingSystem' => __DIR__ . '/..' . '/sebastian/environment/src/OperatingSystem.php', + 'SebastianBergmann\\Environment\\Runtime' => __DIR__ . '/..' . '/sebastian/environment/src/Runtime.php', + 'SebastianBergmann\\Exporter\\Exporter' => __DIR__ . '/..' . '/sebastian/exporter/src/Exporter.php', + 'SebastianBergmann\\FileIterator\\Facade' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Facade.php', + 'SebastianBergmann\\FileIterator\\Factory' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Factory.php', + 'SebastianBergmann\\FileIterator\\Iterator' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Iterator.php', + 'SebastianBergmann\\GlobalState\\Blacklist' => __DIR__ . '/..' . '/sebastian/global-state/src/Blacklist.php', + 'SebastianBergmann\\GlobalState\\CodeExporter' => __DIR__ . '/..' . '/sebastian/global-state/src/CodeExporter.php', + 'SebastianBergmann\\GlobalState\\Exception' => __DIR__ . '/..' . '/sebastian/global-state/src/exceptions/Exception.php', + 'SebastianBergmann\\GlobalState\\Restorer' => __DIR__ . '/..' . '/sebastian/global-state/src/Restorer.php', + 'SebastianBergmann\\GlobalState\\RuntimeException' => __DIR__ . '/..' . '/sebastian/global-state/src/exceptions/RuntimeException.php', + 'SebastianBergmann\\GlobalState\\Snapshot' => __DIR__ . '/..' . '/sebastian/global-state/src/Snapshot.php', + 'SebastianBergmann\\ObjectEnumerator\\Enumerator' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/Enumerator.php', + 'SebastianBergmann\\ObjectEnumerator\\Exception' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/Exception.php', + 'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/InvalidArgumentException.php', + 'SebastianBergmann\\ObjectReflector\\Exception' => __DIR__ . '/..' . '/sebastian/object-reflector/src/Exception.php', + 'SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/object-reflector/src/InvalidArgumentException.php', + 'SebastianBergmann\\ObjectReflector\\ObjectReflector' => __DIR__ . '/..' . '/sebastian/object-reflector/src/ObjectReflector.php', + 'SebastianBergmann\\RecursionContext\\Context' => __DIR__ . '/..' . '/sebastian/recursion-context/src/Context.php', + 'SebastianBergmann\\RecursionContext\\Exception' => __DIR__ . '/..' . '/sebastian/recursion-context/src/Exception.php', + 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/recursion-context/src/InvalidArgumentException.php', + 'SebastianBergmann\\ResourceOperations\\ResourceOperations' => __DIR__ . '/..' . '/sebastian/resource-operations/src/ResourceOperations.php', + 'SebastianBergmann\\Timer\\Exception' => __DIR__ . '/..' . '/phpunit/php-timer/src/Exception.php', + 'SebastianBergmann\\Timer\\RuntimeException' => __DIR__ . '/..' . '/phpunit/php-timer/src/RuntimeException.php', + 'SebastianBergmann\\Timer\\Timer' => __DIR__ . '/..' . '/phpunit/php-timer/src/Timer.php', + 'SebastianBergmann\\Version' => __DIR__ . '/..' . '/sebastian/version/src/Version.php', + 'Seld\\JsonLint\\DuplicateKeyException' => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php', + 'Seld\\JsonLint\\JsonParser' => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint/JsonParser.php', + 'Seld\\JsonLint\\Lexer' => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint/Lexer.php', + 'Seld\\JsonLint\\ParsingException' => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint/ParsingException.php', + 'Seld\\JsonLint\\Undefined' => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint/Undefined.php', + 'Seld\\PharUtils\\Timestamps' => __DIR__ . '/..' . '/seld/phar-utils/src/Timestamps.php', + 'Server_Command' => __DIR__ . '/..' . '/wp-cli/server-command/src/Server_Command.php', + 'Shell_Command' => __DIR__ . '/..' . '/wp-cli/shell-command/src/Shell_Command.php', + 'Sidebar_Command' => __DIR__ . '/..' . '/wp-cli/widget-command/src/Sidebar_Command.php', + 'Site_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Site_Command.php', + 'Site_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Site_Meta_Command.php', + 'Site_Option_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Site_Option_Command.php', + 'Site_Switch_Language_Command' => __DIR__ . '/..' . '/wp-cli/language-command/src/Site_Switch_Language_Command.php', + 'Super_Admin_Command' => __DIR__ . '/..' . '/wp-cli/super-admin-command/src/Super_Admin_Command.php', + 'Symfony\\Component\\BrowserKit\\AbstractBrowser' => __DIR__ . '/..' . '/symfony/browser-kit/AbstractBrowser.php', + 'Symfony\\Component\\BrowserKit\\Client' => __DIR__ . '/..' . '/symfony/browser-kit/Client.php', + 'Symfony\\Component\\BrowserKit\\Cookie' => __DIR__ . '/..' . '/symfony/browser-kit/Cookie.php', + 'Symfony\\Component\\BrowserKit\\CookieJar' => __DIR__ . '/..' . '/symfony/browser-kit/CookieJar.php', + 'Symfony\\Component\\BrowserKit\\Exception\\BadMethodCallException' => __DIR__ . '/..' . '/symfony/browser-kit/Exception/BadMethodCallException.php', + 'Symfony\\Component\\BrowserKit\\History' => __DIR__ . '/..' . '/symfony/browser-kit/History.php', + 'Symfony\\Component\\BrowserKit\\HttpBrowser' => __DIR__ . '/..' . '/symfony/browser-kit/HttpBrowser.php', + 'Symfony\\Component\\BrowserKit\\Request' => __DIR__ . '/..' . '/symfony/browser-kit/Request.php', + 'Symfony\\Component\\BrowserKit\\Response' => __DIR__ . '/..' . '/symfony/browser-kit/Response.php', + 'Symfony\\Component\\BrowserKit\\Test\\Constraint\\BrowserCookieValueSame' => __DIR__ . '/..' . '/symfony/browser-kit/Test/Constraint/BrowserCookieValueSame.php', + 'Symfony\\Component\\BrowserKit\\Test\\Constraint\\BrowserHasCookie' => __DIR__ . '/..' . '/symfony/browser-kit/Test/Constraint/BrowserHasCookie.php', + 'Symfony\\Component\\Console\\Application' => __DIR__ . '/..' . '/symfony/console/Application.php', + 'Symfony\\Component\\Console\\CommandLoader\\CommandLoaderInterface' => __DIR__ . '/..' . '/symfony/console/CommandLoader/CommandLoaderInterface.php', + 'Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader' => __DIR__ . '/..' . '/symfony/console/CommandLoader/ContainerCommandLoader.php', + 'Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader' => __DIR__ . '/..' . '/symfony/console/CommandLoader/FactoryCommandLoader.php', + 'Symfony\\Component\\Console\\Command\\Command' => __DIR__ . '/..' . '/symfony/console/Command/Command.php', + 'Symfony\\Component\\Console\\Command\\HelpCommand' => __DIR__ . '/..' . '/symfony/console/Command/HelpCommand.php', + 'Symfony\\Component\\Console\\Command\\ListCommand' => __DIR__ . '/..' . '/symfony/console/Command/ListCommand.php', + 'Symfony\\Component\\Console\\Command\\LockableTrait' => __DIR__ . '/..' . '/symfony/console/Command/LockableTrait.php', + 'Symfony\\Component\\Console\\ConsoleEvents' => __DIR__ . '/..' . '/symfony/console/ConsoleEvents.php', + 'Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass' => __DIR__ . '/..' . '/symfony/console/DependencyInjection/AddConsoleCommandPass.php', + 'Symfony\\Component\\Console\\Descriptor\\ApplicationDescription' => __DIR__ . '/..' . '/symfony/console/Descriptor/ApplicationDescription.php', + 'Symfony\\Component\\Console\\Descriptor\\Descriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/Descriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\DescriptorInterface' => __DIR__ . '/..' . '/symfony/console/Descriptor/DescriptorInterface.php', + 'Symfony\\Component\\Console\\Descriptor\\JsonDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/JsonDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\MarkdownDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/MarkdownDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\TextDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/TextDescriptor.php', + 'Symfony\\Component\\Console\\Descriptor\\XmlDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/XmlDescriptor.php', + 'Symfony\\Component\\Console\\EventListener\\ErrorListener' => __DIR__ . '/..' . '/symfony/console/EventListener/ErrorListener.php', + 'Symfony\\Component\\Console\\Event\\ConsoleCommandEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleCommandEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleErrorEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleErrorEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleEvent.php', + 'Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleTerminateEvent.php', + 'Symfony\\Component\\Console\\Exception\\CommandNotFoundException' => __DIR__ . '/..' . '/symfony/console/Exception/CommandNotFoundException.php', + 'Symfony\\Component\\Console\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/console/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Console\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/console/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\Console\\Exception\\InvalidOptionException' => __DIR__ . '/..' . '/symfony/console/Exception/InvalidOptionException.php', + 'Symfony\\Component\\Console\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/console/Exception/LogicException.php', + 'Symfony\\Component\\Console\\Exception\\NamespaceNotFoundException' => __DIR__ . '/..' . '/symfony/console/Exception/NamespaceNotFoundException.php', + 'Symfony\\Component\\Console\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/console/Exception/RuntimeException.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatter' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatter.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterInterface.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyle.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyleInterface.php', + 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyleStack.php', + 'Symfony\\Component\\Console\\Formatter\\WrappableOutputFormatterInterface' => __DIR__ . '/..' . '/symfony/console/Formatter/WrappableOutputFormatterInterface.php', + 'Symfony\\Component\\Console\\Helper\\DebugFormatterHelper' => __DIR__ . '/..' . '/symfony/console/Helper/DebugFormatterHelper.php', + 'Symfony\\Component\\Console\\Helper\\DescriptorHelper' => __DIR__ . '/..' . '/symfony/console/Helper/DescriptorHelper.php', + 'Symfony\\Component\\Console\\Helper\\Dumper' => __DIR__ . '/..' . '/symfony/console/Helper/Dumper.php', + 'Symfony\\Component\\Console\\Helper\\FormatterHelper' => __DIR__ . '/..' . '/symfony/console/Helper/FormatterHelper.php', + 'Symfony\\Component\\Console\\Helper\\Helper' => __DIR__ . '/..' . '/symfony/console/Helper/Helper.php', + 'Symfony\\Component\\Console\\Helper\\HelperInterface' => __DIR__ . '/..' . '/symfony/console/Helper/HelperInterface.php', + 'Symfony\\Component\\Console\\Helper\\HelperSet' => __DIR__ . '/..' . '/symfony/console/Helper/HelperSet.php', + 'Symfony\\Component\\Console\\Helper\\InputAwareHelper' => __DIR__ . '/..' . '/symfony/console/Helper/InputAwareHelper.php', + 'Symfony\\Component\\Console\\Helper\\ProcessHelper' => __DIR__ . '/..' . '/symfony/console/Helper/ProcessHelper.php', + 'Symfony\\Component\\Console\\Helper\\ProgressBar' => __DIR__ . '/..' . '/symfony/console/Helper/ProgressBar.php', + 'Symfony\\Component\\Console\\Helper\\ProgressIndicator' => __DIR__ . '/..' . '/symfony/console/Helper/ProgressIndicator.php', + 'Symfony\\Component\\Console\\Helper\\QuestionHelper' => __DIR__ . '/..' . '/symfony/console/Helper/QuestionHelper.php', + 'Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper' => __DIR__ . '/..' . '/symfony/console/Helper/SymfonyQuestionHelper.php', + 'Symfony\\Component\\Console\\Helper\\Table' => __DIR__ . '/..' . '/symfony/console/Helper/Table.php', + 'Symfony\\Component\\Console\\Helper\\TableCell' => __DIR__ . '/..' . '/symfony/console/Helper/TableCell.php', + 'Symfony\\Component\\Console\\Helper\\TableRows' => __DIR__ . '/..' . '/symfony/console/Helper/TableRows.php', + 'Symfony\\Component\\Console\\Helper\\TableSeparator' => __DIR__ . '/..' . '/symfony/console/Helper/TableSeparator.php', + 'Symfony\\Component\\Console\\Helper\\TableStyle' => __DIR__ . '/..' . '/symfony/console/Helper/TableStyle.php', + 'Symfony\\Component\\Console\\Input\\ArgvInput' => __DIR__ . '/..' . '/symfony/console/Input/ArgvInput.php', + 'Symfony\\Component\\Console\\Input\\ArrayInput' => __DIR__ . '/..' . '/symfony/console/Input/ArrayInput.php', + 'Symfony\\Component\\Console\\Input\\Input' => __DIR__ . '/..' . '/symfony/console/Input/Input.php', + 'Symfony\\Component\\Console\\Input\\InputArgument' => __DIR__ . '/..' . '/symfony/console/Input/InputArgument.php', + 'Symfony\\Component\\Console\\Input\\InputAwareInterface' => __DIR__ . '/..' . '/symfony/console/Input/InputAwareInterface.php', + 'Symfony\\Component\\Console\\Input\\InputDefinition' => __DIR__ . '/..' . '/symfony/console/Input/InputDefinition.php', + 'Symfony\\Component\\Console\\Input\\InputInterface' => __DIR__ . '/..' . '/symfony/console/Input/InputInterface.php', + 'Symfony\\Component\\Console\\Input\\InputOption' => __DIR__ . '/..' . '/symfony/console/Input/InputOption.php', + 'Symfony\\Component\\Console\\Input\\StreamableInputInterface' => __DIR__ . '/..' . '/symfony/console/Input/StreamableInputInterface.php', + 'Symfony\\Component\\Console\\Input\\StringInput' => __DIR__ . '/..' . '/symfony/console/Input/StringInput.php', + 'Symfony\\Component\\Console\\Logger\\ConsoleLogger' => __DIR__ . '/..' . '/symfony/console/Logger/ConsoleLogger.php', + 'Symfony\\Component\\Console\\Output\\BufferedOutput' => __DIR__ . '/..' . '/symfony/console/Output/BufferedOutput.php', + 'Symfony\\Component\\Console\\Output\\ConsoleOutput' => __DIR__ . '/..' . '/symfony/console/Output/ConsoleOutput.php', + 'Symfony\\Component\\Console\\Output\\ConsoleOutputInterface' => __DIR__ . '/..' . '/symfony/console/Output/ConsoleOutputInterface.php', + 'Symfony\\Component\\Console\\Output\\ConsoleSectionOutput' => __DIR__ . '/..' . '/symfony/console/Output/ConsoleSectionOutput.php', + 'Symfony\\Component\\Console\\Output\\NullOutput' => __DIR__ . '/..' . '/symfony/console/Output/NullOutput.php', + 'Symfony\\Component\\Console\\Output\\Output' => __DIR__ . '/..' . '/symfony/console/Output/Output.php', + 'Symfony\\Component\\Console\\Output\\OutputInterface' => __DIR__ . '/..' . '/symfony/console/Output/OutputInterface.php', + 'Symfony\\Component\\Console\\Output\\StreamOutput' => __DIR__ . '/..' . '/symfony/console/Output/StreamOutput.php', + 'Symfony\\Component\\Console\\Question\\ChoiceQuestion' => __DIR__ . '/..' . '/symfony/console/Question/ChoiceQuestion.php', + 'Symfony\\Component\\Console\\Question\\ConfirmationQuestion' => __DIR__ . '/..' . '/symfony/console/Question/ConfirmationQuestion.php', + 'Symfony\\Component\\Console\\Question\\Question' => __DIR__ . '/..' . '/symfony/console/Question/Question.php', + 'Symfony\\Component\\Console\\Style\\OutputStyle' => __DIR__ . '/..' . '/symfony/console/Style/OutputStyle.php', + 'Symfony\\Component\\Console\\Style\\StyleInterface' => __DIR__ . '/..' . '/symfony/console/Style/StyleInterface.php', + 'Symfony\\Component\\Console\\Style\\SymfonyStyle' => __DIR__ . '/..' . '/symfony/console/Style/SymfonyStyle.php', + 'Symfony\\Component\\Console\\Terminal' => __DIR__ . '/..' . '/symfony/console/Terminal.php', + 'Symfony\\Component\\Console\\Tester\\ApplicationTester' => __DIR__ . '/..' . '/symfony/console/Tester/ApplicationTester.php', + 'Symfony\\Component\\Console\\Tester\\CommandTester' => __DIR__ . '/..' . '/symfony/console/Tester/CommandTester.php', + 'Symfony\\Component\\Console\\Tester\\TesterTrait' => __DIR__ . '/..' . '/symfony/console/Tester/TesterTrait.php', + 'Symfony\\Component\\CssSelector\\CssSelectorConverter' => __DIR__ . '/..' . '/symfony/css-selector/CssSelectorConverter.php', + 'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/css-selector/Exception/ExceptionInterface.php', + 'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => __DIR__ . '/..' . '/symfony/css-selector/Exception/ExpressionErrorException.php', + 'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => __DIR__ . '/..' . '/symfony/css-selector/Exception/InternalErrorException.php', + 'Symfony\\Component\\CssSelector\\Exception\\ParseException' => __DIR__ . '/..' . '/symfony/css-selector/Exception/ParseException.php', + 'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => __DIR__ . '/..' . '/symfony/css-selector/Exception/SyntaxErrorException.php', + 'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/AbstractNode.php', + 'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/AttributeNode.php', + 'Symfony\\Component\\CssSelector\\Node\\ClassNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/ClassNode.php', + 'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/CombinedSelectorNode.php', + 'Symfony\\Component\\CssSelector\\Node\\ElementNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/ElementNode.php', + 'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/FunctionNode.php', + 'Symfony\\Component\\CssSelector\\Node\\HashNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/HashNode.php', + 'Symfony\\Component\\CssSelector\\Node\\NegationNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/NegationNode.php', + 'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => __DIR__ . '/..' . '/symfony/css-selector/Node/NodeInterface.php', + 'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/PseudoNode.php', + 'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/SelectorNode.php', + 'Symfony\\Component\\CssSelector\\Node\\Specificity' => __DIR__ . '/..' . '/symfony/css-selector/Node/Specificity.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/CommentHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/HandlerInterface.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/HashHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/NumberHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/StringHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php', + 'Symfony\\Component\\CssSelector\\Parser\\Parser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Parser.php', + 'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => __DIR__ . '/..' . '/symfony/css-selector/Parser/ParserInterface.php', + 'Symfony\\Component\\CssSelector\\Parser\\Reader' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Reader.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Shortcut/ClassParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Shortcut/ElementParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Shortcut/HashParser.php', + 'Symfony\\Component\\CssSelector\\Parser\\Token' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Token.php', + 'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => __DIR__ . '/..' . '/symfony/css-selector/Parser/TokenStream.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php', + 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/AbstractExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/CombinationExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/FunctionExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/HtmlExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/NodeExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php', + 'Symfony\\Component\\CssSelector\\XPath\\Translator' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Translator.php', + 'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => __DIR__ . '/..' . '/symfony/css-selector/XPath/TranslatorInterface.php', + 'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => __DIR__ . '/..' . '/symfony/css-selector/XPath/XPathExpr.php', + 'Symfony\\Component\\DomCrawler\\AbstractUriElement' => __DIR__ . '/..' . '/symfony/dom-crawler/AbstractUriElement.php', + 'Symfony\\Component\\DomCrawler\\Crawler' => __DIR__ . '/..' . '/symfony/dom-crawler/Crawler.php', + 'Symfony\\Component\\DomCrawler\\Field\\ChoiceFormField' => __DIR__ . '/..' . '/symfony/dom-crawler/Field/ChoiceFormField.php', + 'Symfony\\Component\\DomCrawler\\Field\\FileFormField' => __DIR__ . '/..' . '/symfony/dom-crawler/Field/FileFormField.php', + 'Symfony\\Component\\DomCrawler\\Field\\FormField' => __DIR__ . '/..' . '/symfony/dom-crawler/Field/FormField.php', + 'Symfony\\Component\\DomCrawler\\Field\\InputFormField' => __DIR__ . '/..' . '/symfony/dom-crawler/Field/InputFormField.php', + 'Symfony\\Component\\DomCrawler\\Field\\TextareaFormField' => __DIR__ . '/..' . '/symfony/dom-crawler/Field/TextareaFormField.php', + 'Symfony\\Component\\DomCrawler\\Form' => __DIR__ . '/..' . '/symfony/dom-crawler/Form.php', + 'Symfony\\Component\\DomCrawler\\FormFieldRegistry' => __DIR__ . '/..' . '/symfony/dom-crawler/FormFieldRegistry.php', + 'Symfony\\Component\\DomCrawler\\Image' => __DIR__ . '/..' . '/symfony/dom-crawler/Image.php', + 'Symfony\\Component\\DomCrawler\\Link' => __DIR__ . '/..' . '/symfony/dom-crawler/Link.php', + 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorAttributeValueSame' => __DIR__ . '/..' . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorAttributeValueSame.php', + 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorExists' => __DIR__ . '/..' . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorExists.php', + 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorTextContains' => __DIR__ . '/..' . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorTextContains.php', + 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorTextSame' => __DIR__ . '/..' . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorTextSame.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher' => __DIR__ . '/..' . '/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcherInterface' => __DIR__ . '/..' . '/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php', + 'Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener' => __DIR__ . '/..' . '/symfony/event-dispatcher/Debug/WrappedListener.php', + 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\ExtractingEventDispatcher' => __DIR__ . '/..' . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', + 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\RegisterListenersPass' => __DIR__ . '/..' . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', + 'Symfony\\Component\\EventDispatcher\\Event' => __DIR__ . '/..' . '/symfony/event-dispatcher/Event.php', + 'Symfony\\Component\\EventDispatcher\\EventDispatcher' => __DIR__ . '/..' . '/symfony/event-dispatcher/EventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\EventDispatcherInterface' => __DIR__ . '/..' . '/symfony/event-dispatcher/EventDispatcherInterface.php', + 'Symfony\\Component\\EventDispatcher\\EventSubscriberInterface' => __DIR__ . '/..' . '/symfony/event-dispatcher/EventSubscriberInterface.php', + 'Symfony\\Component\\EventDispatcher\\GenericEvent' => __DIR__ . '/..' . '/symfony/event-dispatcher/GenericEvent.php', + 'Symfony\\Component\\EventDispatcher\\ImmutableEventDispatcher' => __DIR__ . '/..' . '/symfony/event-dispatcher/ImmutableEventDispatcher.php', + 'Symfony\\Component\\EventDispatcher\\LegacyEventDispatcherProxy' => __DIR__ . '/..' . '/symfony/event-dispatcher/LegacyEventDispatcherProxy.php', + 'Symfony\\Component\\EventDispatcher\\LegacyEventProxy' => __DIR__ . '/..' . '/symfony/event-dispatcher/LegacyEventProxy.php', + 'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/filesystem/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/FileNotFoundException.php', + 'Symfony\\Component\\Filesystem\\Exception\\IOException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/IOException.php', + 'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => __DIR__ . '/..' . '/symfony/filesystem/Exception/IOExceptionInterface.php', + 'Symfony\\Component\\Filesystem\\Filesystem' => __DIR__ . '/..' . '/symfony/filesystem/Filesystem.php', + 'Symfony\\Component\\Filesystem\\LockHandler' => __DIR__ . '/..' . '/symfony/filesystem/LockHandler.php', + 'Symfony\\Component\\Finder\\Comparator\\Comparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/Comparator.php', + 'Symfony\\Component\\Finder\\Comparator\\DateComparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/DateComparator.php', + 'Symfony\\Component\\Finder\\Comparator\\NumberComparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/NumberComparator.php', + 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException' => __DIR__ . '/..' . '/symfony/finder/Exception/AccessDeniedException.php', + 'Symfony\\Component\\Finder\\Exception\\DirectoryNotFoundException' => __DIR__ . '/..' . '/symfony/finder/Exception/DirectoryNotFoundException.php', + 'Symfony\\Component\\Finder\\Finder' => __DIR__ . '/..' . '/symfony/finder/Finder.php', + 'Symfony\\Component\\Finder\\Gitignore' => __DIR__ . '/..' . '/symfony/finder/Gitignore.php', + 'Symfony\\Component\\Finder\\Glob' => __DIR__ . '/..' . '/symfony/finder/Glob.php', + 'Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/CustomFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/DateRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/DepthRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FileTypeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FilecontentFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FilenameFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/MultiplePcreFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\PathFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/PathFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/RecursiveDirectoryIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/SizeRangeFilterIterator.php', + 'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/SortableIterator.php', + 'Symfony\\Component\\Finder\\SplFileInfo' => __DIR__ . '/..' . '/symfony/finder/SplFileInfo.php', + 'Symfony\\Component\\Process\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/process/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Process\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/process/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\Process\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/process/Exception/LogicException.php', + 'Symfony\\Component\\Process\\Exception\\ProcessFailedException' => __DIR__ . '/..' . '/symfony/process/Exception/ProcessFailedException.php', + 'Symfony\\Component\\Process\\Exception\\ProcessSignaledException' => __DIR__ . '/..' . '/symfony/process/Exception/ProcessSignaledException.php', + 'Symfony\\Component\\Process\\Exception\\ProcessTimedOutException' => __DIR__ . '/..' . '/symfony/process/Exception/ProcessTimedOutException.php', + 'Symfony\\Component\\Process\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/process/Exception/RuntimeException.php', + 'Symfony\\Component\\Process\\ExecutableFinder' => __DIR__ . '/..' . '/symfony/process/ExecutableFinder.php', + 'Symfony\\Component\\Process\\InputStream' => __DIR__ . '/..' . '/symfony/process/InputStream.php', + 'Symfony\\Component\\Process\\PhpExecutableFinder' => __DIR__ . '/..' . '/symfony/process/PhpExecutableFinder.php', + 'Symfony\\Component\\Process\\PhpProcess' => __DIR__ . '/..' . '/symfony/process/PhpProcess.php', + 'Symfony\\Component\\Process\\Pipes\\AbstractPipes' => __DIR__ . '/..' . '/symfony/process/Pipes/AbstractPipes.php', + 'Symfony\\Component\\Process\\Pipes\\PipesInterface' => __DIR__ . '/..' . '/symfony/process/Pipes/PipesInterface.php', + 'Symfony\\Component\\Process\\Pipes\\UnixPipes' => __DIR__ . '/..' . '/symfony/process/Pipes/UnixPipes.php', + 'Symfony\\Component\\Process\\Pipes\\WindowsPipes' => __DIR__ . '/..' . '/symfony/process/Pipes/WindowsPipes.php', + 'Symfony\\Component\\Process\\Process' => __DIR__ . '/..' . '/symfony/process/Process.php', + 'Symfony\\Component\\Process\\ProcessUtils' => __DIR__ . '/..' . '/symfony/process/ProcessUtils.php', + 'Symfony\\Component\\Translation\\Catalogue\\AbstractOperation' => __DIR__ . '/..' . '/symfony/translation/Catalogue/AbstractOperation.php', + 'Symfony\\Component\\Translation\\Catalogue\\MergeOperation' => __DIR__ . '/..' . '/symfony/translation/Catalogue/MergeOperation.php', + 'Symfony\\Component\\Translation\\Catalogue\\OperationInterface' => __DIR__ . '/..' . '/symfony/translation/Catalogue/OperationInterface.php', + 'Symfony\\Component\\Translation\\Catalogue\\TargetOperation' => __DIR__ . '/..' . '/symfony/translation/Catalogue/TargetOperation.php', + 'Symfony\\Component\\Translation\\Command\\XliffLintCommand' => __DIR__ . '/..' . '/symfony/translation/Command/XliffLintCommand.php', + 'Symfony\\Component\\Translation\\DataCollectorTranslator' => __DIR__ . '/..' . '/symfony/translation/DataCollectorTranslator.php', + 'Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector' => __DIR__ . '/..' . '/symfony/translation/DataCollector/TranslationDataCollector.php', + 'Symfony\\Component\\Translation\\DependencyInjection\\TranslationDumperPass' => __DIR__ . '/..' . '/symfony/translation/DependencyInjection/TranslationDumperPass.php', + 'Symfony\\Component\\Translation\\DependencyInjection\\TranslationExtractorPass' => __DIR__ . '/..' . '/symfony/translation/DependencyInjection/TranslationExtractorPass.php', + 'Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPass' => __DIR__ . '/..' . '/symfony/translation/DependencyInjection/TranslatorPass.php', + 'Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass' => __DIR__ . '/..' . '/symfony/translation/DependencyInjection/TranslatorPathsPass.php', + 'Symfony\\Component\\Translation\\Dumper\\CsvFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/CsvFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\DumperInterface' => __DIR__ . '/..' . '/symfony/translation/Dumper/DumperInterface.php', + 'Symfony\\Component\\Translation\\Dumper\\FileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/FileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/IcuResFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\IniFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/IniFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\JsonFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/JsonFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\MoFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/MoFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\PhpFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/PhpFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\PoFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/PoFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\QtFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/QtFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\XliffFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/XliffFileDumper.php', + 'Symfony\\Component\\Translation\\Dumper\\YamlFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/YamlFileDumper.php', + 'Symfony\\Component\\Translation\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/translation/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Translation\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/translation/Exception/InvalidArgumentException.php', + 'Symfony\\Component\\Translation\\Exception\\InvalidResourceException' => __DIR__ . '/..' . '/symfony/translation/Exception/InvalidResourceException.php', + 'Symfony\\Component\\Translation\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/translation/Exception/LogicException.php', + 'Symfony\\Component\\Translation\\Exception\\NotFoundResourceException' => __DIR__ . '/..' . '/symfony/translation/Exception/NotFoundResourceException.php', + 'Symfony\\Component\\Translation\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/translation/Exception/RuntimeException.php', + 'Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor' => __DIR__ . '/..' . '/symfony/translation/Extractor/AbstractFileExtractor.php', + 'Symfony\\Component\\Translation\\Extractor\\ChainExtractor' => __DIR__ . '/..' . '/symfony/translation/Extractor/ChainExtractor.php', + 'Symfony\\Component\\Translation\\Extractor\\ExtractorInterface' => __DIR__ . '/..' . '/symfony/translation/Extractor/ExtractorInterface.php', + 'Symfony\\Component\\Translation\\Extractor\\PhpExtractor' => __DIR__ . '/..' . '/symfony/translation/Extractor/PhpExtractor.php', + 'Symfony\\Component\\Translation\\Extractor\\PhpStringTokenParser' => __DIR__ . '/..' . '/symfony/translation/Extractor/PhpStringTokenParser.php', + 'Symfony\\Component\\Translation\\Formatter\\ChoiceMessageFormatterInterface' => __DIR__ . '/..' . '/symfony/translation/Formatter/ChoiceMessageFormatterInterface.php', + 'Symfony\\Component\\Translation\\Formatter\\IntlFormatter' => __DIR__ . '/..' . '/symfony/translation/Formatter/IntlFormatter.php', + 'Symfony\\Component\\Translation\\Formatter\\IntlFormatterInterface' => __DIR__ . '/..' . '/symfony/translation/Formatter/IntlFormatterInterface.php', + 'Symfony\\Component\\Translation\\Formatter\\MessageFormatter' => __DIR__ . '/..' . '/symfony/translation/Formatter/MessageFormatter.php', + 'Symfony\\Component\\Translation\\Formatter\\MessageFormatterInterface' => __DIR__ . '/..' . '/symfony/translation/Formatter/MessageFormatterInterface.php', + 'Symfony\\Component\\Translation\\IdentityTranslator' => __DIR__ . '/..' . '/symfony/translation/IdentityTranslator.php', + 'Symfony\\Component\\Translation\\Interval' => __DIR__ . '/..' . '/symfony/translation/Interval.php', + 'Symfony\\Component\\Translation\\Loader\\ArrayLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/ArrayLoader.php', + 'Symfony\\Component\\Translation\\Loader\\CsvFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/CsvFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\FileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/FileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IcuDatFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/IcuDatFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IcuResFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/IcuResFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\IniFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/IniFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\JsonFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/JsonFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\LoaderInterface' => __DIR__ . '/..' . '/symfony/translation/Loader/LoaderInterface.php', + 'Symfony\\Component\\Translation\\Loader\\MoFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/MoFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\PhpFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/PhpFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\PoFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/PoFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\QtFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/QtFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\XliffFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/XliffFileLoader.php', + 'Symfony\\Component\\Translation\\Loader\\YamlFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/YamlFileLoader.php', + 'Symfony\\Component\\Translation\\LoggingTranslator' => __DIR__ . '/..' . '/symfony/translation/LoggingTranslator.php', + 'Symfony\\Component\\Translation\\MessageCatalogue' => __DIR__ . '/..' . '/symfony/translation/MessageCatalogue.php', + 'Symfony\\Component\\Translation\\MessageCatalogueInterface' => __DIR__ . '/..' . '/symfony/translation/MessageCatalogueInterface.php', + 'Symfony\\Component\\Translation\\MessageSelector' => __DIR__ . '/..' . '/symfony/translation/MessageSelector.php', + 'Symfony\\Component\\Translation\\MetadataAwareInterface' => __DIR__ . '/..' . '/symfony/translation/MetadataAwareInterface.php', + 'Symfony\\Component\\Translation\\PluralizationRules' => __DIR__ . '/..' . '/symfony/translation/PluralizationRules.php', + 'Symfony\\Component\\Translation\\Reader\\TranslationReader' => __DIR__ . '/..' . '/symfony/translation/Reader/TranslationReader.php', + 'Symfony\\Component\\Translation\\Reader\\TranslationReaderInterface' => __DIR__ . '/..' . '/symfony/translation/Reader/TranslationReaderInterface.php', + 'Symfony\\Component\\Translation\\Translator' => __DIR__ . '/..' . '/symfony/translation/Translator.php', + 'Symfony\\Component\\Translation\\TranslatorBagInterface' => __DIR__ . '/..' . '/symfony/translation/TranslatorBagInterface.php', + 'Symfony\\Component\\Translation\\TranslatorInterface' => __DIR__ . '/..' . '/symfony/translation/TranslatorInterface.php', + 'Symfony\\Component\\Translation\\Util\\ArrayConverter' => __DIR__ . '/..' . '/symfony/translation/Util/ArrayConverter.php', + 'Symfony\\Component\\Translation\\Util\\XliffUtils' => __DIR__ . '/..' . '/symfony/translation/Util/XliffUtils.php', + 'Symfony\\Component\\Translation\\Writer\\TranslationWriter' => __DIR__ . '/..' . '/symfony/translation/Writer/TranslationWriter.php', + 'Symfony\\Component\\Translation\\Writer\\TranslationWriterInterface' => __DIR__ . '/..' . '/symfony/translation/Writer/TranslationWriterInterface.php', + 'Symfony\\Component\\Yaml\\Command\\LintCommand' => __DIR__ . '/..' . '/symfony/yaml/Command/LintCommand.php', + 'Symfony\\Component\\Yaml\\Dumper' => __DIR__ . '/..' . '/symfony/yaml/Dumper.php', + 'Symfony\\Component\\Yaml\\Escaper' => __DIR__ . '/..' . '/symfony/yaml/Escaper.php', + 'Symfony\\Component\\Yaml\\Exception\\DumpException' => __DIR__ . '/..' . '/symfony/yaml/Exception/DumpException.php', + 'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/yaml/Exception/ExceptionInterface.php', + 'Symfony\\Component\\Yaml\\Exception\\ParseException' => __DIR__ . '/..' . '/symfony/yaml/Exception/ParseException.php', + 'Symfony\\Component\\Yaml\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/yaml/Exception/RuntimeException.php', + 'Symfony\\Component\\Yaml\\Inline' => __DIR__ . '/..' . '/symfony/yaml/Inline.php', + 'Symfony\\Component\\Yaml\\Parser' => __DIR__ . '/..' . '/symfony/yaml/Parser.php', + 'Symfony\\Component\\Yaml\\Tag\\TaggedValue' => __DIR__ . '/..' . '/symfony/yaml/Tag/TaggedValue.php', + 'Symfony\\Component\\Yaml\\Unescaper' => __DIR__ . '/..' . '/symfony/yaml/Unescaper.php', + 'Symfony\\Component\\Yaml\\Yaml' => __DIR__ . '/..' . '/symfony/yaml/Yaml.php', + 'Symfony\\Contracts\\EventDispatcher\\Event' => __DIR__ . '/..' . '/symfony/event-dispatcher-contracts/Event.php', + 'Symfony\\Contracts\\EventDispatcher\\EventDispatcherInterface' => __DIR__ . '/..' . '/symfony/event-dispatcher-contracts/EventDispatcherInterface.php', + 'Symfony\\Contracts\\Service\\ResetInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ResetInterface.php', + 'Symfony\\Contracts\\Service\\ServiceLocatorTrait' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceLocatorTrait.php', + 'Symfony\\Contracts\\Service\\ServiceProviderInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceProviderInterface.php', + 'Symfony\\Contracts\\Service\\ServiceSubscriberInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceSubscriberInterface.php', + 'Symfony\\Contracts\\Service\\ServiceSubscriberTrait' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceSubscriberTrait.php', + 'Symfony\\Contracts\\Service\\Test\\ServiceLocatorTest' => __DIR__ . '/..' . '/symfony/service-contracts/Test/ServiceLocatorTest.php', + 'Symfony\\Contracts\\Translation\\LocaleAwareInterface' => __DIR__ . '/..' . '/symfony/translation-contracts/LocaleAwareInterface.php', + 'Symfony\\Contracts\\Translation\\Test\\TranslatorTest' => __DIR__ . '/..' . '/symfony/translation-contracts/Test/TranslatorTest.php', + 'Symfony\\Contracts\\Translation\\TranslatorInterface' => __DIR__ . '/..' . '/symfony/translation-contracts/TranslatorInterface.php', + 'Symfony\\Contracts\\Translation\\TranslatorTrait' => __DIR__ . '/..' . '/symfony/translation-contracts/TranslatorTrait.php', + 'Symfony\\Polyfill\\Ctype\\Ctype' => __DIR__ . '/..' . '/symfony/polyfill-ctype/Ctype.php', + 'Symfony\\Polyfill\\Mbstring\\Mbstring' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/Mbstring.php', + 'Symfony\\Polyfill\\Php73\\Php73' => __DIR__ . '/..' . '/symfony/polyfill-php73/Php73.php', + 'Taxonomy_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Taxonomy_Command.php', + 'Term_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Term_Command.php', + 'Term_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Term_Meta_Command.php', + 'Text_Template' => __DIR__ . '/..' . '/phpunit/php-text-template/src/Template.php', + 'TheSeer\\Tokenizer\\Exception' => __DIR__ . '/..' . '/theseer/tokenizer/src/Exception.php', + 'TheSeer\\Tokenizer\\NamespaceUri' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUri.php', + 'TheSeer\\Tokenizer\\NamespaceUriException' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUriException.php', + 'TheSeer\\Tokenizer\\Token' => __DIR__ . '/..' . '/theseer/tokenizer/src/Token.php', + 'TheSeer\\Tokenizer\\TokenCollection' => __DIR__ . '/..' . '/theseer/tokenizer/src/TokenCollection.php', + 'TheSeer\\Tokenizer\\TokenCollectionException' => __DIR__ . '/..' . '/theseer/tokenizer/src/TokenCollectionException.php', + 'TheSeer\\Tokenizer\\Tokenizer' => __DIR__ . '/..' . '/theseer/tokenizer/src/Tokenizer.php', + 'TheSeer\\Tokenizer\\XMLSerializer' => __DIR__ . '/..' . '/theseer/tokenizer/src/XMLSerializer.php', + 'Theme_Command' => __DIR__ . '/..' . '/wp-cli/extension-command/src/Theme_Command.php', + 'Theme_Language_Command' => __DIR__ . '/..' . '/wp-cli/language-command/src/Theme_Language_Command.php', + 'Theme_Mod_Command' => __DIR__ . '/..' . '/wp-cli/extension-command/src/Theme_Mod_Command.php', + 'Transient_Command' => __DIR__ . '/..' . '/wp-cli/cache-command/src/Transient_Command.php', + 'User_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Command.php', + 'User_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Meta_Command.php', + 'User_Session_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Session_Command.php', + 'User_Term_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Term_Command.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Cart_Items' => __DIR__ . '/../..' . '/includes/connection/class-cart-items.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Coupons' => __DIR__ . '/../..' . '/includes/connection/class-coupons.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Customers' => __DIR__ . '/../..' . '/includes/connection/class-customers.php', @@ -128,7 +3093,254 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'WPGraphQL\\Extensions\\WooCommerce\\Type_Registry' => __DIR__ . '/../..' . '/includes/class-type-registry.php', 'WPGraphQL\\Extensions\\WooCommerce\\Utils\\QL_Session_Handler' => __DIR__ . '/../..' . '/includes/utils/class-ql-session-handler.php', 'WPGraphQL\\Extensions\\WooCommerce\\WooCommerce_Filters' => __DIR__ . '/../..' . '/includes/class-woocommerce-filters.php', + 'WP_CLI' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/class-wp-cli.php', + 'WP_CLI\\Autoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Autoloader.php', + 'WP_CLI\\Bootstrap\\AutoloaderStep' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/AutoloaderStep.php', + 'WP_CLI\\Bootstrap\\BootstrapState' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapState.php', + 'WP_CLI\\Bootstrap\\BootstrapStep' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapStep.php', + 'WP_CLI\\Bootstrap\\ConfigureRunner' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/ConfigureRunner.php', + 'WP_CLI\\Bootstrap\\DeclareAbstractBaseCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareAbstractBaseCommand.php', + 'WP_CLI\\Bootstrap\\DeclareMainClass' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareMainClass.php', + 'WP_CLI\\Bootstrap\\DefineProtectedCommands' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DefineProtectedCommands.php', + 'WP_CLI\\Bootstrap\\IncludeFallbackAutoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFallbackAutoloader.php', + 'WP_CLI\\Bootstrap\\IncludeFrameworkAutoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFrameworkAutoloader.php', + 'WP_CLI\\Bootstrap\\IncludePackageAutoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludePackageAutoloader.php', + 'WP_CLI\\Bootstrap\\InitializeColorization' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeColorization.php', + 'WP_CLI\\Bootstrap\\InitializeLogger' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeLogger.php', + 'WP_CLI\\Bootstrap\\LaunchRunner' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php', + 'WP_CLI\\Bootstrap\\LoadDispatcher' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadDispatcher.php', + 'WP_CLI\\Bootstrap\\LoadRequiredCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadRequiredCommand.php', + 'WP_CLI\\Bootstrap\\LoadUtilityFunctions' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadUtilityFunctions.php', + 'WP_CLI\\Bootstrap\\RegisterDeferredCommands' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterDeferredCommands.php', + 'WP_CLI\\Bootstrap\\RegisterFrameworkCommands' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterFrameworkCommands.php', + 'WP_CLI\\Bootstrap\\RunnerInstance' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RunnerInstance.php', + 'WP_CLI\\CommandWithDBObject' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/CommandWithDBObject.php', + 'WP_CLI\\CommandWithMeta' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/CommandWithMeta.php', + 'WP_CLI\\CommandWithTerms' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/CommandWithTerms.php', + 'WP_CLI\\CommandWithTranslation' => __DIR__ . '/..' . '/wp-cli/language-command/src/WP_CLI/CommandWithTranslation.php', + 'WP_CLI\\CommandWithUpgrade' => __DIR__ . '/..' . '/wp-cli/extension-command/src/WP_CLI/CommandWithUpgrade.php', + 'WP_CLI\\Completions' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Completions.php', + 'WP_CLI\\ComposerIO' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/ComposerIO.php', + 'WP_CLI\\Configurator' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Configurator.php', + 'WP_CLI\\Core\\CoreUpgrader' => __DIR__ . '/..' . '/wp-cli/core-command/src/WP_CLI/Core/CoreUpgrader.php', + 'WP_CLI\\Core\\NonDestructiveCoreUpgrader' => __DIR__ . '/..' . '/wp-cli/core-command/src/WP_CLI/Core/NonDestructiveCoreUpgrader.php', + 'WP_CLI\\DestructivePluginUpgrader' => __DIR__ . '/..' . '/wp-cli/extension-command/src/WP_CLI/DestructivePluginUpgrader.php', + 'WP_CLI\\DestructiveThemeUpgrader' => __DIR__ . '/..' . '/wp-cli/extension-command/src/WP_CLI/DestructiveThemeUpgrader.php', + 'WP_CLI\\Dispatcher\\CommandAddition' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandAddition.php', + 'WP_CLI\\Dispatcher\\CommandFactory' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandFactory.php', + 'WP_CLI\\Dispatcher\\CommandNamespace' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandNamespace.php', + 'WP_CLI\\Dispatcher\\CompositeCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CompositeCommand.php', + 'WP_CLI\\Dispatcher\\RootCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/RootCommand.php', + 'WP_CLI\\Dispatcher\\Subcommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/Subcommand.php', + 'WP_CLI\\DocParser' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/DocParser.php', + 'WP_CLI\\Embeds\\Cache_Command' => __DIR__ . '/..' . '/wp-cli/embed-command/src/Cache_Command.php', + 'WP_CLI\\Embeds\\Embeds_Namespace' => __DIR__ . '/..' . '/wp-cli/embed-command/src/Embeds_Namespace.php', + 'WP_CLI\\Embeds\\Fetch_Command' => __DIR__ . '/..' . '/wp-cli/embed-command/src/Fetch_Command.php', + 'WP_CLI\\Embeds\\Handler_Command' => __DIR__ . '/..' . '/wp-cli/embed-command/src/Handler_Command.php', + 'WP_CLI\\Embeds\\Provider_Command' => __DIR__ . '/..' . '/wp-cli/embed-command/src/Provider_Command.php', + 'WP_CLI\\Embeds\\oEmbed' => __DIR__ . '/..' . '/wp-cli/embed-command/src/oEmbed.php', + 'WP_CLI\\Entity\\NonExistentKeyException' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/Entity/NonExistentKeyException.php', + 'WP_CLI\\Entity\\RecursiveDataStructureTraverser' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/Entity/RecursiveDataStructureTraverser.php', + 'WP_CLI\\Entity\\Utils' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/Entity/Utils.php', + 'WP_CLI\\ExitException' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/ExitException.php', + 'WP_CLI\\Extractor' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Extractor.php', + 'WP_CLI\\Fetchers\\Base' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Base.php', + 'WP_CLI\\Fetchers\\Comment' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Comment.php', + 'WP_CLI\\Fetchers\\Plugin' => __DIR__ . '/..' . '/wp-cli/extension-command/src/WP_CLI/Fetchers/Plugin.php', + 'WP_CLI\\Fetchers\\Post' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Post.php', + 'WP_CLI\\Fetchers\\Site' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Site.php', + 'WP_CLI\\Fetchers\\Theme' => __DIR__ . '/..' . '/wp-cli/extension-command/src/WP_CLI/Fetchers/Theme.php', + 'WP_CLI\\Fetchers\\UnfilteredPlugin' => __DIR__ . '/..' . '/wp-cli/checksum-command/src/WP_CLI/Fetchers/UnfilteredPlugin.php', + 'WP_CLI\\Fetchers\\User' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/Fetchers/User.php', + 'WP_CLI\\FileCache' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/FileCache.php', + 'WP_CLI\\Formatter' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Formatter.php', + 'WP_CLI\\I18n\\CommandNamespace' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/CommandNamespace.php', + 'WP_CLI\\I18n\\IterableCodeExtractor' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/IterableCodeExtractor.php', + 'WP_CLI\\I18n\\JedGenerator' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/JedGenerator.php', + 'WP_CLI\\I18n\\JsCodeExtractor' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/JsCodeExtractor.php', + 'WP_CLI\\I18n\\JsFunctionsScanner' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/JsFunctionsScanner.php', + 'WP_CLI\\I18n\\MakeJsonCommand' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/MakeJsonCommand.php', + 'WP_CLI\\I18n\\MakePotCommand' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/MakePotCommand.php', + 'WP_CLI\\I18n\\MapCodeExtractor' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/MapCodeExtractor.php', + 'WP_CLI\\I18n\\PhpCodeExtractor' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/PhpCodeExtractor.php', + 'WP_CLI\\I18n\\PhpFunctionsScanner' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/PhpFunctionsScanner.php', + 'WP_CLI\\I18n\\PotGenerator' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/PotGenerator.php', + 'WP_CLI\\Inflector' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Inflector.php', + 'WP_CLI\\Iterators\\CSV' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/CSV.php', + 'WP_CLI\\Iterators\\Exception' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Exception.php', + 'WP_CLI\\Iterators\\Query' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Query.php', + 'WP_CLI\\Iterators\\Table' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Table.php', + 'WP_CLI\\Iterators\\Transform' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Transform.php', + 'WP_CLI\\JsonManipulator' => __DIR__ . '/..' . '/wp-cli/package-command/src/WP_CLI/JsonManipulator.php', + 'WP_CLI\\LanguagePackUpgrader' => __DIR__ . '/..' . '/wp-cli/language-command/src/WP_CLI/LanguagePackUpgrader.php', + 'WP_CLI\\Loggers\\Base' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Base.php', + 'WP_CLI\\Loggers\\Execution' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Execution.php', + 'WP_CLI\\Loggers\\Quiet' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Quiet.php', + 'WP_CLI\\Loggers\\Regular' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Regular.php', + 'WP_CLI\\MaintenanceMode\\MaintenanceModeCommand' => __DIR__ . '/..' . '/wp-cli/maintenance-mode-command/src/MaintenanceModeCommand.php', + 'WP_CLI\\NoOp' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/NoOp.php', + 'WP_CLI\\PackageManagerEventSubscriber' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/PackageManagerEventSubscriber.php', + 'WP_CLI\\Process' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Process.php', + 'WP_CLI\\ProcessRun' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/ProcessRun.php', + 'WP_CLI\\Runner' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Runner.php', + 'WP_CLI\\SearchReplacer' => __DIR__ . '/..' . '/wp-cli/search-replace-command/src/WP_CLI/SearchReplacer.php', + 'WP_CLI\\Shell\\REPL' => __DIR__ . '/..' . '/wp-cli/shell-command/src/WP_CLI/Shell/REPL.php', + 'WP_CLI\\SynopsisParser' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/SynopsisParser.php', + 'WP_CLI\\SynopsisValidator' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/SynopsisValidator.php', + 'WP_CLI\\UpgraderSkin' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/UpgraderSkin.php', + 'WP_CLI\\WpHttpCacheManager' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/WpHttpCacheManager.php', + 'WP_CLI_Command' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/class-wp-cli-command.php', + 'WP_Export_Base_Writer' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Base_Writer.php', + 'WP_Export_Exception' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Exception.php', + 'WP_Export_File_Writer' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_File_Writer.php', + 'WP_Export_Oxymel' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Oxymel.php', + 'WP_Export_Query' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Query.php', + 'WP_Export_Returner' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Returner.php', + 'WP_Export_Split_Files_Writer' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Split_Files_Writer.php', + 'WP_Export_Term_Exception' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Term_Exception.php', + 'WP_Export_WXR_Formatter' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_WXR_Formatter.php', + 'WP_Export_XML_Over_HTTP' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_XML_Over_HTTP.php', 'WP_GraphQL_WooCommerce' => __DIR__ . '/../..' . '/includes/class-wp-graphql-woocommerce.php', + 'WP_Iterator_Exception' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Iterator_Exception.php', + 'WP_Map_Iterator' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Map_Iterator.php', + 'WP_Post_IDs_Iterator' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Post_IDs_Iterator.php', + 'Webmozart\\Assert\\Assert' => __DIR__ . '/..' . '/webmozart/assert/src/Assert.php', + 'Widget_Command' => __DIR__ . '/..' . '/wp-cli/widget-command/src/Widget_Command.php', + 'cli\\Arguments' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Arguments.php', + 'cli\\Colors' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Colors.php', + 'cli\\Memoize' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Memoize.php', + 'cli\\Notify' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Notify.php', + 'cli\\Progress' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Progress.php', + 'cli\\Shell' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Shell.php', + 'cli\\Streams' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Streams.php', + 'cli\\Table' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Table.php', + 'cli\\Tree' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Tree.php', + 'cli\\arguments\\Argument' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/Argument.php', + 'cli\\arguments\\HelpScreen' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/HelpScreen.php', + 'cli\\arguments\\InvalidArguments' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/InvalidArguments.php', + 'cli\\arguments\\Lexer' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/Lexer.php', + 'cli\\notify\\Dots' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/notify/Dots.php', + 'cli\\notify\\Spinner' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/notify/Spinner.php', + 'cli\\progress\\Bar' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/progress/Bar.php', + 'cli\\table\\Ascii' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/table/Ascii.php', + 'cli\\table\\Renderer' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/table/Renderer.php', + 'cli\\table\\Tabular' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/table/Tabular.php', + 'cli\\tree\\Ascii' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/tree/Ascii.php', + 'cli\\tree\\Markdown' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/tree/Markdown.php', + 'cli\\tree\\Renderer' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/tree/Renderer.php', + 'phpDocumentor\\Reflection\\DocBlock' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock.php', + 'phpDocumentor\\Reflection\\DocBlockFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlockFactory.php', + 'phpDocumentor\\Reflection\\DocBlockFactoryInterface' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php', + 'phpDocumentor\\Reflection\\DocBlock\\Description' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Description.php', + 'phpDocumentor\\Reflection\\DocBlock\\DescriptionFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/DescriptionFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\ExampleFinder' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/ExampleFinder.php', + 'phpDocumentor\\Reflection\\DocBlock\\Serializer' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Serializer.php', + 'phpDocumentor\\Reflection\\DocBlock\\StandardTagFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/StandardTagFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tag' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tag.php', + 'phpDocumentor\\Reflection\\DocBlock\\TagFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/TagFactory.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Author' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Author.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\BaseTag' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/BaseTag.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Covers' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Covers.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Deprecated' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Deprecated.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Example' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\StaticMethod' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/StaticMethod.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\Strategy' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/Strategy.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\AlignFormatter' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/AlignFormatter.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\PassthroughFormatter' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/PassthroughFormatter.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Generic' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Generic.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Link' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Link.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Method' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Method.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Param' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Param.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Property' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Property.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyRead' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyRead.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyWrite' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyWrite.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Fqsen' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Fqsen.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Reference' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Reference.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Url' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Url.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Return_' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Return_.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\See' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/See.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Since' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Source' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Source.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Throws' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Throws.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Uses' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Uses.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Var_' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Var_.php', + 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Version' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Version.php', + 'phpDocumentor\\Reflection\\Element' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/Element.php', + 'phpDocumentor\\Reflection\\File' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/File.php', + 'phpDocumentor\\Reflection\\Fqsen' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/Fqsen.php', + 'phpDocumentor\\Reflection\\FqsenResolver' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/FqsenResolver.php', + 'phpDocumentor\\Reflection\\Location' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/Location.php', + 'phpDocumentor\\Reflection\\Project' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/Project.php', + 'phpDocumentor\\Reflection\\ProjectFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/ProjectFactory.php', + 'phpDocumentor\\Reflection\\Type' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Type.php', + 'phpDocumentor\\Reflection\\TypeResolver' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/TypeResolver.php', + 'phpDocumentor\\Reflection\\Types\\Array_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Array_.php', + 'phpDocumentor\\Reflection\\Types\\Boolean' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Boolean.php', + 'phpDocumentor\\Reflection\\Types\\Callable_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Callable_.php', + 'phpDocumentor\\Reflection\\Types\\Compound' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Compound.php', + 'phpDocumentor\\Reflection\\Types\\Context' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Context.php', + 'phpDocumentor\\Reflection\\Types\\ContextFactory' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/ContextFactory.php', + 'phpDocumentor\\Reflection\\Types\\Float_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Float_.php', + 'phpDocumentor\\Reflection\\Types\\Integer' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Integer.php', + 'phpDocumentor\\Reflection\\Types\\Iterable_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Iterable_.php', + 'phpDocumentor\\Reflection\\Types\\Mixed_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Mixed_.php', + 'phpDocumentor\\Reflection\\Types\\Null_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Null_.php', + 'phpDocumentor\\Reflection\\Types\\Nullable' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Nullable.php', + 'phpDocumentor\\Reflection\\Types\\Object_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Object_.php', + 'phpDocumentor\\Reflection\\Types\\Parent_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Parent_.php', + 'phpDocumentor\\Reflection\\Types\\Resource_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Resource_.php', + 'phpDocumentor\\Reflection\\Types\\Scalar' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Scalar.php', + 'phpDocumentor\\Reflection\\Types\\Self_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Self_.php', + 'phpDocumentor\\Reflection\\Types\\Static_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Static_.php', + 'phpDocumentor\\Reflection\\Types\\String_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/String_.php', + 'phpDocumentor\\Reflection\\Types\\This' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/This.php', + 'phpDocumentor\\Reflection\\Types\\Void_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Void_.php', + 'tad\\WPBrowser\\Adapters\\WP' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Adapters/WP.php', + 'tad\\WPBrowser\\Connector\\WordPress' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Connector/WordPress.php', + 'tad\\WPBrowser\\Documentation\\TableGenerator' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Documentation/TableGenerator.php', + 'tad\\WPBrowser\\Environment\\Constants' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/Constants.php', + 'tad\\WPBrowser\\Environment\\Executor' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/Executor.php', + 'tad\\WPBrowser\\Environment\\System' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/System.php', + 'tad\\WPBrowser\\Extension\\Copier' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Extension/Copier.php', + 'tad\\WPBrowser\\Extension\\Symlinker' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Extension/Symlinker.php', + 'tad\\WPBrowser\\Filesystem\\FileReplacers\\AbstractFileReplacer' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/AbstractFileReplacer.php', + 'tad\\WPBrowser\\Filesystem\\FileReplacers\\HtaccesReplacer' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/HtaccesReplacer.php', + 'tad\\WPBrowser\\Filesystem\\FileReplacers\\WPConfigReplacer' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/WPConfigReplacer.php', + 'tad\\WPBrowser\\Filesystem\\Filesystem' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/Filesystem.php', + 'tad\\WPBrowser\\Filesystem\\Utils' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/Utils.php', + 'tad\\WPBrowser\\Generators\\Blog' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Blog.php', + 'tad\\WPBrowser\\Generators\\Comment' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Comment.php', + 'tad\\WPBrowser\\Generators\\Date' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Date.php', + 'tad\\WPBrowser\\Generators\\Links' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Links.php', + 'tad\\WPBrowser\\Generators\\Post' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Post.php', + 'tad\\WPBrowser\\Generators\\RedirectingWPConfig' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/RedirectingWPConfig.php', + 'tad\\WPBrowser\\Generators\\SubdomainHtaccess' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/SubdomainHtaccess.php', + 'tad\\WPBrowser\\Generators\\SubfolderHtaccess' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/SubfolderHtaccess.php', + 'tad\\WPBrowser\\Generators\\Tables' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Tables.php', + 'tad\\WPBrowser\\Generators\\TemplateProviderInterface' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/TemplateProviderInterface.php', + 'tad\\WPBrowser\\Generators\\User' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/User.php', + 'tad\\WPBrowser\\Generators\\User\\Roles' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/User/Roles.php', + 'tad\\WPBrowser\\Generators\\WpPassword' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/WpPassword.php', + 'tad\\WPBrowser\\Iterators\\Filters\\ActionsQueriesFilter' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/ActionsQueriesFilter.php', + 'tad\\WPBrowser\\Iterators\\Filters\\ClassMethodQueriesFilter' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/ClassMethodQueriesFilter.php', + 'tad\\WPBrowser\\Iterators\\Filters\\FactoryQueriesFilter' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FactoryQueriesFilter.php', + 'tad\\WPBrowser\\Iterators\\Filters\\FiltersQueriesFilter' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FiltersQueriesFilter.php', + 'tad\\WPBrowser\\Iterators\\Filters\\FunctionQueriesFilter' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FunctionQueriesFilter.php', + 'tad\\WPBrowser\\Iterators\\Filters\\MainStatementQueriesFilter' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/MainStatementQueriesFilter.php', + 'tad\\WPBrowser\\Iterators\\Filters\\QueriesCallerBasedFilterIterator' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/QueriesCallerBasedFilterIterator.php', + 'tad\\WPBrowser\\Iterators\\Filters\\QueriesCallerBasedKeepingFilterIterator' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/QueriesCallerBasedKeepingFilterIterator.php', + 'tad\\WPBrowser\\Iterators\\Filters\\SetupTearDownQueriesFilter' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/SetupTearDownQueriesFilter.php', + 'tad\\WPBrowser\\Module\\Support\\DbDump' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Module/Support/DbDump.php', + 'tad\\WPBrowser\\Module\\Support\\UriToIndexMapper' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Module/Support/UriToIndexMapper.php', + 'tad\\WPBrowser\\Module\\WPLoader\\FactoryStore' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/FactoryStore.php', + 'tad\\WPBrowser\\Module\\WPLoader\\Filters' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/Filters.php', + 'tad\\WPBrowser\\Module\\WPLoader\\FiltersGroup' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/FiltersGroup.php', + 'tad\\WPBrowser\\Services\\Db\\MySQLDumpFactory' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpFactory.php', + 'tad\\WPBrowser\\Services\\Db\\MySQLDumpFactoryInterface' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpFactoryInterface.php', + 'tad\\WPBrowser\\Services\\Db\\MySQLDumpInterface' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpInterface.php', + 'tad\\WPBrowser\\Services\\WP\\Bootstrapper' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/WP/Bootstrapper.php', + 'tad\\WPBrowser\\Template\\Data' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Template/Data.php', ); public static function getInitializer(ClassLoader $loader) @@ -136,6 +3348,8 @@ public static function getInitializer(ClassLoader $loader) return \Closure::bind(function () use ($loader) { $loader->prefixLengthsPsr4 = ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$prefixLengthsPsr4; $loader->prefixDirsPsr4 = ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$prefixDirsPsr4; + $loader->fallbackDirsPsr4 = ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$fallbackDirsPsr4; + $loader->prefixesPsr0 = ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$prefixesPsr0; $loader->classMap = ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$classMap; }, null, ClassLoader::class); From fa736107c4f3e57328915ebb1b421e2823d331f5 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Wed, 21 Aug 2019 11:17:23 -0400 Subject: [PATCH 44/56] CartItem field "extraData" implemented and tested. --- includes/class-type-registry.php | 1 + includes/model/class-customer.php | 12 + includes/model/class-order-item.php | 12 + includes/type/object/class-meta-data-type.php | 164 +++++++ tests/_support/Helper/crud-helpers/coupon.php | 5 + tests/wpunit/MetaDataQueriesTest.php | 414 ++++++++++++++++-- vendor/composer/autoload_classmap.php | 10 +- vendor/composer/autoload_files.php | 42 +- vendor/composer/autoload_namespaces.php | 1 + vendor/composer/autoload_psr4.php | 11 +- vendor/composer/autoload_static.php | 121 +++-- 11 files changed, 651 insertions(+), 142 deletions(-) create mode 100644 includes/type/object/class-meta-data-type.php diff --git a/includes/class-type-registry.php b/includes/class-type-registry.php index abaee4160..d20d8aef8 100644 --- a/includes/class-type-registry.php +++ b/includes/class-type-registry.php @@ -68,6 +68,7 @@ public static function graphql_register_types() { \WPGraphQL\Extensions\WooCommerce\Type\WPObject\Cart_Type::register(); \WPGraphQL\Extensions\WooCommerce\Type\WPObject\Variation_Attribute_Type::register(); \WPGraphQL\Extensions\WooCommerce\Type\WPObject\Payment_Gateway_Type::register(); + \WPGraphQL\Extensions\WooCommerce\Type\WPObject\Meta_Data_Type::register(); // Object fields. \WPGraphQL\Extensions\WooCommerce\Type\WPObject\Product_Category_Type::register_fields(); diff --git a/includes/model/class-customer.php b/includes/model/class-customer.php index 2de864cb3..f1b4900c3 100644 --- a/includes/model/class-customer.php +++ b/includes/model/class-customer.php @@ -41,6 +41,18 @@ public function __construct( $id ) { parent::__construct( $restricted_cap, $allowed_restricted_fields, $id ); } + /** + * Forwards function calls to WC_Data sub-class instance. + * + * @param string $method - function name. + * @param array $args - function call arguments. + * + * @return mixed + */ + public function __call( $method, $args ) { + return $this->data->$method( ...$args ); + } + /** * Initializes the Customer field resolvers * diff --git a/includes/model/class-order-item.php b/includes/model/class-order-item.php index 8b8dec06e..702943237 100644 --- a/includes/model/class-order-item.php +++ b/includes/model/class-order-item.php @@ -60,6 +60,18 @@ public function __construct( $item ) { parent::__construct( $restricted_cap, $allowed_restricted_fields, $author_id ); } + /** + * Forwards function calls to WC_Data sub-class instance. + * + * @param string $method - function name. + * @param array $args - function call arguments. + * + * @return mixed + */ + public function __call( $method, $args ) { + return $this->data->$method( ...$args ); + } + /** * Initializes the Order field resolvers * diff --git a/includes/type/object/class-meta-data-type.php b/includes/type/object/class-meta-data-type.php new file mode 100644 index 000000000..c2038024b --- /dev/null +++ b/includes/type/object/class-meta-data-type.php @@ -0,0 +1,164 @@ + __( 'Extra data defined on the WC object', 'wp-graphql-woocommerce' ), + 'fields' => array( + 'key' => array( + 'type' => array( 'non_null' => 'String' ), + 'description' => __( 'Meta key.', 'wp-graphql-woocommerce' ), + 'resolve' => function ( $source ) { + return ! empty( $source['key'] ) ? $source['key'] : null; + }, + ), + 'value' => array( + 'type' => array( 'non_null' => 'String' ), + 'description' => __( 'Meta value.', 'wp-graphql-woocommerce' ), + 'resolve' => function ( $source ) { + return ! empty( $source['value'] ) ? $source['value'] : null; + }, + ), + ), + ) + ); + + // Register 'extraData' field on CartItem. + register_graphql_field( + 'CartItem', + 'extraData', + array( + 'type' => array( 'list_of' => 'MetaData' ), + 'description' => __( 'Object meta data', 'wp-graphql-woocommerce' ), + 'args' => array( + 'key' => array( + 'type' => 'String', + 'description' => __( 'Retrieve meta by key', 'wp-graphql-woocommerce' ), + ), + 'keysIn' => array( + 'type' => array( 'list_of' => 'String' ), + 'description' => __( 'Retrieve multiple metas by key', 'wp-graphql-woocommerce' ), + ), + ), + 'resolve' => function( $source, array $args ) { + if ( ! empty( $args['key'] ) && ! empty( $source[ $args['key'] ] ) ) { + $keys = array( $args['key'] ); + } elseif ( ! empty( $args['keysIn'] ) ) { + $keys = array(); + foreach ( $args['keysIn'] as $key ) { + if ( ! empty( $source[ $key ] ) ) { + $keys[] = $key; + } + } + } else { + $keys = array_diff( + array_keys( $source ), + array( + 'key', + 'product_id', + 'variation_id', + 'variation', + 'quantity', + 'data', + 'data_hash', + 'line_tax_data', + 'line_subtotal', + 'line_subtotal_tax', + 'line_total', + 'line_tax', + ) + ); + } + + $data = array(); + foreach ( $keys as $key ) { + $data[] = array( + 'key' => $key, + 'value' => $source[ $key ], + ); + } + + return $data; + }, + ) + ); + + $types = array( + 'Coupon', + 'Customer', + 'CouponLine', + 'LineItem', + 'FeeLine', + 'Order', + 'Product', + 'ProductVariation', + 'Refund', + 'ShippingLine', + 'TaxLine', + ); + + foreach ( $types as $type ) { + register_graphql_field( + $type, + 'metaData', + array( + 'type' => array( 'list_of' => 'MetaData' ), + 'description' => __( 'Object meta data', 'wp-graphql-woocommerce' ), + 'args' => array( + 'key' => array( + 'type' => 'String', + 'description' => __( 'Retrieve meta by key', 'wp-graphql-woocommerce' ), + ), + 'keysIn' => array( + 'type' => array( 'list_of' => 'String' ), + 'description' => __( 'Retrieve multiple metas by key', 'wp-graphql-woocommerce' ), + ), + 'multiple' => array( + 'type' => 'Boolean', + 'description' => __( 'Retrieve meta with matching keys', 'wp-graphql-woocommerce' ), + ), + ), + 'resolve' => function( $source, array $args ) { + $single = ! empty( $args['multiple'] ) ? ! $args['multiple'] : true; + $data = array(); + + if ( ! empty( $args['key'] ) ) { + $data[ $args['key'] ] = $source->get_meta( $args['key'], $single ); + } elseif ( ! empty( $args['keysIn'] ) ) { + $data = array(); + foreach ( $args['keysIn'] as $key ) { + $data[ $key ] = $source->get_meta( $key, $single ); + } + } else { + $data = $source->get_meta_data(); + } + + \codecept_debug( $source->get_meta_data() ); + return ! empty( $data ) ? $data : null; + }, + ) + ); + } + } +} diff --git a/tests/_support/Helper/crud-helpers/coupon.php b/tests/_support/Helper/crud-helpers/coupon.php index 91a5f1a93..22967b8f1 100644 --- a/tests/_support/Helper/crud-helpers/coupon.php +++ b/tests/_support/Helper/crud-helpers/coupon.php @@ -17,6 +17,11 @@ public function create( $args = array(), $save = true ) { // Create new coupon crud object instance. $coupon = new WC_Coupon(); + // Set meta data. + if ( ! empty( $args['meta_data'] ) ) { + $coupon->set_meta_data( $args['meta_data'] ); + } + // Set props. $amount = $this->dummy->number( 0, 75 ); $coupon->set_props( diff --git a/tests/wpunit/MetaDataQueriesTest.php b/tests/wpunit/MetaDataQueriesTest.php index 0ee4de10b..18f181954 100644 --- a/tests/wpunit/MetaDataQueriesTest.php +++ b/tests/wpunit/MetaDataQueriesTest.php @@ -1,24 +1,34 @@ shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); $this->customer = $this->factory->user->create( array( 'role' => 'customer' ) ); + + // Assign helpers. + $this->cart = $this->getModule('\Helper\Wpunit')->cart(); $this->coupons = $this->getModule('\Helper\Wpunit')->coupon(); - $this->customers = $this->getModule('\Helper\Wpunit')->customers(); - $this->orders = $this->getModule('\Helper\Wpunit')->orders(); + $this->customers = $this->getModule('\Helper\Wpunit')->customer(); + $this->orders = $this->getModule('\Helper\Wpunit')->order(); + $this->order_items = $this->getModule('\Helper\Wpunit')->item(); $this->products = $this->getModule('\Helper\Wpunit')->product(); - $this->variations = $this->getModule('\Helper\Wpunit')->product_variations(); + $this->refunds = $this->getModule('\Helper\Wpunit')->refund(); + $this->variations = $this->getModule('\Helper\Wpunit')->product_variation(); + // Create test objects. $this->createObjects(); } public function tearDown() { - // your tear down methods here + // Clear cart. + WC()->cart->empty_cart( true ); // then parent::tearDown(); @@ -26,28 +36,174 @@ public function tearDown() { private function createObjects() { $data = array( - + 'meta_data' => array( + 'meta_1' => 'test_meta_1', + 'meta_2' => 'test_meta_2' + ) ); + // Create Coupon with meta data. $this->coupon_id = $this->coupons->create( $data ); + + // Create Customer with meta data. $this->customer_id = $this->customers->create( $data ); - $this->order_id = $this->orders->create( $data ); - $this->product_id = $this->products->create_variable( $data ); - $this->variation_ids = $this->variations->create( $this->product_id, $data ); + + // Create Order with meta data. + $this->order_id = $this->orders->create( $data ); + $this->order_items->add_coupon( $this->order_id, $this->coupon_id ); + + // Create Products with meta data. + $this->product_id = $this->products->create_variable( $data ); + $this->variation_ids = $this->variations->create( $this->product_id, $data ); + + // Add Cart Item with extra data. + $this->cart_item_key = WC()->cart->add_to_cart( + $this->product_id, + 2, + $this->variation_ids['variations'][1], + array(), + $data['meta_data'] + ); } // tests + public function testCartMetaDataQueries() { + $query = ' + query($key: String, $keysIn: [String]) { + cart { + contents { + nodes { + key + extraData(key: $key, keysIn: $keysIn) { + key + value + } + } + } + } + } + '; + + /** + * Assertion One + * + * query w/o filter + */ + $actual = graphql( array( 'query' => $query ) ); + $expected = array( + 'data' => array( + 'cart' => array( + 'contents' => array( + 'nodes' => array( + array( + 'key' => $this->cart_item_key, + 'extraData' => array( + array( + 'key' => 'meta_1', + 'value' => 'test_meta_1', + ), + array( + 'key' => 'meta_2', + 'value' => 'test_meta_2', + ), + ), + ) + ) + ) + ) + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEqualSets( $expected, $actual ); + + /** + * Assertion Two + * + * query w/ "key" filter + */ + $variables = array( 'key' => 'meta_2' ); + $actual = graphql( array( 'query' => $query, 'variables' => $variables ) ); + $expected = array( + 'data' => array( + 'cart' => array( + 'contents' => array( + 'nodes' => array( + array( + 'key' => $this->cart_item_key, + 'extraData' => array( + array( + 'key' => 'meta_2', + 'value' => 'test_meta_2', + ), + ), + ) + ) + ) + ) + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEqualSets( $expected, $actual ); + + /** + * Assertion Three + * + * query w/ "keysIn" filter + */ + $variables = array( 'keysIn' => array( 'meta_2' ) ); + $actual = graphql( array( 'query' => $query, 'variables' => $variables ) ); + $expected = array( + 'data' => array( + 'cart' => array( + 'contents' => array( + 'nodes' => array( + array( + 'key' => $this->cart_item_key, + 'extraData' => array( + array( + 'key' => 'meta_2', + 'value' => 'test_meta_2', + ), + ), + ) + ) + ) + ) + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEqualSets( $expected, $actual ); + } + public function testCouponMetaDataQueries() { $id = Relay::toGlobalId( 'shop_coupon', $this->coupon_id ); $query = ' - query ($id: ID!) { + query ($id: ID!, $key: String, $keysIn: [String]) { coupon(id: $id) { id - metaData + metaData(key: $key, keysIn: $keysIn) { + key + value + } } } '; + /** + * Assertion One + * + * query w/o filters + */ + wp_set_current_user( $this->shop_manager ); $variables = array( 'id' => $id ); $actual = graphql( array( @@ -61,12 +217,64 @@ public function testCouponMetaDataQueries() { 'id' => $id, 'metaData' => array( array( - 'key' => '', - 'value' => '' + 'key' => 'meta_1', + 'value' => 'test_meta_1', + ), + array( + 'key' => 'meta_2', + 'value' => 'test_meta_2', + ), + ) + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEqualSets( $expected, $actual ); + + /** + * Assertion Two + * + * query w/ "key" filter + */ + $variables = array( 'id' => $id, 'key' => 'meta_2' ); + $actual = graphql( array( 'query' => $query, 'variables' => $variables ) ); + $expected = array( + 'data' => array( + 'coupon' => array( + 'id' => $id, + 'metaData' => array( + array( + 'key' => 'meta_2', + 'value' => 'test_meta_2', ), + ) + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEqualSets( $expected, $actual ); + + /** + * Assertion Three + * + * query w/ "keysIn" filter + */ + $variables = array( 'id' => $id, 'keysIn' => array( 'meta_2' ) ); + $actual = graphql( array( 'query' => $query, 'variables' => $variables ) ); + $expected = array( + 'data' => array( + 'coupon' => array( + 'id' => $id, + 'metaData' => array( array( - 'key' => '', - 'value' => '' + 'key' => 'meta_2', + 'value' => 'test_meta_2', ), ) ), @@ -84,12 +292,69 @@ public function testCustomerMetaDataQueries() { query { customer { id - metaData + metaData { + key + value + } } } '; + /** + * Assertion One + */ wp_set_current_user( $this->customer_id ); + $actual = graphql( array( 'query' => $query ) ); + $expected = array( + 'data' => array( + 'customer' => array( + 'id' => Relay::toGlobalId( 'customer', $this->customer_id ), + 'metaData' => array( + array( + 'key' => 'meta_1', + 'value' => 'test_meta_1', + ), + array( + 'key' => 'meta_2', + 'value' => 'test_meta_2', + ), + ) + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEqualSets( $expected, $actual ); + } + + public function testOrderMetaDataQueries() { + $id = Relay::toGlobalId( 'shop_order', $this->order_id ); + $query = ' + query ($id: ID!) { + order(id: $id) { + id + metaData { + key + value + } + couponLines { + nodes { + metaData { + key + value + } + } + } + } + } + '; + + /** + * Assertion One + */ + $variables = array( 'id' => $id ); $actual = graphql( array( 'query' => $query, @@ -98,18 +363,34 @@ public function testCustomerMetaDataQueries() { ); $expected = array( 'data' => array( - 'customer' => array( - 'id' => Relay::toGlobalId( 'customer', $this->customer_id ), - 'metaData' => array( + 'order' => array( + 'id' => $id, + 'metaData' => array( array( - 'key' => '', - 'value' => '' + 'key' => 'meta_1', + 'value' => 'test_meta_1', ), array( - 'key' => '', - 'value' => '' + 'key' => 'meta_2', + 'value' => 'test_meta_2', ), - ) + ), + 'couponLines' => array( + 'nodes' => array( + array( + 'metaData' => array( + array( + 'key' => 'meta_1', + 'value' => 'test_meta_1', + ), + array( + 'key' => 'meta_2', + 'value' => 'test_meta_2', + ), + ), + ), + ), + ), ), ), ); @@ -126,11 +407,17 @@ public function testProductMetaDataQueries() { query ($id: ID!) { product(id: $id) { id - metaData + metaData { + key + value + } } } '; + /** + * Assertion One + */ $variables = array( 'id' => $id ); $actual = graphql( array( @@ -144,12 +431,12 @@ public function testProductMetaDataQueries() { 'id' => $id, 'metaData' => array( array( - 'key' => '', - 'value' => '' + 'key' => 'meta_1', + 'value' => 'test_meta_1', ), array( - 'key' => '', - 'value' => '' + 'key' => 'meta_2', + 'value' => 'test_meta_2', ), ) ), @@ -163,16 +450,22 @@ public function testProductMetaDataQueries() { } public function testProductVariationMetaDataQueries() { - $id = Relay::toGlobalId( 'product', $this->variation_ids['variations'][0] ); + $id = Relay::toGlobalId( 'product_variation', $this->variation_ids['variations'][0] ); $query = ' query ($id: ID!) { productVariation(id: $id) { id - metaData + metaData { + key + value + } } } '; + /** + * Assertion One + */ $variables = array( 'id' => $id ); $actual = graphql( array( @@ -182,16 +475,16 @@ public function testProductVariationMetaDataQueries() { ); $expected = array( 'data' => array( - 'product' => array( + 'productVariation' => array( 'id' => $id, 'metaData' => array( array( - 'key' => '', - 'value' => '' + 'key' => 'meta_1', + 'value' => 'test_meta_1', ), array( - 'key' => '', - 'value' => '' + 'key' => 'meta_2', + 'value' => 'test_meta_2', ), ) ), @@ -204,16 +497,51 @@ public function testProductVariationMetaDataQueries() { $this->assertEqualSets( $expected, $actual ); } - public function testCartMetaDataQueries() { + public function testRefundMetaDataQueries() { + $id = Relay::toGlobalId( 'shop_order_refund', $this->refund_id ); + $query = ' + query refundQuery( $id: ID! ) { + refund( id: $id ) { + id + metaData { + key + value + } + } + } + '; - } + /** + * Assertion One + */ + $variables = array( 'id' => $id ); + $actual = graphql( + array( + 'query' => $query, + 'variables' => $variables, + ) + ); + $expected = array( + 'data' => array( + 'refund' => array( + 'id' => $id, + 'metaData' => array( + array( + 'key' => 'meta_1', + 'value' => 'test_meta_1', + ), + array( + 'key' => 'meta_2', + 'value' => 'test_meta_2', + ), + ), + ), + ), + ); - public function testOrderMetaDataQueries() { - - } + // use --debug flag to view. + codecept_debug( $actual ); - public function testRefundMetaDataQueries() { - + $this->assertEqualSets( $expected, $actual ); } - } \ No newline at end of file diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 9e2593a50..028178aca 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -71,7 +71,6 @@ 'Carbon\\CarbonInterval' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonInterval.php', 'Carbon\\CarbonPeriod' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonPeriod.php', 'Carbon\\CarbonTimeZone' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonTimeZone.php', - 'Carbon\\Cli\\Invoker' => $vendorDir . '/nesbot/carbon/src/Carbon/Cli/Invoker.php', 'Carbon\\Exceptions\\InvalidDateException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php', 'Carbon\\Factory' => $vendorDir . '/nesbot/carbon/src/Carbon/Factory.php', 'Carbon\\FactoryImmutable' => $vendorDir . '/nesbot/carbon/src/Carbon/FactoryImmutable.php', @@ -661,7 +660,6 @@ 'Composer\\Semver\\Semver' => $vendorDir . '/composer/semver/src/Semver.php', 'Composer\\Semver\\VersionParser' => $vendorDir . '/composer/semver/src/VersionParser.php', 'Composer\\Spdx\\SpdxLicenses' => $vendorDir . '/composer/spdx-licenses/src/SpdxLicenses.php', - 'Composer\\Spdx\\SpdxLicensesUpdater' => $vendorDir . '/composer/spdx-licenses/src/SpdxLicensesUpdater.php', 'Composer\\Util\\AuthHelper' => $vendorDir . '/composer/composer/src/Composer/Util/AuthHelper.php', 'Composer\\Util\\Bitbucket' => $vendorDir . '/composer/composer/src/Composer/Util/Bitbucket.php', 'Composer\\Util\\ComposerMirror' => $vendorDir . '/composer/composer/src/Composer/Util/ComposerMirror.php', @@ -753,7 +751,6 @@ 'EvalFile_Command' => $vendorDir . '/wp-cli/eval-command/src/EvalFile_Command.php', 'Eval_Command' => $vendorDir . '/wp-cli/eval-command/src/Eval_Command.php', 'Export_Command' => $vendorDir . '/wp-cli/export-command/src/Export_Command.php', - 'Facebook\\WebDriver\\AbstractWebDriverCheckboxOrRadio' => $vendorDir . '/facebook/webdriver/lib/AbstractWebDriverCheckboxOrRadio.php', 'Facebook\\WebDriver\\Chrome\\ChromeDriver' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeDriver.php', 'Facebook\\WebDriver\\Chrome\\ChromeDriverService' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeDriverService.php', 'Facebook\\WebDriver\\Chrome\\ChromeOptions' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeOptions.php', @@ -860,7 +857,6 @@ 'Facebook\\WebDriver\\WebDriverAlert' => $vendorDir . '/facebook/webdriver/lib/WebDriverAlert.php', 'Facebook\\WebDriver\\WebDriverBy' => $vendorDir . '/facebook/webdriver/lib/WebDriverBy.php', 'Facebook\\WebDriver\\WebDriverCapabilities' => $vendorDir . '/facebook/webdriver/lib/WebDriverCapabilities.php', - 'Facebook\\WebDriver\\WebDriverCheckboxes' => $vendorDir . '/facebook/webdriver/lib/WebDriverCheckboxes.php', 'Facebook\\WebDriver\\WebDriverCommandExecutor' => $vendorDir . '/facebook/webdriver/lib/WebDriverCommandExecutor.php', 'Facebook\\WebDriver\\WebDriverDimension' => $vendorDir . '/facebook/webdriver/lib/WebDriverDimension.php', 'Facebook\\WebDriver\\WebDriverDispatcher' => $vendorDir . '/facebook/webdriver/lib/WebDriverDispatcher.php', @@ -875,7 +871,6 @@ 'Facebook\\WebDriver\\WebDriverOptions' => $vendorDir . '/facebook/webdriver/lib/WebDriverOptions.php', 'Facebook\\WebDriver\\WebDriverPlatform' => $vendorDir . '/facebook/webdriver/lib/WebDriverPlatform.php', 'Facebook\\WebDriver\\WebDriverPoint' => $vendorDir . '/facebook/webdriver/lib/WebDriverPoint.php', - 'Facebook\\WebDriver\\WebDriverRadios' => $vendorDir . '/facebook/webdriver/lib/WebDriverRadios.php', 'Facebook\\WebDriver\\WebDriverSearchContext' => $vendorDir . '/facebook/webdriver/lib/WebDriverSearchContext.php', 'Facebook\\WebDriver\\WebDriverSelect' => $vendorDir . '/facebook/webdriver/lib/WebDriverSelect.php', 'Facebook\\WebDriver\\WebDriverSelectInterface' => $vendorDir . '/facebook/webdriver/lib/WebDriverSelectInterface.php', @@ -1528,7 +1523,6 @@ 'PHP_Token_CLOSE_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_CLOSE_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_COALESCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COALESCE_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_COMMA' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', @@ -1574,7 +1568,6 @@ 'PHP_Token_FILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_FINAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_FINALLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_FOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_FOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', @@ -1665,7 +1658,6 @@ 'PHP_Token_UNSET_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_USE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_USE_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_Util' => $vendorDir . '/phpunit/php-token-stream/src/Token/Util.php', 'PHP_Token_VAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_VARIABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_WHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', @@ -2606,6 +2598,7 @@ 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Coupon_Type' => $baseDir . '/includes/type/object/class-coupon-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Customer_Address_Type' => $baseDir . '/includes/type/object/class-customer-address-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Customer_Type' => $baseDir . '/includes/type/object/class-customer-type.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Meta_Data_Type' => $baseDir . '/includes/type/object/class-meta-data-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Order_Item_Type' => $baseDir . '/includes/type/object/class-order-item-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Order_Type' => $baseDir . '/includes/type/object/class-order-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Payment_Gateway_Type' => $baseDir . '/includes/type/object/class-payment-gateway-type.php', @@ -2725,6 +2718,7 @@ 'WP_Export_Query' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Query.php', 'WP_Export_Returner' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Returner.php', 'WP_Export_Split_Files_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Split_Files_Writer.php', + 'WP_Export_Stdout_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Stdout_Writer.php', 'WP_Export_Term_Exception' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Term_Exception.php', 'WP_Export_WXR_Formatter' => $vendorDir . '/wp-cli/export-command/src/WP_Export_WXR_Formatter.php', 'WP_Export_XML_Over_HTTP' => $vendorDir . '/wp-cli/export-command/src/WP_Export_XML_Over_HTTP.php', diff --git a/vendor/composer/autoload_files.php b/vendor/composer/autoload_files.php index 93d16cad2..363da3904 100644 --- a/vendor/composer/autoload_files.php +++ b/vendor/composer/autoload_files.php @@ -10,38 +10,38 @@ '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', '0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php', 'ba366f96f4fddbdef61ad7a862b44f61' => $vendorDir . '/wp-cli/package-command/package-command.php', - 'be01b9b16925dcb22165c40b46681ac6' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/cli.php', '3937806105cc8e221b8fa8db5b70d2f2' => $vendorDir . '/wp-cli/mustangostang-spyc/includes/functions.php', - 'd979c11fe80ba96ae3037b43429fe546' => $vendorDir . '/wp-cli/scaffold-command/scaffold-command.php', - '3f201033d5aceb2293314273be88f7c6' => $vendorDir . '/wp-cli/extension-command/extension-command.php', + 'be01b9b16925dcb22165c40b46681ac6' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/cli.php', + '8a0ad02df6a5087f2c380f8fd52db273' => $vendorDir . '/wp-cli/cache-command/cache-command.php', 'f3f0199a3ecd9f501d0a3b361bd2f61c' => $vendorDir . '/wp-cli/entity-command/entity-command.php', + '3f201033d5aceb2293314273be88f7c6' => $vendorDir . '/wp-cli/extension-command/extension-command.php', 'c65f753375faee349b7adc48c2ee7cc2' => $vendorDir . '/wp-cli/db-command/db-command.php', '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php', 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php', - '30cbb6e4122dc988e494c6b9c0438233' => $vendorDir . '/wp-cli/import-command/import-command.php', + 'd979c11fe80ba96ae3037b43429fe546' => $vendorDir . '/wp-cli/scaffold-command/scaffold-command.php', + '5c6ec5cff8f9d625772c8ed147f6b894' => $vendorDir . '/wp-cli/export-command/export-command.php', 'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php', 'b66d29757fcb2fb7a9608d068e3716b0' => $vendorDir . '/wp-cli/checksum-command/checksum-command.php', '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', + '72579e7bd17821bb1321b87411366eae' => $vendorDir . '/illuminate/support/helpers.php', + '30cbb6e4122dc988e494c6b9c0438233' => $vendorDir . '/wp-cli/import-command/import-command.php', '5e099d3cac677dd2bec1003ea7707745' => $vendorDir . '/wp-cli/media-command/media-command.php', - '5c6ec5cff8f9d625772c8ed147f6b894' => $vendorDir . '/wp-cli/export-command/export-command.php', 'ac949ce40a981819ba132473518a9a31' => $vendorDir . '/wp-cli/wp-config-transformer/src/WPConfigTransformer.php', - '8a0ad02df6a5087f2c380f8fd52db273' => $vendorDir . '/wp-cli/cache-command/cache-command.php', - '72579e7bd17821bb1321b87411366eae' => $vendorDir . '/illuminate/support/helpers.php', - '1f05372afcc7d0c51a305cef1d56dd01' => $vendorDir . '/wp-cli/widget-command/widget-command.php', - '8519779bbb65eeb842af2f629ce7b6f8' => $vendorDir . '/wp-cli/super-admin-command/super-admin-command.php', - '129d58fa8151374aceb8571bcaa97504' => $vendorDir . '/wp-cli/shell-command/shell-command.php', - '9f04dd0aa5d67ec75a75c88c345a079e' => $vendorDir . '/wp-cli/server-command/server-command.php', - '8ecb13f8bbc22b1b34d12b14ec01077a' => $vendorDir . '/wp-cli/search-replace-command/search-replace-command.php', - '080fadd667195d055c5a23386f270261' => $vendorDir . '/wp-cli/role-command/role-command.php', - 'f399c1c8d0c787d5c94c09884cdd9762' => $vendorDir . '/wp-cli/rewrite-command/rewrite-command.php', - '1c88c1eff05217a8cac80c64c9ac2080' => $vendorDir . '/wp-cli/maintenance-mode-command/maintenance-mode-command.php', - 'ace0d205db7f4135ec32132a0076d555' => $vendorDir . '/wp-cli/language-command/language-command.php', - 'ffb465a494c3101218c4417180c2c9a2' => $vendorDir . '/wp-cli/i18n-command/i18n-command.php', - 'f958dca3f412fd7975da1700912a9321' => $vendorDir . '/wp-cli/eval-command/eval-command.php', - '021d3a13471556f0b57038d679f7f8ea' => $vendorDir . '/wp-cli/embed-command/embed-command.php', - '7654e00bf0e632580764400bd8293a9c' => $vendorDir . '/wp-cli/cron-command/cron-command.php', - '68c39b88215b6cf7a0da164166670ef9' => $vendorDir . '/wp-cli/core-command/core-command.php', '5deaf6ce9c8bbdfb65104c7e938d5875' => $vendorDir . '/wp-cli/config-command/config-command.php', + '68c39b88215b6cf7a0da164166670ef9' => $vendorDir . '/wp-cli/core-command/core-command.php', + '7654e00bf0e632580764400bd8293a9c' => $vendorDir . '/wp-cli/cron-command/cron-command.php', + '021d3a13471556f0b57038d679f7f8ea' => $vendorDir . '/wp-cli/embed-command/embed-command.php', + 'f958dca3f412fd7975da1700912a9321' => $vendorDir . '/wp-cli/eval-command/eval-command.php', + 'ffb465a494c3101218c4417180c2c9a2' => $vendorDir . '/wp-cli/i18n-command/i18n-command.php', + 'ace0d205db7f4135ec32132a0076d555' => $vendorDir . '/wp-cli/language-command/language-command.php', + '1c88c1eff05217a8cac80c64c9ac2080' => $vendorDir . '/wp-cli/maintenance-mode-command/maintenance-mode-command.php', + 'f399c1c8d0c787d5c94c09884cdd9762' => $vendorDir . '/wp-cli/rewrite-command/rewrite-command.php', + '080fadd667195d055c5a23386f270261' => $vendorDir . '/wp-cli/role-command/role-command.php', + '8ecb13f8bbc22b1b34d12b14ec01077a' => $vendorDir . '/wp-cli/search-replace-command/search-replace-command.php', + '9f04dd0aa5d67ec75a75c88c345a079e' => $vendorDir . '/wp-cli/server-command/server-command.php', + '129d58fa8151374aceb8571bcaa97504' => $vendorDir . '/wp-cli/shell-command/shell-command.php', + '8519779bbb65eeb842af2f629ce7b6f8' => $vendorDir . '/wp-cli/super-admin-command/super-admin-command.php', + '1f05372afcc7d0c51a305cef1d56dd01' => $vendorDir . '/wp-cli/widget-command/widget-command.php', '6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', 'e2b8090921f5e293ca4eb0c107749811' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/functions.php', ); diff --git a/vendor/composer/autoload_namespaces.php b/vendor/composer/autoload_namespaces.php index d7cf64112..2e03c2641 100644 --- a/vendor/composer/autoload_namespaces.php +++ b/vendor/composer/autoload_namespaces.php @@ -9,6 +9,7 @@ 'cli' => array($vendorDir . '/wp-cli/php-cli-tools/lib'), 'WP_CLI' => array($vendorDir . '/wp-cli/wp-cli/php'), 'Requests' => array($vendorDir . '/rmccue/requests/library'), + 'Prophecy\\' => array($vendorDir . '/phpspec/prophecy/src'), 'PhpOption\\' => array($vendorDir . '/phpoption/phpoption/src'), 'Oxymel' => array($vendorDir . '/nb/oxymel'), 'Mustache' => array($vendorDir . '/mustache/mustache/src'), diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php index 4aeae82a5..93fe0453f 100644 --- a/vendor/composer/autoload_psr4.php +++ b/vendor/composer/autoload_psr4.php @@ -6,13 +6,13 @@ $baseDir = dirname($vendorDir); return array( - 'tad\\' => array($vendorDir . '/lucatume/wp-browser-commons/src/tad', $vendorDir . '/lucatume/wp-browser/src/tad'), - 'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/type-resolver/src', $vendorDir . '/phpdocumentor/reflection-docblock/src'), + 'tad\\' => array($vendorDir . '/lucatume/wp-browser/src/tad', $vendorDir . '/lucatume/wp-browser-commons/src/tad'), + 'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/reflection-docblock/src', $vendorDir . '/phpdocumentor/type-resolver/src'), 'Webmozart\\Assert\\' => array($vendorDir . '/webmozart/assert/src'), 'WP_CLI\\MaintenanceMode\\' => array($vendorDir . '/wp-cli/maintenance-mode-command/src'), 'WP_CLI\\I18n\\' => array($vendorDir . '/wp-cli/i18n-command/src'), 'WP_CLI\\Embeds\\' => array($vendorDir . '/wp-cli/embed-command/src'), - 'WP_CLI\\' => array($vendorDir . '/wp-cli/shell-command/src/WP_CLI', $vendorDir . '/wp-cli/entity-command/src/WP_CLI'), + 'WP_CLI\\' => array($vendorDir . '/wp-cli/entity-command/src/WP_CLI', $vendorDir . '/wp-cli/shell-command/src/WP_CLI'), 'WPGraphQL\\Extensions\\WooCommerce\\' => array($baseDir . '/includes'), 'Symfony\\Polyfill\\Php73\\' => array($vendorDir . '/symfony/polyfill-php73'), 'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'), @@ -36,7 +36,6 @@ 'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'), 'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src'), 'Psr\\Container\\' => array($vendorDir . '/psr/container/src'), - 'Prophecy\\' => array($vendorDir . '/phpspec/prophecy/src/Prophecy'), 'Peast\\test\\' => array($vendorDir . '/mck89/peast/test/Peast'), 'Peast\\' => array($vendorDir . '/mck89/peast/lib/Peast'), 'Mustangostang\\' => array($vendorDir . '/wp-cli/mustangostang-spyc/src'), @@ -62,7 +61,7 @@ 'Composer\\' => array($vendorDir . '/composer/composer/src/Composer'), 'Codeception\\PHPUnit\\' => array($vendorDir . '/codeception/phpunit-wrapper/src'), 'Codeception\\Extension\\' => array($vendorDir . '/codeception/codeception/ext'), - 'Codeception\\' => array($vendorDir . '/codeception/stub/src', $vendorDir . '/codeception/codeception/src/Codeception', $vendorDir . '/lucatume/wp-browser/src/Codeception'), + 'Codeception\\' => array($vendorDir . '/codeception/codeception/src/Codeception', $vendorDir . '/codeception/stub/src', $vendorDir . '/lucatume/wp-browser/src/Codeception'), 'Carbon\\' => array($vendorDir . '/nesbot/carbon/src/Carbon'), - '' => array($vendorDir . '/wp-cli/widget-command/src', $vendorDir . '/wp-cli/super-admin-command/src', $vendorDir . '/wp-cli/shell-command/src', $vendorDir . '/wp-cli/server-command/src', $vendorDir . '/wp-cli/search-replace-command/src', $vendorDir . '/wp-cli/scaffold-command/src', $vendorDir . '/wp-cli/role-command/src', $vendorDir . '/wp-cli/rewrite-command/src', $vendorDir . '/wp-cli/package-command/src', $vendorDir . '/wp-cli/media-command/src', $vendorDir . '/wp-cli/language-command/src', $vendorDir . '/wp-cli/import-command/src', $vendorDir . '/wp-cli/extension-command/src', $vendorDir . '/wp-cli/export-command/src', $vendorDir . '/wp-cli/eval-command/src', $vendorDir . '/wp-cli/entity-command/src', $vendorDir . '/wp-cli/db-command/src', $vendorDir . '/wp-cli/cron-command/src', $vendorDir . '/wp-cli/core-command/src', $vendorDir . '/wp-cli/config-command/src', $vendorDir . '/wp-cli/checksum-command/src', $vendorDir . '/wp-cli/cache-command/src'), + '' => array($vendorDir . '/wp-cli/cache-command/src', $vendorDir . '/wp-cli/checksum-command/src', $vendorDir . '/wp-cli/config-command/src', $vendorDir . '/wp-cli/core-command/src', $vendorDir . '/wp-cli/cron-command/src', $vendorDir . '/wp-cli/db-command/src', $vendorDir . '/wp-cli/entity-command/src', $vendorDir . '/wp-cli/eval-command/src', $vendorDir . '/wp-cli/export-command/src', $vendorDir . '/wp-cli/extension-command/src', $vendorDir . '/wp-cli/import-command/src', $vendorDir . '/wp-cli/language-command/src', $vendorDir . '/wp-cli/media-command/src', $vendorDir . '/wp-cli/package-command/src', $vendorDir . '/wp-cli/rewrite-command/src', $vendorDir . '/wp-cli/role-command/src', $vendorDir . '/wp-cli/scaffold-command/src', $vendorDir . '/wp-cli/search-replace-command/src', $vendorDir . '/wp-cli/server-command/src', $vendorDir . '/wp-cli/shell-command/src', $vendorDir . '/wp-cli/super-admin-command/src', $vendorDir . '/wp-cli/widget-command/src'), ); diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 3df641394..38f4eb043 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -11,38 +11,38 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', '0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php', 'ba366f96f4fddbdef61ad7a862b44f61' => __DIR__ . '/..' . '/wp-cli/package-command/package-command.php', - 'be01b9b16925dcb22165c40b46681ac6' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/cli.php', '3937806105cc8e221b8fa8db5b70d2f2' => __DIR__ . '/..' . '/wp-cli/mustangostang-spyc/includes/functions.php', - 'd979c11fe80ba96ae3037b43429fe546' => __DIR__ . '/..' . '/wp-cli/scaffold-command/scaffold-command.php', - '3f201033d5aceb2293314273be88f7c6' => __DIR__ . '/..' . '/wp-cli/extension-command/extension-command.php', + 'be01b9b16925dcb22165c40b46681ac6' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/cli.php', + '8a0ad02df6a5087f2c380f8fd52db273' => __DIR__ . '/..' . '/wp-cli/cache-command/cache-command.php', 'f3f0199a3ecd9f501d0a3b361bd2f61c' => __DIR__ . '/..' . '/wp-cli/entity-command/entity-command.php', + '3f201033d5aceb2293314273be88f7c6' => __DIR__ . '/..' . '/wp-cli/extension-command/extension-command.php', 'c65f753375faee349b7adc48c2ee7cc2' => __DIR__ . '/..' . '/wp-cli/db-command/db-command.php', '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php', 'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php', - '30cbb6e4122dc988e494c6b9c0438233' => __DIR__ . '/..' . '/wp-cli/import-command/import-command.php', + 'd979c11fe80ba96ae3037b43429fe546' => __DIR__ . '/..' . '/wp-cli/scaffold-command/scaffold-command.php', + '5c6ec5cff8f9d625772c8ed147f6b894' => __DIR__ . '/..' . '/wp-cli/export-command/export-command.php', 'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php', 'b66d29757fcb2fb7a9608d068e3716b0' => __DIR__ . '/..' . '/wp-cli/checksum-command/checksum-command.php', '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php', + '72579e7bd17821bb1321b87411366eae' => __DIR__ . '/..' . '/illuminate/support/helpers.php', + '30cbb6e4122dc988e494c6b9c0438233' => __DIR__ . '/..' . '/wp-cli/import-command/import-command.php', '5e099d3cac677dd2bec1003ea7707745' => __DIR__ . '/..' . '/wp-cli/media-command/media-command.php', - '5c6ec5cff8f9d625772c8ed147f6b894' => __DIR__ . '/..' . '/wp-cli/export-command/export-command.php', 'ac949ce40a981819ba132473518a9a31' => __DIR__ . '/..' . '/wp-cli/wp-config-transformer/src/WPConfigTransformer.php', - '8a0ad02df6a5087f2c380f8fd52db273' => __DIR__ . '/..' . '/wp-cli/cache-command/cache-command.php', - '72579e7bd17821bb1321b87411366eae' => __DIR__ . '/..' . '/illuminate/support/helpers.php', - '1f05372afcc7d0c51a305cef1d56dd01' => __DIR__ . '/..' . '/wp-cli/widget-command/widget-command.php', - '8519779bbb65eeb842af2f629ce7b6f8' => __DIR__ . '/..' . '/wp-cli/super-admin-command/super-admin-command.php', - '129d58fa8151374aceb8571bcaa97504' => __DIR__ . '/..' . '/wp-cli/shell-command/shell-command.php', - '9f04dd0aa5d67ec75a75c88c345a079e' => __DIR__ . '/..' . '/wp-cli/server-command/server-command.php', - '8ecb13f8bbc22b1b34d12b14ec01077a' => __DIR__ . '/..' . '/wp-cli/search-replace-command/search-replace-command.php', - '080fadd667195d055c5a23386f270261' => __DIR__ . '/..' . '/wp-cli/role-command/role-command.php', - 'f399c1c8d0c787d5c94c09884cdd9762' => __DIR__ . '/..' . '/wp-cli/rewrite-command/rewrite-command.php', - '1c88c1eff05217a8cac80c64c9ac2080' => __DIR__ . '/..' . '/wp-cli/maintenance-mode-command/maintenance-mode-command.php', - 'ace0d205db7f4135ec32132a0076d555' => __DIR__ . '/..' . '/wp-cli/language-command/language-command.php', - 'ffb465a494c3101218c4417180c2c9a2' => __DIR__ . '/..' . '/wp-cli/i18n-command/i18n-command.php', - 'f958dca3f412fd7975da1700912a9321' => __DIR__ . '/..' . '/wp-cli/eval-command/eval-command.php', - '021d3a13471556f0b57038d679f7f8ea' => __DIR__ . '/..' . '/wp-cli/embed-command/embed-command.php', - '7654e00bf0e632580764400bd8293a9c' => __DIR__ . '/..' . '/wp-cli/cron-command/cron-command.php', - '68c39b88215b6cf7a0da164166670ef9' => __DIR__ . '/..' . '/wp-cli/core-command/core-command.php', '5deaf6ce9c8bbdfb65104c7e938d5875' => __DIR__ . '/..' . '/wp-cli/config-command/config-command.php', + '68c39b88215b6cf7a0da164166670ef9' => __DIR__ . '/..' . '/wp-cli/core-command/core-command.php', + '7654e00bf0e632580764400bd8293a9c' => __DIR__ . '/..' . '/wp-cli/cron-command/cron-command.php', + '021d3a13471556f0b57038d679f7f8ea' => __DIR__ . '/..' . '/wp-cli/embed-command/embed-command.php', + 'f958dca3f412fd7975da1700912a9321' => __DIR__ . '/..' . '/wp-cli/eval-command/eval-command.php', + 'ffb465a494c3101218c4417180c2c9a2' => __DIR__ . '/..' . '/wp-cli/i18n-command/i18n-command.php', + 'ace0d205db7f4135ec32132a0076d555' => __DIR__ . '/..' . '/wp-cli/language-command/language-command.php', + '1c88c1eff05217a8cac80c64c9ac2080' => __DIR__ . '/..' . '/wp-cli/maintenance-mode-command/maintenance-mode-command.php', + 'f399c1c8d0c787d5c94c09884cdd9762' => __DIR__ . '/..' . '/wp-cli/rewrite-command/rewrite-command.php', + '080fadd667195d055c5a23386f270261' => __DIR__ . '/..' . '/wp-cli/role-command/role-command.php', + '8ecb13f8bbc22b1b34d12b14ec01077a' => __DIR__ . '/..' . '/wp-cli/search-replace-command/search-replace-command.php', + '9f04dd0aa5d67ec75a75c88c345a079e' => __DIR__ . '/..' . '/wp-cli/server-command/server-command.php', + '129d58fa8151374aceb8571bcaa97504' => __DIR__ . '/..' . '/wp-cli/shell-command/shell-command.php', + '8519779bbb65eeb842af2f629ce7b6f8' => __DIR__ . '/..' . '/wp-cli/super-admin-command/super-admin-command.php', + '1f05372afcc7d0c51a305cef1d56dd01' => __DIR__ . '/..' . '/wp-cli/widget-command/widget-command.php', '6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', 'e2b8090921f5e293ca4eb0c107749811' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/functions.php', ); @@ -92,7 +92,6 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'Psr\\Log\\' => 8, 'Psr\\Http\\Message\\' => 17, 'Psr\\Container\\' => 14, - 'Prophecy\\' => 9, 'Peast\\test\\' => 11, 'Peast\\' => 6, ), @@ -147,14 +146,14 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 public static $prefixDirsPsr4 = array ( 'tad\\' => array ( - 0 => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad', - 1 => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad', + 0 => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad', + 1 => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad', ), 'phpDocumentor\\Reflection\\' => array ( 0 => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src', - 1 => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src', - 2 => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src', + 1 => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src', + 2 => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src', ), 'Webmozart\\Assert\\' => array ( @@ -174,8 +173,8 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 ), 'WP_CLI\\' => array ( - 0 => __DIR__ . '/..' . '/wp-cli/shell-command/src/WP_CLI', - 1 => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI', + 0 => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI', + 1 => __DIR__ . '/..' . '/wp-cli/shell-command/src/WP_CLI', ), 'WPGraphQL\\Extensions\\WooCommerce\\' => array ( @@ -269,10 +268,6 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 array ( 0 => __DIR__ . '/..' . '/psr/container/src', ), - 'Prophecy\\' => - array ( - 0 => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy', - ), 'Peast\\test\\' => array ( 0 => __DIR__ . '/..' . '/mck89/peast/test/Peast', @@ -375,8 +370,8 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 ), 'Codeception\\' => array ( - 0 => __DIR__ . '/..' . '/codeception/stub/src', - 1 => __DIR__ . '/..' . '/codeception/codeception/src/Codeception', + 0 => __DIR__ . '/..' . '/codeception/codeception/src/Codeception', + 1 => __DIR__ . '/..' . '/codeception/stub/src', 2 => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception', ), 'Carbon\\' => @@ -386,28 +381,28 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 ); public static $fallbackDirsPsr4 = array ( - 0 => __DIR__ . '/..' . '/wp-cli/widget-command/src', - 1 => __DIR__ . '/..' . '/wp-cli/super-admin-command/src', - 2 => __DIR__ . '/..' . '/wp-cli/shell-command/src', - 3 => __DIR__ . '/..' . '/wp-cli/server-command/src', - 4 => __DIR__ . '/..' . '/wp-cli/search-replace-command/src', - 5 => __DIR__ . '/..' . '/wp-cli/scaffold-command/src', - 6 => __DIR__ . '/..' . '/wp-cli/role-command/src', - 7 => __DIR__ . '/..' . '/wp-cli/rewrite-command/src', - 8 => __DIR__ . '/..' . '/wp-cli/package-command/src', - 9 => __DIR__ . '/..' . '/wp-cli/media-command/src', - 10 => __DIR__ . '/..' . '/wp-cli/language-command/src', - 11 => __DIR__ . '/..' . '/wp-cli/import-command/src', - 12 => __DIR__ . '/..' . '/wp-cli/extension-command/src', - 13 => __DIR__ . '/..' . '/wp-cli/export-command/src', - 14 => __DIR__ . '/..' . '/wp-cli/eval-command/src', - 15 => __DIR__ . '/..' . '/wp-cli/entity-command/src', - 16 => __DIR__ . '/..' . '/wp-cli/db-command/src', - 17 => __DIR__ . '/..' . '/wp-cli/cron-command/src', - 18 => __DIR__ . '/..' . '/wp-cli/core-command/src', - 19 => __DIR__ . '/..' . '/wp-cli/config-command/src', - 20 => __DIR__ . '/..' . '/wp-cli/checksum-command/src', - 21 => __DIR__ . '/..' . '/wp-cli/cache-command/src', + 0 => __DIR__ . '/..' . '/wp-cli/cache-command/src', + 1 => __DIR__ . '/..' . '/wp-cli/checksum-command/src', + 2 => __DIR__ . '/..' . '/wp-cli/config-command/src', + 3 => __DIR__ . '/..' . '/wp-cli/core-command/src', + 4 => __DIR__ . '/..' . '/wp-cli/cron-command/src', + 5 => __DIR__ . '/..' . '/wp-cli/db-command/src', + 6 => __DIR__ . '/..' . '/wp-cli/entity-command/src', + 7 => __DIR__ . '/..' . '/wp-cli/eval-command/src', + 8 => __DIR__ . '/..' . '/wp-cli/export-command/src', + 9 => __DIR__ . '/..' . '/wp-cli/extension-command/src', + 10 => __DIR__ . '/..' . '/wp-cli/import-command/src', + 11 => __DIR__ . '/..' . '/wp-cli/language-command/src', + 12 => __DIR__ . '/..' . '/wp-cli/media-command/src', + 13 => __DIR__ . '/..' . '/wp-cli/package-command/src', + 14 => __DIR__ . '/..' . '/wp-cli/rewrite-command/src', + 15 => __DIR__ . '/..' . '/wp-cli/role-command/src', + 16 => __DIR__ . '/..' . '/wp-cli/scaffold-command/src', + 17 => __DIR__ . '/..' . '/wp-cli/search-replace-command/src', + 18 => __DIR__ . '/..' . '/wp-cli/server-command/src', + 19 => __DIR__ . '/..' . '/wp-cli/shell-command/src', + 20 => __DIR__ . '/..' . '/wp-cli/super-admin-command/src', + 21 => __DIR__ . '/..' . '/wp-cli/widget-command/src', ); public static $prefixesPsr0 = array ( @@ -434,6 +429,10 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 ), 'P' => array ( + 'Prophecy\\' => + array ( + 0 => __DIR__ . '/..' . '/phpspec/prophecy/src', + ), 'PhpOption\\' => array ( 0 => __DIR__ . '/..' . '/phpoption/phpoption/src', @@ -543,7 +542,6 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'Carbon\\CarbonInterval' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonInterval.php', 'Carbon\\CarbonPeriod' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonPeriod.php', 'Carbon\\CarbonTimeZone' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonTimeZone.php', - 'Carbon\\Cli\\Invoker' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Cli/Invoker.php', 'Carbon\\Exceptions\\InvalidDateException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php', 'Carbon\\Factory' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Factory.php', 'Carbon\\FactoryImmutable' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/FactoryImmutable.php', @@ -1133,7 +1131,6 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'Composer\\Semver\\Semver' => __DIR__ . '/..' . '/composer/semver/src/Semver.php', 'Composer\\Semver\\VersionParser' => __DIR__ . '/..' . '/composer/semver/src/VersionParser.php', 'Composer\\Spdx\\SpdxLicenses' => __DIR__ . '/..' . '/composer/spdx-licenses/src/SpdxLicenses.php', - 'Composer\\Spdx\\SpdxLicensesUpdater' => __DIR__ . '/..' . '/composer/spdx-licenses/src/SpdxLicensesUpdater.php', 'Composer\\Util\\AuthHelper' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/AuthHelper.php', 'Composer\\Util\\Bitbucket' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Bitbucket.php', 'Composer\\Util\\ComposerMirror' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/ComposerMirror.php', @@ -1225,7 +1222,6 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'EvalFile_Command' => __DIR__ . '/..' . '/wp-cli/eval-command/src/EvalFile_Command.php', 'Eval_Command' => __DIR__ . '/..' . '/wp-cli/eval-command/src/Eval_Command.php', 'Export_Command' => __DIR__ . '/..' . '/wp-cli/export-command/src/Export_Command.php', - 'Facebook\\WebDriver\\AbstractWebDriverCheckboxOrRadio' => __DIR__ . '/..' . '/facebook/webdriver/lib/AbstractWebDriverCheckboxOrRadio.php', 'Facebook\\WebDriver\\Chrome\\ChromeDriver' => __DIR__ . '/..' . '/facebook/webdriver/lib/Chrome/ChromeDriver.php', 'Facebook\\WebDriver\\Chrome\\ChromeDriverService' => __DIR__ . '/..' . '/facebook/webdriver/lib/Chrome/ChromeDriverService.php', 'Facebook\\WebDriver\\Chrome\\ChromeOptions' => __DIR__ . '/..' . '/facebook/webdriver/lib/Chrome/ChromeOptions.php', @@ -1332,7 +1328,6 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'Facebook\\WebDriver\\WebDriverAlert' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverAlert.php', 'Facebook\\WebDriver\\WebDriverBy' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverBy.php', 'Facebook\\WebDriver\\WebDriverCapabilities' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverCapabilities.php', - 'Facebook\\WebDriver\\WebDriverCheckboxes' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverCheckboxes.php', 'Facebook\\WebDriver\\WebDriverCommandExecutor' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverCommandExecutor.php', 'Facebook\\WebDriver\\WebDriverDimension' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverDimension.php', 'Facebook\\WebDriver\\WebDriverDispatcher' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverDispatcher.php', @@ -1347,7 +1342,6 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'Facebook\\WebDriver\\WebDriverOptions' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverOptions.php', 'Facebook\\WebDriver\\WebDriverPlatform' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverPlatform.php', 'Facebook\\WebDriver\\WebDriverPoint' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverPoint.php', - 'Facebook\\WebDriver\\WebDriverRadios' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverRadios.php', 'Facebook\\WebDriver\\WebDriverSearchContext' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverSearchContext.php', 'Facebook\\WebDriver\\WebDriverSelect' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverSelect.php', 'Facebook\\WebDriver\\WebDriverSelectInterface' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverSelectInterface.php', @@ -2000,7 +1994,6 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'PHP_Token_CLOSE_SQUARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_CLOSE_TAG' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_COALESCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COALESCE_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_COLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_COMMA' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_COMMENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', @@ -2046,7 +2039,6 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'PHP_Token_FILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_FINAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_FINALLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_FOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_FOREACH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_FUNCTION' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', @@ -2137,7 +2129,6 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'PHP_Token_UNSET_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_USE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_USE_FUNCTION' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_Util' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token/Util.php', 'PHP_Token_VAR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_VARIABLE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', 'PHP_Token_WHILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', @@ -3078,6 +3069,7 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Coupon_Type' => __DIR__ . '/../..' . '/includes/type/object/class-coupon-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Customer_Address_Type' => __DIR__ . '/../..' . '/includes/type/object/class-customer-address-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Customer_Type' => __DIR__ . '/../..' . '/includes/type/object/class-customer-type.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Meta_Data_Type' => __DIR__ . '/../..' . '/includes/type/object/class-meta-data-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Order_Item_Type' => __DIR__ . '/../..' . '/includes/type/object/class-order-item-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Order_Type' => __DIR__ . '/../..' . '/includes/type/object/class-order-type.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPObject\\Payment_Gateway_Type' => __DIR__ . '/../..' . '/includes/type/object/class-payment-gateway-type.php', @@ -3197,6 +3189,7 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'WP_Export_Query' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Query.php', 'WP_Export_Returner' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Returner.php', 'WP_Export_Split_Files_Writer' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Split_Files_Writer.php', + 'WP_Export_Stdout_Writer' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Stdout_Writer.php', 'WP_Export_Term_Exception' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Term_Exception.php', 'WP_Export_WXR_Formatter' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_WXR_Formatter.php', 'WP_Export_XML_Over_HTTP' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_XML_Over_HTTP.php', From 8025de7667d5abcf6f6fa64d5afed91637e9552f Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Wed, 21 Aug 2019 15:10:16 -0400 Subject: [PATCH 45/56] "MetaData" type and queries implemented and tested. --- includes/type/object/class-meta-data-type.php | 80 +- tests/_support/Helper/crud-helpers/coupon.php | 10 +- .../_support/Helper/crud-helpers/customer.php | 6 + .../Helper/crud-helpers/order-item.php | 26 +- tests/_support/Helper/crud-helpers/order.php | 7 +- .../Helper/crud-helpers/product-variation.php | 9 + .../_support/Helper/crud-helpers/product.php | 4 + tests/_support/Helper/crud-helpers/refund.php | 5 + tests/wpunit/MetaDataQueriesTest.php | 134 +- vendor/autoload.php | 2 +- vendor/composer/ClassLoader.php | 2 +- vendor/composer/autoload_classmap.php | 2748 -------------- vendor/composer/autoload_files.php | 47 - vendor/composer/autoload_namespaces.php | 11 - vendor/composer/autoload_psr4.php | 57 - vendor/composer/autoload_real.php | 26 +- vendor/composer/autoload_static.php | 3214 +---------------- 17 files changed, 255 insertions(+), 6133 deletions(-) delete mode 100644 vendor/composer/autoload_files.php diff --git a/includes/type/object/class-meta-data-type.php b/includes/type/object/class-meta-data-type.php index c2038024b..b7a42005a 100644 --- a/includes/type/object/class-meta-data-type.php +++ b/includes/type/object/class-meta-data-type.php @@ -26,18 +26,25 @@ public static function register() { array( 'description' => __( 'Extra data defined on the WC object', 'wp-graphql-woocommerce' ), 'fields' => array( + 'id' => array( + 'type' => array( 'non_null' => 'String' ), + 'description' => __( 'Meta ID.', 'wp-graphql-woocommerce' ), + 'resolve' => function ( $source ) { + return ! empty( $source->id ) ? $source->id : null; + }, + ), 'key' => array( 'type' => array( 'non_null' => 'String' ), 'description' => __( 'Meta key.', 'wp-graphql-woocommerce' ), 'resolve' => function ( $source ) { - return ! empty( $source['key'] ) ? $source['key'] : null; + return ! empty( $source->key ) ? $source->key : null; }, ), 'value' => array( 'type' => array( 'non_null' => 'String' ), 'description' => __( 'Meta value.', 'wp-graphql-woocommerce' ), 'resolve' => function ( $source ) { - return ! empty( $source['value'] ) ? $source['value'] : null; + return ! empty( $source->value ) ? $source->value : null; }, ), ), @@ -62,16 +69,17 @@ public static function register() { ), ), 'resolve' => function( $source, array $args ) { + // Check if "key" argument set and assigns to target "keys" array. if ( ! empty( $args['key'] ) && ! empty( $source[ $args['key'] ] ) ) { $keys = array( $args['key'] ); - } elseif ( ! empty( $args['keysIn'] ) ) { + } elseif ( ! empty( $args['keysIn'] ) ) { // Check if "keysIn" argument set and assigns to target "keys" array. $keys = array(); foreach ( $args['keysIn'] as $key ) { if ( ! empty( $source[ $key ] ) ) { $keys[] = $key; } } - } else { + } else { // If no arguments set, all extra data keys are assigns to target "keys" array. $keys = array_diff( array_keys( $source ), array( @@ -90,10 +98,14 @@ public static function register() { ) ); } + // Create meta ID prefix. + $id_prefix = apply_filters( 'cart_meta_id_prefix', 'cart_' ); + // Format meta data for resolution. $data = array(); foreach ( $keys as $key ) { - $data[] = array( + $data[] = (object) array( + 'id' => "{$id_prefix}_{$key}", 'key' => $key, 'value' => $source[ $key ], ); @@ -104,6 +116,7 @@ public static function register() { ) ); + // Register 'metaData' field on WC CRUD types. $types = array( 'Coupon', 'Customer', @@ -130,7 +143,7 @@ public static function register() { 'type' => 'String', 'description' => __( 'Retrieve meta by key', 'wp-graphql-woocommerce' ), ), - 'keysIn' => array( + 'keysIn' => array( 'type' => array( 'list_of' => 'String' ), 'description' => __( 'Retrieve multiple metas by key', 'wp-graphql-woocommerce' ), ), @@ -140,21 +153,56 @@ public static function register() { ), ), 'resolve' => function( $source, array $args ) { + // Set unique flag. $single = ! empty( $args['multiple'] ) ? ! $args['multiple'] : true; - $data = array(); - if ( ! empty( $args['key'] ) ) { - $data[ $args['key'] ] = $source->get_meta( $args['key'], $single ); - } elseif ( ! empty( $args['keysIn'] ) ) { - $data = array(); - foreach ( $args['keysIn'] as $key ) { - $data[ $key ] = $source->get_meta( $key, $single ); + // Check "key" argument and format meta_data objects. + if ( ! empty( $args['key'] ) && $source->meta_exists( $args['key'] ) ) { + $data = $source->get_meta( $args['key'], $single ); + if ( ! is_array( $data ) ) { + $data = array_filter( + $source->get_meta_data(), + function( $meta ) use ( $data ) { + return $meta->value === $data; + } + ); } - } else { - $data = $source->get_meta_data(); + } elseif ( ! empty( $args['keysIn'] ) ) { // Check "keysIn" argument and format meta_data objects. + $keys = $args['keysIn']; + + $found = array(); + $data = array_filter( + $source->get_meta_data(), + function( $meta ) use ( $keys, $single, &$found ) { + if ( in_array( $meta->key, $keys, true ) ) { + if ( $single ) { + if ( ! in_array( $meta->key, $found, true ) ) { + $found[] = $meta->key; + return true; + } + return false; + } + return true; + } + } + ); + } else { // If no arguments set return all meta (in accordance with unique flag). + $found = array(); + $data = array_filter( + $source->get_meta_data(), + function( $meta ) use ( $single, &$found ) { + if ( $single ) { + if ( ! in_array( $meta->key, $found, true ) ) { + $found[] = $meta->key; + return true; + } + return false; + } + return true; + } + ); } - \codecept_debug( $source->get_meta_data() ); return ! empty( $data ) ? $data : null; }, ) diff --git a/tests/_support/Helper/crud-helpers/coupon.php b/tests/_support/Helper/crud-helpers/coupon.php index 22967b8f1..55329ebca 100644 --- a/tests/_support/Helper/crud-helpers/coupon.php +++ b/tests/_support/Helper/crud-helpers/coupon.php @@ -17,11 +17,6 @@ public function create( $args = array(), $save = true ) { // Create new coupon crud object instance. $coupon = new WC_Coupon(); - // Set meta data. - if ( ! empty( $args['meta_data'] ) ) { - $coupon->set_meta_data( $args['meta_data'] ); - } - // Set props. $amount = $this->dummy->number( 0, 75 ); $coupon->set_props( @@ -37,6 +32,11 @@ public function create( $args = array(), $save = true ) { ) ); + // Set meta data. + if ( ! empty( $args['meta_data'] ) ) { + $coupon->set_meta_data( $args['meta_data'] ); + } + // Return instance in not saving. if( ! $save ) { return $coupon; diff --git a/tests/_support/Helper/crud-helpers/customer.php b/tests/_support/Helper/crud-helpers/customer.php index 5c182b700..97f73a79a 100644 --- a/tests/_support/Helper/crud-helpers/customer.php +++ b/tests/_support/Helper/crud-helpers/customer.php @@ -28,6 +28,7 @@ public function create( $args = array() ) { $email = $this->dummy->email(); $phone = $this->dummy->telephone(); + // Set data. $customer->set_props( array_merge( array( @@ -67,6 +68,11 @@ public function create( $args = array() ) { ) ); + // Set meta data. + if ( ! empty( $args['meta_data'] ) ) { + $customer->set_meta_data( $args['meta_data'] ); + } + return absint( $customer->save() ); } diff --git a/tests/_support/Helper/crud-helpers/order-item.php b/tests/_support/Helper/crud-helpers/order-item.php index 69230aace..41a5a5805 100644 --- a/tests/_support/Helper/crud-helpers/order-item.php +++ b/tests/_support/Helper/crud-helpers/order-item.php @@ -48,9 +48,7 @@ public function add_coupon( $order, $coupon_id = 0, $save = true ) { public function add_fee( $order, $args = array(), $save = true ) { // Retrieve order. - if ( ! is_a( $order, WC_Order::class ) ) { - $order = new WC_Order( $order ); - } + $order = new WC_Order( $order ); // Get thre customer country code. $country_code = $order->get_shipping_country(); @@ -76,6 +74,12 @@ public function add_fee( $order, $args = array(), $save = true ) { if ( ! empty( $args ) ) { $item->set_props( $args ); } + + // Set meta data. + if ( ! empty( $args['meta_data'] ) ) { + $item->set_meta_data( $args['meta_data'] ); + } + // Calculating Fee taxes $item->calculate_taxes( $calculate_tax_for ); @@ -113,6 +117,11 @@ public function add_shipping( $order, $args = array(), $save = true ) { ) ); + // Set meta data. + if ( ! empty( $args['meta_data'] ) ) { + $item->set_meta_data( $args['meta_data'] ); + } + $item_id = $item->save(); $order->add_item( $item ); @@ -151,6 +160,12 @@ public function add_tax( $order, $args = array(), $save = true ) { $args ) ); + + // Set meta data. + if ( ! empty( $args['meta_data'] ) ) { + $item->set_meta_data( $args['meta_data'] ); + } + $item->save(); $order->add_item( $item ); @@ -189,6 +204,11 @@ public function add_line_item( $order, $args = array(), $save = true ) { ) ); + // Set meta data. + if ( ! empty( $args['meta_data'] ) ) { + $item->set_meta_data( $args['meta_data'] ); + } + $order->add_item( $item ); if ( ! $save ) { diff --git a/tests/_support/Helper/crud-helpers/order.php b/tests/_support/Helper/crud-helpers/order.php index d51298fad..f97ce0baf 100644 --- a/tests/_support/Helper/crud-helpers/order.php +++ b/tests/_support/Helper/crud-helpers/order.php @@ -141,7 +141,12 @@ public function create( $args = array(), $items = array() ) { $order->set_cart_tax( 0 ); $order->set_shipping_tax( 0 ); $order->set_total( 50 ); // 4 x $10 simple helper product - + + // Set meta data. + if ( ! empty( $args['meta_data'] ) ) { + $order->set_meta_data( $args['meta_data'] ); + } + // Save and return ID. return $order->save(); } diff --git a/tests/_support/Helper/crud-helpers/product-variation.php b/tests/_support/Helper/crud-helpers/product-variation.php index 4ebd3a930..e660bbcf2 100644 --- a/tests/_support/Helper/crud-helpers/product-variation.php +++ b/tests/_support/Helper/crud-helpers/product-variation.php @@ -40,6 +40,9 @@ public function create( $product_id, $args = array() ) { ) ); $variation_1->set_attributes( array( 'pa_size' => 'small' ) ); + if ( ! empty( $args['meta_data'] ) ) { + $variation_1->set_meta_data( $args['meta_data'] ); + } // Create medium size variation with image $image_id = \wp_insert_post( @@ -64,6 +67,9 @@ public function create( $product_id, $args = array() ) { ) ); $variation_2->set_attributes( array( 'pa_size' => 'medium' ) ); + if ( ! empty( $args['meta_data'] ) ) { + $variation_2->set_meta_data( $args['meta_data'] ); + } // Create large size variation $variation_3 = new WC_Product_Variation(); @@ -76,6 +82,9 @@ public function create( $product_id, $args = array() ) { ) ); $variation_3->set_attributes( array( 'pa_size' => 'large' ) ); + if ( ! empty( $args['meta_data'] ) ) { + $variation_3->set_meta_data( $args['meta_data'] ); + } return array( 'variations' => array( diff --git a/tests/_support/Helper/crud-helpers/product.php b/tests/_support/Helper/crud-helpers/product.php index a210dd123..584cc42de 100644 --- a/tests/_support/Helper/crud-helpers/product.php +++ b/tests/_support/Helper/crud-helpers/product.php @@ -145,6 +145,10 @@ public function create_variable( $args = array() ) { ) ); + if ( ! empty( $args['meta_data'] ) ) { + $product->set_meta_data( $args['meta_data'] ); + } + // Create and add size attribute. $attribute_data = $this->create_attribute( 'size', array( 'small', 'medium', 'large' ) ); // Create all attribute related things. $attribute_1 = new WC_Product_Attribute(); diff --git a/tests/_support/Helper/crud-helpers/refund.php b/tests/_support/Helper/crud-helpers/refund.php index 85bf081ed..60226fe14 100644 --- a/tests/_support/Helper/crud-helpers/refund.php +++ b/tests/_support/Helper/crud-helpers/refund.php @@ -32,6 +32,11 @@ public function create( $order, $args = array() ) { ) ); + if ( ! empty( $refund ) && ! empty( $args['meta_data'] ) ) { + $refund->set_meta_data( $args['meta_data'] ); + $refund->save_meta_data(); + } + return ! empty( $refund ) ? $refund->get_id() : 0; } diff --git a/tests/wpunit/MetaDataQueriesTest.php b/tests/wpunit/MetaDataQueriesTest.php index 18f181954..462a5c410 100644 --- a/tests/wpunit/MetaDataQueriesTest.php +++ b/tests/wpunit/MetaDataQueriesTest.php @@ -37,9 +37,22 @@ public function tearDown() { private function createObjects() { $data = array( 'meta_data' => array( - 'meta_1' => 'test_meta_1', - 'meta_2' => 'test_meta_2' - ) + array( + 'id' => 0, + 'key' => 'meta_1', + 'value' => 'test_meta_1' + ), + array( + 'id' => 0, + 'key' => 'meta_2', + 'value' => 'test_meta_2' + ), + array( + 'id' => 0, + 'key' => 'meta_1', + 'value' => 'test_meta_3' + ), + ), ); // Create Coupon with meta data. @@ -48,21 +61,26 @@ private function createObjects() { // Create Customer with meta data. $this->customer_id = $this->customers->create( $data ); - // Create Order with meta data. - $this->order_id = $this->orders->create( $data ); - $this->order_items->add_coupon( $this->order_id, $this->coupon_id ); + // Create Order and Refund with meta data. + $this->order_id = $this->orders->create( $data ); + $this->order_items->add_fee( $this->order_id, $data ); + $this->refund_id = $this->refunds->create( $this->order_id, $data ); // Create Products with meta data. $this->product_id = $this->products->create_variable( $data ); $this->variation_ids = $this->variations->create( $this->product_id, $data ); // Add Cart Item with extra data. + $cart_meta_data = array( + 'meta_1' => 'test_meta_1', + 'meta_2' => 'test_meta_2' + ); $this->cart_item_key = WC()->cart->add_to_cart( $this->product_id, 2, $this->variation_ids['variations'][1], array(), - $data['meta_data'] + $cart_meta_data ); } @@ -187,10 +205,10 @@ public function testCartMetaDataQueries() { public function testCouponMetaDataQueries() { $id = Relay::toGlobalId( 'shop_coupon', $this->coupon_id ); $query = ' - query ($id: ID!, $key: String, $keysIn: [String]) { + query ($id: ID!, $key: String, $keysIn: [String], $multiple: Boolean) { coupon(id: $id) { id - metaData(key: $key, keysIn: $keysIn) { + metaData(key: $key, keysIn: $keysIn, multiple: $multiple) { key value } @@ -285,6 +303,100 @@ public function testCouponMetaDataQueries() { codecept_debug( $actual ); $this->assertEqualSets( $expected, $actual ); + + /** + * Assertion Four + * + * query w/ "key" filter and "multiple" set to true to get non-unique results. + */ + $variables = array( 'id' => $id, 'key' => 'meta_1', 'multiple' => true ); + $actual = graphql( array( 'query' => $query, 'variables' => $variables ) ); + $expected = array( + 'data' => array( + 'coupon' => array( + 'id' => $id, + 'metaData' => array( + array( + 'key' => 'meta_1', + 'value' => 'test_meta_1', + ), + array( + 'key' => 'meta_1', + 'value' => 'test_meta_3', + ), + ) + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEqualSets( $expected, $actual ); + + /** + * Assertion Five + * + * query w/ "keysIn" filter and "multiple" set to true to get non-unique results. + */ + $variables = array( 'id' => $id, 'keysIn' => array( 'meta_1' ), 'multiple' => true ); + $actual = graphql( array( 'query' => $query, 'variables' => $variables ) ); + $expected = array( + 'data' => array( + 'coupon' => array( + 'id' => $id, + 'metaData' => array( + array( + 'key' => 'meta_1', + 'value' => 'test_meta_1', + ), + array( + 'key' => 'meta_1', + 'value' => 'test_meta_3', + ), + ) + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEqualSets( $expected, $actual ); + + /** + * Assertion Six + * + * query w/o filters and "multiple" set to true to get non-unique results. + */ + $variables = array( 'id' => $id, 'multiple' => true ); + $actual = graphql( array( 'query' => $query, 'variables' => $variables ) ); + $expected = array( + 'data' => array( + 'coupon' => array( + 'id' => $id, + 'metaData' => array( + array( + 'key' => 'meta_1', + 'value' => 'test_meta_1', + ), + array( + 'key' => 'meta_2', + 'value' => 'test_meta_2', + ), + array( + 'key' => 'meta_1', + 'value' => 'test_meta_3', + ), + ) + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEqualSets( $expected, $actual ); } public function testCustomerMetaDataQueries() { @@ -339,7 +451,7 @@ public function testOrderMetaDataQueries() { key value } - couponLines { + feeLines { nodes { metaData { key @@ -375,7 +487,7 @@ public function testOrderMetaDataQueries() { 'value' => 'test_meta_2', ), ), - 'couponLines' => array( + 'feeLines' => array( 'nodes' => array( array( 'metaData' => array( diff --git a/vendor/autoload.php b/vendor/autoload.php index 28c6df14f..2aa19cc22 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit7a6810d883e7e56f4120cefc43c77766::getLoader(); +return ComposerAutoloaderInit83ea8ceeec7856c3ed76cc34ad81baa1::getLoader(); diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index fce8549f0..95f7e0978 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -279,7 +279,7 @@ public function isClassMapAuthoritative() */ public function setApcuPrefix($apcuPrefix) { - $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; + $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; } /** diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 028178aca..e7b07328d 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -6,2506 +6,6 @@ $baseDir = dirname($vendorDir); return array( - 'BaconStringUtils\\Filter\\Slugify' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Filter/Slugify.php', - 'BaconStringUtils\\Filter\\SlugifyFactory' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Filter/SlugifyFactory.php', - 'BaconStringUtils\\Module' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Module.php', - 'BaconStringUtils\\Slugifier' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Slugifier.php', - 'BaconStringUtils\\SlugifierFactory' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/SlugifierFactory.php', - 'BaconStringUtils\\UniDecoder' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/UniDecoder.php', - 'Behat\\Gherkin\\Cache\\CacheInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Cache/CacheInterface.php', - 'Behat\\Gherkin\\Cache\\FileCache' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Cache/FileCache.php', - 'Behat\\Gherkin\\Cache\\MemoryCache' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Cache/MemoryCache.php', - 'Behat\\Gherkin\\Exception\\CacheException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/CacheException.php', - 'Behat\\Gherkin\\Exception\\Exception' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/Exception.php', - 'Behat\\Gherkin\\Exception\\LexerException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/LexerException.php', - 'Behat\\Gherkin\\Exception\\NodeException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/NodeException.php', - 'Behat\\Gherkin\\Exception\\ParserException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/ParserException.php', - 'Behat\\Gherkin\\Filter\\ComplexFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/ComplexFilter.php', - 'Behat\\Gherkin\\Filter\\ComplexFilterInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/ComplexFilterInterface.php', - 'Behat\\Gherkin\\Filter\\FeatureFilterInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/FeatureFilterInterface.php', - 'Behat\\Gherkin\\Filter\\FilterInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/FilterInterface.php', - 'Behat\\Gherkin\\Filter\\LineFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/LineFilter.php', - 'Behat\\Gherkin\\Filter\\LineRangeFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/LineRangeFilter.php', - 'Behat\\Gherkin\\Filter\\NameFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/NameFilter.php', - 'Behat\\Gherkin\\Filter\\NarrativeFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/NarrativeFilter.php', - 'Behat\\Gherkin\\Filter\\PathsFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/PathsFilter.php', - 'Behat\\Gherkin\\Filter\\RoleFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/RoleFilter.php', - 'Behat\\Gherkin\\Filter\\SimpleFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/SimpleFilter.php', - 'Behat\\Gherkin\\Filter\\TagFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/TagFilter.php', - 'Behat\\Gherkin\\Gherkin' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Gherkin.php', - 'Behat\\Gherkin\\Keywords\\ArrayKeywords' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/ArrayKeywords.php', - 'Behat\\Gherkin\\Keywords\\CachedArrayKeywords' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/CachedArrayKeywords.php', - 'Behat\\Gherkin\\Keywords\\CucumberKeywords' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/CucumberKeywords.php', - 'Behat\\Gherkin\\Keywords\\KeywordsDumper' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/KeywordsDumper.php', - 'Behat\\Gherkin\\Keywords\\KeywordsInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/KeywordsInterface.php', - 'Behat\\Gherkin\\Lexer' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Lexer.php', - 'Behat\\Gherkin\\Loader\\AbstractFileLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/AbstractFileLoader.php', - 'Behat\\Gherkin\\Loader\\ArrayLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/ArrayLoader.php', - 'Behat\\Gherkin\\Loader\\DirectoryLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/DirectoryLoader.php', - 'Behat\\Gherkin\\Loader\\FileLoaderInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/FileLoaderInterface.php', - 'Behat\\Gherkin\\Loader\\GherkinFileLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/GherkinFileLoader.php', - 'Behat\\Gherkin\\Loader\\LoaderInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/LoaderInterface.php', - 'Behat\\Gherkin\\Loader\\YamlFileLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/YamlFileLoader.php', - 'Behat\\Gherkin\\Node\\ArgumentInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ArgumentInterface.php', - 'Behat\\Gherkin\\Node\\BackgroundNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/BackgroundNode.php', - 'Behat\\Gherkin\\Node\\ExampleNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ExampleNode.php', - 'Behat\\Gherkin\\Node\\ExampleTableNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ExampleTableNode.php', - 'Behat\\Gherkin\\Node\\FeatureNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/FeatureNode.php', - 'Behat\\Gherkin\\Node\\KeywordNodeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/KeywordNodeInterface.php', - 'Behat\\Gherkin\\Node\\NodeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/NodeInterface.php', - 'Behat\\Gherkin\\Node\\OutlineNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/OutlineNode.php', - 'Behat\\Gherkin\\Node\\PyStringNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/PyStringNode.php', - 'Behat\\Gherkin\\Node\\ScenarioInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioInterface.php', - 'Behat\\Gherkin\\Node\\ScenarioLikeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioLikeInterface.php', - 'Behat\\Gherkin\\Node\\ScenarioNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioNode.php', - 'Behat\\Gherkin\\Node\\StepContainerInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/StepContainerInterface.php', - 'Behat\\Gherkin\\Node\\StepNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/StepNode.php', - 'Behat\\Gherkin\\Node\\TableNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/TableNode.php', - 'Behat\\Gherkin\\Node\\TaggedNodeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/TaggedNodeInterface.php', - 'Behat\\Gherkin\\Parser' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Parser.php', - 'Cache_Command' => $vendorDir . '/wp-cli/cache-command/src/Cache_Command.php', - 'Capabilities_Command' => $vendorDir . '/wp-cli/role-command/src/Capabilities_Command.php', - 'Carbon\\Carbon' => $vendorDir . '/nesbot/carbon/src/Carbon/Carbon.php', - 'Carbon\\CarbonImmutable' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonImmutable.php', - 'Carbon\\CarbonInterface' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonInterface.php', - 'Carbon\\CarbonInterval' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonInterval.php', - 'Carbon\\CarbonPeriod' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonPeriod.php', - 'Carbon\\CarbonTimeZone' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonTimeZone.php', - 'Carbon\\Exceptions\\InvalidDateException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php', - 'Carbon\\Factory' => $vendorDir . '/nesbot/carbon/src/Carbon/Factory.php', - 'Carbon\\FactoryImmutable' => $vendorDir . '/nesbot/carbon/src/Carbon/FactoryImmutable.php', - 'Carbon\\Language' => $vendorDir . '/nesbot/carbon/src/Carbon/Language.php', - 'Carbon\\Laravel\\ServiceProvider' => $vendorDir . '/nesbot/carbon/src/Carbon/Laravel/ServiceProvider.php', - 'Carbon\\Traits\\Boundaries' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Boundaries.php', - 'Carbon\\Traits\\Comparison' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Comparison.php', - 'Carbon\\Traits\\Converter' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Converter.php', - 'Carbon\\Traits\\Creator' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Creator.php', - 'Carbon\\Traits\\Date' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Date.php', - 'Carbon\\Traits\\Difference' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Difference.php', - 'Carbon\\Traits\\Localization' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Localization.php', - 'Carbon\\Traits\\Macro' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Macro.php', - 'Carbon\\Traits\\Modifiers' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Modifiers.php', - 'Carbon\\Traits\\Mutability' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Mutability.php', - 'Carbon\\Traits\\Options' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Options.php', - 'Carbon\\Traits\\Rounding' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Rounding.php', - 'Carbon\\Traits\\Serialization' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Serialization.php', - 'Carbon\\Traits\\Test' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Test.php', - 'Carbon\\Traits\\Timestamp' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Timestamp.php', - 'Carbon\\Traits\\Units' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Units.php', - 'Carbon\\Traits\\Week' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Week.php', - 'Carbon\\Translator' => $vendorDir . '/nesbot/carbon/src/Carbon/Translator.php', - 'Checksum_Base_Command' => $vendorDir . '/wp-cli/checksum-command/src/Checksum_Base_Command.php', - 'Checksum_Core_Command' => $vendorDir . '/wp-cli/checksum-command/src/Checksum_Core_Command.php', - 'Checksum_Plugin_Command' => $vendorDir . '/wp-cli/checksum-command/src/Checksum_Plugin_Command.php', - 'Codeception\\Actor' => $vendorDir . '/codeception/codeception/src/Codeception/Actor.php', - 'Codeception\\Application' => $vendorDir . '/codeception/codeception/src/Codeception/Application.php', - 'Codeception\\Codecept' => $vendorDir . '/codeception/codeception/src/Codeception/Codecept.php', - 'Codeception\\Command\\Bootstrap' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Bootstrap.php', - 'Codeception\\Command\\Build' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Build.php', - 'Codeception\\Command\\Clean' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Clean.php', - 'Codeception\\Command\\Completion' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Completion.php', - 'Codeception\\Command\\CompletionFallback' => $vendorDir . '/codeception/codeception/src/Codeception/Command/CompletionFallback.php', - 'Codeception\\Command\\ConfigValidate' => $vendorDir . '/codeception/codeception/src/Codeception/Command/ConfigValidate.php', - 'Codeception\\Command\\Console' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Console.php', - 'Codeception\\Command\\DryRun' => $vendorDir . '/codeception/codeception/src/Codeception/Command/DryRun.php', - 'Codeception\\Command\\GenerateCept' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateCept.php', - 'Codeception\\Command\\GenerateCest' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateCest.php', - 'Codeception\\Command\\GenerateEnvironment' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateEnvironment.php', - 'Codeception\\Command\\GenerateFeature' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateFeature.php', - 'Codeception\\Command\\GenerateGroup' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateGroup.php', - 'Codeception\\Command\\GenerateHelper' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateHelper.php', - 'Codeception\\Command\\GeneratePageObject' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GeneratePageObject.php', - 'Codeception\\Command\\GenerateScenarios' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateScenarios.php', - 'Codeception\\Command\\GenerateSnapshot' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateSnapshot.php', - 'Codeception\\Command\\GenerateStepObject' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateStepObject.php', - 'Codeception\\Command\\GenerateSuite' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateSuite.php', - 'Codeception\\Command\\GenerateTest' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateTest.php', - 'Codeception\\Command\\GenerateWPAjax' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPAjax.php', - 'Codeception\\Command\\GenerateWPCanonical' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPCanonical.php', - 'Codeception\\Command\\GenerateWPRestApi' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestApi.php', - 'Codeception\\Command\\GenerateWPRestController' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestController.php', - 'Codeception\\Command\\GenerateWPRestPostTypeController' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestPostTypeController.php', - 'Codeception\\Command\\GenerateWPUnit' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPUnit.php', - 'Codeception\\Command\\GenerateWPXMLRPC' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPXMLRPC.php', - 'Codeception\\Command\\GherkinSnippets' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GherkinSnippets.php', - 'Codeception\\Command\\GherkinSteps' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GherkinSteps.php', - 'Codeception\\Command\\Init' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Init.php', - 'Codeception\\Command\\Run' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Run.php', - 'Codeception\\Command\\SelfUpdate' => $vendorDir . '/codeception/codeception/src/Codeception/Command/SelfUpdate.php', - 'Codeception\\Command\\Shared\\Config' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Shared/Config.php', - 'Codeception\\Command\\Shared\\FileSystem' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Shared/FileSystem.php', - 'Codeception\\Command\\Shared\\Style' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Shared/Style.php', - 'Codeception\\Configuration' => $vendorDir . '/codeception/codeception/src/Codeception/Configuration.php', - 'Codeception\\Coverage\\Filter' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Filter.php', - 'Codeception\\Coverage\\Subscriber\\Local' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/Local.php', - 'Codeception\\Coverage\\Subscriber\\LocalServer' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/LocalServer.php', - 'Codeception\\Coverage\\Subscriber\\Printer' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/Printer.php', - 'Codeception\\Coverage\\Subscriber\\RemoteServer' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/RemoteServer.php', - 'Codeception\\Coverage\\SuiteSubscriber' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/SuiteSubscriber.php', - 'Codeception\\CustomCommandInterface' => $vendorDir . '/codeception/codeception/src/Codeception/CustomCommandInterface.php', - 'Codeception\\Event\\FailEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/FailEvent.php', - 'Codeception\\Event\\PrintResultEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/PrintResultEvent.php', - 'Codeception\\Event\\StepEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/StepEvent.php', - 'Codeception\\Event\\SuiteEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/SuiteEvent.php', - 'Codeception\\Event\\TestEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/TestEvent.php', - 'Codeception\\Events' => $vendorDir . '/codeception/codeception/src/Codeception/Events.php', - 'Codeception\\Example' => $vendorDir . '/codeception/codeception/src/Codeception/Example.php', - 'Codeception\\Exception\\ConditionalAssertionFailed' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ConditionalAssertionFailed.php', - 'Codeception\\Exception\\ConfigurationException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ConfigurationException.php', - 'Codeception\\Exception\\ConnectionException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ConnectionException.php', - 'Codeception\\Exception\\ContentNotFound' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ContentNotFound.php', - 'Codeception\\Exception\\ElementNotFound' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ElementNotFound.php', - 'Codeception\\Exception\\ExtensionException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ExtensionException.php', - 'Codeception\\Exception\\ExternalUrlException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ExternalUrlException.php', - 'Codeception\\Exception\\Fail' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/Fail.php', - 'Codeception\\Exception\\Incomplete' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/Incomplete.php', - 'Codeception\\Exception\\InjectionException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/InjectionException.php', - 'Codeception\\Exception\\MalformedLocatorException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/MalformedLocatorException.php', - 'Codeception\\Exception\\ModuleConfigException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleConfigException.php', - 'Codeception\\Exception\\ModuleConflictException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleConflictException.php', - 'Codeception\\Exception\\ModuleException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleException.php', - 'Codeception\\Exception\\ModuleRequireException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleRequireException.php', - 'Codeception\\Exception\\ParseException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ParseException.php', - 'Codeception\\Exception\\RemoteException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/RemoteException.php', - 'Codeception\\Exception\\Skip' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/Skip.php', - 'Codeception\\Exception\\TestParseException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/TestParseException.php', - 'Codeception\\Exception\\TestRuntimeException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/TestRuntimeException.php', - 'Codeception\\Extension' => $vendorDir . '/codeception/codeception/src/Codeception/Extension.php', - 'Codeception\\Extension\\DotReporter' => $vendorDir . '/codeception/codeception/ext/DotReporter.php', - 'Codeception\\Extension\\Logger' => $vendorDir . '/codeception/codeception/ext/Logger.php', - 'Codeception\\Extension\\Recorder' => $vendorDir . '/codeception/codeception/ext/Recorder.php', - 'Codeception\\Extension\\RunBefore' => $vendorDir . '/codeception/codeception/ext/RunBefore.php', - 'Codeception\\Extension\\RunFailed' => $vendorDir . '/codeception/codeception/ext/RunFailed.php', - 'Codeception\\Extension\\RunProcess' => $vendorDir . '/codeception/codeception/ext/RunProcess.php', - 'Codeception\\Extension\\SimpleReporter' => $vendorDir . '/codeception/codeception/ext/SimpleReporter.php', - 'Codeception\\GroupObject' => $vendorDir . '/codeception/codeception/src/Codeception/GroupObject.php', - 'Codeception\\InitTemplate' => $vendorDir . '/codeception/codeception/src/Codeception/InitTemplate.php', - 'Codeception\\Lib\\Actor\\Shared\\Comment' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Actor/Shared/Comment.php', - 'Codeception\\Lib\\Actor\\Shared\\Friend' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Actor/Shared/Friend.php', - 'Codeception\\Lib\\Connector\\Guzzle' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Guzzle.php', - 'Codeception\\Lib\\Connector\\Guzzle6' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Guzzle6.php', - 'Codeception\\Lib\\Connector\\Laravel5' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Laravel5.php', - 'Codeception\\Lib\\Connector\\Laravel5\\ExceptionHandlerDecorator' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Laravel5/ExceptionHandlerDecorator.php', - 'Codeception\\Lib\\Connector\\Lumen' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Lumen.php', - 'Codeception\\Lib\\Connector\\Lumen\\DummyKernel' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Lumen/DummyKernel.php', - 'Codeception\\Lib\\Connector\\Phalcon' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Phalcon.php', - 'Codeception\\Lib\\Connector\\Phalcon\\MemorySession' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Phalcon/MemorySession.php', - 'Codeception\\Lib\\Connector\\Shared\\LaravelCommon' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Shared/LaravelCommon.php', - 'Codeception\\Lib\\Connector\\Shared\\PhpSuperGlobalsConverter' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Shared/PhpSuperGlobalsConverter.php', - 'Codeception\\Lib\\Connector\\Symfony' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Symfony.php', - 'Codeception\\Lib\\Connector\\Universal' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Universal.php', - 'Codeception\\Lib\\Connector\\Yii1' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii1.php', - 'Codeception\\Lib\\Connector\\Yii2' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2.php', - 'Codeception\\Lib\\Connector\\Yii2\\ConnectionWatcher' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/ConnectionWatcher.php', - 'Codeception\\Lib\\Connector\\Yii2\\FixturesStore' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/FixturesStore.php', - 'Codeception\\Lib\\Connector\\Yii2\\Logger' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/Logger.php', - 'Codeception\\Lib\\Connector\\Yii2\\TestMailer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/TestMailer.php', - 'Codeception\\Lib\\Connector\\Yii2\\TransactionForcer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/TransactionForcer.php', - 'Codeception\\Lib\\Connector\\ZF1' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZF1.php', - 'Codeception\\Lib\\Connector\\ZF2' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZF2.php', - 'Codeception\\Lib\\Connector\\ZF2\\PersistentServiceManager' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZF2/PersistentServiceManager.php', - 'Codeception\\Lib\\Connector\\ZendExpressive' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZendExpressive.php', - 'Codeception\\Lib\\Connector\\ZendExpressive\\ResponseCollector' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZendExpressive/ResponseCollector.php', - 'Codeception\\Lib\\Console\\Colorizer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/Colorizer.php', - 'Codeception\\Lib\\Console\\DiffFactory' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/DiffFactory.php', - 'Codeception\\Lib\\Console\\Message' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/Message.php', - 'Codeception\\Lib\\Console\\MessageFactory' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/MessageFactory.php', - 'Codeception\\Lib\\Console\\Output' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/Output.php', - 'Codeception\\Lib\\DbPopulator' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/DbPopulator.php', - 'Codeception\\Lib\\Di' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Di.php', - 'Codeception\\Lib\\Driver\\AmazonSQS' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/AmazonSQS.php', - 'Codeception\\Lib\\Driver\\Beanstalk' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Beanstalk.php', - 'Codeception\\Lib\\Driver\\Db' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Db.php', - 'Codeception\\Lib\\Driver\\ExtendedDbDriver' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Driver/ExtendedDbDriver.php', - 'Codeception\\Lib\\Driver\\ExtendedMySql' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Driver/ExtendedMySql.php', - 'Codeception\\Lib\\Driver\\Facebook' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Facebook.php', - 'Codeception\\Lib\\Driver\\Iron' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Iron.php', - 'Codeception\\Lib\\Driver\\MongoDb' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/MongoDb.php', - 'Codeception\\Lib\\Driver\\MySql' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/MySql.php', - 'Codeception\\Lib\\Driver\\Oci' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Oci.php', - 'Codeception\\Lib\\Driver\\PostgreSql' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/PostgreSql.php', - 'Codeception\\Lib\\Driver\\SqlSrv' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/SqlSrv.php', - 'Codeception\\Lib\\Driver\\Sqlite' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Sqlite.php', - 'Codeception\\Lib\\Framework' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Framework.php', - 'Codeception\\Lib\\Friend' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Friend.php', - 'Codeception\\Lib\\Generator\\AbstractGenerator' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/AbstractGenerator.php', - 'Codeception\\Lib\\Generator\\AcceptanceSuiteConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/AcceptanceSuiteConfig.php', - 'Codeception\\Lib\\Generator\\Actions' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Actions.php', - 'Codeception\\Lib\\Generator\\Actor' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Actor.php', - 'Codeception\\Lib\\Generator\\Cept' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Cept.php', - 'Codeception\\Lib\\Generator\\Cest' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Cest.php', - 'Codeception\\Lib\\Generator\\Feature' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Feature.php', - 'Codeception\\Lib\\Generator\\FunctionalSuiteConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/FunctionalSuiteConfig.php', - 'Codeception\\Lib\\Generator\\GeneratorInterface' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/GeneratorInterface.php', - 'Codeception\\Lib\\Generator\\GherkinSnippets' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/GherkinSnippets.php', - 'Codeception\\Lib\\Generator\\Group' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Group.php', - 'Codeception\\Lib\\Generator\\Helper' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Helper.php', - 'Codeception\\Lib\\Generator\\IntegrationSuiteConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/IntegrationSuiteConfig.php', - 'Codeception\\Lib\\Generator\\IntegrationSuiteThemeConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/IntegrationSuiteThemeConfig.php', - 'Codeception\\Lib\\Generator\\PageObject' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/PageObject.php', - 'Codeception\\Lib\\Generator\\Shared\\Classname' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Shared/Classname.php', - 'Codeception\\Lib\\Generator\\Snapshot' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Snapshot.php', - 'Codeception\\Lib\\Generator\\StepObject' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/StepObject.php', - 'Codeception\\Lib\\Generator\\Test' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Test.php', - 'Codeception\\Lib\\Generator\\WPUnit' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/WPUnit.php', - 'Codeception\\Lib\\GroupManager' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/GroupManager.php', - 'Codeception\\Lib\\InnerBrowser' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/InnerBrowser.php', - 'Codeception\\Lib\\Interfaces\\API' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/API.php', - 'Codeception\\Lib\\Interfaces\\ActiveRecord' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ActiveRecord.php', - 'Codeception\\Lib\\Interfaces\\ConflictsWithModule' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ConflictsWithModule.php', - 'Codeception\\Lib\\Interfaces\\DataMapper' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/DataMapper.php', - 'Codeception\\Lib\\Interfaces\\Db' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Db.php', - 'Codeception\\Lib\\Interfaces\\DependsOnModule' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/DependsOnModule.php', - 'Codeception\\Lib\\Interfaces\\DoctrineProvider' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/DoctrineProvider.php', - 'Codeception\\Lib\\Interfaces\\ElementLocator' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ElementLocator.php', - 'Codeception\\Lib\\Interfaces\\MultiSession' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/MultiSession.php', - 'Codeception\\Lib\\Interfaces\\ORM' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ORM.php', - 'Codeception\\Lib\\Interfaces\\PageSourceSaver' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/PageSourceSaver.php', - 'Codeception\\Lib\\Interfaces\\PartedModule' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/PartedModule.php', - 'Codeception\\Lib\\Interfaces\\Queue' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Queue.php', - 'Codeception\\Lib\\Interfaces\\Remote' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Remote.php', - 'Codeception\\Lib\\Interfaces\\RequiresPackage' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/RequiresPackage.php', - 'Codeception\\Lib\\Interfaces\\ScreenshotSaver' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ScreenshotSaver.php', - 'Codeception\\Lib\\Interfaces\\SessionSnapshot' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/SessionSnapshot.php', - 'Codeception\\Lib\\Interfaces\\Web' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Web.php', - 'Codeception\\Lib\\ModuleContainer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/ModuleContainer.php', - 'Codeception\\Lib\\Notification' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Notification.php', - 'Codeception\\Lib\\ParamsLoader' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/ParamsLoader.php', - 'Codeception\\Lib\\Parser' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Parser.php', - 'Codeception\\Lib\\Shared\\LaravelCommon' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Shared/LaravelCommon.php', - 'Codeception\\Module' => $vendorDir . '/codeception/codeception/src/Codeception/Module.php', - 'Codeception\\Module\\AMQP' => $vendorDir . '/codeception/codeception/src/Codeception/Module/AMQP.php', - 'Codeception\\Module\\AngularJS' => $vendorDir . '/codeception/codeception/src/Codeception/Module/AngularJS.php', - 'Codeception\\Module\\Apc' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Apc.php', - 'Codeception\\Module\\Asserts' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Asserts.php', - 'Codeception\\Module\\Cli' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Cli.php', - 'Codeception\\Module\\DataFactory' => $vendorDir . '/codeception/codeception/src/Codeception/Module/DataFactory.php', - 'Codeception\\Module\\Db' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Db.php', - 'Codeception\\Module\\Doctrine2' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Doctrine2.php', - 'Codeception\\Module\\FTP' => $vendorDir . '/codeception/codeception/src/Codeception/Module/FTP.php', - 'Codeception\\Module\\Facebook' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Facebook.php', - 'Codeception\\Module\\Filesystem' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Filesystem.php', - 'Codeception\\Module\\Laravel5' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Laravel5.php', - 'Codeception\\Module\\Lumen' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Lumen.php', - 'Codeception\\Module\\Memcache' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Memcache.php', - 'Codeception\\Module\\MongoDb' => $vendorDir . '/codeception/codeception/src/Codeception/Module/MongoDb.php', - 'Codeception\\Module\\Phalcon' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Phalcon.php', - 'Codeception\\Module\\PhpBrowser' => $vendorDir . '/codeception/codeception/src/Codeception/Module/PhpBrowser.php', - 'Codeception\\Module\\Queue' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Queue.php', - 'Codeception\\Module\\REST' => $vendorDir . '/codeception/codeception/src/Codeception/Module/REST.php', - 'Codeception\\Module\\Redis' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Redis.php', - 'Codeception\\Module\\SOAP' => $vendorDir . '/codeception/codeception/src/Codeception/Module/SOAP.php', - 'Codeception\\Module\\Sequence' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Sequence.php', - 'Codeception\\Module\\Silex' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Silex.php', - 'Codeception\\Module\\Symfony' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Symfony.php', - 'Codeception\\Module\\WPBrowser' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPBrowser.php', - 'Codeception\\Module\\WPBrowserMethods' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPBrowserMethods.php', - 'Codeception\\Module\\WPCLI' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPCLI.php', - 'Codeception\\Module\\WPDb' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPDb.php', - 'Codeception\\Module\\WPFilesystem' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPFilesystem.php', - 'Codeception\\Module\\WPLoader' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPLoader.php', - 'Codeception\\Module\\WPQueries' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPQueries.php', - 'Codeception\\Module\\WPWebDriver' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPWebDriver.php', - 'Codeception\\Module\\WebDriver' => $vendorDir . '/codeception/codeception/src/Codeception/Module/WebDriver.php', - 'Codeception\\Module\\WordPress' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WordPress.php', - 'Codeception\\Module\\XMLRPC' => $vendorDir . '/codeception/codeception/src/Codeception/Module/XMLRPC.php', - 'Codeception\\Module\\Yii1' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Yii1.php', - 'Codeception\\Module\\Yii2' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Yii2.php', - 'Codeception\\Module\\ZF1' => $vendorDir . '/codeception/codeception/src/Codeception/Module/ZF1.php', - 'Codeception\\Module\\ZF2' => $vendorDir . '/codeception/codeception/src/Codeception/Module/ZF2.php', - 'Codeception\\Module\\ZendExpressive' => $vendorDir . '/codeception/codeception/src/Codeception/Module/ZendExpressive.php', - 'Codeception\\PHPUnit\\ConsolePrinter' => $vendorDir . '/codeception/phpunit-wrapper/src/ConsolePrinter.php', - 'Codeception\\PHPUnit\\Constraint\\Crawler' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/Crawler.php', - 'Codeception\\PHPUnit\\Constraint\\CrawlerNot' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/CrawlerNot.php', - 'Codeception\\PHPUnit\\Constraint\\JsonContains' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/JsonContains.php', - 'Codeception\\PHPUnit\\Constraint\\JsonType' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/JsonType.php', - 'Codeception\\PHPUnit\\Constraint\\Page' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/Page.php', - 'Codeception\\PHPUnit\\Constraint\\WebDriver' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/WebDriver.php', - 'Codeception\\PHPUnit\\Constraint\\WebDriverNot' => $vendorDir . '/codeception/phpunit-wrapper/src/Constraint/WebDriverNot.php', - 'Codeception\\PHPUnit\\FilterTest' => $vendorDir . '/codeception/phpunit-wrapper/src/FilterTest.php', - 'Codeception\\PHPUnit\\Init' => $vendorDir . '/codeception/phpunit-wrapper/src/Init.php', - 'Codeception\\PHPUnit\\Listener' => $vendorDir . '/codeception/phpunit-wrapper/src/Listener.php', - 'Codeception\\PHPUnit\\Log\\JUnit' => $vendorDir . '/codeception/phpunit-wrapper/src/Log/JUnit.php', - 'Codeception\\PHPUnit\\Log\\PhpUnit' => $vendorDir . '/codeception/phpunit-wrapper/src/Log/PhpUnit.php', - 'Codeception\\PHPUnit\\ResultPrinter' => $vendorDir . '/codeception/phpunit-wrapper/src/ResultPrinter.php', - 'Codeception\\PHPUnit\\ResultPrinter\\HTML' => $vendorDir . '/codeception/phpunit-wrapper/src/ResultPrinter/HTML.php', - 'Codeception\\PHPUnit\\ResultPrinter\\Report' => $vendorDir . '/codeception/phpunit-wrapper/src/ResultPrinter/Report.php', - 'Codeception\\PHPUnit\\ResultPrinter\\UI' => $vendorDir . '/codeception/phpunit-wrapper/src/ResultPrinter/UI.php', - 'Codeception\\PHPUnit\\Runner' => $vendorDir . '/codeception/phpunit-wrapper/src/Runner.php', - 'Codeception\\PHPUnit\\TestCase' => $vendorDir . '/codeception/phpunit-wrapper/src/TestCase.php', - 'Codeception\\Scenario' => $vendorDir . '/codeception/codeception/src/Codeception/Scenario.php', - 'Codeception\\Snapshot' => $vendorDir . '/codeception/codeception/src/Codeception/Snapshot.php', - 'Codeception\\Step' => $vendorDir . '/codeception/codeception/src/Codeception/Step.php', - 'Codeception\\Step\\Action' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Action.php', - 'Codeception\\Step\\Argument\\FormattedOutput' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Argument/FormattedOutput.php', - 'Codeception\\Step\\Argument\\PasswordArgument' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Argument/PasswordArgument.php', - 'Codeception\\Step\\Assertion' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Assertion.php', - 'Codeception\\Step\\Comment' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Comment.php', - 'Codeception\\Step\\Condition' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Condition.php', - 'Codeception\\Step\\ConditionalAssertion' => $vendorDir . '/codeception/codeception/src/Codeception/Step/ConditionalAssertion.php', - 'Codeception\\Step\\Executor' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Executor.php', - 'Codeception\\Step\\Incomplete' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Incomplete.php', - 'Codeception\\Step\\Meta' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Meta.php', - 'Codeception\\Step\\Skip' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Skip.php', - 'Codeception\\Stub' => $vendorDir . '/codeception/stub/src/Stub.php', - 'Codeception\\Stub\\ConsecutiveMap' => $vendorDir . '/codeception/stub/src/Stub/ConsecutiveMap.php', - 'Codeception\\Stub\\Expected' => $vendorDir . '/codeception/stub/src/Stub/Expected.php', - 'Codeception\\Stub\\StubMarshaler' => $vendorDir . '/codeception/stub/src/Stub/StubMarshaler.php', - 'Codeception\\Subscriber\\AutoRebuild' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/AutoRebuild.php', - 'Codeception\\Subscriber\\BeforeAfterTest' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/BeforeAfterTest.php', - 'Codeception\\Subscriber\\Bootstrap' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Bootstrap.php', - 'Codeception\\Subscriber\\Console' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Console.php', - 'Codeception\\Subscriber\\Dependencies' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Dependencies.php', - 'Codeception\\Subscriber\\ErrorHandler' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/ErrorHandler.php', - 'Codeception\\Subscriber\\ExtensionLoader' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/ExtensionLoader.php', - 'Codeception\\Subscriber\\FailFast' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/FailFast.php', - 'Codeception\\Subscriber\\GracefulTermination' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/GracefulTermination.php', - 'Codeception\\Subscriber\\Module' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Module.php', - 'Codeception\\Subscriber\\PrepareTest' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/PrepareTest.php', - 'Codeception\\Subscriber\\Shared\\StaticEvents' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Shared/StaticEvents.php', - 'Codeception\\Suite' => $vendorDir . '/codeception/codeception/src/Codeception/Suite.php', - 'Codeception\\SuiteManager' => $vendorDir . '/codeception/codeception/src/Codeception/SuiteManager.php', - 'Codeception\\Template\\Acceptance' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Acceptance.php', - 'Codeception\\Template\\Api' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Api.php', - 'Codeception\\Template\\Bootstrap' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Bootstrap.php', - 'Codeception\\Template\\Unit' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Unit.php', - 'Codeception\\Template\\Wpbrowser' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Template/Wpbrowser.php', - 'Codeception\\TestCase\\WPAjaxTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPAjaxTestCase.php', - 'Codeception\\TestCase\\WPCanonicalTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPCanonicalTestCase.php', - 'Codeception\\TestCase\\WPRestApiTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestApiTestCase.php', - 'Codeception\\TestCase\\WPRestControllerTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestControllerTestCase.php', - 'Codeception\\TestCase\\WPRestPostTypeControllerTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestPostTypeControllerTestCase.php', - 'Codeception\\TestCase\\WPTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPTestCase.php', - 'Codeception\\TestCase\\WPXMLRPCTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPXMLRPCTestCase.php', - 'Codeception\\TestInterface' => $vendorDir . '/codeception/codeception/src/Codeception/TestInterface.php', - 'Codeception\\Test\\Cept' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Cept.php', - 'Codeception\\Test\\Cest' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Cest.php', - 'Codeception\\Test\\Descriptor' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Descriptor.php', - 'Codeception\\Test\\Feature\\AssertionCounter' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/AssertionCounter.php', - 'Codeception\\Test\\Feature\\CodeCoverage' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/CodeCoverage.php', - 'Codeception\\Test\\Feature\\ErrorLogger' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/ErrorLogger.php', - 'Codeception\\Test\\Feature\\IgnoreIfMetadataBlocked' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/IgnoreIfMetadataBlocked.php', - 'Codeception\\Test\\Feature\\MetadataCollector' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/MetadataCollector.php', - 'Codeception\\Test\\Feature\\ScenarioLoader' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/ScenarioLoader.php', - 'Codeception\\Test\\Feature\\Stub' => $vendorDir . '/codeception/stub/src/Test/Feature/Stub.php', - 'Codeception\\Test\\Gherkin' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Gherkin.php', - 'Codeception\\Test\\Interfaces\\Dependent' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Dependent.php', - 'Codeception\\Test\\Interfaces\\Descriptive' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Descriptive.php', - 'Codeception\\Test\\Interfaces\\Plain' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Plain.php', - 'Codeception\\Test\\Interfaces\\Reported' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Reported.php', - 'Codeception\\Test\\Interfaces\\ScenarioDriven' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/ScenarioDriven.php', - 'Codeception\\Test\\Interfaces\\StrictCoverage' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/StrictCoverage.php', - 'Codeception\\Test\\Loader' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader.php', - 'Codeception\\Test\\Loader\\Cept' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Cept.php', - 'Codeception\\Test\\Loader\\Cest' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Cest.php', - 'Codeception\\Test\\Loader\\Gherkin' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Gherkin.php', - 'Codeception\\Test\\Loader\\LoaderInterface' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/LoaderInterface.php', - 'Codeception\\Test\\Loader\\Unit' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Unit.php', - 'Codeception\\Test\\Metadata' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Metadata.php', - 'Codeception\\Test\\Test' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Test.php', - 'Codeception\\Test\\Unit' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Unit.php', - 'Codeception\\Util\\ActionSequence' => $vendorDir . '/codeception/codeception/src/Codeception/Util/ActionSequence.php', - 'Codeception\\Util\\Annotation' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Annotation.php', - 'Codeception\\Util\\ArrayContainsComparator' => $vendorDir . '/codeception/codeception/src/Codeception/Util/ArrayContainsComparator.php', - 'Codeception\\Util\\Autoload' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Autoload.php', - 'Codeception\\Util\\Debug' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Debug.php', - 'Codeception\\Util\\FileSystem' => $vendorDir . '/codeception/codeception/src/Codeception/Util/FileSystem.php', - 'Codeception\\Util\\Fixtures' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Fixtures.php', - 'Codeception\\Util\\HttpCode' => $vendorDir . '/codeception/codeception/src/Codeception/Util/HttpCode.php', - 'Codeception\\Util\\JsonArray' => $vendorDir . '/codeception/codeception/src/Codeception/Util/JsonArray.php', - 'Codeception\\Util\\JsonType' => $vendorDir . '/codeception/codeception/src/Codeception/Util/JsonType.php', - 'Codeception\\Util\\Locator' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Locator.php', - 'Codeception\\Util\\Maybe' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Maybe.php', - 'Codeception\\Util\\PathResolver' => $vendorDir . '/codeception/codeception/src/Codeception/Util/PathResolver.php', - 'Codeception\\Util\\PropertyAccess' => $vendorDir . '/codeception/codeception/src/Codeception/Util/PropertyAccess.php', - 'Codeception\\Util\\ReflectionHelper' => $vendorDir . '/codeception/codeception/src/Codeception/Util/ReflectionHelper.php', - 'Codeception\\Util\\Shared\\Asserts' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Shared/Asserts.php', - 'Codeception\\Util\\Shared\\Namespaces' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Shared/Namespaces.php', - 'Codeception\\Util\\Soap' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Soap.php', - 'Codeception\\Util\\Stub' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Stub.php', - 'Codeception\\Util\\Template' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Template.php', - 'Codeception\\Util\\Uri' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Uri.php', - 'Codeception\\Util\\Xml' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Xml.php', - 'Codeception\\Util\\XmlBuilder' => $vendorDir . '/codeception/codeception/src/Codeception/Util/XmlBuilder.php', - 'Codeception\\Util\\XmlStructure' => $vendorDir . '/codeception/codeception/src/Codeception/Util/XmlStructure.php', - 'Comment_Command' => $vendorDir . '/wp-cli/entity-command/src/Comment_Command.php', - 'Comment_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Comment_Meta_Command.php', - 'Composer\\Autoload\\AutoloadGenerator' => $vendorDir . '/composer/composer/src/Composer/Autoload/AutoloadGenerator.php', - 'Composer\\Autoload\\ClassLoader' => $vendorDir . '/composer/composer/src/Composer/Autoload/ClassLoader.php', - 'Composer\\Autoload\\ClassMapGenerator' => $vendorDir . '/composer/composer/src/Composer/Autoload/ClassMapGenerator.php', - 'Composer\\CaBundle\\CaBundle' => $vendorDir . '/composer/ca-bundle/src/CaBundle.php', - 'Composer\\Cache' => $vendorDir . '/composer/composer/src/Composer/Cache.php', - 'Composer\\Command\\AboutCommand' => $vendorDir . '/composer/composer/src/Composer/Command/AboutCommand.php', - 'Composer\\Command\\ArchiveCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ArchiveCommand.php', - 'Composer\\Command\\BaseCommand' => $vendorDir . '/composer/composer/src/Composer/Command/BaseCommand.php', - 'Composer\\Command\\BaseDependencyCommand' => $vendorDir . '/composer/composer/src/Composer/Command/BaseDependencyCommand.php', - 'Composer\\Command\\CheckPlatformReqsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php', - 'Composer\\Command\\ClearCacheCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ClearCacheCommand.php', - 'Composer\\Command\\ConfigCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ConfigCommand.php', - 'Composer\\Command\\CreateProjectCommand' => $vendorDir . '/composer/composer/src/Composer/Command/CreateProjectCommand.php', - 'Composer\\Command\\DependsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/DependsCommand.php', - 'Composer\\Command\\DiagnoseCommand' => $vendorDir . '/composer/composer/src/Composer/Command/DiagnoseCommand.php', - 'Composer\\Command\\DumpAutoloadCommand' => $vendorDir . '/composer/composer/src/Composer/Command/DumpAutoloadCommand.php', - 'Composer\\Command\\ExecCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ExecCommand.php', - 'Composer\\Command\\GlobalCommand' => $vendorDir . '/composer/composer/src/Composer/Command/GlobalCommand.php', - 'Composer\\Command\\HomeCommand' => $vendorDir . '/composer/composer/src/Composer/Command/HomeCommand.php', - 'Composer\\Command\\InitCommand' => $vendorDir . '/composer/composer/src/Composer/Command/InitCommand.php', - 'Composer\\Command\\InstallCommand' => $vendorDir . '/composer/composer/src/Composer/Command/InstallCommand.php', - 'Composer\\Command\\LicensesCommand' => $vendorDir . '/composer/composer/src/Composer/Command/LicensesCommand.php', - 'Composer\\Command\\OutdatedCommand' => $vendorDir . '/composer/composer/src/Composer/Command/OutdatedCommand.php', - 'Composer\\Command\\ProhibitsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ProhibitsCommand.php', - 'Composer\\Command\\RemoveCommand' => $vendorDir . '/composer/composer/src/Composer/Command/RemoveCommand.php', - 'Composer\\Command\\RequireCommand' => $vendorDir . '/composer/composer/src/Composer/Command/RequireCommand.php', - 'Composer\\Command\\RunScriptCommand' => $vendorDir . '/composer/composer/src/Composer/Command/RunScriptCommand.php', - 'Composer\\Command\\ScriptAliasCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ScriptAliasCommand.php', - 'Composer\\Command\\SearchCommand' => $vendorDir . '/composer/composer/src/Composer/Command/SearchCommand.php', - 'Composer\\Command\\SelfUpdateCommand' => $vendorDir . '/composer/composer/src/Composer/Command/SelfUpdateCommand.php', - 'Composer\\Command\\ShowCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ShowCommand.php', - 'Composer\\Command\\StatusCommand' => $vendorDir . '/composer/composer/src/Composer/Command/StatusCommand.php', - 'Composer\\Command\\SuggestsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/SuggestsCommand.php', - 'Composer\\Command\\UpdateCommand' => $vendorDir . '/composer/composer/src/Composer/Command/UpdateCommand.php', - 'Composer\\Command\\ValidateCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ValidateCommand.php', - 'Composer\\Compiler' => $vendorDir . '/composer/composer/src/Composer/Compiler.php', - 'Composer\\Composer' => $vendorDir . '/composer/composer/src/Composer/Composer.php', - 'Composer\\Config' => $vendorDir . '/composer/composer/src/Composer/Config.php', - 'Composer\\Config\\ConfigSourceInterface' => $vendorDir . '/composer/composer/src/Composer/Config/ConfigSourceInterface.php', - 'Composer\\Config\\JsonConfigSource' => $vendorDir . '/composer/composer/src/Composer/Config/JsonConfigSource.php', - 'Composer\\Console\\Application' => $vendorDir . '/composer/composer/src/Composer/Console/Application.php', - 'Composer\\Console\\HtmlOutputFormatter' => $vendorDir . '/composer/composer/src/Composer/Console/HtmlOutputFormatter.php', - 'Composer\\DependencyResolver\\Decisions' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Decisions.php', - 'Composer\\DependencyResolver\\DefaultPolicy' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/DefaultPolicy.php', - 'Composer\\DependencyResolver\\GenericRule' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/GenericRule.php', - 'Composer\\DependencyResolver\\Operation\\InstallOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/InstallOperation.php', - 'Composer\\DependencyResolver\\Operation\\MarkAliasInstalledOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php', - 'Composer\\DependencyResolver\\Operation\\MarkAliasUninstalledOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php', - 'Composer\\DependencyResolver\\Operation\\OperationInterface' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/OperationInterface.php', - 'Composer\\DependencyResolver\\Operation\\SolverOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/SolverOperation.php', - 'Composer\\DependencyResolver\\Operation\\UninstallOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/UninstallOperation.php', - 'Composer\\DependencyResolver\\Operation\\UpdateOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/UpdateOperation.php', - 'Composer\\DependencyResolver\\PolicyInterface' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php', - 'Composer\\DependencyResolver\\Pool' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Pool.php', - 'Composer\\DependencyResolver\\Problem' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Problem.php', - 'Composer\\DependencyResolver\\Request' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Request.php', - 'Composer\\DependencyResolver\\Rule' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Rule.php', - 'Composer\\DependencyResolver\\Rule2Literals' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Rule2Literals.php', - 'Composer\\DependencyResolver\\RuleSet' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleSet.php', - 'Composer\\DependencyResolver\\RuleSetGenerator' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleSetGenerator.php', - 'Composer\\DependencyResolver\\RuleSetIterator' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleSetIterator.php', - 'Composer\\DependencyResolver\\RuleWatchChain' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleWatchChain.php', - 'Composer\\DependencyResolver\\RuleWatchGraph' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleWatchGraph.php', - 'Composer\\DependencyResolver\\RuleWatchNode' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleWatchNode.php', - 'Composer\\DependencyResolver\\Solver' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Solver.php', - 'Composer\\DependencyResolver\\SolverBugException' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/SolverBugException.php', - 'Composer\\DependencyResolver\\SolverProblemsException' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/SolverProblemsException.php', - 'Composer\\DependencyResolver\\Transaction' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Transaction.php', - 'Composer\\Downloader\\ArchiveDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/ArchiveDownloader.php', - 'Composer\\Downloader\\ChangeReportInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/ChangeReportInterface.php', - 'Composer\\Downloader\\DownloadManager' => $vendorDir . '/composer/composer/src/Composer/Downloader/DownloadManager.php', - 'Composer\\Downloader\\DownloaderInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/DownloaderInterface.php', - 'Composer\\Downloader\\DvcsDownloaderInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/DvcsDownloaderInterface.php', - 'Composer\\Downloader\\FileDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/FileDownloader.php', - 'Composer\\Downloader\\FilesystemException' => $vendorDir . '/composer/composer/src/Composer/Downloader/FilesystemException.php', - 'Composer\\Downloader\\FossilDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/FossilDownloader.php', - 'Composer\\Downloader\\GitDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/GitDownloader.php', - 'Composer\\Downloader\\GzipDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/GzipDownloader.php', - 'Composer\\Downloader\\HgDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/HgDownloader.php', - 'Composer\\Downloader\\PathDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/PathDownloader.php', - 'Composer\\Downloader\\PearPackageExtractor' => $vendorDir . '/composer/composer/src/Composer/Downloader/PearPackageExtractor.php', - 'Composer\\Downloader\\PerforceDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/PerforceDownloader.php', - 'Composer\\Downloader\\PharDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/PharDownloader.php', - 'Composer\\Downloader\\RarDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/RarDownloader.php', - 'Composer\\Downloader\\SvnDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/SvnDownloader.php', - 'Composer\\Downloader\\TarDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/TarDownloader.php', - 'Composer\\Downloader\\TransportException' => $vendorDir . '/composer/composer/src/Composer/Downloader/TransportException.php', - 'Composer\\Downloader\\VcsCapableDownloaderInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/VcsCapableDownloaderInterface.php', - 'Composer\\Downloader\\VcsDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/VcsDownloader.php', - 'Composer\\Downloader\\XzDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/XzDownloader.php', - 'Composer\\Downloader\\ZipDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/ZipDownloader.php', - 'Composer\\EventDispatcher\\Event' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/Event.php', - 'Composer\\EventDispatcher\\EventDispatcher' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/EventDispatcher.php', - 'Composer\\EventDispatcher\\EventSubscriberInterface' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/EventSubscriberInterface.php', - 'Composer\\EventDispatcher\\ScriptExecutionException' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/ScriptExecutionException.php', - 'Composer\\Exception\\NoSslException' => $vendorDir . '/composer/composer/src/Composer/Exception/NoSslException.php', - 'Composer\\Factory' => $vendorDir . '/composer/composer/src/Composer/Factory.php', - 'Composer\\IO\\BaseIO' => $vendorDir . '/composer/composer/src/Composer/IO/BaseIO.php', - 'Composer\\IO\\BufferIO' => $vendorDir . '/composer/composer/src/Composer/IO/BufferIO.php', - 'Composer\\IO\\ConsoleIO' => $vendorDir . '/composer/composer/src/Composer/IO/ConsoleIO.php', - 'Composer\\IO\\IOInterface' => $vendorDir . '/composer/composer/src/Composer/IO/IOInterface.php', - 'Composer\\IO\\NullIO' => $vendorDir . '/composer/composer/src/Composer/IO/NullIO.php', - 'Composer\\Installer' => $vendorDir . '/composer/composer/src/Composer/Installer.php', - 'Composer\\Installer\\BinaryInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/BinaryInstaller.php', - 'Composer\\Installer\\BinaryPresenceInterface' => $vendorDir . '/composer/composer/src/Composer/Installer/BinaryPresenceInterface.php', - 'Composer\\Installer\\InstallationManager' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallationManager.php', - 'Composer\\Installer\\InstallerEvent' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallerEvent.php', - 'Composer\\Installer\\InstallerEvents' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallerEvents.php', - 'Composer\\Installer\\InstallerInterface' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallerInterface.php', - 'Composer\\Installer\\LibraryInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/LibraryInstaller.php', - 'Composer\\Installer\\MetapackageInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/MetapackageInstaller.php', - 'Composer\\Installer\\NoopInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/NoopInstaller.php', - 'Composer\\Installer\\PackageEvent' => $vendorDir . '/composer/composer/src/Composer/Installer/PackageEvent.php', - 'Composer\\Installer\\PackageEvents' => $vendorDir . '/composer/composer/src/Composer/Installer/PackageEvents.php', - 'Composer\\Installer\\PearBinaryInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/PearBinaryInstaller.php', - 'Composer\\Installer\\PearInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/PearInstaller.php', - 'Composer\\Installer\\PluginInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/PluginInstaller.php', - 'Composer\\Installer\\ProjectInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/ProjectInstaller.php', - 'Composer\\Installer\\SuggestedPackagesReporter' => $vendorDir . '/composer/composer/src/Composer/Installer/SuggestedPackagesReporter.php', - 'Composer\\Json\\JsonFile' => $vendorDir . '/composer/composer/src/Composer/Json/JsonFile.php', - 'Composer\\Json\\JsonFormatter' => $vendorDir . '/composer/composer/src/Composer/Json/JsonFormatter.php', - 'Composer\\Json\\JsonManipulator' => $vendorDir . '/composer/composer/src/Composer/Json/JsonManipulator.php', - 'Composer\\Json\\JsonValidationException' => $vendorDir . '/composer/composer/src/Composer/Json/JsonValidationException.php', - 'Composer\\Package\\AliasPackage' => $vendorDir . '/composer/composer/src/Composer/Package/AliasPackage.php', - 'Composer\\Package\\Archiver\\ArchivableFilesFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFilter.php', - 'Composer\\Package\\Archiver\\ArchivableFilesFinder' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFinder.php', - 'Composer\\Package\\Archiver\\ArchiveManager' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchiveManager.php', - 'Composer\\Package\\Archiver\\ArchiverInterface' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php', - 'Composer\\Package\\Archiver\\BaseExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/BaseExcludeFilter.php', - 'Composer\\Package\\Archiver\\ComposerExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ComposerExcludeFilter.php', - 'Composer\\Package\\Archiver\\GitExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/GitExcludeFilter.php', - 'Composer\\Package\\Archiver\\HgExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/HgExcludeFilter.php', - 'Composer\\Package\\Archiver\\PharArchiver' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/PharArchiver.php', - 'Composer\\Package\\Archiver\\ZipArchiver' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ZipArchiver.php', - 'Composer\\Package\\BasePackage' => $vendorDir . '/composer/composer/src/Composer/Package/BasePackage.php', - 'Composer\\Package\\Comparer\\Comparer' => $vendorDir . '/composer/composer/src/Composer/Package/Comparer/Comparer.php', - 'Composer\\Package\\CompletePackage' => $vendorDir . '/composer/composer/src/Composer/Package/CompletePackage.php', - 'Composer\\Package\\CompletePackageInterface' => $vendorDir . '/composer/composer/src/Composer/Package/CompletePackageInterface.php', - 'Composer\\Package\\Dumper\\ArrayDumper' => $vendorDir . '/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php', - 'Composer\\Package\\Link' => $vendorDir . '/composer/composer/src/Composer/Package/Link.php', - 'Composer\\Package\\LinkConstraint\\EmptyConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/EmptyConstraint.php', - 'Composer\\Package\\LinkConstraint\\LinkConstraintInterface' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/LinkConstraintInterface.php', - 'Composer\\Package\\LinkConstraint\\MultiConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/MultiConstraint.php', - 'Composer\\Package\\LinkConstraint\\SpecificConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/SpecificConstraint.php', - 'Composer\\Package\\LinkConstraint\\VersionConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/VersionConstraint.php', - 'Composer\\Package\\Loader\\ArrayLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/ArrayLoader.php', - 'Composer\\Package\\Loader\\InvalidPackageException' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/InvalidPackageException.php', - 'Composer\\Package\\Loader\\JsonLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/JsonLoader.php', - 'Composer\\Package\\Loader\\LoaderInterface' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/LoaderInterface.php', - 'Composer\\Package\\Loader\\RootPackageLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/RootPackageLoader.php', - 'Composer\\Package\\Loader\\ValidatingArrayLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php', - 'Composer\\Package\\Locker' => $vendorDir . '/composer/composer/src/Composer/Package/Locker.php', - 'Composer\\Package\\Package' => $vendorDir . '/composer/composer/src/Composer/Package/Package.php', - 'Composer\\Package\\PackageInterface' => $vendorDir . '/composer/composer/src/Composer/Package/PackageInterface.php', - 'Composer\\Package\\RootAliasPackage' => $vendorDir . '/composer/composer/src/Composer/Package/RootAliasPackage.php', - 'Composer\\Package\\RootPackage' => $vendorDir . '/composer/composer/src/Composer/Package/RootPackage.php', - 'Composer\\Package\\RootPackageInterface' => $vendorDir . '/composer/composer/src/Composer/Package/RootPackageInterface.php', - 'Composer\\Package\\Version\\VersionGuesser' => $vendorDir . '/composer/composer/src/Composer/Package/Version/VersionGuesser.php', - 'Composer\\Package\\Version\\VersionParser' => $vendorDir . '/composer/composer/src/Composer/Package/Version/VersionParser.php', - 'Composer\\Package\\Version\\VersionSelector' => $vendorDir . '/composer/composer/src/Composer/Package/Version/VersionSelector.php', - 'Composer\\Plugin\\Capability\\Capability' => $vendorDir . '/composer/composer/src/Composer/Plugin/Capability/Capability.php', - 'Composer\\Plugin\\Capability\\CommandProvider' => $vendorDir . '/composer/composer/src/Composer/Plugin/Capability/CommandProvider.php', - 'Composer\\Plugin\\Capable' => $vendorDir . '/composer/composer/src/Composer/Plugin/Capable.php', - 'Composer\\Plugin\\CommandEvent' => $vendorDir . '/composer/composer/src/Composer/Plugin/CommandEvent.php', - 'Composer\\Plugin\\PluginEvents' => $vendorDir . '/composer/composer/src/Composer/Plugin/PluginEvents.php', - 'Composer\\Plugin\\PluginInterface' => $vendorDir . '/composer/composer/src/Composer/Plugin/PluginInterface.php', - 'Composer\\Plugin\\PluginManager' => $vendorDir . '/composer/composer/src/Composer/Plugin/PluginManager.php', - 'Composer\\Plugin\\PreCommandRunEvent' => $vendorDir . '/composer/composer/src/Composer/Plugin/PreCommandRunEvent.php', - 'Composer\\Plugin\\PreFileDownloadEvent' => $vendorDir . '/composer/composer/src/Composer/Plugin/PreFileDownloadEvent.php', - 'Composer\\Question\\StrictConfirmationQuestion' => $vendorDir . '/composer/composer/src/Composer/Question/StrictConfirmationQuestion.php', - 'Composer\\Repository\\ArrayRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/ArrayRepository.php', - 'Composer\\Repository\\ArtifactRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/ArtifactRepository.php', - 'Composer\\Repository\\BaseRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/BaseRepository.php', - 'Composer\\Repository\\ComposerRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/ComposerRepository.php', - 'Composer\\Repository\\CompositeRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/CompositeRepository.php', - 'Composer\\Repository\\ConfigurableRepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/ConfigurableRepositoryInterface.php', - 'Composer\\Repository\\FilesystemRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/FilesystemRepository.php', - 'Composer\\Repository\\InstalledArrayRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/InstalledArrayRepository.php', - 'Composer\\Repository\\InstalledFilesystemRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/InstalledFilesystemRepository.php', - 'Composer\\Repository\\InstalledRepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/InstalledRepositoryInterface.php', - 'Composer\\Repository\\InvalidRepositoryException' => $vendorDir . '/composer/composer/src/Composer/Repository/InvalidRepositoryException.php', - 'Composer\\Repository\\PackageRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PackageRepository.php', - 'Composer\\Repository\\PathRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PathRepository.php', - 'Composer\\Repository\\PearRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PearRepository.php', - 'Composer\\Repository\\Pear\\BaseChannelReader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/BaseChannelReader.php', - 'Composer\\Repository\\Pear\\ChannelInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelInfo.php', - 'Composer\\Repository\\Pear\\ChannelReader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelReader.php', - 'Composer\\Repository\\Pear\\ChannelRest10Reader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelRest10Reader.php', - 'Composer\\Repository\\Pear\\ChannelRest11Reader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelRest11Reader.php', - 'Composer\\Repository\\Pear\\DependencyConstraint' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/DependencyConstraint.php', - 'Composer\\Repository\\Pear\\DependencyInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/DependencyInfo.php', - 'Composer\\Repository\\Pear\\PackageDependencyParser' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/PackageDependencyParser.php', - 'Composer\\Repository\\Pear\\PackageInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/PackageInfo.php', - 'Composer\\Repository\\Pear\\ReleaseInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ReleaseInfo.php', - 'Composer\\Repository\\PlatformRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PlatformRepository.php', - 'Composer\\Repository\\RepositoryFactory' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositoryFactory.php', - 'Composer\\Repository\\RepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositoryInterface.php', - 'Composer\\Repository\\RepositoryManager' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositoryManager.php', - 'Composer\\Repository\\RepositorySecurityException' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositorySecurityException.php', - 'Composer\\Repository\\VcsRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/VcsRepository.php', - 'Composer\\Repository\\Vcs\\BitbucketDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/BitbucketDriver.php', - 'Composer\\Repository\\Vcs\\FossilDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php', - 'Composer\\Repository\\Vcs\\GitBitbucketDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitBitbucketDriver.php', - 'Composer\\Repository\\Vcs\\GitDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitDriver.php', - 'Composer\\Repository\\Vcs\\GitHubDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php', - 'Composer\\Repository\\Vcs\\GitLabDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php', - 'Composer\\Repository\\Vcs\\HgBitbucketDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/HgBitbucketDriver.php', - 'Composer\\Repository\\Vcs\\HgDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/HgDriver.php', - 'Composer\\Repository\\Vcs\\PerforceDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php', - 'Composer\\Repository\\Vcs\\SvnDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/SvnDriver.php', - 'Composer\\Repository\\Vcs\\VcsDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/VcsDriver.php', - 'Composer\\Repository\\Vcs\\VcsDriverInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/VcsDriverInterface.php', - 'Composer\\Repository\\VersionCacheInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/VersionCacheInterface.php', - 'Composer\\Repository\\WritableArrayRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/WritableArrayRepository.php', - 'Composer\\Repository\\WritableRepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/WritableRepositoryInterface.php', - 'Composer\\Script\\CommandEvent' => $vendorDir . '/composer/composer/src/Composer/Script/CommandEvent.php', - 'Composer\\Script\\Event' => $vendorDir . '/composer/composer/src/Composer/Script/Event.php', - 'Composer\\Script\\PackageEvent' => $vendorDir . '/composer/composer/src/Composer/Script/PackageEvent.php', - 'Composer\\Script\\ScriptEvents' => $vendorDir . '/composer/composer/src/Composer/Script/ScriptEvents.php', - 'Composer\\SelfUpdate\\Keys' => $vendorDir . '/composer/composer/src/Composer/SelfUpdate/Keys.php', - 'Composer\\SelfUpdate\\Versions' => $vendorDir . '/composer/composer/src/Composer/SelfUpdate/Versions.php', - 'Composer\\Semver\\Comparator' => $vendorDir . '/composer/semver/src/Comparator.php', - 'Composer\\Semver\\Constraint\\AbstractConstraint' => $vendorDir . '/composer/semver/src/Constraint/AbstractConstraint.php', - 'Composer\\Semver\\Constraint\\Constraint' => $vendorDir . '/composer/semver/src/Constraint/Constraint.php', - 'Composer\\Semver\\Constraint\\ConstraintInterface' => $vendorDir . '/composer/semver/src/Constraint/ConstraintInterface.php', - 'Composer\\Semver\\Constraint\\EmptyConstraint' => $vendorDir . '/composer/semver/src/Constraint/EmptyConstraint.php', - 'Composer\\Semver\\Constraint\\MultiConstraint' => $vendorDir . '/composer/semver/src/Constraint/MultiConstraint.php', - 'Composer\\Semver\\Semver' => $vendorDir . '/composer/semver/src/Semver.php', - 'Composer\\Semver\\VersionParser' => $vendorDir . '/composer/semver/src/VersionParser.php', - 'Composer\\Spdx\\SpdxLicenses' => $vendorDir . '/composer/spdx-licenses/src/SpdxLicenses.php', - 'Composer\\Util\\AuthHelper' => $vendorDir . '/composer/composer/src/Composer/Util/AuthHelper.php', - 'Composer\\Util\\Bitbucket' => $vendorDir . '/composer/composer/src/Composer/Util/Bitbucket.php', - 'Composer\\Util\\ComposerMirror' => $vendorDir . '/composer/composer/src/Composer/Util/ComposerMirror.php', - 'Composer\\Util\\ConfigValidator' => $vendorDir . '/composer/composer/src/Composer/Util/ConfigValidator.php', - 'Composer\\Util\\ErrorHandler' => $vendorDir . '/composer/composer/src/Composer/Util/ErrorHandler.php', - 'Composer\\Util\\Filesystem' => $vendorDir . '/composer/composer/src/Composer/Util/Filesystem.php', - 'Composer\\Util\\Git' => $vendorDir . '/composer/composer/src/Composer/Util/Git.php', - 'Composer\\Util\\GitHub' => $vendorDir . '/composer/composer/src/Composer/Util/GitHub.php', - 'Composer\\Util\\GitLab' => $vendorDir . '/composer/composer/src/Composer/Util/GitLab.php', - 'Composer\\Util\\Hg' => $vendorDir . '/composer/composer/src/Composer/Util/Hg.php', - 'Composer\\Util\\IniHelper' => $vendorDir . '/composer/composer/src/Composer/Util/IniHelper.php', - 'Composer\\Util\\NoProxyPattern' => $vendorDir . '/composer/composer/src/Composer/Util/NoProxyPattern.php', - 'Composer\\Util\\Perforce' => $vendorDir . '/composer/composer/src/Composer/Util/Perforce.php', - 'Composer\\Util\\Platform' => $vendorDir . '/composer/composer/src/Composer/Util/Platform.php', - 'Composer\\Util\\ProcessExecutor' => $vendorDir . '/composer/composer/src/Composer/Util/ProcessExecutor.php', - 'Composer\\Util\\RemoteFilesystem' => $vendorDir . '/composer/composer/src/Composer/Util/RemoteFilesystem.php', - 'Composer\\Util\\Silencer' => $vendorDir . '/composer/composer/src/Composer/Util/Silencer.php', - 'Composer\\Util\\SpdxLicense' => $vendorDir . '/composer/composer/src/Composer/Util/SpdxLicense.php', - 'Composer\\Util\\StreamContextFactory' => $vendorDir . '/composer/composer/src/Composer/Util/StreamContextFactory.php', - 'Composer\\Util\\Svn' => $vendorDir . '/composer/composer/src/Composer/Util/Svn.php', - 'Composer\\Util\\TlsHelper' => $vendorDir . '/composer/composer/src/Composer/Util/TlsHelper.php', - 'Composer\\Util\\Url' => $vendorDir . '/composer/composer/src/Composer/Util/Url.php', - 'Composer\\XdebugHandler' => $vendorDir . '/composer/composer/src/Composer/XdebugHandler.php', - 'Composer\\XdebugHandler\\PhpConfig' => $vendorDir . '/composer/xdebug-handler/src/PhpConfig.php', - 'Composer\\XdebugHandler\\Process' => $vendorDir . '/composer/xdebug-handler/src/Process.php', - 'Composer\\XdebugHandler\\Status' => $vendorDir . '/composer/xdebug-handler/src/Status.php', - 'Composer\\XdebugHandler\\XdebugHandler' => $vendorDir . '/composer/xdebug-handler/src/XdebugHandler.php', - 'Config_Command' => $vendorDir . '/wp-cli/config-command/src/Config_Command.php', - 'Core_Command' => $vendorDir . '/wp-cli/core-command/src/Core_Command.php', - 'Core_Command_Namespace' => $vendorDir . '/wp-cli/checksum-command/src/Core_Command_Namespace.php', - 'Core_Language_Command' => $vendorDir . '/wp-cli/language-command/src/Core_Language_Command.php', - 'Cron_Command' => $vendorDir . '/wp-cli/cron-command/src/Cron_Command.php', - 'Cron_Event_Command' => $vendorDir . '/wp-cli/cron-command/src/Cron_Event_Command.php', - 'Cron_Schedule_Command' => $vendorDir . '/wp-cli/cron-command/src/Cron_Schedule_Command.php', - 'DB_Command' => $vendorDir . '/wp-cli/db-command/src/DB_Command.php', - 'DeepCopy\\DeepCopy' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/DeepCopy.php', - 'DeepCopy\\Exception\\CloneException' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Exception/CloneException.php', - 'DeepCopy\\Exception\\PropertyException' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Exception/PropertyException.php', - 'DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php', - 'DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php', - 'DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php', - 'DeepCopy\\Filter\\Filter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php', - 'DeepCopy\\Filter\\KeepFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php', - 'DeepCopy\\Filter\\ReplaceFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/ReplaceFilter.php', - 'DeepCopy\\Filter\\SetNullFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/SetNullFilter.php', - 'DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php', - 'DeepCopy\\Matcher\\Matcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php', - 'DeepCopy\\Matcher\\PropertyMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyMatcher.php', - 'DeepCopy\\Matcher\\PropertyNameMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyNameMatcher.php', - 'DeepCopy\\Matcher\\PropertyTypeMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php', - 'DeepCopy\\Reflection\\ReflectionHelper' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php', - 'DeepCopy\\TypeFilter\\Date\\DateIntervalFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DateIntervalFilter.php', - 'DeepCopy\\TypeFilter\\ReplaceFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php', - 'DeepCopy\\TypeFilter\\ShallowCopyFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php', - 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php', - 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedListFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php', - 'DeepCopy\\TypeFilter\\TypeFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php', - 'DeepCopy\\TypeMatcher\\TypeMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeMatcher/TypeMatcher.php', - 'Doctrine\\Common\\Inflector\\Inflector' => $vendorDir . '/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php', - 'Doctrine\\Instantiator\\Exception\\ExceptionInterface' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php', - 'Doctrine\\Instantiator\\Exception\\InvalidArgumentException' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php', - 'Doctrine\\Instantiator\\Exception\\UnexpectedValueException' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php', - 'Doctrine\\Instantiator\\Instantiator' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php', - 'Doctrine\\Instantiator\\InstantiatorInterface' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php', - 'Dotenv\\Dotenv' => $vendorDir . '/vlucas/phpdotenv/src/Dotenv.php', - 'Dotenv\\Environment\\AbstractVariables' => $vendorDir . '/vlucas/phpdotenv/src/Environment/AbstractVariables.php', - 'Dotenv\\Environment\\Adapter\\AdapterInterface' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/AdapterInterface.php', - 'Dotenv\\Environment\\Adapter\\ApacheAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/ApacheAdapter.php', - 'Dotenv\\Environment\\Adapter\\ArrayAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/ArrayAdapter.php', - 'Dotenv\\Environment\\Adapter\\EnvConstAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/EnvConstAdapter.php', - 'Dotenv\\Environment\\Adapter\\PutenvAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/PutenvAdapter.php', - 'Dotenv\\Environment\\Adapter\\ServerConstAdapter' => $vendorDir . '/vlucas/phpdotenv/src/Environment/Adapter/ServerConstAdapter.php', - 'Dotenv\\Environment\\DotenvFactory' => $vendorDir . '/vlucas/phpdotenv/src/Environment/DotenvFactory.php', - 'Dotenv\\Environment\\DotenvVariables' => $vendorDir . '/vlucas/phpdotenv/src/Environment/DotenvVariables.php', - 'Dotenv\\Environment\\FactoryInterface' => $vendorDir . '/vlucas/phpdotenv/src/Environment/FactoryInterface.php', - 'Dotenv\\Environment\\VariablesInterface' => $vendorDir . '/vlucas/phpdotenv/src/Environment/VariablesInterface.php', - 'Dotenv\\Exception\\ExceptionInterface' => $vendorDir . '/vlucas/phpdotenv/src/Exception/ExceptionInterface.php', - 'Dotenv\\Exception\\InvalidFileException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidFileException.php', - 'Dotenv\\Exception\\InvalidPathException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/InvalidPathException.php', - 'Dotenv\\Exception\\ValidationException' => $vendorDir . '/vlucas/phpdotenv/src/Exception/ValidationException.php', - 'Dotenv\\Lines' => $vendorDir . '/vlucas/phpdotenv/src/Lines.php', - 'Dotenv\\Loader' => $vendorDir . '/vlucas/phpdotenv/src/Loader.php', - 'Dotenv\\Parser' => $vendorDir . '/vlucas/phpdotenv/src/Parser.php', - 'Dotenv\\Regex\\Error' => $vendorDir . '/vlucas/phpdotenv/src/Regex/Error.php', - 'Dotenv\\Regex\\Regex' => $vendorDir . '/vlucas/phpdotenv/src/Regex/Regex.php', - 'Dotenv\\Regex\\Result' => $vendorDir . '/vlucas/phpdotenv/src/Regex/Result.php', - 'Dotenv\\Regex\\Success' => $vendorDir . '/vlucas/phpdotenv/src/Regex/Success.php', - 'Dotenv\\Validator' => $vendorDir . '/vlucas/phpdotenv/src/Validator.php', - 'EvalFile_Command' => $vendorDir . '/wp-cli/eval-command/src/EvalFile_Command.php', - 'Eval_Command' => $vendorDir . '/wp-cli/eval-command/src/Eval_Command.php', - 'Export_Command' => $vendorDir . '/wp-cli/export-command/src/Export_Command.php', - 'Facebook\\WebDriver\\Chrome\\ChromeDriver' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeDriver.php', - 'Facebook\\WebDriver\\Chrome\\ChromeDriverService' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeDriverService.php', - 'Facebook\\WebDriver\\Chrome\\ChromeOptions' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeOptions.php', - 'Facebook\\WebDriver\\Cookie' => $vendorDir . '/facebook/webdriver/lib/Cookie.php', - 'Facebook\\WebDriver\\Exception\\ElementNotSelectableException' => $vendorDir . '/facebook/webdriver/lib/Exception/ElementNotSelectableException.php', - 'Facebook\\WebDriver\\Exception\\ElementNotVisibleException' => $vendorDir . '/facebook/webdriver/lib/Exception/ElementNotVisibleException.php', - 'Facebook\\WebDriver\\Exception\\ExpectedException' => $vendorDir . '/facebook/webdriver/lib/Exception/ExpectedException.php', - 'Facebook\\WebDriver\\Exception\\IMEEngineActivationFailedException' => $vendorDir . '/facebook/webdriver/lib/Exception/IMEEngineActivationFailedException.php', - 'Facebook\\WebDriver\\Exception\\IMENotAvailableException' => $vendorDir . '/facebook/webdriver/lib/Exception/IMENotAvailableException.php', - 'Facebook\\WebDriver\\Exception\\IndexOutOfBoundsException' => $vendorDir . '/facebook/webdriver/lib/Exception/IndexOutOfBoundsException.php', - 'Facebook\\WebDriver\\Exception\\InvalidCookieDomainException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidCookieDomainException.php', - 'Facebook\\WebDriver\\Exception\\InvalidCoordinatesException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidCoordinatesException.php', - 'Facebook\\WebDriver\\Exception\\InvalidElementStateException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidElementStateException.php', - 'Facebook\\WebDriver\\Exception\\InvalidSelectorException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidSelectorException.php', - 'Facebook\\WebDriver\\Exception\\MoveTargetOutOfBoundsException' => $vendorDir . '/facebook/webdriver/lib/Exception/MoveTargetOutOfBoundsException.php', - 'Facebook\\WebDriver\\Exception\\NoAlertOpenException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoAlertOpenException.php', - 'Facebook\\WebDriver\\Exception\\NoCollectionException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoCollectionException.php', - 'Facebook\\WebDriver\\Exception\\NoScriptResultException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoScriptResultException.php', - 'Facebook\\WebDriver\\Exception\\NoStringException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoStringException.php', - 'Facebook\\WebDriver\\Exception\\NoStringLengthException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoStringLengthException.php', - 'Facebook\\WebDriver\\Exception\\NoStringWrapperException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoStringWrapperException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchCollectionException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchCollectionException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchDocumentException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchDocumentException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchDriverException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchDriverException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchElementException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchElementException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchFrameException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchFrameException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchWindowException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchWindowException.php', - 'Facebook\\WebDriver\\Exception\\NullPointerException' => $vendorDir . '/facebook/webdriver/lib/Exception/NullPointerException.php', - 'Facebook\\WebDriver\\Exception\\ScriptTimeoutException' => $vendorDir . '/facebook/webdriver/lib/Exception/ScriptTimeoutException.php', - 'Facebook\\WebDriver\\Exception\\SessionNotCreatedException' => $vendorDir . '/facebook/webdriver/lib/Exception/SessionNotCreatedException.php', - 'Facebook\\WebDriver\\Exception\\StaleElementReferenceException' => $vendorDir . '/facebook/webdriver/lib/Exception/StaleElementReferenceException.php', - 'Facebook\\WebDriver\\Exception\\TimeOutException' => $vendorDir . '/facebook/webdriver/lib/Exception/TimeOutException.php', - 'Facebook\\WebDriver\\Exception\\UnableToSetCookieException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnableToSetCookieException.php', - 'Facebook\\WebDriver\\Exception\\UnexpectedAlertOpenException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnexpectedAlertOpenException.php', - 'Facebook\\WebDriver\\Exception\\UnexpectedJavascriptException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnexpectedJavascriptException.php', - 'Facebook\\WebDriver\\Exception\\UnexpectedTagNameException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnexpectedTagNameException.php', - 'Facebook\\WebDriver\\Exception\\UnknownCommandException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnknownCommandException.php', - 'Facebook\\WebDriver\\Exception\\UnknownServerException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnknownServerException.php', - 'Facebook\\WebDriver\\Exception\\UnrecognizedExceptionException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnrecognizedExceptionException.php', - 'Facebook\\WebDriver\\Exception\\UnsupportedOperationException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnsupportedOperationException.php', - 'Facebook\\WebDriver\\Exception\\WebDriverCurlException' => $vendorDir . '/facebook/webdriver/lib/Exception/WebDriverCurlException.php', - 'Facebook\\WebDriver\\Exception\\WebDriverException' => $vendorDir . '/facebook/webdriver/lib/Exception/WebDriverException.php', - 'Facebook\\WebDriver\\Exception\\XPathLookupException' => $vendorDir . '/facebook/webdriver/lib/Exception/XPathLookupException.php', - 'Facebook\\WebDriver\\Firefox\\FirefoxDriver' => $vendorDir . '/facebook/webdriver/lib/Firefox/FirefoxDriver.php', - 'Facebook\\WebDriver\\Firefox\\FirefoxPreferences' => $vendorDir . '/facebook/webdriver/lib/Firefox/FirefoxPreferences.php', - 'Facebook\\WebDriver\\Firefox\\FirefoxProfile' => $vendorDir . '/facebook/webdriver/lib/Firefox/FirefoxProfile.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverButtonReleaseAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverButtonReleaseAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverClickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverClickAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverClickAndHoldAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverClickAndHoldAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverContextClickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverContextClickAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverCoordinates' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverCoordinates.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverDoubleClickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverDoubleClickAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeyDownAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeyDownAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeyUpAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeyUpAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeysRelatedAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeysRelatedAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMouseAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMouseAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMouseMoveAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMouseMoveAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMoveToOffsetAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMoveToOffsetAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverSendKeysAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverSendKeysAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverSingleKeyAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverSingleKeyAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverDoubleTapAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverDoubleTapAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverDownAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverDownAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverFlickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverFlickAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverFlickFromElementAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverFlickFromElementAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverLongPressAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverLongPressAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverMoveAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverMoveAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverScrollAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverScrollAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverScrollFromElementAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverScrollFromElementAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTapAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTapAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTouchAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTouchAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTouchScreen' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTouchScreen.php', - 'Facebook\\WebDriver\\Interactions\\WebDriverActions' => $vendorDir . '/facebook/webdriver/lib/Interactions/WebDriverActions.php', - 'Facebook\\WebDriver\\Interactions\\WebDriverCompositeAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/WebDriverCompositeAction.php', - 'Facebook\\WebDriver\\Interactions\\WebDriverTouchActions' => $vendorDir . '/facebook/webdriver/lib/Interactions/WebDriverTouchActions.php', - 'Facebook\\WebDriver\\Internal\\WebDriverLocatable' => $vendorDir . '/facebook/webdriver/lib/Internal/WebDriverLocatable.php', - 'Facebook\\WebDriver\\JavaScriptExecutor' => $vendorDir . '/facebook/webdriver/lib/JavaScriptExecutor.php', - 'Facebook\\WebDriver\\Net\\URLChecker' => $vendorDir . '/facebook/webdriver/lib/Net/URLChecker.php', - 'Facebook\\WebDriver\\Remote\\DesiredCapabilities' => $vendorDir . '/facebook/webdriver/lib/Remote/DesiredCapabilities.php', - 'Facebook\\WebDriver\\Remote\\DriverCommand' => $vendorDir . '/facebook/webdriver/lib/Remote/DriverCommand.php', - 'Facebook\\WebDriver\\Remote\\ExecuteMethod' => $vendorDir . '/facebook/webdriver/lib/Remote/ExecuteMethod.php', - 'Facebook\\WebDriver\\Remote\\FileDetector' => $vendorDir . '/facebook/webdriver/lib/Remote/FileDetector.php', - 'Facebook\\WebDriver\\Remote\\HttpCommandExecutor' => $vendorDir . '/facebook/webdriver/lib/Remote/HttpCommandExecutor.php', - 'Facebook\\WebDriver\\Remote\\LocalFileDetector' => $vendorDir . '/facebook/webdriver/lib/Remote/LocalFileDetector.php', - 'Facebook\\WebDriver\\Remote\\RemoteExecuteMethod' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteExecuteMethod.php', - 'Facebook\\WebDriver\\Remote\\RemoteKeyboard' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteKeyboard.php', - 'Facebook\\WebDriver\\Remote\\RemoteMouse' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteMouse.php', - 'Facebook\\WebDriver\\Remote\\RemoteTargetLocator' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteTargetLocator.php', - 'Facebook\\WebDriver\\Remote\\RemoteTouchScreen' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteTouchScreen.php', - 'Facebook\\WebDriver\\Remote\\RemoteWebDriver' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteWebDriver.php', - 'Facebook\\WebDriver\\Remote\\RemoteWebElement' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteWebElement.php', - 'Facebook\\WebDriver\\Remote\\Service\\DriverCommandExecutor' => $vendorDir . '/facebook/webdriver/lib/Remote/Service/DriverCommandExecutor.php', - 'Facebook\\WebDriver\\Remote\\Service\\DriverService' => $vendorDir . '/facebook/webdriver/lib/Remote/Service/DriverService.php', - 'Facebook\\WebDriver\\Remote\\UselessFileDetector' => $vendorDir . '/facebook/webdriver/lib/Remote/UselessFileDetector.php', - 'Facebook\\WebDriver\\Remote\\WebDriverBrowserType' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverBrowserType.php', - 'Facebook\\WebDriver\\Remote\\WebDriverCapabilityType' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverCapabilityType.php', - 'Facebook\\WebDriver\\Remote\\WebDriverCommand' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverCommand.php', - 'Facebook\\WebDriver\\Remote\\WebDriverResponse' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverResponse.php', - 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriver' => $vendorDir . '/facebook/webdriver/lib/Support/Events/EventFiringWebDriver.php', - 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriverNavigation' => $vendorDir . '/facebook/webdriver/lib/Support/Events/EventFiringWebDriverNavigation.php', - 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebElement' => $vendorDir . '/facebook/webdriver/lib/Support/Events/EventFiringWebElement.php', - 'Facebook\\WebDriver\\Support\\XPathEscaper' => $vendorDir . '/facebook/webdriver/lib/Support/XPathEscaper.php', - 'Facebook\\WebDriver\\WebDriver' => $vendorDir . '/facebook/webdriver/lib/WebDriver.php', - 'Facebook\\WebDriver\\WebDriverAction' => $vendorDir . '/facebook/webdriver/lib/WebDriverAction.php', - 'Facebook\\WebDriver\\WebDriverAlert' => $vendorDir . '/facebook/webdriver/lib/WebDriverAlert.php', - 'Facebook\\WebDriver\\WebDriverBy' => $vendorDir . '/facebook/webdriver/lib/WebDriverBy.php', - 'Facebook\\WebDriver\\WebDriverCapabilities' => $vendorDir . '/facebook/webdriver/lib/WebDriverCapabilities.php', - 'Facebook\\WebDriver\\WebDriverCommandExecutor' => $vendorDir . '/facebook/webdriver/lib/WebDriverCommandExecutor.php', - 'Facebook\\WebDriver\\WebDriverDimension' => $vendorDir . '/facebook/webdriver/lib/WebDriverDimension.php', - 'Facebook\\WebDriver\\WebDriverDispatcher' => $vendorDir . '/facebook/webdriver/lib/WebDriverDispatcher.php', - 'Facebook\\WebDriver\\WebDriverElement' => $vendorDir . '/facebook/webdriver/lib/WebDriverElement.php', - 'Facebook\\WebDriver\\WebDriverEventListener' => $vendorDir . '/facebook/webdriver/lib/WebDriverEventListener.php', - 'Facebook\\WebDriver\\WebDriverExpectedCondition' => $vendorDir . '/facebook/webdriver/lib/WebDriverExpectedCondition.php', - 'Facebook\\WebDriver\\WebDriverHasInputDevices' => $vendorDir . '/facebook/webdriver/lib/WebDriverHasInputDevices.php', - 'Facebook\\WebDriver\\WebDriverKeyboard' => $vendorDir . '/facebook/webdriver/lib/WebDriverKeyboard.php', - 'Facebook\\WebDriver\\WebDriverKeys' => $vendorDir . '/facebook/webdriver/lib/WebDriverKeys.php', - 'Facebook\\WebDriver\\WebDriverMouse' => $vendorDir . '/facebook/webdriver/lib/WebDriverMouse.php', - 'Facebook\\WebDriver\\WebDriverNavigation' => $vendorDir . '/facebook/webdriver/lib/WebDriverNavigation.php', - 'Facebook\\WebDriver\\WebDriverOptions' => $vendorDir . '/facebook/webdriver/lib/WebDriverOptions.php', - 'Facebook\\WebDriver\\WebDriverPlatform' => $vendorDir . '/facebook/webdriver/lib/WebDriverPlatform.php', - 'Facebook\\WebDriver\\WebDriverPoint' => $vendorDir . '/facebook/webdriver/lib/WebDriverPoint.php', - 'Facebook\\WebDriver\\WebDriverSearchContext' => $vendorDir . '/facebook/webdriver/lib/WebDriverSearchContext.php', - 'Facebook\\WebDriver\\WebDriverSelect' => $vendorDir . '/facebook/webdriver/lib/WebDriverSelect.php', - 'Facebook\\WebDriver\\WebDriverSelectInterface' => $vendorDir . '/facebook/webdriver/lib/WebDriverSelectInterface.php', - 'Facebook\\WebDriver\\WebDriverTargetLocator' => $vendorDir . '/facebook/webdriver/lib/WebDriverTargetLocator.php', - 'Facebook\\WebDriver\\WebDriverTimeouts' => $vendorDir . '/facebook/webdriver/lib/WebDriverTimeouts.php', - 'Facebook\\WebDriver\\WebDriverUpAction' => $vendorDir . '/facebook/webdriver/lib/WebDriverUpAction.php', - 'Facebook\\WebDriver\\WebDriverWait' => $vendorDir . '/facebook/webdriver/lib/WebDriverWait.php', - 'Facebook\\WebDriver\\WebDriverWindow' => $vendorDir . '/facebook/webdriver/lib/WebDriverWindow.php', - 'Gettext\\BaseTranslator' => $vendorDir . '/gettext/gettext/src/BaseTranslator.php', - 'Gettext\\Extractors\\Blade' => $vendorDir . '/gettext/gettext/src/Extractors/Blade.php', - 'Gettext\\Extractors\\Csv' => $vendorDir . '/gettext/gettext/src/Extractors/Csv.php', - 'Gettext\\Extractors\\CsvDictionary' => $vendorDir . '/gettext/gettext/src/Extractors/CsvDictionary.php', - 'Gettext\\Extractors\\Extractor' => $vendorDir . '/gettext/gettext/src/Extractors/Extractor.php', - 'Gettext\\Extractors\\ExtractorInterface' => $vendorDir . '/gettext/gettext/src/Extractors/ExtractorInterface.php', - 'Gettext\\Extractors\\Jed' => $vendorDir . '/gettext/gettext/src/Extractors/Jed.php', - 'Gettext\\Extractors\\JsCode' => $vendorDir . '/gettext/gettext/src/Extractors/JsCode.php', - 'Gettext\\Extractors\\Json' => $vendorDir . '/gettext/gettext/src/Extractors/Json.php', - 'Gettext\\Extractors\\JsonDictionary' => $vendorDir . '/gettext/gettext/src/Extractors/JsonDictionary.php', - 'Gettext\\Extractors\\Mo' => $vendorDir . '/gettext/gettext/src/Extractors/Mo.php', - 'Gettext\\Extractors\\PhpArray' => $vendorDir . '/gettext/gettext/src/Extractors/PhpArray.php', - 'Gettext\\Extractors\\PhpCode' => $vendorDir . '/gettext/gettext/src/Extractors/PhpCode.php', - 'Gettext\\Extractors\\Po' => $vendorDir . '/gettext/gettext/src/Extractors/Po.php', - 'Gettext\\Extractors\\Twig' => $vendorDir . '/gettext/gettext/src/Extractors/Twig.php', - 'Gettext\\Extractors\\VueJs' => $vendorDir . '/gettext/gettext/src/Extractors/VueJs.php', - 'Gettext\\Extractors\\Xliff' => $vendorDir . '/gettext/gettext/src/Extractors/Xliff.php', - 'Gettext\\Extractors\\Yaml' => $vendorDir . '/gettext/gettext/src/Extractors/Yaml.php', - 'Gettext\\Extractors\\YamlDictionary' => $vendorDir . '/gettext/gettext/src/Extractors/YamlDictionary.php', - 'Gettext\\Generators\\Csv' => $vendorDir . '/gettext/gettext/src/Generators/Csv.php', - 'Gettext\\Generators\\CsvDictionary' => $vendorDir . '/gettext/gettext/src/Generators/CsvDictionary.php', - 'Gettext\\Generators\\Generator' => $vendorDir . '/gettext/gettext/src/Generators/Generator.php', - 'Gettext\\Generators\\GeneratorInterface' => $vendorDir . '/gettext/gettext/src/Generators/GeneratorInterface.php', - 'Gettext\\Generators\\Jed' => $vendorDir . '/gettext/gettext/src/Generators/Jed.php', - 'Gettext\\Generators\\Json' => $vendorDir . '/gettext/gettext/src/Generators/Json.php', - 'Gettext\\Generators\\JsonDictionary' => $vendorDir . '/gettext/gettext/src/Generators/JsonDictionary.php', - 'Gettext\\Generators\\Mo' => $vendorDir . '/gettext/gettext/src/Generators/Mo.php', - 'Gettext\\Generators\\PhpArray' => $vendorDir . '/gettext/gettext/src/Generators/PhpArray.php', - 'Gettext\\Generators\\Po' => $vendorDir . '/gettext/gettext/src/Generators/Po.php', - 'Gettext\\Generators\\Xliff' => $vendorDir . '/gettext/gettext/src/Generators/Xliff.php', - 'Gettext\\Generators\\Yaml' => $vendorDir . '/gettext/gettext/src/Generators/Yaml.php', - 'Gettext\\Generators\\YamlDictionary' => $vendorDir . '/gettext/gettext/src/Generators/YamlDictionary.php', - 'Gettext\\GettextTranslator' => $vendorDir . '/gettext/gettext/src/GettextTranslator.php', - 'Gettext\\Languages\\Category' => $vendorDir . '/gettext/languages/src/Category.php', - 'Gettext\\Languages\\CldrData' => $vendorDir . '/gettext/languages/src/CldrData.php', - 'Gettext\\Languages\\Exporter\\Docs' => $vendorDir . '/gettext/languages/src/Exporter/Docs.php', - 'Gettext\\Languages\\Exporter\\Exporter' => $vendorDir . '/gettext/languages/src/Exporter/Exporter.php', - 'Gettext\\Languages\\Exporter\\Html' => $vendorDir . '/gettext/languages/src/Exporter/Html.php', - 'Gettext\\Languages\\Exporter\\Json' => $vendorDir . '/gettext/languages/src/Exporter/Json.php', - 'Gettext\\Languages\\Exporter\\Php' => $vendorDir . '/gettext/languages/src/Exporter/Php.php', - 'Gettext\\Languages\\Exporter\\Po' => $vendorDir . '/gettext/languages/src/Exporter/Po.php', - 'Gettext\\Languages\\Exporter\\Prettyjson' => $vendorDir . '/gettext/languages/src/Exporter/Prettyjson.php', - 'Gettext\\Languages\\Exporter\\Xml' => $vendorDir . '/gettext/languages/src/Exporter/Xml.php', - 'Gettext\\Languages\\FormulaConverter' => $vendorDir . '/gettext/languages/src/FormulaConverter.php', - 'Gettext\\Languages\\Language' => $vendorDir . '/gettext/languages/src/Language.php', - 'Gettext\\Merge' => $vendorDir . '/gettext/gettext/src/Merge.php', - 'Gettext\\Translation' => $vendorDir . '/gettext/gettext/src/Translation.php', - 'Gettext\\Translations' => $vendorDir . '/gettext/gettext/src/Translations.php', - 'Gettext\\Translator' => $vendorDir . '/gettext/gettext/src/Translator.php', - 'Gettext\\TranslatorInterface' => $vendorDir . '/gettext/gettext/src/TranslatorInterface.php', - 'Gettext\\Utils\\CsvTrait' => $vendorDir . '/gettext/gettext/src/Utils/CsvTrait.php', - 'Gettext\\Utils\\DictionaryTrait' => $vendorDir . '/gettext/gettext/src/Utils/DictionaryTrait.php', - 'Gettext\\Utils\\FunctionsScanner' => $vendorDir . '/gettext/gettext/src/Utils/FunctionsScanner.php', - 'Gettext\\Utils\\HeadersExtractorTrait' => $vendorDir . '/gettext/gettext/src/Utils/HeadersExtractorTrait.php', - 'Gettext\\Utils\\HeadersGeneratorTrait' => $vendorDir . '/gettext/gettext/src/Utils/HeadersGeneratorTrait.php', - 'Gettext\\Utils\\JsFunctionsScanner' => $vendorDir . '/gettext/gettext/src/Utils/JsFunctionsScanner.php', - 'Gettext\\Utils\\MultidimensionalArrayTrait' => $vendorDir . '/gettext/gettext/src/Utils/MultidimensionalArrayTrait.php', - 'Gettext\\Utils\\ParsedComment' => $vendorDir . '/gettext/gettext/src/Utils/ParsedComment.php', - 'Gettext\\Utils\\ParsedFunction' => $vendorDir . '/gettext/gettext/src/Utils/ParsedFunction.php', - 'Gettext\\Utils\\PhpFunctionsScanner' => $vendorDir . '/gettext/gettext/src/Utils/PhpFunctionsScanner.php', - 'Gettext\\Utils\\StringReader' => $vendorDir . '/gettext/gettext/src/Utils/StringReader.php', - 'Gumlet\\ImageResize' => $vendorDir . '/gumlet/php-image-resize/lib/ImageResize.php', - 'Gumlet\\ImageResizeException' => $vendorDir . '/gumlet/php-image-resize/lib/ImageResizeException.php', - 'GuzzleHttp\\Client' => $vendorDir . '/guzzlehttp/guzzle/src/Client.php', - 'GuzzleHttp\\ClientInterface' => $vendorDir . '/guzzlehttp/guzzle/src/ClientInterface.php', - 'GuzzleHttp\\Cookie\\CookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php', - 'GuzzleHttp\\Cookie\\CookieJarInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php', - 'GuzzleHttp\\Cookie\\FileCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php', - 'GuzzleHttp\\Cookie\\SessionCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php', - 'GuzzleHttp\\Cookie\\SetCookie' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php', - 'GuzzleHttp\\Exception\\BadResponseException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php', - 'GuzzleHttp\\Exception\\ClientException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ClientException.php', - 'GuzzleHttp\\Exception\\ConnectException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ConnectException.php', - 'GuzzleHttp\\Exception\\GuzzleException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php', - 'GuzzleHttp\\Exception\\RequestException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/RequestException.php', - 'GuzzleHttp\\Exception\\SeekException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/SeekException.php', - 'GuzzleHttp\\Exception\\ServerException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ServerException.php', - 'GuzzleHttp\\Exception\\TooManyRedirectsException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php', - 'GuzzleHttp\\Exception\\TransferException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TransferException.php', - 'GuzzleHttp\\HandlerStack' => $vendorDir . '/guzzlehttp/guzzle/src/HandlerStack.php', - 'GuzzleHttp\\Handler\\CurlFactory' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php', - 'GuzzleHttp\\Handler\\CurlFactoryInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php', - 'GuzzleHttp\\Handler\\CurlHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php', - 'GuzzleHttp\\Handler\\CurlMultiHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php', - 'GuzzleHttp\\Handler\\EasyHandle' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php', - 'GuzzleHttp\\Handler\\MockHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/MockHandler.php', - 'GuzzleHttp\\Handler\\Proxy' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/Proxy.php', - 'GuzzleHttp\\Handler\\StreamHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php', - 'GuzzleHttp\\MessageFormatter' => $vendorDir . '/guzzlehttp/guzzle/src/MessageFormatter.php', - 'GuzzleHttp\\Middleware' => $vendorDir . '/guzzlehttp/guzzle/src/Middleware.php', - 'GuzzleHttp\\Pool' => $vendorDir . '/guzzlehttp/guzzle/src/Pool.php', - 'GuzzleHttp\\PrepareBodyMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php', - 'GuzzleHttp\\Promise\\AggregateException' => $vendorDir . '/guzzlehttp/promises/src/AggregateException.php', - 'GuzzleHttp\\Promise\\CancellationException' => $vendorDir . '/guzzlehttp/promises/src/CancellationException.php', - 'GuzzleHttp\\Promise\\Coroutine' => $vendorDir . '/guzzlehttp/promises/src/Coroutine.php', - 'GuzzleHttp\\Promise\\EachPromise' => $vendorDir . '/guzzlehttp/promises/src/EachPromise.php', - 'GuzzleHttp\\Promise\\FulfilledPromise' => $vendorDir . '/guzzlehttp/promises/src/FulfilledPromise.php', - 'GuzzleHttp\\Promise\\Promise' => $vendorDir . '/guzzlehttp/promises/src/Promise.php', - 'GuzzleHttp\\Promise\\PromiseInterface' => $vendorDir . '/guzzlehttp/promises/src/PromiseInterface.php', - 'GuzzleHttp\\Promise\\PromisorInterface' => $vendorDir . '/guzzlehttp/promises/src/PromisorInterface.php', - 'GuzzleHttp\\Promise\\RejectedPromise' => $vendorDir . '/guzzlehttp/promises/src/RejectedPromise.php', - 'GuzzleHttp\\Promise\\RejectionException' => $vendorDir . '/guzzlehttp/promises/src/RejectionException.php', - 'GuzzleHttp\\Promise\\TaskQueue' => $vendorDir . '/guzzlehttp/promises/src/TaskQueue.php', - 'GuzzleHttp\\Promise\\TaskQueueInterface' => $vendorDir . '/guzzlehttp/promises/src/TaskQueueInterface.php', - 'GuzzleHttp\\Psr7\\AppendStream' => $vendorDir . '/guzzlehttp/psr7/src/AppendStream.php', - 'GuzzleHttp\\Psr7\\BufferStream' => $vendorDir . '/guzzlehttp/psr7/src/BufferStream.php', - 'GuzzleHttp\\Psr7\\CachingStream' => $vendorDir . '/guzzlehttp/psr7/src/CachingStream.php', - 'GuzzleHttp\\Psr7\\DroppingStream' => $vendorDir . '/guzzlehttp/psr7/src/DroppingStream.php', - 'GuzzleHttp\\Psr7\\FnStream' => $vendorDir . '/guzzlehttp/psr7/src/FnStream.php', - 'GuzzleHttp\\Psr7\\InflateStream' => $vendorDir . '/guzzlehttp/psr7/src/InflateStream.php', - 'GuzzleHttp\\Psr7\\LazyOpenStream' => $vendorDir . '/guzzlehttp/psr7/src/LazyOpenStream.php', - 'GuzzleHttp\\Psr7\\LimitStream' => $vendorDir . '/guzzlehttp/psr7/src/LimitStream.php', - 'GuzzleHttp\\Psr7\\MessageTrait' => $vendorDir . '/guzzlehttp/psr7/src/MessageTrait.php', - 'GuzzleHttp\\Psr7\\MultipartStream' => $vendorDir . '/guzzlehttp/psr7/src/MultipartStream.php', - 'GuzzleHttp\\Psr7\\NoSeekStream' => $vendorDir . '/guzzlehttp/psr7/src/NoSeekStream.php', - 'GuzzleHttp\\Psr7\\PumpStream' => $vendorDir . '/guzzlehttp/psr7/src/PumpStream.php', - 'GuzzleHttp\\Psr7\\Request' => $vendorDir . '/guzzlehttp/psr7/src/Request.php', - 'GuzzleHttp\\Psr7\\Response' => $vendorDir . '/guzzlehttp/psr7/src/Response.php', - 'GuzzleHttp\\Psr7\\Rfc7230' => $vendorDir . '/guzzlehttp/psr7/src/Rfc7230.php', - 'GuzzleHttp\\Psr7\\ServerRequest' => $vendorDir . '/guzzlehttp/psr7/src/ServerRequest.php', - 'GuzzleHttp\\Psr7\\Stream' => $vendorDir . '/guzzlehttp/psr7/src/Stream.php', - 'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => $vendorDir . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php', - 'GuzzleHttp\\Psr7\\StreamWrapper' => $vendorDir . '/guzzlehttp/psr7/src/StreamWrapper.php', - 'GuzzleHttp\\Psr7\\UploadedFile' => $vendorDir . '/guzzlehttp/psr7/src/UploadedFile.php', - 'GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php', - 'GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/guzzlehttp/psr7/src/UriNormalizer.php', - 'GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/guzzlehttp/psr7/src/UriResolver.php', - 'GuzzleHttp\\RedirectMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RedirectMiddleware.php', - 'GuzzleHttp\\RequestOptions' => $vendorDir . '/guzzlehttp/guzzle/src/RequestOptions.php', - 'GuzzleHttp\\RetryMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RetryMiddleware.php', - 'GuzzleHttp\\TransferStats' => $vendorDir . '/guzzlehttp/guzzle/src/TransferStats.php', - 'GuzzleHttp\\UriTemplate' => $vendorDir . '/guzzlehttp/guzzle/src/UriTemplate.php', - 'Handlebars\\Arguments' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Arguments.php', - 'Handlebars\\Autoloader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Autoloader.php', - 'Handlebars\\BaseString' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/BaseString.php', - 'Handlebars\\Cache' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache.php', - 'Handlebars\\Cache\\APC' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache/APC.php', - 'Handlebars\\Cache\\Disk' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache/Disk.php', - 'Handlebars\\Cache\\Dummy' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache/Dummy.php', - 'Handlebars\\ChildContext' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/ChildContext.php', - 'Handlebars\\Context' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Context.php', - 'Handlebars\\Handlebars' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Handlebars.php', - 'Handlebars\\Helper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper.php', - 'Handlebars\\Helper\\BindAttrHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/BindAttrHelper.php', - 'Handlebars\\Helper\\EachHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/EachHelper.php', - 'Handlebars\\Helper\\IfHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/IfHelper.php', - 'Handlebars\\Helper\\UnlessHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/UnlessHelper.php', - 'Handlebars\\Helper\\WithHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/WithHelper.php', - 'Handlebars\\Helpers' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helpers.php', - 'Handlebars\\Loader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader.php', - 'Handlebars\\Loader\\ArrayLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/ArrayLoader.php', - 'Handlebars\\Loader\\FilesystemLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/FilesystemLoader.php', - 'Handlebars\\Loader\\InlineLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/InlineLoader.php', - 'Handlebars\\Loader\\StringLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/StringLoader.php', - 'Handlebars\\Parser' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Parser.php', - 'Handlebars\\SafeString' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/SafeString.php', - 'Handlebars\\String' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/String.php', - 'Handlebars\\StringWrapper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/StringWrapper.php', - 'Handlebars\\Template' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Template.php', - 'Handlebars\\Tokenizer' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Tokenizer.php', - 'Hautelook\\Phpass\\PasswordHash' => $vendorDir . '/hautelook/phpass/src/Hautelook/Phpass/PasswordHash.php', - 'Illuminate\\Contracts\\Auth\\Access\\Authorizable' => $vendorDir . '/illuminate/contracts/Auth/Access/Authorizable.php', - 'Illuminate\\Contracts\\Auth\\Access\\Gate' => $vendorDir . '/illuminate/contracts/Auth/Access/Gate.php', - 'Illuminate\\Contracts\\Auth\\Authenticatable' => $vendorDir . '/illuminate/contracts/Auth/Authenticatable.php', - 'Illuminate\\Contracts\\Auth\\CanResetPassword' => $vendorDir . '/illuminate/contracts/Auth/CanResetPassword.php', - 'Illuminate\\Contracts\\Auth\\Factory' => $vendorDir . '/illuminate/contracts/Auth/Factory.php', - 'Illuminate\\Contracts\\Auth\\Guard' => $vendorDir . '/illuminate/contracts/Auth/Guard.php', - 'Illuminate\\Contracts\\Auth\\MustVerifyEmail' => $vendorDir . '/illuminate/contracts/Auth/MustVerifyEmail.php', - 'Illuminate\\Contracts\\Auth\\PasswordBroker' => $vendorDir . '/illuminate/contracts/Auth/PasswordBroker.php', - 'Illuminate\\Contracts\\Auth\\PasswordBrokerFactory' => $vendorDir . '/illuminate/contracts/Auth/PasswordBrokerFactory.php', - 'Illuminate\\Contracts\\Auth\\StatefulGuard' => $vendorDir . '/illuminate/contracts/Auth/StatefulGuard.php', - 'Illuminate\\Contracts\\Auth\\SupportsBasicAuth' => $vendorDir . '/illuminate/contracts/Auth/SupportsBasicAuth.php', - 'Illuminate\\Contracts\\Auth\\UserProvider' => $vendorDir . '/illuminate/contracts/Auth/UserProvider.php', - 'Illuminate\\Contracts\\Broadcasting\\Broadcaster' => $vendorDir . '/illuminate/contracts/Broadcasting/Broadcaster.php', - 'Illuminate\\Contracts\\Broadcasting\\Factory' => $vendorDir . '/illuminate/contracts/Broadcasting/Factory.php', - 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcast' => $vendorDir . '/illuminate/contracts/Broadcasting/ShouldBroadcast.php', - 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcastNow' => $vendorDir . '/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php', - 'Illuminate\\Contracts\\Bus\\Dispatcher' => $vendorDir . '/illuminate/contracts/Bus/Dispatcher.php', - 'Illuminate\\Contracts\\Bus\\QueueingDispatcher' => $vendorDir . '/illuminate/contracts/Bus/QueueingDispatcher.php', - 'Illuminate\\Contracts\\Cache\\Factory' => $vendorDir . '/illuminate/contracts/Cache/Factory.php', - 'Illuminate\\Contracts\\Cache\\Lock' => $vendorDir . '/illuminate/contracts/Cache/Lock.php', - 'Illuminate\\Contracts\\Cache\\LockProvider' => $vendorDir . '/illuminate/contracts/Cache/LockProvider.php', - 'Illuminate\\Contracts\\Cache\\LockTimeoutException' => $vendorDir . '/illuminate/contracts/Cache/LockTimeoutException.php', - 'Illuminate\\Contracts\\Cache\\Repository' => $vendorDir . '/illuminate/contracts/Cache/Repository.php', - 'Illuminate\\Contracts\\Cache\\Store' => $vendorDir . '/illuminate/contracts/Cache/Store.php', - 'Illuminate\\Contracts\\Config\\Repository' => $vendorDir . '/illuminate/contracts/Config/Repository.php', - 'Illuminate\\Contracts\\Console\\Application' => $vendorDir . '/illuminate/contracts/Console/Application.php', - 'Illuminate\\Contracts\\Console\\Kernel' => $vendorDir . '/illuminate/contracts/Console/Kernel.php', - 'Illuminate\\Contracts\\Container\\BindingResolutionException' => $vendorDir . '/illuminate/contracts/Container/BindingResolutionException.php', - 'Illuminate\\Contracts\\Container\\Container' => $vendorDir . '/illuminate/contracts/Container/Container.php', - 'Illuminate\\Contracts\\Container\\ContextualBindingBuilder' => $vendorDir . '/illuminate/contracts/Container/ContextualBindingBuilder.php', - 'Illuminate\\Contracts\\Cookie\\Factory' => $vendorDir . '/illuminate/contracts/Cookie/Factory.php', - 'Illuminate\\Contracts\\Cookie\\QueueingFactory' => $vendorDir . '/illuminate/contracts/Cookie/QueueingFactory.php', - 'Illuminate\\Contracts\\Database\\Events\\MigrationEvent' => $vendorDir . '/illuminate/contracts/Database/Events/MigrationEvent.php', - 'Illuminate\\Contracts\\Database\\ModelIdentifier' => $vendorDir . '/illuminate/contracts/Database/ModelIdentifier.php', - 'Illuminate\\Contracts\\Debug\\ExceptionHandler' => $vendorDir . '/illuminate/contracts/Debug/ExceptionHandler.php', - 'Illuminate\\Contracts\\Encryption\\DecryptException' => $vendorDir . '/illuminate/contracts/Encryption/DecryptException.php', - 'Illuminate\\Contracts\\Encryption\\EncryptException' => $vendorDir . '/illuminate/contracts/Encryption/EncryptException.php', - 'Illuminate\\Contracts\\Encryption\\Encrypter' => $vendorDir . '/illuminate/contracts/Encryption/Encrypter.php', - 'Illuminate\\Contracts\\Events\\Dispatcher' => $vendorDir . '/illuminate/contracts/Events/Dispatcher.php', - 'Illuminate\\Contracts\\Filesystem\\Cloud' => $vendorDir . '/illuminate/contracts/Filesystem/Cloud.php', - 'Illuminate\\Contracts\\Filesystem\\Factory' => $vendorDir . '/illuminate/contracts/Filesystem/Factory.php', - 'Illuminate\\Contracts\\Filesystem\\FileExistsException' => $vendorDir . '/illuminate/contracts/Filesystem/FileExistsException.php', - 'Illuminate\\Contracts\\Filesystem\\FileNotFoundException' => $vendorDir . '/illuminate/contracts/Filesystem/FileNotFoundException.php', - 'Illuminate\\Contracts\\Filesystem\\Filesystem' => $vendorDir . '/illuminate/contracts/Filesystem/Filesystem.php', - 'Illuminate\\Contracts\\Foundation\\Application' => $vendorDir . '/illuminate/contracts/Foundation/Application.php', - 'Illuminate\\Contracts\\Hashing\\Hasher' => $vendorDir . '/illuminate/contracts/Hashing/Hasher.php', - 'Illuminate\\Contracts\\Http\\Kernel' => $vendorDir . '/illuminate/contracts/Http/Kernel.php', - 'Illuminate\\Contracts\\Mail\\MailQueue' => $vendorDir . '/illuminate/contracts/Mail/MailQueue.php', - 'Illuminate\\Contracts\\Mail\\Mailable' => $vendorDir . '/illuminate/contracts/Mail/Mailable.php', - 'Illuminate\\Contracts\\Mail\\Mailer' => $vendorDir . '/illuminate/contracts/Mail/Mailer.php', - 'Illuminate\\Contracts\\Notifications\\Dispatcher' => $vendorDir . '/illuminate/contracts/Notifications/Dispatcher.php', - 'Illuminate\\Contracts\\Notifications\\Factory' => $vendorDir . '/illuminate/contracts/Notifications/Factory.php', - 'Illuminate\\Contracts\\Pagination\\LengthAwarePaginator' => $vendorDir . '/illuminate/contracts/Pagination/LengthAwarePaginator.php', - 'Illuminate\\Contracts\\Pagination\\Paginator' => $vendorDir . '/illuminate/contracts/Pagination/Paginator.php', - 'Illuminate\\Contracts\\Pipeline\\Hub' => $vendorDir . '/illuminate/contracts/Pipeline/Hub.php', - 'Illuminate\\Contracts\\Pipeline\\Pipeline' => $vendorDir . '/illuminate/contracts/Pipeline/Pipeline.php', - 'Illuminate\\Contracts\\Queue\\EntityNotFoundException' => $vendorDir . '/illuminate/contracts/Queue/EntityNotFoundException.php', - 'Illuminate\\Contracts\\Queue\\EntityResolver' => $vendorDir . '/illuminate/contracts/Queue/EntityResolver.php', - 'Illuminate\\Contracts\\Queue\\Factory' => $vendorDir . '/illuminate/contracts/Queue/Factory.php', - 'Illuminate\\Contracts\\Queue\\Job' => $vendorDir . '/illuminate/contracts/Queue/Job.php', - 'Illuminate\\Contracts\\Queue\\Monitor' => $vendorDir . '/illuminate/contracts/Queue/Monitor.php', - 'Illuminate\\Contracts\\Queue\\Queue' => $vendorDir . '/illuminate/contracts/Queue/Queue.php', - 'Illuminate\\Contracts\\Queue\\QueueableCollection' => $vendorDir . '/illuminate/contracts/Queue/QueueableCollection.php', - 'Illuminate\\Contracts\\Queue\\QueueableEntity' => $vendorDir . '/illuminate/contracts/Queue/QueueableEntity.php', - 'Illuminate\\Contracts\\Queue\\ShouldQueue' => $vendorDir . '/illuminate/contracts/Queue/ShouldQueue.php', - 'Illuminate\\Contracts\\Redis\\Connection' => $vendorDir . '/illuminate/contracts/Redis/Connection.php', - 'Illuminate\\Contracts\\Redis\\Factory' => $vendorDir . '/illuminate/contracts/Redis/Factory.php', - 'Illuminate\\Contracts\\Redis\\LimiterTimeoutException' => $vendorDir . '/illuminate/contracts/Redis/LimiterTimeoutException.php', - 'Illuminate\\Contracts\\Routing\\BindingRegistrar' => $vendorDir . '/illuminate/contracts/Routing/BindingRegistrar.php', - 'Illuminate\\Contracts\\Routing\\Registrar' => $vendorDir . '/illuminate/contracts/Routing/Registrar.php', - 'Illuminate\\Contracts\\Routing\\ResponseFactory' => $vendorDir . '/illuminate/contracts/Routing/ResponseFactory.php', - 'Illuminate\\Contracts\\Routing\\UrlGenerator' => $vendorDir . '/illuminate/contracts/Routing/UrlGenerator.php', - 'Illuminate\\Contracts\\Routing\\UrlRoutable' => $vendorDir . '/illuminate/contracts/Routing/UrlRoutable.php', - 'Illuminate\\Contracts\\Session\\Session' => $vendorDir . '/illuminate/contracts/Session/Session.php', - 'Illuminate\\Contracts\\Support\\Arrayable' => $vendorDir . '/illuminate/contracts/Support/Arrayable.php', - 'Illuminate\\Contracts\\Support\\DeferrableProvider' => $vendorDir . '/illuminate/contracts/Support/DeferrableProvider.php', - 'Illuminate\\Contracts\\Support\\Htmlable' => $vendorDir . '/illuminate/contracts/Support/Htmlable.php', - 'Illuminate\\Contracts\\Support\\Jsonable' => $vendorDir . '/illuminate/contracts/Support/Jsonable.php', - 'Illuminate\\Contracts\\Support\\MessageBag' => $vendorDir . '/illuminate/contracts/Support/MessageBag.php', - 'Illuminate\\Contracts\\Support\\MessageProvider' => $vendorDir . '/illuminate/contracts/Support/MessageProvider.php', - 'Illuminate\\Contracts\\Support\\Renderable' => $vendorDir . '/illuminate/contracts/Support/Renderable.php', - 'Illuminate\\Contracts\\Support\\Responsable' => $vendorDir . '/illuminate/contracts/Support/Responsable.php', - 'Illuminate\\Contracts\\Translation\\HasLocalePreference' => $vendorDir . '/illuminate/contracts/Translation/HasLocalePreference.php', - 'Illuminate\\Contracts\\Translation\\Loader' => $vendorDir . '/illuminate/contracts/Translation/Loader.php', - 'Illuminate\\Contracts\\Translation\\Translator' => $vendorDir . '/illuminate/contracts/Translation/Translator.php', - 'Illuminate\\Contracts\\Validation\\Factory' => $vendorDir . '/illuminate/contracts/Validation/Factory.php', - 'Illuminate\\Contracts\\Validation\\ImplicitRule' => $vendorDir . '/illuminate/contracts/Validation/ImplicitRule.php', - 'Illuminate\\Contracts\\Validation\\Rule' => $vendorDir . '/illuminate/contracts/Validation/Rule.php', - 'Illuminate\\Contracts\\Validation\\ValidatesWhenResolved' => $vendorDir . '/illuminate/contracts/Validation/ValidatesWhenResolved.php', - 'Illuminate\\Contracts\\Validation\\Validator' => $vendorDir . '/illuminate/contracts/Validation/Validator.php', - 'Illuminate\\Contracts\\View\\Engine' => $vendorDir . '/illuminate/contracts/View/Engine.php', - 'Illuminate\\Contracts\\View\\Factory' => $vendorDir . '/illuminate/contracts/View/Factory.php', - 'Illuminate\\Contracts\\View\\View' => $vendorDir . '/illuminate/contracts/View/View.php', - 'Illuminate\\Support\\AggregateServiceProvider' => $vendorDir . '/illuminate/support/AggregateServiceProvider.php', - 'Illuminate\\Support\\Arr' => $vendorDir . '/illuminate/support/Arr.php', - 'Illuminate\\Support\\Carbon' => $vendorDir . '/illuminate/support/Carbon.php', - 'Illuminate\\Support\\Collection' => $vendorDir . '/illuminate/support/Collection.php', - 'Illuminate\\Support\\Composer' => $vendorDir . '/illuminate/support/Composer.php', - 'Illuminate\\Support\\ConfigurationUrlParser' => $vendorDir . '/illuminate/support/ConfigurationUrlParser.php', - 'Illuminate\\Support\\DateFactory' => $vendorDir . '/illuminate/support/DateFactory.php', - 'Illuminate\\Support\\Facades\\App' => $vendorDir . '/illuminate/support/Facades/App.php', - 'Illuminate\\Support\\Facades\\Artisan' => $vendorDir . '/illuminate/support/Facades/Artisan.php', - 'Illuminate\\Support\\Facades\\Auth' => $vendorDir . '/illuminate/support/Facades/Auth.php', - 'Illuminate\\Support\\Facades\\Blade' => $vendorDir . '/illuminate/support/Facades/Blade.php', - 'Illuminate\\Support\\Facades\\Broadcast' => $vendorDir . '/illuminate/support/Facades/Broadcast.php', - 'Illuminate\\Support\\Facades\\Bus' => $vendorDir . '/illuminate/support/Facades/Bus.php', - 'Illuminate\\Support\\Facades\\Cache' => $vendorDir . '/illuminate/support/Facades/Cache.php', - 'Illuminate\\Support\\Facades\\Config' => $vendorDir . '/illuminate/support/Facades/Config.php', - 'Illuminate\\Support\\Facades\\Cookie' => $vendorDir . '/illuminate/support/Facades/Cookie.php', - 'Illuminate\\Support\\Facades\\Crypt' => $vendorDir . '/illuminate/support/Facades/Crypt.php', - 'Illuminate\\Support\\Facades\\DB' => $vendorDir . '/illuminate/support/Facades/DB.php', - 'Illuminate\\Support\\Facades\\Date' => $vendorDir . '/illuminate/support/Facades/Date.php', - 'Illuminate\\Support\\Facades\\Event' => $vendorDir . '/illuminate/support/Facades/Event.php', - 'Illuminate\\Support\\Facades\\Facade' => $vendorDir . '/illuminate/support/Facades/Facade.php', - 'Illuminate\\Support\\Facades\\File' => $vendorDir . '/illuminate/support/Facades/File.php', - 'Illuminate\\Support\\Facades\\Gate' => $vendorDir . '/illuminate/support/Facades/Gate.php', - 'Illuminate\\Support\\Facades\\Hash' => $vendorDir . '/illuminate/support/Facades/Hash.php', - 'Illuminate\\Support\\Facades\\Input' => $vendorDir . '/illuminate/support/Facades/Input.php', - 'Illuminate\\Support\\Facades\\Lang' => $vendorDir . '/illuminate/support/Facades/Lang.php', - 'Illuminate\\Support\\Facades\\Log' => $vendorDir . '/illuminate/support/Facades/Log.php', - 'Illuminate\\Support\\Facades\\Mail' => $vendorDir . '/illuminate/support/Facades/Mail.php', - 'Illuminate\\Support\\Facades\\Notification' => $vendorDir . '/illuminate/support/Facades/Notification.php', - 'Illuminate\\Support\\Facades\\Password' => $vendorDir . '/illuminate/support/Facades/Password.php', - 'Illuminate\\Support\\Facades\\Queue' => $vendorDir . '/illuminate/support/Facades/Queue.php', - 'Illuminate\\Support\\Facades\\Redirect' => $vendorDir . '/illuminate/support/Facades/Redirect.php', - 'Illuminate\\Support\\Facades\\Redis' => $vendorDir . '/illuminate/support/Facades/Redis.php', - 'Illuminate\\Support\\Facades\\Request' => $vendorDir . '/illuminate/support/Facades/Request.php', - 'Illuminate\\Support\\Facades\\Response' => $vendorDir . '/illuminate/support/Facades/Response.php', - 'Illuminate\\Support\\Facades\\Route' => $vendorDir . '/illuminate/support/Facades/Route.php', - 'Illuminate\\Support\\Facades\\Schema' => $vendorDir . '/illuminate/support/Facades/Schema.php', - 'Illuminate\\Support\\Facades\\Session' => $vendorDir . '/illuminate/support/Facades/Session.php', - 'Illuminate\\Support\\Facades\\Storage' => $vendorDir . '/illuminate/support/Facades/Storage.php', - 'Illuminate\\Support\\Facades\\URL' => $vendorDir . '/illuminate/support/Facades/URL.php', - 'Illuminate\\Support\\Facades\\Validator' => $vendorDir . '/illuminate/support/Facades/Validator.php', - 'Illuminate\\Support\\Facades\\View' => $vendorDir . '/illuminate/support/Facades/View.php', - 'Illuminate\\Support\\Fluent' => $vendorDir . '/illuminate/support/Fluent.php', - 'Illuminate\\Support\\HigherOrderCollectionProxy' => $vendorDir . '/illuminate/support/HigherOrderCollectionProxy.php', - 'Illuminate\\Support\\HigherOrderTapProxy' => $vendorDir . '/illuminate/support/HigherOrderTapProxy.php', - 'Illuminate\\Support\\HtmlString' => $vendorDir . '/illuminate/support/HtmlString.php', - 'Illuminate\\Support\\InteractsWithTime' => $vendorDir . '/illuminate/support/InteractsWithTime.php', - 'Illuminate\\Support\\Manager' => $vendorDir . '/illuminate/support/Manager.php', - 'Illuminate\\Support\\MessageBag' => $vendorDir . '/illuminate/support/MessageBag.php', - 'Illuminate\\Support\\NamespacedItemResolver' => $vendorDir . '/illuminate/support/NamespacedItemResolver.php', - 'Illuminate\\Support\\Optional' => $vendorDir . '/illuminate/support/Optional.php', - 'Illuminate\\Support\\Pluralizer' => $vendorDir . '/illuminate/support/Pluralizer.php', - 'Illuminate\\Support\\ProcessUtils' => $vendorDir . '/illuminate/support/ProcessUtils.php', - 'Illuminate\\Support\\ServiceProvider' => $vendorDir . '/illuminate/support/ServiceProvider.php', - 'Illuminate\\Support\\Str' => $vendorDir . '/illuminate/support/Str.php', - 'Illuminate\\Support\\Testing\\Fakes\\BusFake' => $vendorDir . '/illuminate/support/Testing/Fakes/BusFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\EventFake' => $vendorDir . '/illuminate/support/Testing/Fakes/EventFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\MailFake' => $vendorDir . '/illuminate/support/Testing/Fakes/MailFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\NotificationFake' => $vendorDir . '/illuminate/support/Testing/Fakes/NotificationFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\PendingMailFake' => $vendorDir . '/illuminate/support/Testing/Fakes/PendingMailFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\QueueFake' => $vendorDir . '/illuminate/support/Testing/Fakes/QueueFake.php', - 'Illuminate\\Support\\Traits\\CapsuleManagerTrait' => $vendorDir . '/illuminate/support/Traits/CapsuleManagerTrait.php', - 'Illuminate\\Support\\Traits\\ForwardsCalls' => $vendorDir . '/illuminate/support/Traits/ForwardsCalls.php', - 'Illuminate\\Support\\Traits\\Localizable' => $vendorDir . '/illuminate/support/Traits/Localizable.php', - 'Illuminate\\Support\\Traits\\Macroable' => $vendorDir . '/illuminate/support/Traits/Macroable.php', - 'Illuminate\\Support\\Traits\\Tappable' => $vendorDir . '/illuminate/support/Traits/Tappable.php', - 'Illuminate\\Support\\ViewErrorBag' => $vendorDir . '/illuminate/support/ViewErrorBag.php', - 'Import_Command' => $vendorDir . '/wp-cli/import-command/src/Import_Command.php', - 'JsonException' => $vendorDir . '/symfony/polyfill-php73/Resources/stubs/JsonException.php', - 'JsonSchema\\Constraints\\BaseConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php', - 'JsonSchema\\Constraints\\CollectionConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php', - 'JsonSchema\\Constraints\\Constraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php', - 'JsonSchema\\Constraints\\ConstraintInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php', - 'JsonSchema\\Constraints\\EnumConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php', - 'JsonSchema\\Constraints\\Factory' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php', - 'JsonSchema\\Constraints\\FormatConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php', - 'JsonSchema\\Constraints\\NumberConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php', - 'JsonSchema\\Constraints\\ObjectConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php', - 'JsonSchema\\Constraints\\SchemaConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php', - 'JsonSchema\\Constraints\\StringConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php', - 'JsonSchema\\Constraints\\TypeCheck\\LooseTypeCheck' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php', - 'JsonSchema\\Constraints\\TypeCheck\\StrictTypeCheck' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php', - 'JsonSchema\\Constraints\\TypeCheck\\TypeCheckInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php', - 'JsonSchema\\Constraints\\TypeConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php', - 'JsonSchema\\Constraints\\UndefinedConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php', - 'JsonSchema\\Entity\\JsonPointer' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php', - 'JsonSchema\\Exception\\ExceptionInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php', - 'JsonSchema\\Exception\\InvalidArgumentException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php', - 'JsonSchema\\Exception\\InvalidConfigException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php', - 'JsonSchema\\Exception\\InvalidSchemaException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php', - 'JsonSchema\\Exception\\InvalidSchemaMediaTypeException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php', - 'JsonSchema\\Exception\\InvalidSourceUriException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php', - 'JsonSchema\\Exception\\JsonDecodingException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php', - 'JsonSchema\\Exception\\ResourceNotFoundException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php', - 'JsonSchema\\Exception\\RuntimeException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php', - 'JsonSchema\\Exception\\UnresolvableJsonPointerException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php', - 'JsonSchema\\Exception\\UriResolverException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php', - 'JsonSchema\\Exception\\ValidationException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php', - 'JsonSchema\\Iterator\\ObjectIterator' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php', - 'JsonSchema\\Rfc3339' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php', - 'JsonSchema\\SchemaStorage' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php', - 'JsonSchema\\SchemaStorageInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php', - 'JsonSchema\\UriResolverInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php', - 'JsonSchema\\UriRetrieverInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php', - 'JsonSchema\\Uri\\Retrievers\\AbstractRetriever' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php', - 'JsonSchema\\Uri\\Retrievers\\Curl' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php', - 'JsonSchema\\Uri\\Retrievers\\FileGetContents' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php', - 'JsonSchema\\Uri\\Retrievers\\PredefinedArray' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php', - 'JsonSchema\\Uri\\Retrievers\\UriRetrieverInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php', - 'JsonSchema\\Uri\\UriResolver' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php', - 'JsonSchema\\Uri\\UriRetriever' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php', - 'JsonSchema\\Validator' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Validator.php', - 'Language_Namespace' => $vendorDir . '/wp-cli/language-command/src/Language_Namespace.php', - 'Media_Command' => $vendorDir . '/wp-cli/media-command/src/Media_Command.php', - 'Menu_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Command.php', - 'Menu_Item_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Item_Command.php', - 'Menu_Location_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Location_Command.php', - 'MikeMcLin\\WpPassword\\Contracts\\WpPassword' => $vendorDir . '/mikemclin/laravel-wp-password/src/Contracts/WpPassword.php', - 'MikeMcLin\\WpPassword\\Facades\\WpPassword' => $vendorDir . '/mikemclin/laravel-wp-password/src/Facades/WpPassword.php', - 'MikeMcLin\\WpPassword\\WpPassword' => $vendorDir . '/mikemclin/laravel-wp-password/src/WpPassword.php', - 'MikeMcLin\\WpPassword\\WpPasswordProvider' => $vendorDir . '/mikemclin/laravel-wp-password/src/WpPasswordProvider.php', - 'Mustache_Autoloader' => $vendorDir . '/mustache/mustache/src/Mustache/Autoloader.php', - 'Mustache_Cache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache.php', - 'Mustache_Cache_AbstractCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/AbstractCache.php', - 'Mustache_Cache_FilesystemCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/FilesystemCache.php', - 'Mustache_Cache_NoopCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/NoopCache.php', - 'Mustache_Compiler' => $vendorDir . '/mustache/mustache/src/Mustache/Compiler.php', - 'Mustache_Context' => $vendorDir . '/mustache/mustache/src/Mustache/Context.php', - 'Mustache_Engine' => $vendorDir . '/mustache/mustache/src/Mustache/Engine.php', - 'Mustache_Exception' => $vendorDir . '/mustache/mustache/src/Mustache/Exception.php', - 'Mustache_Exception_InvalidArgumentException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/InvalidArgumentException.php', - 'Mustache_Exception_LogicException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/LogicException.php', - 'Mustache_Exception_RuntimeException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/RuntimeException.php', - 'Mustache_Exception_SyntaxException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/SyntaxException.php', - 'Mustache_Exception_UnknownFilterException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownFilterException.php', - 'Mustache_Exception_UnknownHelperException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownHelperException.php', - 'Mustache_Exception_UnknownTemplateException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownTemplateException.php', - 'Mustache_HelperCollection' => $vendorDir . '/mustache/mustache/src/Mustache/HelperCollection.php', - 'Mustache_LambdaHelper' => $vendorDir . '/mustache/mustache/src/Mustache/LambdaHelper.php', - 'Mustache_Loader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader.php', - 'Mustache_Loader_ArrayLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/ArrayLoader.php', - 'Mustache_Loader_CascadingLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/CascadingLoader.php', - 'Mustache_Loader_FilesystemLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/FilesystemLoader.php', - 'Mustache_Loader_InlineLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/InlineLoader.php', - 'Mustache_Loader_MutableLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/MutableLoader.php', - 'Mustache_Loader_ProductionFilesystemLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/ProductionFilesystemLoader.php', - 'Mustache_Loader_StringLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/StringLoader.php', - 'Mustache_Logger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger.php', - 'Mustache_Logger_AbstractLogger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger/AbstractLogger.php', - 'Mustache_Logger_StreamLogger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger/StreamLogger.php', - 'Mustache_Parser' => $vendorDir . '/mustache/mustache/src/Mustache/Parser.php', - 'Mustache_Source' => $vendorDir . '/mustache/mustache/src/Mustache/Source.php', - 'Mustache_Source_FilesystemSource' => $vendorDir . '/mustache/mustache/src/Mustache/Source/FilesystemSource.php', - 'Mustache_Template' => $vendorDir . '/mustache/mustache/src/Mustache/Template.php', - 'Mustache_Tokenizer' => $vendorDir . '/mustache/mustache/src/Mustache/Tokenizer.php', - 'Mustangostang\\Spyc' => $vendorDir . '/wp-cli/mustangostang-spyc/src/Spyc.php', - 'MySQLDump' => $vendorDir . '/dg/mysql-dump/src/MySQLDump.php', - 'MySQLImport' => $vendorDir . '/dg/mysql-dump/src/MySQLImport.php', - 'Network_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Network_Meta_Command.php', - 'Network_Namespace' => $vendorDir . '/wp-cli/entity-command/src/Network_Namespace.php', - 'Option_Command' => $vendorDir . '/wp-cli/entity-command/src/Option_Command.php', - 'Oxymel' => $vendorDir . '/nb/oxymel/Oxymel.php', - 'OxymelException' => $vendorDir . '/nb/oxymel/Oxymel.php', - 'OxymelTest' => $vendorDir . '/nb/oxymel/OxymelTest.php', - 'PHPUnit\\Exception' => $vendorDir . '/phpunit/phpunit/src/Exception.php', - 'PHPUnit\\Framework\\Assert' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert.php', - 'PHPUnit\\Framework\\AssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/Framework/AssertionFailedError.php', - 'PHPUnit\\Framework\\CodeCoverageException' => $vendorDir . '/phpunit/phpunit/src/Framework/CodeCoverageException.php', - 'PHPUnit\\Framework\\Constraint\\ArrayHasKey' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArrayHasKey.php', - 'PHPUnit\\Framework\\Constraint\\ArraySubset' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArraySubset.php', - 'PHPUnit\\Framework\\Constraint\\Attribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Attribute.php', - 'PHPUnit\\Framework\\Constraint\\Callback' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Callback.php', - 'PHPUnit\\Framework\\Constraint\\ClassHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasAttribute.php', - 'PHPUnit\\Framework\\Constraint\\ClassHasStaticAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasStaticAttribute.php', - 'PHPUnit\\Framework\\Constraint\\Composite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Composite.php', - 'PHPUnit\\Framework\\Constraint\\Constraint' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Constraint.php', - 'PHPUnit\\Framework\\Constraint\\Count' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Count.php', - 'PHPUnit\\Framework\\Constraint\\DirectoryExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/DirectoryExists.php', - 'PHPUnit\\Framework\\Constraint\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception.php', - 'PHPUnit\\Framework\\Constraint\\ExceptionCode' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionCode.php', - 'PHPUnit\\Framework\\Constraint\\ExceptionMessage' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessage.php', - 'PHPUnit\\Framework\\Constraint\\ExceptionMessageRegularExpression' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessageRegularExpression.php', - 'PHPUnit\\Framework\\Constraint\\FileExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/FileExists.php', - 'PHPUnit\\Framework\\Constraint\\GreaterThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/GreaterThan.php', - 'PHPUnit\\Framework\\Constraint\\IsAnything' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php', - 'PHPUnit\\Framework\\Constraint\\IsEmpty' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEmpty.php', - 'PHPUnit\\Framework\\Constraint\\IsEqual' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEqual.php', - 'PHPUnit\\Framework\\Constraint\\IsFalse' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFalse.php', - 'PHPUnit\\Framework\\Constraint\\IsFinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFinite.php', - 'PHPUnit\\Framework\\Constraint\\IsIdentical' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php', - 'PHPUnit\\Framework\\Constraint\\IsInfinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInfinite.php', - 'PHPUnit\\Framework\\Constraint\\IsInstanceOf' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInstanceOf.php', - 'PHPUnit\\Framework\\Constraint\\IsJson' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsJson.php', - 'PHPUnit\\Framework\\Constraint\\IsNan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNan.php', - 'PHPUnit\\Framework\\Constraint\\IsNull' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNull.php', - 'PHPUnit\\Framework\\Constraint\\IsReadable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsReadable.php', - 'PHPUnit\\Framework\\Constraint\\IsTrue' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsTrue.php', - 'PHPUnit\\Framework\\Constraint\\IsType' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsType.php', - 'PHPUnit\\Framework\\Constraint\\IsWritable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsWritable.php', - 'PHPUnit\\Framework\\Constraint\\JsonMatches' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php', - 'PHPUnit\\Framework\\Constraint\\JsonMatchesErrorMessageProvider' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatchesErrorMessageProvider.php', - 'PHPUnit\\Framework\\Constraint\\LessThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LessThan.php', - 'PHPUnit\\Framework\\Constraint\\LogicalAnd' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalAnd.php', - 'PHPUnit\\Framework\\Constraint\\LogicalNot' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalNot.php', - 'PHPUnit\\Framework\\Constraint\\LogicalOr' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalOr.php', - 'PHPUnit\\Framework\\Constraint\\LogicalXor' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalXor.php', - 'PHPUnit\\Framework\\Constraint\\ObjectHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ObjectHasAttribute.php', - 'PHPUnit\\Framework\\Constraint\\RegularExpression' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/RegularExpression.php', - 'PHPUnit\\Framework\\Constraint\\SameSize' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/SameSize.php', - 'PHPUnit\\Framework\\Constraint\\StringContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringContains.php', - 'PHPUnit\\Framework\\Constraint\\StringEndsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringEndsWith.php', - 'PHPUnit\\Framework\\Constraint\\StringMatchesFormatDescription' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringMatchesFormatDescription.php', - 'PHPUnit\\Framework\\Constraint\\StringStartsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringStartsWith.php', - 'PHPUnit\\Framework\\Constraint\\TraversableContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContains.php', - 'PHPUnit\\Framework\\Constraint\\TraversableContainsOnly' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContainsOnly.php', - 'PHPUnit\\Framework\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/phpunit/src/Framework/CoveredCodeNotExecutedException.php', - 'PHPUnit\\Framework\\DataProviderTestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/DataProviderTestSuite.php', - 'PHPUnit\\Framework\\Error\\Deprecated' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Deprecated.php', - 'PHPUnit\\Framework\\Error\\Error' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Error.php', - 'PHPUnit\\Framework\\Error\\Notice' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Notice.php', - 'PHPUnit\\Framework\\Error\\Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Warning.php', - 'PHPUnit\\Framework\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception.php', - 'PHPUnit\\Framework\\ExceptionWrapper' => $vendorDir . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php', - 'PHPUnit\\Framework\\ExpectationFailedException' => $vendorDir . '/phpunit/phpunit/src/Framework/ExpectationFailedException.php', - 'PHPUnit\\Framework\\IncompleteTest' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTest.php', - 'PHPUnit\\Framework\\IncompleteTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php', - 'PHPUnit\\Framework\\IncompleteTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestError.php', - 'PHPUnit\\Framework\\InvalidCoversTargetException' => $vendorDir . '/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php', - 'PHPUnit\\Framework\\MissingCoversAnnotationException' => $vendorDir . '/phpunit/phpunit/src/Framework/MissingCoversAnnotationException.php', - 'PHPUnit\\Framework\\MockObject\\BadMethodCallException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.php', - 'PHPUnit\\Framework\\MockObject\\Builder\\Identity' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/Identity.php', - 'PHPUnit\\Framework\\MockObject\\Builder\\InvocationMocker' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/InvocationMocker.php', - 'PHPUnit\\Framework\\MockObject\\Builder\\Match' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/Match.php', - 'PHPUnit\\Framework\\MockObject\\Builder\\MethodNameMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/MethodNameMatch.php', - 'PHPUnit\\Framework\\MockObject\\Builder\\NamespaceMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/NamespaceMatch.php', - 'PHPUnit\\Framework\\MockObject\\Builder\\ParametersMatch' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/ParametersMatch.php', - 'PHPUnit\\Framework\\MockObject\\Builder\\Stub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Builder/Stub.php', - 'PHPUnit\\Framework\\MockObject\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php', - 'PHPUnit\\Framework\\MockObject\\Generator' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Generator.php', - 'PHPUnit\\Framework\\MockObject\\Invocation' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Invocation/Invocation.php', - 'PHPUnit\\Framework\\MockObject\\InvocationMocker' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/InvocationMocker.php', - 'PHPUnit\\Framework\\MockObject\\Invocation\\ObjectInvocation' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Invocation/ObjectInvocation.php', - 'PHPUnit\\Framework\\MockObject\\Invocation\\StaticInvocation' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Invocation/StaticInvocation.php', - 'PHPUnit\\Framework\\MockObject\\Invokable' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Invokable.php', - 'PHPUnit\\Framework\\MockObject\\Matcher' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\AnyInvokedCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/AnyInvokedCount.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\AnyParameters' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/AnyParameters.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\ConsecutiveParameters' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/ConsecutiveParameters.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\DeferredError' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/DeferredError.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\Invocation' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/Invocation.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtIndex' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtIndex.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtLeastCount.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastOnce' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtLeastOnce.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtMostCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtMostCount.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedCount' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedCount.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedRecorder' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedRecorder.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\MethodName' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/MethodName.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\Parameters' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/Parameters.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\StatelessInvocation' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Matcher/StatelessInvocation.php', - 'PHPUnit\\Framework\\MockObject\\MockBuilder' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockBuilder.php', - 'PHPUnit\\Framework\\MockObject\\MockMethod' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockMethod.php', - 'PHPUnit\\Framework\\MockObject\\MockMethodSet' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockMethodSet.php', - 'PHPUnit\\Framework\\MockObject\\MockObject' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/ForwardCompatibility/MockObject.php', - 'PHPUnit\\Framework\\MockObject\\RuntimeException' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php', - 'PHPUnit\\Framework\\MockObject\\Stub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\ConsecutiveCalls' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ConsecutiveCalls.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/Exception.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\MatcherCollection' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/MatcherCollection.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnArgument' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnArgument.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnCallback' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnCallback.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnReference' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnReference.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnSelf' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnSelf.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnStub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnStub.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnValueMap' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnValueMap.php', - 'PHPUnit\\Framework\\MockObject\\Verifiable' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Verifiable.php', - 'PHPUnit\\Framework\\OutputError' => $vendorDir . '/phpunit/phpunit/src/Framework/OutputError.php', - 'PHPUnit\\Framework\\RiskyTest' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTest.php', - 'PHPUnit\\Framework\\RiskyTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTestError.php', - 'PHPUnit\\Framework\\SelfDescribing' => $vendorDir . '/phpunit/phpunit/src/Framework/SelfDescribing.php', - 'PHPUnit\\Framework\\SkippedTest' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTest.php', - 'PHPUnit\\Framework\\SkippedTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestCase.php', - 'PHPUnit\\Framework\\SkippedTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestError.php', - 'PHPUnit\\Framework\\SkippedTestSuiteError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php', - 'PHPUnit\\Framework\\SyntheticError' => $vendorDir . '/phpunit/phpunit/src/Framework/SyntheticError.php', - 'PHPUnit\\Framework\\Test' => $vendorDir . '/phpunit/phpunit/src/Framework/Test.php', - 'PHPUnit\\Framework\\TestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/TestCase.php', - 'PHPUnit\\Framework\\TestFailure' => $vendorDir . '/phpunit/phpunit/src/Framework/TestFailure.php', - 'PHPUnit\\Framework\\TestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListener.php', - 'PHPUnit\\Framework\\TestListenerDefaultImplementation' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListenerDefaultImplementation.php', - 'PHPUnit\\Framework\\TestResult' => $vendorDir . '/phpunit/phpunit/src/Framework/TestResult.php', - 'PHPUnit\\Framework\\TestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuite.php', - 'PHPUnit\\Framework\\TestSuiteIterator' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuiteIterator.php', - 'PHPUnit\\Framework\\UnintentionallyCoveredCodeError' => $vendorDir . '/phpunit/phpunit/src/Framework/UnintentionallyCoveredCodeError.php', - 'PHPUnit\\Framework\\Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Warning.php', - 'PHPUnit\\Framework\\WarningTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/WarningTestCase.php', - 'PHPUnit\\Runner\\AfterIncompleteTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterIncompleteTestHook.php', - 'PHPUnit\\Runner\\AfterLastTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterLastTestHook.php', - 'PHPUnit\\Runner\\AfterRiskyTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterRiskyTestHook.php', - 'PHPUnit\\Runner\\AfterSkippedTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterSkippedTestHook.php', - 'PHPUnit\\Runner\\AfterSuccessfulTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterSuccessfulTestHook.php', - 'PHPUnit\\Runner\\AfterTestErrorHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestErrorHook.php', - 'PHPUnit\\Runner\\AfterTestFailureHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestFailureHook.php', - 'PHPUnit\\Runner\\AfterTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestHook.php', - 'PHPUnit\\Runner\\AfterTestWarningHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/AfterTestWarningHook.php', - 'PHPUnit\\Runner\\BaseTestRunner' => $vendorDir . '/phpunit/phpunit/src/Runner/BaseTestRunner.php', - 'PHPUnit\\Runner\\BeforeFirstTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/BeforeFirstTestHook.php', - 'PHPUnit\\Runner\\BeforeTestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/BeforeTestHook.php', - 'PHPUnit\\Runner\\Exception' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception.php', - 'PHPUnit\\Runner\\Filter\\ExcludeGroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php', - 'PHPUnit\\Runner\\Filter\\Factory' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Factory.php', - 'PHPUnit\\Runner\\Filter\\GroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php', - 'PHPUnit\\Runner\\Filter\\IncludeGroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php', - 'PHPUnit\\Runner\\Filter\\NameFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php', - 'PHPUnit\\Runner\\Hook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/Hook.php', - 'PHPUnit\\Runner\\NullTestResultCache' => $vendorDir . '/phpunit/phpunit/src/Util/NullTestResultCache.php', - 'PHPUnit\\Runner\\PhptTestCase' => $vendorDir . '/phpunit/phpunit/src/Runner/PhptTestCase.php', - 'PHPUnit\\Runner\\ResultCacheExtension' => $vendorDir . '/phpunit/phpunit/src/Runner/ResultCacheExtension.php', - 'PHPUnit\\Runner\\StandardTestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php', - 'PHPUnit\\Runner\\TestHook' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/TestHook.php', - 'PHPUnit\\Runner\\TestListenerAdapter' => $vendorDir . '/phpunit/phpunit/src/Runner/Hook/TestListenerAdapter.php', - 'PHPUnit\\Runner\\TestResultCache' => $vendorDir . '/phpunit/phpunit/src/Util/TestResultCache.php', - 'PHPUnit\\Runner\\TestResultCacheInterface' => $vendorDir . '/phpunit/phpunit/src/Util/TestResultCacheInterface.php', - 'PHPUnit\\Runner\\TestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php', - 'PHPUnit\\Runner\\TestSuiteSorter' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteSorter.php', - 'PHPUnit\\Runner\\Version' => $vendorDir . '/phpunit/phpunit/src/Runner/Version.php', - 'PHPUnit\\TextUI\\Command' => $vendorDir . '/phpunit/phpunit/src/TextUI/Command.php', - 'PHPUnit\\TextUI\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/ResultPrinter.php', - 'PHPUnit\\TextUI\\TestRunner' => $vendorDir . '/phpunit/phpunit/src/TextUI/TestRunner.php', - 'PHPUnit\\Util\\Blacklist' => $vendorDir . '/phpunit/phpunit/src/Util/Blacklist.php', - 'PHPUnit\\Util\\Configuration' => $vendorDir . '/phpunit/phpunit/src/Util/Configuration.php', - 'PHPUnit\\Util\\ConfigurationGenerator' => $vendorDir . '/phpunit/phpunit/src/Util/ConfigurationGenerator.php', - 'PHPUnit\\Util\\ErrorHandler' => $vendorDir . '/phpunit/phpunit/src/Util/ErrorHandler.php', - 'PHPUnit\\Util\\FileLoader' => $vendorDir . '/phpunit/phpunit/src/Util/FileLoader.php', - 'PHPUnit\\Util\\Filesystem' => $vendorDir . '/phpunit/phpunit/src/Util/Filesystem.php', - 'PHPUnit\\Util\\Filter' => $vendorDir . '/phpunit/phpunit/src/Util/Filter.php', - 'PHPUnit\\Util\\Getopt' => $vendorDir . '/phpunit/phpunit/src/Util/Getopt.php', - 'PHPUnit\\Util\\GlobalState' => $vendorDir . '/phpunit/phpunit/src/Util/GlobalState.php', - 'PHPUnit\\Util\\InvalidArgumentHelper' => $vendorDir . '/phpunit/phpunit/src/Util/InvalidArgumentHelper.php', - 'PHPUnit\\Util\\Json' => $vendorDir . '/phpunit/phpunit/src/Util/Json.php', - 'PHPUnit\\Util\\Log\\JUnit' => $vendorDir . '/phpunit/phpunit/src/Util/Log/JUnit.php', - 'PHPUnit\\Util\\Log\\TeamCity' => $vendorDir . '/phpunit/phpunit/src/Util/Log/TeamCity.php', - 'PHPUnit\\Util\\PHP\\AbstractPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/AbstractPhpProcess.php', - 'PHPUnit\\Util\\PHP\\DefaultPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/DefaultPhpProcess.php', - 'PHPUnit\\Util\\PHP\\WindowsPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/WindowsPhpProcess.php', - 'PHPUnit\\Util\\Printer' => $vendorDir . '/phpunit/phpunit/src/Util/Printer.php', - 'PHPUnit\\Util\\RegularExpression' => $vendorDir . '/phpunit/phpunit/src/Util/RegularExpression.php', - 'PHPUnit\\Util\\Test' => $vendorDir . '/phpunit/phpunit/src/Util/Test.php', - 'PHPUnit\\Util\\TestDox\\CliTestDoxPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/CliTestDoxPrinter.php', - 'PHPUnit\\Util\\TestDox\\HtmlResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/HtmlResultPrinter.php', - 'PHPUnit\\Util\\TestDox\\NamePrettifier' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php', - 'PHPUnit\\Util\\TestDox\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php', - 'PHPUnit\\Util\\TestDox\\TestResult' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/TestResult.php', - 'PHPUnit\\Util\\TestDox\\TextResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/TextResultPrinter.php', - 'PHPUnit\\Util\\TestDox\\XmlResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/XmlResultPrinter.php', - 'PHPUnit\\Util\\TextTestListRenderer' => $vendorDir . '/phpunit/phpunit/src/Util/TextTestListRenderer.php', - 'PHPUnit\\Util\\Type' => $vendorDir . '/phpunit/phpunit/src/Util/Type.php', - 'PHPUnit\\Util\\XdebugFilterScriptGenerator' => $vendorDir . '/phpunit/phpunit/src/Util/XdebugFilterScriptGenerator.php', - 'PHPUnit\\Util\\Xml' => $vendorDir . '/phpunit/phpunit/src/Util/Xml.php', - 'PHPUnit\\Util\\XmlTestListRenderer' => $vendorDir . '/phpunit/phpunit/src/Util/XmlTestListRenderer.php', - 'PHPUnit_Framework_MockObject_MockObject' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/MockObject.php', - 'PHP_Token' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_TokenWithScope' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_TokenWithScopeAndVisibility' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ABSTRACT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_AMPERSAND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_AND_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ARRAY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ARRAY_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_AS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_AT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BACKTICK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BAD_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BOOLEAN_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BOOLEAN_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BOOL_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BREAK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CALLABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CARET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CASE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CATCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLASS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLASS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLASS_NAME_CONSTANT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLONE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLOSE_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLOSE_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLOSE_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLOSE_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COALESCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COMMA' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CONCAT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CONST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CONSTANT_ENCAPSED_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CONTINUE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CURLY_OPEN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DEC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DEFAULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DIR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DIV' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DIV_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOC_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOLLAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOLLAR_OPEN_CURLY_BRACES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOUBLE_ARROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOUBLE_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOUBLE_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOUBLE_QUOTES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ELLIPSIS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ELSE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ELSEIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EMPTY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENCAPSED_AND_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDDECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDFOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDFOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDSWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDWHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_END_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EVAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EXCLAMATION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EXIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EXTENDS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FINAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FINALLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FUNC_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_GLOBAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_GOTO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_HALT_COMPILER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IMPLEMENTS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INCLUDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INCLUDE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INLINE_HTML' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INSTANCEOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INSTEADOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INTERFACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ISSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_GREATER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_NOT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_NOT_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_SMALLER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_Includes' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LINE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LIST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LOGICAL_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LOGICAL_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LOGICAL_XOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_METHOD_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MINUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MINUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MOD_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MUL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NAMESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NEW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NS_SEPARATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NUM_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OBJECT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OBJECT_OPERATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_TAG_WITH_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PAAMAYIM_NEKUDOTAYIM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PERCENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PIPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PLUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PLUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_POW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_POW_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PRINT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PRIVATE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PROTECTED' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PUBLIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_QUESTION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_REQUIRE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_REQUIRE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_RETURN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SEMICOLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SPACESHIP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_START_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_STATIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_STRING_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_STRING_VARNAME' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_Stream' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream.php', - 'PHP_Token_Stream_CachingFactory' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php', - 'PHP_Token_THROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TILDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TRAIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TRAIT_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TRY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_UNSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_UNSET_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_USE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_USE_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_VAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_VARIABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_WHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_XOR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_YIELD' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_YIELD_FROM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php', - 'Package_Command' => $vendorDir . '/wp-cli/package-command/src/Package_Command.php', - 'Peast\\Formatter\\Base' => $vendorDir . '/mck89/peast/lib/Peast/Formatter/Base.php', - 'Peast\\Formatter\\Compact' => $vendorDir . '/mck89/peast/lib/Peast/Formatter/Compact.php', - 'Peast\\Formatter\\Expanded' => $vendorDir . '/mck89/peast/lib/Peast/Formatter/Expanded.php', - 'Peast\\Formatter\\PrettyPrint' => $vendorDir . '/mck89/peast/lib/Peast/Formatter/PrettyPrint.php', - 'Peast\\Peast' => $vendorDir . '/mck89/peast/lib/Peast/Peast.php', - 'Peast\\Renderer' => $vendorDir . '/mck89/peast/lib/Peast/Renderer.php', - 'Peast\\Syntax\\CommentsRegistry' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/CommentsRegistry.php', - 'Peast\\Syntax\\ES2015\\Parser' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2015/Parser.php', - 'Peast\\Syntax\\ES2015\\Scanner' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2015/Scanner.php', - 'Peast\\Syntax\\ES2016\\Parser' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2016/Parser.php', - 'Peast\\Syntax\\ES2016\\Scanner' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2016/Scanner.php', - 'Peast\\Syntax\\ES2017\\Parser' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2017/Parser.php', - 'Peast\\Syntax\\ES2017\\Scanner' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2017/Scanner.php', - 'Peast\\Syntax\\ES2018\\Parser' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2018/Parser.php', - 'Peast\\Syntax\\ES2018\\Scanner' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2018/Scanner.php', - 'Peast\\Syntax\\ES2019\\Parser' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2019/Parser.php', - 'Peast\\Syntax\\ES2019\\Scanner' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/ES2019/Scanner.php', - 'Peast\\Syntax\\EventsEmitter' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/EventsEmitter.php', - 'Peast\\Syntax\\Exception' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Exception.php', - 'Peast\\Syntax\\JSX\\Parser' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/JSX/Parser.php', - 'Peast\\Syntax\\JSX\\Scanner' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/JSX/Scanner.php', - 'Peast\\Syntax\\LSM' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/LSM.php', - 'Peast\\Syntax\\Node\\ArrayExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ArrayExpression.php', - 'Peast\\Syntax\\Node\\ArrayPattern' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ArrayPattern.php', - 'Peast\\Syntax\\Node\\ArrowFunctionExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ArrowFunctionExpression.php', - 'Peast\\Syntax\\Node\\AssignmentExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/AssignmentExpression.php', - 'Peast\\Syntax\\Node\\AssignmentPattern' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/AssignmentPattern.php', - 'Peast\\Syntax\\Node\\AssignmentProperty' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/AssignmentProperty.php', - 'Peast\\Syntax\\Node\\AwaitExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/AwaitExpression.php', - 'Peast\\Syntax\\Node\\BinaryExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/BinaryExpression.php', - 'Peast\\Syntax\\Node\\BlockStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/BlockStatement.php', - 'Peast\\Syntax\\Node\\BooleanLiteral' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/BooleanLiteral.php', - 'Peast\\Syntax\\Node\\BreakStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/BreakStatement.php', - 'Peast\\Syntax\\Node\\CallExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/CallExpression.php', - 'Peast\\Syntax\\Node\\CatchClause' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/CatchClause.php', - 'Peast\\Syntax\\Node\\ClassBody' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ClassBody.php', - 'Peast\\Syntax\\Node\\ClassDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ClassDeclaration.php', - 'Peast\\Syntax\\Node\\ClassExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ClassExpression.php', - 'Peast\\Syntax\\Node\\Class_' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Class_.php', - 'Peast\\Syntax\\Node\\Comment' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Comment.php', - 'Peast\\Syntax\\Node\\ConditionalExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ConditionalExpression.php', - 'Peast\\Syntax\\Node\\ContinueStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ContinueStatement.php', - 'Peast\\Syntax\\Node\\DebuggerStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/DebuggerStatement.php', - 'Peast\\Syntax\\Node\\Declaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Declaration.php', - 'Peast\\Syntax\\Node\\DoWhileStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/DoWhileStatement.php', - 'Peast\\Syntax\\Node\\EmptyStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/EmptyStatement.php', - 'Peast\\Syntax\\Node\\ExportAllDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ExportAllDeclaration.php', - 'Peast\\Syntax\\Node\\ExportDefaultDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ExportDefaultDeclaration.php', - 'Peast\\Syntax\\Node\\ExportNamedDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ExportNamedDeclaration.php', - 'Peast\\Syntax\\Node\\ExportSpecifier' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ExportSpecifier.php', - 'Peast\\Syntax\\Node\\Expression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Expression.php', - 'Peast\\Syntax\\Node\\ExpressionStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ExpressionStatement.php', - 'Peast\\Syntax\\Node\\ForInStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ForInStatement.php', - 'Peast\\Syntax\\Node\\ForOfStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ForOfStatement.php', - 'Peast\\Syntax\\Node\\ForStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ForStatement.php', - 'Peast\\Syntax\\Node\\FunctionDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/FunctionDeclaration.php', - 'Peast\\Syntax\\Node\\FunctionExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/FunctionExpression.php', - 'Peast\\Syntax\\Node\\Function_' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Function_.php', - 'Peast\\Syntax\\Node\\Identifier' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Identifier.php', - 'Peast\\Syntax\\Node\\IfStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/IfStatement.php', - 'Peast\\Syntax\\Node\\ImportDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ImportDeclaration.php', - 'Peast\\Syntax\\Node\\ImportDefaultSpecifier' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ImportDefaultSpecifier.php', - 'Peast\\Syntax\\Node\\ImportNamespaceSpecifier' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ImportNamespaceSpecifier.php', - 'Peast\\Syntax\\Node\\ImportSpecifier' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ImportSpecifier.php', - 'Peast\\Syntax\\Node\\JSX\\JSXAttribute' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXAttribute.php', - 'Peast\\Syntax\\Node\\JSX\\JSXBoundaryElement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXBoundaryElement.php', - 'Peast\\Syntax\\Node\\JSX\\JSXClosingElement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXClosingElement.php', - 'Peast\\Syntax\\Node\\JSX\\JSXClosingFragment' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXClosingFragment.php', - 'Peast\\Syntax\\Node\\JSX\\JSXElement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXElement.php', - 'Peast\\Syntax\\Node\\JSX\\JSXEmptyExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXEmptyExpression.php', - 'Peast\\Syntax\\Node\\JSX\\JSXExpressionContainer' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXExpressionContainer.php', - 'Peast\\Syntax\\Node\\JSX\\JSXFragment' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXFragment.php', - 'Peast\\Syntax\\Node\\JSX\\JSXIdentifier' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXIdentifier.php', - 'Peast\\Syntax\\Node\\JSX\\JSXMemberExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXMemberExpression.php', - 'Peast\\Syntax\\Node\\JSX\\JSXNamespacedName' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXNamespacedName.php', - 'Peast\\Syntax\\Node\\JSX\\JSXOpeningElement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXOpeningElement.php', - 'Peast\\Syntax\\Node\\JSX\\JSXOpeningFragment' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXOpeningFragment.php', - 'Peast\\Syntax\\Node\\JSX\\JSXSpreadAttribute' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXSpreadAttribute.php', - 'Peast\\Syntax\\Node\\JSX\\JSXSpreadChild' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXSpreadChild.php', - 'Peast\\Syntax\\Node\\JSX\\JSXText' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXText.php', - 'Peast\\Syntax\\Node\\LabeledStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/LabeledStatement.php', - 'Peast\\Syntax\\Node\\Literal' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Literal.php', - 'Peast\\Syntax\\Node\\LogicalExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/LogicalExpression.php', - 'Peast\\Syntax\\Node\\MemberExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/MemberExpression.php', - 'Peast\\Syntax\\Node\\MetaProperty' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/MetaProperty.php', - 'Peast\\Syntax\\Node\\MethodDefinition' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/MethodDefinition.php', - 'Peast\\Syntax\\Node\\ModuleDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ModuleDeclaration.php', - 'Peast\\Syntax\\Node\\ModuleSpecifier' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ModuleSpecifier.php', - 'Peast\\Syntax\\Node\\NewExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/NewExpression.php', - 'Peast\\Syntax\\Node\\Node' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Node.php', - 'Peast\\Syntax\\Node\\NullLiteral' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/NullLiteral.php', - 'Peast\\Syntax\\Node\\NumericLiteral' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/NumericLiteral.php', - 'Peast\\Syntax\\Node\\ObjectExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ObjectExpression.php', - 'Peast\\Syntax\\Node\\ObjectPattern' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ObjectPattern.php', - 'Peast\\Syntax\\Node\\ParenthesizedExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ParenthesizedExpression.php', - 'Peast\\Syntax\\Node\\Pattern' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Pattern.php', - 'Peast\\Syntax\\Node\\Program' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Program.php', - 'Peast\\Syntax\\Node\\Property' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Property.php', - 'Peast\\Syntax\\Node\\RegExpLiteral' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/RegExpLiteral.php', - 'Peast\\Syntax\\Node\\RestElement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/RestElement.php', - 'Peast\\Syntax\\Node\\ReturnStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ReturnStatement.php', - 'Peast\\Syntax\\Node\\SequenceExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/SequenceExpression.php', - 'Peast\\Syntax\\Node\\SpreadElement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/SpreadElement.php', - 'Peast\\Syntax\\Node\\Statement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Statement.php', - 'Peast\\Syntax\\Node\\StringLiteral' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/StringLiteral.php', - 'Peast\\Syntax\\Node\\Super' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/Super.php', - 'Peast\\Syntax\\Node\\SwitchCase' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/SwitchCase.php', - 'Peast\\Syntax\\Node\\SwitchStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/SwitchStatement.php', - 'Peast\\Syntax\\Node\\TaggedTemplateExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/TaggedTemplateExpression.php', - 'Peast\\Syntax\\Node\\TemplateElement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/TemplateElement.php', - 'Peast\\Syntax\\Node\\TemplateLiteral' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/TemplateLiteral.php', - 'Peast\\Syntax\\Node\\ThisExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ThisExpression.php', - 'Peast\\Syntax\\Node\\ThrowStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/ThrowStatement.php', - 'Peast\\Syntax\\Node\\TryStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/TryStatement.php', - 'Peast\\Syntax\\Node\\UnaryExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/UnaryExpression.php', - 'Peast\\Syntax\\Node\\UpdateExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/UpdateExpression.php', - 'Peast\\Syntax\\Node\\VariableDeclaration' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/VariableDeclaration.php', - 'Peast\\Syntax\\Node\\VariableDeclarator' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/VariableDeclarator.php', - 'Peast\\Syntax\\Node\\WhileStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/WhileStatement.php', - 'Peast\\Syntax\\Node\\WithStatement' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/WithStatement.php', - 'Peast\\Syntax\\Node\\YieldExpression' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Node/YieldExpression.php', - 'Peast\\Syntax\\Parser' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Parser.php', - 'Peast\\Syntax\\Position' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Position.php', - 'Peast\\Syntax\\Scanner' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Scanner.php', - 'Peast\\Syntax\\SourceLocation' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/SourceLocation.php', - 'Peast\\Syntax\\Token' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Token.php', - 'Peast\\Syntax\\Utils' => $vendorDir . '/mck89/peast/lib/Peast/Syntax/Utils.php', - 'Peast\\Traverser' => $vendorDir . '/mck89/peast/lib/Peast/Traverser.php', - 'Peast\\test\\PeastTest' => $vendorDir . '/mck89/peast/test/Peast/PeastTest.php', - 'Peast\\test\\Syntax\\CommentsRegistryTest' => $vendorDir . '/mck89/peast/test/Peast/Syntax/CommentsRegistryTest.php', - 'Peast\\test\\Syntax\\ES2015\\ES2015Test' => $vendorDir . '/mck89/peast/test/Peast/Syntax/ES2015/ES2015Test.php', - 'Peast\\test\\Syntax\\ES2016\\ES2016Test' => $vendorDir . '/mck89/peast/test/Peast/Syntax/ES2016/ES2016Test.php', - 'Peast\\test\\Syntax\\ES2017\\ES2017Test' => $vendorDir . '/mck89/peast/test/Peast/Syntax/ES2017/ES2017Test.php', - 'Peast\\test\\Syntax\\ES2018\\ES2018Test' => $vendorDir . '/mck89/peast/test/Peast/Syntax/ES2018/ES2018Test.php', - 'Peast\\test\\Syntax\\ES2019\\ES2019Test' => $vendorDir . '/mck89/peast/test/Peast/Syntax/ES2019/ES2019Test.php', - 'Peast\\test\\Syntax\\Node\\BooleanLiteralTest' => $vendorDir . '/mck89/peast/test/Peast/Syntax/Node/BooleanLiteralTest.php', - 'Peast\\test\\Syntax\\Node\\CommentTest' => $vendorDir . '/mck89/peast/test/Peast/Syntax/Node/CommentTest.php', - 'Peast\\test\\Syntax\\Node\\NullLiteralTest' => $vendorDir . '/mck89/peast/test/Peast/Syntax/Node/NullLiteralTest.php', - 'Peast\\test\\Syntax\\Node\\NumericLiteralTest' => $vendorDir . '/mck89/peast/test/Peast/Syntax/Node/NumericLiteralTest.php', - 'Peast\\test\\Syntax\\Node\\StringLiteralTest' => $vendorDir . '/mck89/peast/test/Peast/Syntax/Node/StringLiteralTest.php', - 'Peast\\test\\TestBase' => $vendorDir . '/mck89/peast/test/Peast/TestBase.php', - 'Peast\\test\\TestCaseBase' => $vendorDir . '/mck89/peast/test/Peast/TestCaseBase.php', - 'Peast\\test\\Traverser\\RendererTest' => $vendorDir . '/mck89/peast/test/Peast/RendererTest.php', - 'Peast\\test\\Traverser\\TraverserTest' => $vendorDir . '/mck89/peast/test/Peast/TraverserTest.php', - 'PharIo\\Manifest\\Application' => $vendorDir . '/phar-io/manifest/src/values/Application.php', - 'PharIo\\Manifest\\ApplicationName' => $vendorDir . '/phar-io/manifest/src/values/ApplicationName.php', - 'PharIo\\Manifest\\Author' => $vendorDir . '/phar-io/manifest/src/values/Author.php', - 'PharIo\\Manifest\\AuthorCollection' => $vendorDir . '/phar-io/manifest/src/values/AuthorCollection.php', - 'PharIo\\Manifest\\AuthorCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/AuthorCollectionIterator.php', - 'PharIo\\Manifest\\AuthorElement' => $vendorDir . '/phar-io/manifest/src/xml/AuthorElement.php', - 'PharIo\\Manifest\\AuthorElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/AuthorElementCollection.php', - 'PharIo\\Manifest\\BundledComponent' => $vendorDir . '/phar-io/manifest/src/values/BundledComponent.php', - 'PharIo\\Manifest\\BundledComponentCollection' => $vendorDir . '/phar-io/manifest/src/values/BundledComponentCollection.php', - 'PharIo\\Manifest\\BundledComponentCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/BundledComponentCollectionIterator.php', - 'PharIo\\Manifest\\BundlesElement' => $vendorDir . '/phar-io/manifest/src/xml/BundlesElement.php', - 'PharIo\\Manifest\\ComponentElement' => $vendorDir . '/phar-io/manifest/src/xml/ComponentElement.php', - 'PharIo\\Manifest\\ComponentElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ComponentElementCollection.php', - 'PharIo\\Manifest\\ContainsElement' => $vendorDir . '/phar-io/manifest/src/xml/ContainsElement.php', - 'PharIo\\Manifest\\CopyrightElement' => $vendorDir . '/phar-io/manifest/src/xml/CopyrightElement.php', - 'PharIo\\Manifest\\CopyrightInformation' => $vendorDir . '/phar-io/manifest/src/values/CopyrightInformation.php', - 'PharIo\\Manifest\\ElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ElementCollection.php', - 'PharIo\\Manifest\\Email' => $vendorDir . '/phar-io/manifest/src/values/Email.php', - 'PharIo\\Manifest\\Exception' => $vendorDir . '/phar-io/manifest/src/exceptions/Exception.php', - 'PharIo\\Manifest\\ExtElement' => $vendorDir . '/phar-io/manifest/src/xml/ExtElement.php', - 'PharIo\\Manifest\\ExtElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ExtElementCollection.php', - 'PharIo\\Manifest\\Extension' => $vendorDir . '/phar-io/manifest/src/values/Extension.php', - 'PharIo\\Manifest\\ExtensionElement' => $vendorDir . '/phar-io/manifest/src/xml/ExtensionElement.php', - 'PharIo\\Manifest\\InvalidApplicationNameException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php', - 'PharIo\\Manifest\\InvalidEmailException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidEmailException.php', - 'PharIo\\Manifest\\InvalidUrlException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidUrlException.php', - 'PharIo\\Manifest\\Library' => $vendorDir . '/phar-io/manifest/src/values/Library.php', - 'PharIo\\Manifest\\License' => $vendorDir . '/phar-io/manifest/src/values/License.php', - 'PharIo\\Manifest\\LicenseElement' => $vendorDir . '/phar-io/manifest/src/xml/LicenseElement.php', - 'PharIo\\Manifest\\Manifest' => $vendorDir . '/phar-io/manifest/src/values/Manifest.php', - 'PharIo\\Manifest\\ManifestDocument' => $vendorDir . '/phar-io/manifest/src/xml/ManifestDocument.php', - 'PharIo\\Manifest\\ManifestDocumentException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentException.php', - 'PharIo\\Manifest\\ManifestDocumentLoadingException' => $vendorDir . '/phar-io/manifest/src/xml/ManifestDocumentLoadingException.php', - 'PharIo\\Manifest\\ManifestDocumentMapper' => $vendorDir . '/phar-io/manifest/src/ManifestDocumentMapper.php', - 'PharIo\\Manifest\\ManifestDocumentMapperException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php', - 'PharIo\\Manifest\\ManifestElement' => $vendorDir . '/phar-io/manifest/src/xml/ManifestElement.php', - 'PharIo\\Manifest\\ManifestElementException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestElementException.php', - 'PharIo\\Manifest\\ManifestLoader' => $vendorDir . '/phar-io/manifest/src/ManifestLoader.php', - 'PharIo\\Manifest\\ManifestLoaderException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestLoaderException.php', - 'PharIo\\Manifest\\ManifestSerializer' => $vendorDir . '/phar-io/manifest/src/ManifestSerializer.php', - 'PharIo\\Manifest\\PhpElement' => $vendorDir . '/phar-io/manifest/src/xml/PhpElement.php', - 'PharIo\\Manifest\\PhpExtensionRequirement' => $vendorDir . '/phar-io/manifest/src/values/PhpExtensionRequirement.php', - 'PharIo\\Manifest\\PhpVersionRequirement' => $vendorDir . '/phar-io/manifest/src/values/PhpVersionRequirement.php', - 'PharIo\\Manifest\\Requirement' => $vendorDir . '/phar-io/manifest/src/values/Requirement.php', - 'PharIo\\Manifest\\RequirementCollection' => $vendorDir . '/phar-io/manifest/src/values/RequirementCollection.php', - 'PharIo\\Manifest\\RequirementCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/RequirementCollectionIterator.php', - 'PharIo\\Manifest\\RequiresElement' => $vendorDir . '/phar-io/manifest/src/xml/RequiresElement.php', - 'PharIo\\Manifest\\Type' => $vendorDir . '/phar-io/manifest/src/values/Type.php', - 'PharIo\\Manifest\\Url' => $vendorDir . '/phar-io/manifest/src/values/Url.php', - 'PharIo\\Version\\AbstractVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/AbstractVersionConstraint.php', - 'PharIo\\Version\\AndVersionConstraintGroup' => $vendorDir . '/phar-io/version/src/constraints/AndVersionConstraintGroup.php', - 'PharIo\\Version\\AnyVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/AnyVersionConstraint.php', - 'PharIo\\Version\\ExactVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/ExactVersionConstraint.php', - 'PharIo\\Version\\Exception' => $vendorDir . '/phar-io/version/src/exceptions/Exception.php', - 'PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/GreaterThanOrEqualToVersionConstraint.php', - 'PharIo\\Version\\InvalidPreReleaseSuffixException' => $vendorDir . '/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.php', - 'PharIo\\Version\\InvalidVersionException' => $vendorDir . '/phar-io/version/src/exceptions/InvalidVersionException.php', - 'PharIo\\Version\\OrVersionConstraintGroup' => $vendorDir . '/phar-io/version/src/constraints/OrVersionConstraintGroup.php', - 'PharIo\\Version\\PreReleaseSuffix' => $vendorDir . '/phar-io/version/src/PreReleaseSuffix.php', - 'PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/SpecificMajorAndMinorVersionConstraint.php', - 'PharIo\\Version\\SpecificMajorVersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/SpecificMajorVersionConstraint.php', - 'PharIo\\Version\\UnsupportedVersionConstraintException' => $vendorDir . '/phar-io/version/src/exceptions/UnsupportedVersionConstraintException.php', - 'PharIo\\Version\\Version' => $vendorDir . '/phar-io/version/src/Version.php', - 'PharIo\\Version\\VersionConstraint' => $vendorDir . '/phar-io/version/src/constraints/VersionConstraint.php', - 'PharIo\\Version\\VersionConstraintParser' => $vendorDir . '/phar-io/version/src/VersionConstraintParser.php', - 'PharIo\\Version\\VersionConstraintValue' => $vendorDir . '/phar-io/version/src/VersionConstraintValue.php', - 'PharIo\\Version\\VersionNumber' => $vendorDir . '/phar-io/version/src/VersionNumber.php', - 'PhpOption\\LazyOption' => $vendorDir . '/phpoption/phpoption/src/PhpOption/LazyOption.php', - 'PhpOption\\None' => $vendorDir . '/phpoption/phpoption/src/PhpOption/None.php', - 'PhpOption\\Option' => $vendorDir . '/phpoption/phpoption/src/PhpOption/Option.php', - 'PhpOption\\Some' => $vendorDir . '/phpoption/phpoption/src/PhpOption/Some.php', - 'Plugin_Command' => $vendorDir . '/wp-cli/extension-command/src/Plugin_Command.php', - 'Plugin_Command_Namespace' => $vendorDir . '/wp-cli/checksum-command/src/Plugin_Command_Namespace.php', - 'Plugin_Language_Command' => $vendorDir . '/wp-cli/language-command/src/Plugin_Language_Command.php', - 'Post_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Command.php', - 'Post_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Meta_Command.php', - 'Post_Term_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Term_Command.php', - 'Post_Type_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Type_Command.php', - 'Prophecy\\Argument' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument.php', - 'Prophecy\\Argument\\ArgumentsWildcard' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/ArgumentsWildcard.php', - 'Prophecy\\Argument\\Token\\AnyValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValueToken.php', - 'Prophecy\\Argument\\Token\\AnyValuesToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php', - 'Prophecy\\Argument\\Token\\ApproximateValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ApproximateValueToken.php', - 'Prophecy\\Argument\\Token\\ArrayCountToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayCountToken.php', - 'Prophecy\\Argument\\Token\\ArrayEntryToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEntryToken.php', - 'Prophecy\\Argument\\Token\\ArrayEveryEntryToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEveryEntryToken.php', - 'Prophecy\\Argument\\Token\\CallbackToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/CallbackToken.php', - 'Prophecy\\Argument\\Token\\ExactValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ExactValueToken.php', - 'Prophecy\\Argument\\Token\\IdenticalValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/IdenticalValueToken.php', - 'Prophecy\\Argument\\Token\\LogicalAndToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalAndToken.php', - 'Prophecy\\Argument\\Token\\LogicalNotToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php', - 'Prophecy\\Argument\\Token\\ObjectStateToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ObjectStateToken.php', - 'Prophecy\\Argument\\Token\\StringContainsToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/StringContainsToken.php', - 'Prophecy\\Argument\\Token\\TokenInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/TokenInterface.php', - 'Prophecy\\Argument\\Token\\TypeToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/TypeToken.php', - 'Prophecy\\Call\\Call' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Call/Call.php', - 'Prophecy\\Call\\CallCenter' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Call/CallCenter.php', - 'Prophecy\\Comparator\\ClosureComparator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/ClosureComparator.php', - 'Prophecy\\Comparator\\Factory' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/Factory.php', - 'Prophecy\\Comparator\\ProphecyComparator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/ProphecyComparator.php', - 'Prophecy\\Doubler\\CachedDoubler' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/CachedDoubler.php', - 'Prophecy\\Doubler\\ClassPatch\\ClassPatchInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php', - 'Prophecy\\Doubler\\ClassPatch\\DisableConstructorPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\HhvmExceptionPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\KeywordPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/KeywordPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\MagicCallPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/MagicCallPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\ProphecySubjectPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\ReflectionClassNewInstancePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php', - 'Prophecy\\Doubler\\ClassPatch\\SplFileInfoPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/SplFileInfoPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\ThrowablePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ThrowablePatch.php', - 'Prophecy\\Doubler\\ClassPatch\\TraversablePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/TraversablePatch.php', - 'Prophecy\\Doubler\\DoubleInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/DoubleInterface.php', - 'Prophecy\\Doubler\\Doubler' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Doubler.php', - 'Prophecy\\Doubler\\Generator\\ClassCodeGenerator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCodeGenerator.php', - 'Prophecy\\Doubler\\Generator\\ClassCreator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCreator.php', - 'Prophecy\\Doubler\\Generator\\ClassMirror' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassMirror.php', - 'Prophecy\\Doubler\\Generator\\Node\\ArgumentNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ArgumentNode.php', - 'Prophecy\\Doubler\\Generator\\Node\\ClassNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ClassNode.php', - 'Prophecy\\Doubler\\Generator\\Node\\MethodNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/MethodNode.php', - 'Prophecy\\Doubler\\Generator\\ReflectionInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ReflectionInterface.php', - 'Prophecy\\Doubler\\Generator\\TypeHintReference' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/TypeHintReference.php', - 'Prophecy\\Doubler\\LazyDouble' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/LazyDouble.php', - 'Prophecy\\Doubler\\NameGenerator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/NameGenerator.php', - 'Prophecy\\Exception\\Call\\UnexpectedCallException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Call/UnexpectedCallException.php', - 'Prophecy\\Exception\\Doubler\\ClassCreatorException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassCreatorException.php', - 'Prophecy\\Exception\\Doubler\\ClassMirrorException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassMirrorException.php', - 'Prophecy\\Exception\\Doubler\\ClassNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php', - 'Prophecy\\Exception\\Doubler\\DoubleException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.php', - 'Prophecy\\Exception\\Doubler\\DoublerException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php', - 'Prophecy\\Exception\\Doubler\\InterfaceNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/InterfaceNotFoundException.php', - 'Prophecy\\Exception\\Doubler\\MethodNotExtendableException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotExtendableException.php', - 'Prophecy\\Exception\\Doubler\\MethodNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php', - 'Prophecy\\Exception\\Doubler\\ReturnByReferenceException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ReturnByReferenceException.php', - 'Prophecy\\Exception\\Exception' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Exception.php', - 'Prophecy\\Exception\\InvalidArgumentException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php', - 'Prophecy\\Exception\\Prediction\\AggregateException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/AggregateException.php', - 'Prophecy\\Exception\\Prediction\\FailedPredictionException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/FailedPredictionException.php', - 'Prophecy\\Exception\\Prediction\\NoCallsException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/NoCallsException.php', - 'Prophecy\\Exception\\Prediction\\PredictionException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/PredictionException.php', - 'Prophecy\\Exception\\Prediction\\UnexpectedCallsCountException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsCountException.php', - 'Prophecy\\Exception\\Prediction\\UnexpectedCallsException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsException.php', - 'Prophecy\\Exception\\Prophecy\\MethodProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/MethodProphecyException.php', - 'Prophecy\\Exception\\Prophecy\\ObjectProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ObjectProphecyException.php', - 'Prophecy\\Exception\\Prophecy\\ProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php', - 'Prophecy\\PhpDocumentor\\ClassAndInterfaceTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php', - 'Prophecy\\PhpDocumentor\\ClassTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassTagRetriever.php', - 'Prophecy\\PhpDocumentor\\LegacyClassTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php', - 'Prophecy\\PhpDocumentor\\MethodTagRetrieverInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php', - 'Prophecy\\Prediction\\CallPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallPrediction.php', - 'Prophecy\\Prediction\\CallTimesPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallTimesPrediction.php', - 'Prophecy\\Prediction\\CallbackPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallbackPrediction.php', - 'Prophecy\\Prediction\\NoCallsPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/NoCallsPrediction.php', - 'Prophecy\\Prediction\\PredictionInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/PredictionInterface.php', - 'Prophecy\\Promise\\CallbackPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/CallbackPromise.php', - 'Prophecy\\Promise\\PromiseInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/PromiseInterface.php', - 'Prophecy\\Promise\\ReturnArgumentPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ReturnArgumentPromise.php', - 'Prophecy\\Promise\\ReturnPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ReturnPromise.php', - 'Prophecy\\Promise\\ThrowPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ThrowPromise.php', - 'Prophecy\\Prophecy\\MethodProphecy' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/MethodProphecy.php', - 'Prophecy\\Prophecy\\ObjectProphecy' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php', - 'Prophecy\\Prophecy\\ProphecyInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecyInterface.php', - 'Prophecy\\Prophecy\\ProphecySubjectInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecySubjectInterface.php', - 'Prophecy\\Prophecy\\Revealer' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/Revealer.php', - 'Prophecy\\Prophecy\\RevealerInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/RevealerInterface.php', - 'Prophecy\\Prophet' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophet.php', - 'Prophecy\\Util\\ExportUtil' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Util/ExportUtil.php', - 'Prophecy\\Util\\StringUtil' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Util/StringUtil.php', - 'Psr\\Container\\ContainerExceptionInterface' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php', - 'Psr\\Container\\ContainerInterface' => $vendorDir . '/psr/container/src/ContainerInterface.php', - 'Psr\\Container\\NotFoundExceptionInterface' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php', - 'Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/psr/http-message/src/MessageInterface.php', - 'Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/psr/http-message/src/RequestInterface.php', - 'Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/psr/http-message/src/ResponseInterface.php', - 'Psr\\Http\\Message\\ServerRequestInterface' => $vendorDir . '/psr/http-message/src/ServerRequestInterface.php', - 'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php', - 'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php', - 'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php', - 'Psr\\Log\\AbstractLogger' => $vendorDir . '/psr/log/Psr/Log/AbstractLogger.php', - 'Psr\\Log\\InvalidArgumentException' => $vendorDir . '/psr/log/Psr/Log/InvalidArgumentException.php', - 'Psr\\Log\\LogLevel' => $vendorDir . '/psr/log/Psr/Log/LogLevel.php', - 'Psr\\Log\\LoggerAwareInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareInterface.php', - 'Psr\\Log\\LoggerAwareTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareTrait.php', - 'Psr\\Log\\LoggerInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerInterface.php', - 'Psr\\Log\\LoggerTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerTrait.php', - 'Psr\\Log\\NullLogger' => $vendorDir . '/psr/log/Psr/Log/NullLogger.php', - 'Psr\\Log\\Test\\DummyTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', - 'Psr\\Log\\Test\\LoggerInterfaceTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', - 'Psr\\Log\\Test\\TestLogger' => $vendorDir . '/psr/log/Psr/Log/Test/TestLogger.php', - 'Psr\\SimpleCache\\CacheException' => $vendorDir . '/psr/simple-cache/src/CacheException.php', - 'Psr\\SimpleCache\\CacheInterface' => $vendorDir . '/psr/simple-cache/src/CacheInterface.php', - 'Psr\\SimpleCache\\InvalidArgumentException' => $vendorDir . '/psr/simple-cache/src/InvalidArgumentException.php', - 'Requests' => $vendorDir . '/rmccue/requests/library/Requests.php', - 'Requests_Auth' => $vendorDir . '/rmccue/requests/library/Requests/Auth.php', - 'Requests_Auth_Basic' => $vendorDir . '/rmccue/requests/library/Requests/Auth/Basic.php', - 'Requests_Cookie' => $vendorDir . '/rmccue/requests/library/Requests/Cookie.php', - 'Requests_Cookie_Jar' => $vendorDir . '/rmccue/requests/library/Requests/Cookie/Jar.php', - 'Requests_Exception' => $vendorDir . '/rmccue/requests/library/Requests/Exception.php', - 'Requests_Exception_HTTP' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP.php', - 'Requests_Exception_HTTP_304' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/304.php', - 'Requests_Exception_HTTP_305' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/305.php', - 'Requests_Exception_HTTP_306' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/306.php', - 'Requests_Exception_HTTP_400' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/400.php', - 'Requests_Exception_HTTP_401' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/401.php', - 'Requests_Exception_HTTP_402' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/402.php', - 'Requests_Exception_HTTP_403' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/403.php', - 'Requests_Exception_HTTP_404' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/404.php', - 'Requests_Exception_HTTP_405' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/405.php', - 'Requests_Exception_HTTP_406' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/406.php', - 'Requests_Exception_HTTP_407' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/407.php', - 'Requests_Exception_HTTP_408' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/408.php', - 'Requests_Exception_HTTP_409' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/409.php', - 'Requests_Exception_HTTP_410' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/410.php', - 'Requests_Exception_HTTP_411' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/411.php', - 'Requests_Exception_HTTP_412' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/412.php', - 'Requests_Exception_HTTP_413' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/413.php', - 'Requests_Exception_HTTP_414' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/414.php', - 'Requests_Exception_HTTP_415' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/415.php', - 'Requests_Exception_HTTP_416' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/416.php', - 'Requests_Exception_HTTP_417' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/417.php', - 'Requests_Exception_HTTP_418' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/418.php', - 'Requests_Exception_HTTP_428' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/428.php', - 'Requests_Exception_HTTP_429' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/429.php', - 'Requests_Exception_HTTP_431' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/431.php', - 'Requests_Exception_HTTP_500' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/500.php', - 'Requests_Exception_HTTP_501' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/501.php', - 'Requests_Exception_HTTP_502' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/502.php', - 'Requests_Exception_HTTP_503' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/503.php', - 'Requests_Exception_HTTP_504' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/504.php', - 'Requests_Exception_HTTP_505' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/505.php', - 'Requests_Exception_HTTP_511' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/511.php', - 'Requests_Exception_HTTP_Unknown' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/Unknown.php', - 'Requests_Exception_Transport' => $vendorDir . '/rmccue/requests/library/Requests/Exception/Transport.php', - 'Requests_Exception_Transport_cURL' => $vendorDir . '/rmccue/requests/library/Requests/Exception/Transport/cURL.php', - 'Requests_Hooker' => $vendorDir . '/rmccue/requests/library/Requests/Hooker.php', - 'Requests_Hooks' => $vendorDir . '/rmccue/requests/library/Requests/Hooks.php', - 'Requests_IDNAEncoder' => $vendorDir . '/rmccue/requests/library/Requests/IDNAEncoder.php', - 'Requests_IPv6' => $vendorDir . '/rmccue/requests/library/Requests/IPv6.php', - 'Requests_IRI' => $vendorDir . '/rmccue/requests/library/Requests/IRI.php', - 'Requests_Proxy' => $vendorDir . '/rmccue/requests/library/Requests/Proxy.php', - 'Requests_Proxy_HTTP' => $vendorDir . '/rmccue/requests/library/Requests/Proxy/HTTP.php', - 'Requests_Response' => $vendorDir . '/rmccue/requests/library/Requests/Response.php', - 'Requests_Response_Headers' => $vendorDir . '/rmccue/requests/library/Requests/Response/Headers.php', - 'Requests_SSL' => $vendorDir . '/rmccue/requests/library/Requests/SSL.php', - 'Requests_Session' => $vendorDir . '/rmccue/requests/library/Requests/Session.php', - 'Requests_Transport' => $vendorDir . '/rmccue/requests/library/Requests/Transport.php', - 'Requests_Transport_cURL' => $vendorDir . '/rmccue/requests/library/Requests/Transport/cURL.php', - 'Requests_Transport_fsockopen' => $vendorDir . '/rmccue/requests/library/Requests/Transport/fsockopen.php', - 'Requests_Utility_CaseInsensitiveDictionary' => $vendorDir . '/rmccue/requests/library/Requests/Utility/CaseInsensitiveDictionary.php', - 'Requests_Utility_FilteredIterator' => $vendorDir . '/rmccue/requests/library/Requests/Utility/FilteredIterator.php', - 'Rewrite_Command' => $vendorDir . '/wp-cli/rewrite-command/src/Rewrite_Command.php', - 'Role_Command' => $vendorDir . '/wp-cli/role-command/src/Role_Command.php', - 'Scaffold_Command' => $vendorDir . '/wp-cli/scaffold-command/src/Scaffold_Command.php', - 'Search_Replace_Command' => $vendorDir . '/wp-cli/search-replace-command/src/Search_Replace_Command.php', - 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage.php', - 'SebastianBergmann\\CodeCoverage\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php', - 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Driver.php', - 'SebastianBergmann\\CodeCoverage\\Driver\\PHPDBG' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/PHPDBG.php', - 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Xdebug.php', - 'SebastianBergmann\\CodeCoverage\\Exception' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/Exception.php', - 'SebastianBergmann\\CodeCoverage\\Filter' => $vendorDir . '/phpunit/php-code-coverage/src/Filter.php', - 'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php', - 'SebastianBergmann\\CodeCoverage\\MissingCoversAnnotationException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php', - 'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => $vendorDir . '/phpunit/php-code-coverage/src/Node/AbstractNode.php', - 'SebastianBergmann\\CodeCoverage\\Node\\Builder' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Builder.php', - 'SebastianBergmann\\CodeCoverage\\Node\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Directory.php', - 'SebastianBergmann\\CodeCoverage\\Node\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Node/File.php', - 'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Iterator.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Clover' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Clover.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Crap4j.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Facade.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php', - 'SebastianBergmann\\CodeCoverage\\Report\\PHP' => $vendorDir . '/phpunit/php-code-coverage/src/Report/PHP.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Text' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Text.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/File.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Method.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Node.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Project.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Report.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Source.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php', - 'SebastianBergmann\\CodeCoverage\\RuntimeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/RuntimeException.php', - 'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php', - 'SebastianBergmann\\CodeCoverage\\Util' => $vendorDir . '/phpunit/php-code-coverage/src/Util.php', - 'SebastianBergmann\\CodeCoverage\\Version' => $vendorDir . '/phpunit/php-code-coverage/src/Version.php', - 'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => $vendorDir . '/sebastian/code-unit-reverse-lookup/src/Wizard.php', - 'SebastianBergmann\\Comparator\\ArrayComparator' => $vendorDir . '/sebastian/comparator/src/ArrayComparator.php', - 'SebastianBergmann\\Comparator\\Comparator' => $vendorDir . '/sebastian/comparator/src/Comparator.php', - 'SebastianBergmann\\Comparator\\ComparisonFailure' => $vendorDir . '/sebastian/comparator/src/ComparisonFailure.php', - 'SebastianBergmann\\Comparator\\DOMNodeComparator' => $vendorDir . '/sebastian/comparator/src/DOMNodeComparator.php', - 'SebastianBergmann\\Comparator\\DateTimeComparator' => $vendorDir . '/sebastian/comparator/src/DateTimeComparator.php', - 'SebastianBergmann\\Comparator\\DoubleComparator' => $vendorDir . '/sebastian/comparator/src/DoubleComparator.php', - 'SebastianBergmann\\Comparator\\ExceptionComparator' => $vendorDir . '/sebastian/comparator/src/ExceptionComparator.php', - 'SebastianBergmann\\Comparator\\Factory' => $vendorDir . '/sebastian/comparator/src/Factory.php', - 'SebastianBergmann\\Comparator\\MockObjectComparator' => $vendorDir . '/sebastian/comparator/src/MockObjectComparator.php', - 'SebastianBergmann\\Comparator\\NumericComparator' => $vendorDir . '/sebastian/comparator/src/NumericComparator.php', - 'SebastianBergmann\\Comparator\\ObjectComparator' => $vendorDir . '/sebastian/comparator/src/ObjectComparator.php', - 'SebastianBergmann\\Comparator\\ResourceComparator' => $vendorDir . '/sebastian/comparator/src/ResourceComparator.php', - 'SebastianBergmann\\Comparator\\ScalarComparator' => $vendorDir . '/sebastian/comparator/src/ScalarComparator.php', - 'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => $vendorDir . '/sebastian/comparator/src/SplObjectStorageComparator.php', - 'SebastianBergmann\\Comparator\\TypeComparator' => $vendorDir . '/sebastian/comparator/src/TypeComparator.php', - 'SebastianBergmann\\Diff\\Chunk' => $vendorDir . '/sebastian/diff/src/Chunk.php', - 'SebastianBergmann\\Diff\\ConfigurationException' => $vendorDir . '/sebastian/diff/src/Exception/ConfigurationException.php', - 'SebastianBergmann\\Diff\\Diff' => $vendorDir . '/sebastian/diff/src/Diff.php', - 'SebastianBergmann\\Diff\\Differ' => $vendorDir . '/sebastian/diff/src/Differ.php', - 'SebastianBergmann\\Diff\\Exception' => $vendorDir . '/sebastian/diff/src/Exception/Exception.php', - 'SebastianBergmann\\Diff\\InvalidArgumentException' => $vendorDir . '/sebastian/diff/src/Exception/InvalidArgumentException.php', - 'SebastianBergmann\\Diff\\Line' => $vendorDir . '/sebastian/diff/src/Line.php', - 'SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/LongestCommonSubsequenceCalculator.php', - 'SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php', - 'SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php', - 'SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php', - 'SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => $vendorDir . '/sebastian/diff/src/Output/DiffOutputBuilderInterface.php', - 'SebastianBergmann\\Diff\\Output\\StrictUnifiedDiffOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php', - 'SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => $vendorDir . '/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php', - 'SebastianBergmann\\Diff\\Parser' => $vendorDir . '/sebastian/diff/src/Parser.php', - 'SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => $vendorDir . '/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php', - 'SebastianBergmann\\Environment\\Console' => $vendorDir . '/sebastian/environment/src/Console.php', - 'SebastianBergmann\\Environment\\OperatingSystem' => $vendorDir . '/sebastian/environment/src/OperatingSystem.php', - 'SebastianBergmann\\Environment\\Runtime' => $vendorDir . '/sebastian/environment/src/Runtime.php', - 'SebastianBergmann\\Exporter\\Exporter' => $vendorDir . '/sebastian/exporter/src/Exporter.php', - 'SebastianBergmann\\FileIterator\\Facade' => $vendorDir . '/phpunit/php-file-iterator/src/Facade.php', - 'SebastianBergmann\\FileIterator\\Factory' => $vendorDir . '/phpunit/php-file-iterator/src/Factory.php', - 'SebastianBergmann\\FileIterator\\Iterator' => $vendorDir . '/phpunit/php-file-iterator/src/Iterator.php', - 'SebastianBergmann\\GlobalState\\Blacklist' => $vendorDir . '/sebastian/global-state/src/Blacklist.php', - 'SebastianBergmann\\GlobalState\\CodeExporter' => $vendorDir . '/sebastian/global-state/src/CodeExporter.php', - 'SebastianBergmann\\GlobalState\\Exception' => $vendorDir . '/sebastian/global-state/src/exceptions/Exception.php', - 'SebastianBergmann\\GlobalState\\Restorer' => $vendorDir . '/sebastian/global-state/src/Restorer.php', - 'SebastianBergmann\\GlobalState\\RuntimeException' => $vendorDir . '/sebastian/global-state/src/exceptions/RuntimeException.php', - 'SebastianBergmann\\GlobalState\\Snapshot' => $vendorDir . '/sebastian/global-state/src/Snapshot.php', - 'SebastianBergmann\\ObjectEnumerator\\Enumerator' => $vendorDir . '/sebastian/object-enumerator/src/Enumerator.php', - 'SebastianBergmann\\ObjectEnumerator\\Exception' => $vendorDir . '/sebastian/object-enumerator/src/Exception.php', - 'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => $vendorDir . '/sebastian/object-enumerator/src/InvalidArgumentException.php', - 'SebastianBergmann\\ObjectReflector\\Exception' => $vendorDir . '/sebastian/object-reflector/src/Exception.php', - 'SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => $vendorDir . '/sebastian/object-reflector/src/InvalidArgumentException.php', - 'SebastianBergmann\\ObjectReflector\\ObjectReflector' => $vendorDir . '/sebastian/object-reflector/src/ObjectReflector.php', - 'SebastianBergmann\\RecursionContext\\Context' => $vendorDir . '/sebastian/recursion-context/src/Context.php', - 'SebastianBergmann\\RecursionContext\\Exception' => $vendorDir . '/sebastian/recursion-context/src/Exception.php', - 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => $vendorDir . '/sebastian/recursion-context/src/InvalidArgumentException.php', - 'SebastianBergmann\\ResourceOperations\\ResourceOperations' => $vendorDir . '/sebastian/resource-operations/src/ResourceOperations.php', - 'SebastianBergmann\\Timer\\Exception' => $vendorDir . '/phpunit/php-timer/src/Exception.php', - 'SebastianBergmann\\Timer\\RuntimeException' => $vendorDir . '/phpunit/php-timer/src/RuntimeException.php', - 'SebastianBergmann\\Timer\\Timer' => $vendorDir . '/phpunit/php-timer/src/Timer.php', - 'SebastianBergmann\\Version' => $vendorDir . '/sebastian/version/src/Version.php', - 'Seld\\JsonLint\\DuplicateKeyException' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php', - 'Seld\\JsonLint\\JsonParser' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/JsonParser.php', - 'Seld\\JsonLint\\Lexer' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/Lexer.php', - 'Seld\\JsonLint\\ParsingException' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/ParsingException.php', - 'Seld\\JsonLint\\Undefined' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/Undefined.php', - 'Seld\\PharUtils\\Timestamps' => $vendorDir . '/seld/phar-utils/src/Timestamps.php', - 'Server_Command' => $vendorDir . '/wp-cli/server-command/src/Server_Command.php', - 'Shell_Command' => $vendorDir . '/wp-cli/shell-command/src/Shell_Command.php', - 'Sidebar_Command' => $vendorDir . '/wp-cli/widget-command/src/Sidebar_Command.php', - 'Site_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Command.php', - 'Site_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Meta_Command.php', - 'Site_Option_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Option_Command.php', - 'Site_Switch_Language_Command' => $vendorDir . '/wp-cli/language-command/src/Site_Switch_Language_Command.php', - 'Super_Admin_Command' => $vendorDir . '/wp-cli/super-admin-command/src/Super_Admin_Command.php', - 'Symfony\\Component\\BrowserKit\\AbstractBrowser' => $vendorDir . '/symfony/browser-kit/AbstractBrowser.php', - 'Symfony\\Component\\BrowserKit\\Client' => $vendorDir . '/symfony/browser-kit/Client.php', - 'Symfony\\Component\\BrowserKit\\Cookie' => $vendorDir . '/symfony/browser-kit/Cookie.php', - 'Symfony\\Component\\BrowserKit\\CookieJar' => $vendorDir . '/symfony/browser-kit/CookieJar.php', - 'Symfony\\Component\\BrowserKit\\Exception\\BadMethodCallException' => $vendorDir . '/symfony/browser-kit/Exception/BadMethodCallException.php', - 'Symfony\\Component\\BrowserKit\\History' => $vendorDir . '/symfony/browser-kit/History.php', - 'Symfony\\Component\\BrowserKit\\HttpBrowser' => $vendorDir . '/symfony/browser-kit/HttpBrowser.php', - 'Symfony\\Component\\BrowserKit\\Request' => $vendorDir . '/symfony/browser-kit/Request.php', - 'Symfony\\Component\\BrowserKit\\Response' => $vendorDir . '/symfony/browser-kit/Response.php', - 'Symfony\\Component\\BrowserKit\\Test\\Constraint\\BrowserCookieValueSame' => $vendorDir . '/symfony/browser-kit/Test/Constraint/BrowserCookieValueSame.php', - 'Symfony\\Component\\BrowserKit\\Test\\Constraint\\BrowserHasCookie' => $vendorDir . '/symfony/browser-kit/Test/Constraint/BrowserHasCookie.php', - 'Symfony\\Component\\Console\\Application' => $vendorDir . '/symfony/console/Application.php', - 'Symfony\\Component\\Console\\CommandLoader\\CommandLoaderInterface' => $vendorDir . '/symfony/console/CommandLoader/CommandLoaderInterface.php', - 'Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader' => $vendorDir . '/symfony/console/CommandLoader/ContainerCommandLoader.php', - 'Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader' => $vendorDir . '/symfony/console/CommandLoader/FactoryCommandLoader.php', - 'Symfony\\Component\\Console\\Command\\Command' => $vendorDir . '/symfony/console/Command/Command.php', - 'Symfony\\Component\\Console\\Command\\HelpCommand' => $vendorDir . '/symfony/console/Command/HelpCommand.php', - 'Symfony\\Component\\Console\\Command\\ListCommand' => $vendorDir . '/symfony/console/Command/ListCommand.php', - 'Symfony\\Component\\Console\\Command\\LockableTrait' => $vendorDir . '/symfony/console/Command/LockableTrait.php', - 'Symfony\\Component\\Console\\ConsoleEvents' => $vendorDir . '/symfony/console/ConsoleEvents.php', - 'Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass' => $vendorDir . '/symfony/console/DependencyInjection/AddConsoleCommandPass.php', - 'Symfony\\Component\\Console\\Descriptor\\ApplicationDescription' => $vendorDir . '/symfony/console/Descriptor/ApplicationDescription.php', - 'Symfony\\Component\\Console\\Descriptor\\Descriptor' => $vendorDir . '/symfony/console/Descriptor/Descriptor.php', - 'Symfony\\Component\\Console\\Descriptor\\DescriptorInterface' => $vendorDir . '/symfony/console/Descriptor/DescriptorInterface.php', - 'Symfony\\Component\\Console\\Descriptor\\JsonDescriptor' => $vendorDir . '/symfony/console/Descriptor/JsonDescriptor.php', - 'Symfony\\Component\\Console\\Descriptor\\MarkdownDescriptor' => $vendorDir . '/symfony/console/Descriptor/MarkdownDescriptor.php', - 'Symfony\\Component\\Console\\Descriptor\\TextDescriptor' => $vendorDir . '/symfony/console/Descriptor/TextDescriptor.php', - 'Symfony\\Component\\Console\\Descriptor\\XmlDescriptor' => $vendorDir . '/symfony/console/Descriptor/XmlDescriptor.php', - 'Symfony\\Component\\Console\\EventListener\\ErrorListener' => $vendorDir . '/symfony/console/EventListener/ErrorListener.php', - 'Symfony\\Component\\Console\\Event\\ConsoleCommandEvent' => $vendorDir . '/symfony/console/Event/ConsoleCommandEvent.php', - 'Symfony\\Component\\Console\\Event\\ConsoleErrorEvent' => $vendorDir . '/symfony/console/Event/ConsoleErrorEvent.php', - 'Symfony\\Component\\Console\\Event\\ConsoleEvent' => $vendorDir . '/symfony/console/Event/ConsoleEvent.php', - 'Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent' => $vendorDir . '/symfony/console/Event/ConsoleTerminateEvent.php', - 'Symfony\\Component\\Console\\Exception\\CommandNotFoundException' => $vendorDir . '/symfony/console/Exception/CommandNotFoundException.php', - 'Symfony\\Component\\Console\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/console/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Console\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/console/Exception/InvalidArgumentException.php', - 'Symfony\\Component\\Console\\Exception\\InvalidOptionException' => $vendorDir . '/symfony/console/Exception/InvalidOptionException.php', - 'Symfony\\Component\\Console\\Exception\\LogicException' => $vendorDir . '/symfony/console/Exception/LogicException.php', - 'Symfony\\Component\\Console\\Exception\\NamespaceNotFoundException' => $vendorDir . '/symfony/console/Exception/NamespaceNotFoundException.php', - 'Symfony\\Component\\Console\\Exception\\RuntimeException' => $vendorDir . '/symfony/console/Exception/RuntimeException.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatter' => $vendorDir . '/symfony/console/Formatter/OutputFormatter.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterInterface.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyle.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleInterface.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleStack.php', - 'Symfony\\Component\\Console\\Formatter\\WrappableOutputFormatterInterface' => $vendorDir . '/symfony/console/Formatter/WrappableOutputFormatterInterface.php', - 'Symfony\\Component\\Console\\Helper\\DebugFormatterHelper' => $vendorDir . '/symfony/console/Helper/DebugFormatterHelper.php', - 'Symfony\\Component\\Console\\Helper\\DescriptorHelper' => $vendorDir . '/symfony/console/Helper/DescriptorHelper.php', - 'Symfony\\Component\\Console\\Helper\\Dumper' => $vendorDir . '/symfony/console/Helper/Dumper.php', - 'Symfony\\Component\\Console\\Helper\\FormatterHelper' => $vendorDir . '/symfony/console/Helper/FormatterHelper.php', - 'Symfony\\Component\\Console\\Helper\\Helper' => $vendorDir . '/symfony/console/Helper/Helper.php', - 'Symfony\\Component\\Console\\Helper\\HelperInterface' => $vendorDir . '/symfony/console/Helper/HelperInterface.php', - 'Symfony\\Component\\Console\\Helper\\HelperSet' => $vendorDir . '/symfony/console/Helper/HelperSet.php', - 'Symfony\\Component\\Console\\Helper\\InputAwareHelper' => $vendorDir . '/symfony/console/Helper/InputAwareHelper.php', - 'Symfony\\Component\\Console\\Helper\\ProcessHelper' => $vendorDir . '/symfony/console/Helper/ProcessHelper.php', - 'Symfony\\Component\\Console\\Helper\\ProgressBar' => $vendorDir . '/symfony/console/Helper/ProgressBar.php', - 'Symfony\\Component\\Console\\Helper\\ProgressIndicator' => $vendorDir . '/symfony/console/Helper/ProgressIndicator.php', - 'Symfony\\Component\\Console\\Helper\\QuestionHelper' => $vendorDir . '/symfony/console/Helper/QuestionHelper.php', - 'Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper' => $vendorDir . '/symfony/console/Helper/SymfonyQuestionHelper.php', - 'Symfony\\Component\\Console\\Helper\\Table' => $vendorDir . '/symfony/console/Helper/Table.php', - 'Symfony\\Component\\Console\\Helper\\TableCell' => $vendorDir . '/symfony/console/Helper/TableCell.php', - 'Symfony\\Component\\Console\\Helper\\TableRows' => $vendorDir . '/symfony/console/Helper/TableRows.php', - 'Symfony\\Component\\Console\\Helper\\TableSeparator' => $vendorDir . '/symfony/console/Helper/TableSeparator.php', - 'Symfony\\Component\\Console\\Helper\\TableStyle' => $vendorDir . '/symfony/console/Helper/TableStyle.php', - 'Symfony\\Component\\Console\\Input\\ArgvInput' => $vendorDir . '/symfony/console/Input/ArgvInput.php', - 'Symfony\\Component\\Console\\Input\\ArrayInput' => $vendorDir . '/symfony/console/Input/ArrayInput.php', - 'Symfony\\Component\\Console\\Input\\Input' => $vendorDir . '/symfony/console/Input/Input.php', - 'Symfony\\Component\\Console\\Input\\InputArgument' => $vendorDir . '/symfony/console/Input/InputArgument.php', - 'Symfony\\Component\\Console\\Input\\InputAwareInterface' => $vendorDir . '/symfony/console/Input/InputAwareInterface.php', - 'Symfony\\Component\\Console\\Input\\InputDefinition' => $vendorDir . '/symfony/console/Input/InputDefinition.php', - 'Symfony\\Component\\Console\\Input\\InputInterface' => $vendorDir . '/symfony/console/Input/InputInterface.php', - 'Symfony\\Component\\Console\\Input\\InputOption' => $vendorDir . '/symfony/console/Input/InputOption.php', - 'Symfony\\Component\\Console\\Input\\StreamableInputInterface' => $vendorDir . '/symfony/console/Input/StreamableInputInterface.php', - 'Symfony\\Component\\Console\\Input\\StringInput' => $vendorDir . '/symfony/console/Input/StringInput.php', - 'Symfony\\Component\\Console\\Logger\\ConsoleLogger' => $vendorDir . '/symfony/console/Logger/ConsoleLogger.php', - 'Symfony\\Component\\Console\\Output\\BufferedOutput' => $vendorDir . '/symfony/console/Output/BufferedOutput.php', - 'Symfony\\Component\\Console\\Output\\ConsoleOutput' => $vendorDir . '/symfony/console/Output/ConsoleOutput.php', - 'Symfony\\Component\\Console\\Output\\ConsoleOutputInterface' => $vendorDir . '/symfony/console/Output/ConsoleOutputInterface.php', - 'Symfony\\Component\\Console\\Output\\ConsoleSectionOutput' => $vendorDir . '/symfony/console/Output/ConsoleSectionOutput.php', - 'Symfony\\Component\\Console\\Output\\NullOutput' => $vendorDir . '/symfony/console/Output/NullOutput.php', - 'Symfony\\Component\\Console\\Output\\Output' => $vendorDir . '/symfony/console/Output/Output.php', - 'Symfony\\Component\\Console\\Output\\OutputInterface' => $vendorDir . '/symfony/console/Output/OutputInterface.php', - 'Symfony\\Component\\Console\\Output\\StreamOutput' => $vendorDir . '/symfony/console/Output/StreamOutput.php', - 'Symfony\\Component\\Console\\Question\\ChoiceQuestion' => $vendorDir . '/symfony/console/Question/ChoiceQuestion.php', - 'Symfony\\Component\\Console\\Question\\ConfirmationQuestion' => $vendorDir . '/symfony/console/Question/ConfirmationQuestion.php', - 'Symfony\\Component\\Console\\Question\\Question' => $vendorDir . '/symfony/console/Question/Question.php', - 'Symfony\\Component\\Console\\Style\\OutputStyle' => $vendorDir . '/symfony/console/Style/OutputStyle.php', - 'Symfony\\Component\\Console\\Style\\StyleInterface' => $vendorDir . '/symfony/console/Style/StyleInterface.php', - 'Symfony\\Component\\Console\\Style\\SymfonyStyle' => $vendorDir . '/symfony/console/Style/SymfonyStyle.php', - 'Symfony\\Component\\Console\\Terminal' => $vendorDir . '/symfony/console/Terminal.php', - 'Symfony\\Component\\Console\\Tester\\ApplicationTester' => $vendorDir . '/symfony/console/Tester/ApplicationTester.php', - 'Symfony\\Component\\Console\\Tester\\CommandTester' => $vendorDir . '/symfony/console/Tester/CommandTester.php', - 'Symfony\\Component\\Console\\Tester\\TesterTrait' => $vendorDir . '/symfony/console/Tester/TesterTrait.php', - 'Symfony\\Component\\CssSelector\\CssSelectorConverter' => $vendorDir . '/symfony/css-selector/CssSelectorConverter.php', - 'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/css-selector/Exception/ExceptionInterface.php', - 'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => $vendorDir . '/symfony/css-selector/Exception/ExpressionErrorException.php', - 'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => $vendorDir . '/symfony/css-selector/Exception/InternalErrorException.php', - 'Symfony\\Component\\CssSelector\\Exception\\ParseException' => $vendorDir . '/symfony/css-selector/Exception/ParseException.php', - 'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => $vendorDir . '/symfony/css-selector/Exception/SyntaxErrorException.php', - 'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => $vendorDir . '/symfony/css-selector/Node/AbstractNode.php', - 'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => $vendorDir . '/symfony/css-selector/Node/AttributeNode.php', - 'Symfony\\Component\\CssSelector\\Node\\ClassNode' => $vendorDir . '/symfony/css-selector/Node/ClassNode.php', - 'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => $vendorDir . '/symfony/css-selector/Node/CombinedSelectorNode.php', - 'Symfony\\Component\\CssSelector\\Node\\ElementNode' => $vendorDir . '/symfony/css-selector/Node/ElementNode.php', - 'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => $vendorDir . '/symfony/css-selector/Node/FunctionNode.php', - 'Symfony\\Component\\CssSelector\\Node\\HashNode' => $vendorDir . '/symfony/css-selector/Node/HashNode.php', - 'Symfony\\Component\\CssSelector\\Node\\NegationNode' => $vendorDir . '/symfony/css-selector/Node/NegationNode.php', - 'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => $vendorDir . '/symfony/css-selector/Node/NodeInterface.php', - 'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => $vendorDir . '/symfony/css-selector/Node/PseudoNode.php', - 'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => $vendorDir . '/symfony/css-selector/Node/SelectorNode.php', - 'Symfony\\Component\\CssSelector\\Node\\Specificity' => $vendorDir . '/symfony/css-selector/Node/Specificity.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/CommentHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => $vendorDir . '/symfony/css-selector/Parser/Handler/HandlerInterface.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/HashHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/NumberHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/StringHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Parser' => $vendorDir . '/symfony/css-selector/Parser/Parser.php', - 'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => $vendorDir . '/symfony/css-selector/Parser/ParserInterface.php', - 'Symfony\\Component\\CssSelector\\Parser\\Reader' => $vendorDir . '/symfony/css-selector/Parser/Reader.php', - 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ClassParser.php', - 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ElementParser.php', - 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php', - 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/HashParser.php', - 'Symfony\\Component\\CssSelector\\Parser\\Token' => $vendorDir . '/symfony/css-selector/Parser/Token.php', - 'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => $vendorDir . '/symfony/css-selector/Parser/TokenStream.php', - 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php', - 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php', - 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/AbstractExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/CombinationExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => $vendorDir . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/FunctionExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/HtmlExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/NodeExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Translator' => $vendorDir . '/symfony/css-selector/XPath/Translator.php', - 'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => $vendorDir . '/symfony/css-selector/XPath/TranslatorInterface.php', - 'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => $vendorDir . '/symfony/css-selector/XPath/XPathExpr.php', - 'Symfony\\Component\\DomCrawler\\AbstractUriElement' => $vendorDir . '/symfony/dom-crawler/AbstractUriElement.php', - 'Symfony\\Component\\DomCrawler\\Crawler' => $vendorDir . '/symfony/dom-crawler/Crawler.php', - 'Symfony\\Component\\DomCrawler\\Field\\ChoiceFormField' => $vendorDir . '/symfony/dom-crawler/Field/ChoiceFormField.php', - 'Symfony\\Component\\DomCrawler\\Field\\FileFormField' => $vendorDir . '/symfony/dom-crawler/Field/FileFormField.php', - 'Symfony\\Component\\DomCrawler\\Field\\FormField' => $vendorDir . '/symfony/dom-crawler/Field/FormField.php', - 'Symfony\\Component\\DomCrawler\\Field\\InputFormField' => $vendorDir . '/symfony/dom-crawler/Field/InputFormField.php', - 'Symfony\\Component\\DomCrawler\\Field\\TextareaFormField' => $vendorDir . '/symfony/dom-crawler/Field/TextareaFormField.php', - 'Symfony\\Component\\DomCrawler\\Form' => $vendorDir . '/symfony/dom-crawler/Form.php', - 'Symfony\\Component\\DomCrawler\\FormFieldRegistry' => $vendorDir . '/symfony/dom-crawler/FormFieldRegistry.php', - 'Symfony\\Component\\DomCrawler\\Image' => $vendorDir . '/symfony/dom-crawler/Image.php', - 'Symfony\\Component\\DomCrawler\\Link' => $vendorDir . '/symfony/dom-crawler/Link.php', - 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorAttributeValueSame' => $vendorDir . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorAttributeValueSame.php', - 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorExists' => $vendorDir . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorExists.php', - 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorTextContains' => $vendorDir . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorTextContains.php', - 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorTextSame' => $vendorDir . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorTextSame.php', - 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php', - 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcherInterface' => $vendorDir . '/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php', - 'Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener' => $vendorDir . '/symfony/event-dispatcher/Debug/WrappedListener.php', - 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\ExtractingEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', - 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\RegisterListenersPass' => $vendorDir . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', - 'Symfony\\Component\\EventDispatcher\\Event' => $vendorDir . '/symfony/event-dispatcher/Event.php', - 'Symfony\\Component\\EventDispatcher\\EventDispatcher' => $vendorDir . '/symfony/event-dispatcher/EventDispatcher.php', - 'Symfony\\Component\\EventDispatcher\\EventDispatcherInterface' => $vendorDir . '/symfony/event-dispatcher/EventDispatcherInterface.php', - 'Symfony\\Component\\EventDispatcher\\EventSubscriberInterface' => $vendorDir . '/symfony/event-dispatcher/EventSubscriberInterface.php', - 'Symfony\\Component\\EventDispatcher\\GenericEvent' => $vendorDir . '/symfony/event-dispatcher/GenericEvent.php', - 'Symfony\\Component\\EventDispatcher\\ImmutableEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/ImmutableEventDispatcher.php', - 'Symfony\\Component\\EventDispatcher\\LegacyEventDispatcherProxy' => $vendorDir . '/symfony/event-dispatcher/LegacyEventDispatcherProxy.php', - 'Symfony\\Component\\EventDispatcher\\LegacyEventProxy' => $vendorDir . '/symfony/event-dispatcher/LegacyEventProxy.php', - 'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => $vendorDir . '/symfony/filesystem/Exception/FileNotFoundException.php', - 'Symfony\\Component\\Filesystem\\Exception\\IOException' => $vendorDir . '/symfony/filesystem/Exception/IOException.php', - 'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/IOExceptionInterface.php', - 'Symfony\\Component\\Filesystem\\Filesystem' => $vendorDir . '/symfony/filesystem/Filesystem.php', - 'Symfony\\Component\\Filesystem\\LockHandler' => $vendorDir . '/symfony/filesystem/LockHandler.php', - 'Symfony\\Component\\Finder\\Comparator\\Comparator' => $vendorDir . '/symfony/finder/Comparator/Comparator.php', - 'Symfony\\Component\\Finder\\Comparator\\DateComparator' => $vendorDir . '/symfony/finder/Comparator/DateComparator.php', - 'Symfony\\Component\\Finder\\Comparator\\NumberComparator' => $vendorDir . '/symfony/finder/Comparator/NumberComparator.php', - 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException' => $vendorDir . '/symfony/finder/Exception/AccessDeniedException.php', - 'Symfony\\Component\\Finder\\Exception\\DirectoryNotFoundException' => $vendorDir . '/symfony/finder/Exception/DirectoryNotFoundException.php', - 'Symfony\\Component\\Finder\\Finder' => $vendorDir . '/symfony/finder/Finder.php', - 'Symfony\\Component\\Finder\\Gitignore' => $vendorDir . '/symfony/finder/Gitignore.php', - 'Symfony\\Component\\Finder\\Glob' => $vendorDir . '/symfony/finder/Glob.php', - 'Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator' => $vendorDir . '/symfony/finder/Iterator/CustomFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DateRangeFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DepthRangeFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator' => $vendorDir . '/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FileTypeFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilecontentFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilenameFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator' => $vendorDir . '/symfony/finder/Iterator/MultiplePcreFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\PathFilterIterator' => $vendorDir . '/symfony/finder/Iterator/PathFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator' => $vendorDir . '/symfony/finder/Iterator/RecursiveDirectoryIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/SizeRangeFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => $vendorDir . '/symfony/finder/Iterator/SortableIterator.php', - 'Symfony\\Component\\Finder\\SplFileInfo' => $vendorDir . '/symfony/finder/SplFileInfo.php', - 'Symfony\\Component\\Process\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/process/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Process\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/process/Exception/InvalidArgumentException.php', - 'Symfony\\Component\\Process\\Exception\\LogicException' => $vendorDir . '/symfony/process/Exception/LogicException.php', - 'Symfony\\Component\\Process\\Exception\\ProcessFailedException' => $vendorDir . '/symfony/process/Exception/ProcessFailedException.php', - 'Symfony\\Component\\Process\\Exception\\ProcessSignaledException' => $vendorDir . '/symfony/process/Exception/ProcessSignaledException.php', - 'Symfony\\Component\\Process\\Exception\\ProcessTimedOutException' => $vendorDir . '/symfony/process/Exception/ProcessTimedOutException.php', - 'Symfony\\Component\\Process\\Exception\\RuntimeException' => $vendorDir . '/symfony/process/Exception/RuntimeException.php', - 'Symfony\\Component\\Process\\ExecutableFinder' => $vendorDir . '/symfony/process/ExecutableFinder.php', - 'Symfony\\Component\\Process\\InputStream' => $vendorDir . '/symfony/process/InputStream.php', - 'Symfony\\Component\\Process\\PhpExecutableFinder' => $vendorDir . '/symfony/process/PhpExecutableFinder.php', - 'Symfony\\Component\\Process\\PhpProcess' => $vendorDir . '/symfony/process/PhpProcess.php', - 'Symfony\\Component\\Process\\Pipes\\AbstractPipes' => $vendorDir . '/symfony/process/Pipes/AbstractPipes.php', - 'Symfony\\Component\\Process\\Pipes\\PipesInterface' => $vendorDir . '/symfony/process/Pipes/PipesInterface.php', - 'Symfony\\Component\\Process\\Pipes\\UnixPipes' => $vendorDir . '/symfony/process/Pipes/UnixPipes.php', - 'Symfony\\Component\\Process\\Pipes\\WindowsPipes' => $vendorDir . '/symfony/process/Pipes/WindowsPipes.php', - 'Symfony\\Component\\Process\\Process' => $vendorDir . '/symfony/process/Process.php', - 'Symfony\\Component\\Process\\ProcessUtils' => $vendorDir . '/symfony/process/ProcessUtils.php', - 'Symfony\\Component\\Translation\\Catalogue\\AbstractOperation' => $vendorDir . '/symfony/translation/Catalogue/AbstractOperation.php', - 'Symfony\\Component\\Translation\\Catalogue\\MergeOperation' => $vendorDir . '/symfony/translation/Catalogue/MergeOperation.php', - 'Symfony\\Component\\Translation\\Catalogue\\OperationInterface' => $vendorDir . '/symfony/translation/Catalogue/OperationInterface.php', - 'Symfony\\Component\\Translation\\Catalogue\\TargetOperation' => $vendorDir . '/symfony/translation/Catalogue/TargetOperation.php', - 'Symfony\\Component\\Translation\\Command\\XliffLintCommand' => $vendorDir . '/symfony/translation/Command/XliffLintCommand.php', - 'Symfony\\Component\\Translation\\DataCollectorTranslator' => $vendorDir . '/symfony/translation/DataCollectorTranslator.php', - 'Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector' => $vendorDir . '/symfony/translation/DataCollector/TranslationDataCollector.php', - 'Symfony\\Component\\Translation\\DependencyInjection\\TranslationDumperPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslationDumperPass.php', - 'Symfony\\Component\\Translation\\DependencyInjection\\TranslationExtractorPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslationExtractorPass.php', - 'Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslatorPass.php', - 'Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslatorPathsPass.php', - 'Symfony\\Component\\Translation\\Dumper\\CsvFileDumper' => $vendorDir . '/symfony/translation/Dumper/CsvFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\DumperInterface' => $vendorDir . '/symfony/translation/Dumper/DumperInterface.php', - 'Symfony\\Component\\Translation\\Dumper\\FileDumper' => $vendorDir . '/symfony/translation/Dumper/FileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper' => $vendorDir . '/symfony/translation/Dumper/IcuResFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\IniFileDumper' => $vendorDir . '/symfony/translation/Dumper/IniFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\JsonFileDumper' => $vendorDir . '/symfony/translation/Dumper/JsonFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\MoFileDumper' => $vendorDir . '/symfony/translation/Dumper/MoFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\PhpFileDumper' => $vendorDir . '/symfony/translation/Dumper/PhpFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\PoFileDumper' => $vendorDir . '/symfony/translation/Dumper/PoFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\QtFileDumper' => $vendorDir . '/symfony/translation/Dumper/QtFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\XliffFileDumper' => $vendorDir . '/symfony/translation/Dumper/XliffFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\YamlFileDumper' => $vendorDir . '/symfony/translation/Dumper/YamlFileDumper.php', - 'Symfony\\Component\\Translation\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/translation/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Translation\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/translation/Exception/InvalidArgumentException.php', - 'Symfony\\Component\\Translation\\Exception\\InvalidResourceException' => $vendorDir . '/symfony/translation/Exception/InvalidResourceException.php', - 'Symfony\\Component\\Translation\\Exception\\LogicException' => $vendorDir . '/symfony/translation/Exception/LogicException.php', - 'Symfony\\Component\\Translation\\Exception\\NotFoundResourceException' => $vendorDir . '/symfony/translation/Exception/NotFoundResourceException.php', - 'Symfony\\Component\\Translation\\Exception\\RuntimeException' => $vendorDir . '/symfony/translation/Exception/RuntimeException.php', - 'Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor' => $vendorDir . '/symfony/translation/Extractor/AbstractFileExtractor.php', - 'Symfony\\Component\\Translation\\Extractor\\ChainExtractor' => $vendorDir . '/symfony/translation/Extractor/ChainExtractor.php', - 'Symfony\\Component\\Translation\\Extractor\\ExtractorInterface' => $vendorDir . '/symfony/translation/Extractor/ExtractorInterface.php', - 'Symfony\\Component\\Translation\\Extractor\\PhpExtractor' => $vendorDir . '/symfony/translation/Extractor/PhpExtractor.php', - 'Symfony\\Component\\Translation\\Extractor\\PhpStringTokenParser' => $vendorDir . '/symfony/translation/Extractor/PhpStringTokenParser.php', - 'Symfony\\Component\\Translation\\Formatter\\ChoiceMessageFormatterInterface' => $vendorDir . '/symfony/translation/Formatter/ChoiceMessageFormatterInterface.php', - 'Symfony\\Component\\Translation\\Formatter\\IntlFormatter' => $vendorDir . '/symfony/translation/Formatter/IntlFormatter.php', - 'Symfony\\Component\\Translation\\Formatter\\IntlFormatterInterface' => $vendorDir . '/symfony/translation/Formatter/IntlFormatterInterface.php', - 'Symfony\\Component\\Translation\\Formatter\\MessageFormatter' => $vendorDir . '/symfony/translation/Formatter/MessageFormatter.php', - 'Symfony\\Component\\Translation\\Formatter\\MessageFormatterInterface' => $vendorDir . '/symfony/translation/Formatter/MessageFormatterInterface.php', - 'Symfony\\Component\\Translation\\IdentityTranslator' => $vendorDir . '/symfony/translation/IdentityTranslator.php', - 'Symfony\\Component\\Translation\\Interval' => $vendorDir . '/symfony/translation/Interval.php', - 'Symfony\\Component\\Translation\\Loader\\ArrayLoader' => $vendorDir . '/symfony/translation/Loader/ArrayLoader.php', - 'Symfony\\Component\\Translation\\Loader\\CsvFileLoader' => $vendorDir . '/symfony/translation/Loader/CsvFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\FileLoader' => $vendorDir . '/symfony/translation/Loader/FileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\IcuDatFileLoader' => $vendorDir . '/symfony/translation/Loader/IcuDatFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\IcuResFileLoader' => $vendorDir . '/symfony/translation/Loader/IcuResFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\IniFileLoader' => $vendorDir . '/symfony/translation/Loader/IniFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\JsonFileLoader' => $vendorDir . '/symfony/translation/Loader/JsonFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\LoaderInterface' => $vendorDir . '/symfony/translation/Loader/LoaderInterface.php', - 'Symfony\\Component\\Translation\\Loader\\MoFileLoader' => $vendorDir . '/symfony/translation/Loader/MoFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\PhpFileLoader' => $vendorDir . '/symfony/translation/Loader/PhpFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\PoFileLoader' => $vendorDir . '/symfony/translation/Loader/PoFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\QtFileLoader' => $vendorDir . '/symfony/translation/Loader/QtFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\XliffFileLoader' => $vendorDir . '/symfony/translation/Loader/XliffFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\YamlFileLoader' => $vendorDir . '/symfony/translation/Loader/YamlFileLoader.php', - 'Symfony\\Component\\Translation\\LoggingTranslator' => $vendorDir . '/symfony/translation/LoggingTranslator.php', - 'Symfony\\Component\\Translation\\MessageCatalogue' => $vendorDir . '/symfony/translation/MessageCatalogue.php', - 'Symfony\\Component\\Translation\\MessageCatalogueInterface' => $vendorDir . '/symfony/translation/MessageCatalogueInterface.php', - 'Symfony\\Component\\Translation\\MessageSelector' => $vendorDir . '/symfony/translation/MessageSelector.php', - 'Symfony\\Component\\Translation\\MetadataAwareInterface' => $vendorDir . '/symfony/translation/MetadataAwareInterface.php', - 'Symfony\\Component\\Translation\\PluralizationRules' => $vendorDir . '/symfony/translation/PluralizationRules.php', - 'Symfony\\Component\\Translation\\Reader\\TranslationReader' => $vendorDir . '/symfony/translation/Reader/TranslationReader.php', - 'Symfony\\Component\\Translation\\Reader\\TranslationReaderInterface' => $vendorDir . '/symfony/translation/Reader/TranslationReaderInterface.php', - 'Symfony\\Component\\Translation\\Translator' => $vendorDir . '/symfony/translation/Translator.php', - 'Symfony\\Component\\Translation\\TranslatorBagInterface' => $vendorDir . '/symfony/translation/TranslatorBagInterface.php', - 'Symfony\\Component\\Translation\\TranslatorInterface' => $vendorDir . '/symfony/translation/TranslatorInterface.php', - 'Symfony\\Component\\Translation\\Util\\ArrayConverter' => $vendorDir . '/symfony/translation/Util/ArrayConverter.php', - 'Symfony\\Component\\Translation\\Util\\XliffUtils' => $vendorDir . '/symfony/translation/Util/XliffUtils.php', - 'Symfony\\Component\\Translation\\Writer\\TranslationWriter' => $vendorDir . '/symfony/translation/Writer/TranslationWriter.php', - 'Symfony\\Component\\Translation\\Writer\\TranslationWriterInterface' => $vendorDir . '/symfony/translation/Writer/TranslationWriterInterface.php', - 'Symfony\\Component\\Yaml\\Command\\LintCommand' => $vendorDir . '/symfony/yaml/Command/LintCommand.php', - 'Symfony\\Component\\Yaml\\Dumper' => $vendorDir . '/symfony/yaml/Dumper.php', - 'Symfony\\Component\\Yaml\\Escaper' => $vendorDir . '/symfony/yaml/Escaper.php', - 'Symfony\\Component\\Yaml\\Exception\\DumpException' => $vendorDir . '/symfony/yaml/Exception/DumpException.php', - 'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/yaml/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Yaml\\Exception\\ParseException' => $vendorDir . '/symfony/yaml/Exception/ParseException.php', - 'Symfony\\Component\\Yaml\\Exception\\RuntimeException' => $vendorDir . '/symfony/yaml/Exception/RuntimeException.php', - 'Symfony\\Component\\Yaml\\Inline' => $vendorDir . '/symfony/yaml/Inline.php', - 'Symfony\\Component\\Yaml\\Parser' => $vendorDir . '/symfony/yaml/Parser.php', - 'Symfony\\Component\\Yaml\\Tag\\TaggedValue' => $vendorDir . '/symfony/yaml/Tag/TaggedValue.php', - 'Symfony\\Component\\Yaml\\Unescaper' => $vendorDir . '/symfony/yaml/Unescaper.php', - 'Symfony\\Component\\Yaml\\Yaml' => $vendorDir . '/symfony/yaml/Yaml.php', - 'Symfony\\Contracts\\EventDispatcher\\Event' => $vendorDir . '/symfony/event-dispatcher-contracts/Event.php', - 'Symfony\\Contracts\\EventDispatcher\\EventDispatcherInterface' => $vendorDir . '/symfony/event-dispatcher-contracts/EventDispatcherInterface.php', - 'Symfony\\Contracts\\Service\\ResetInterface' => $vendorDir . '/symfony/service-contracts/ResetInterface.php', - 'Symfony\\Contracts\\Service\\ServiceLocatorTrait' => $vendorDir . '/symfony/service-contracts/ServiceLocatorTrait.php', - 'Symfony\\Contracts\\Service\\ServiceProviderInterface' => $vendorDir . '/symfony/service-contracts/ServiceProviderInterface.php', - 'Symfony\\Contracts\\Service\\ServiceSubscriberInterface' => $vendorDir . '/symfony/service-contracts/ServiceSubscriberInterface.php', - 'Symfony\\Contracts\\Service\\ServiceSubscriberTrait' => $vendorDir . '/symfony/service-contracts/ServiceSubscriberTrait.php', - 'Symfony\\Contracts\\Service\\Test\\ServiceLocatorTest' => $vendorDir . '/symfony/service-contracts/Test/ServiceLocatorTest.php', - 'Symfony\\Contracts\\Translation\\LocaleAwareInterface' => $vendorDir . '/symfony/translation-contracts/LocaleAwareInterface.php', - 'Symfony\\Contracts\\Translation\\Test\\TranslatorTest' => $vendorDir . '/symfony/translation-contracts/Test/TranslatorTest.php', - 'Symfony\\Contracts\\Translation\\TranslatorInterface' => $vendorDir . '/symfony/translation-contracts/TranslatorInterface.php', - 'Symfony\\Contracts\\Translation\\TranslatorTrait' => $vendorDir . '/symfony/translation-contracts/TranslatorTrait.php', - 'Symfony\\Polyfill\\Ctype\\Ctype' => $vendorDir . '/symfony/polyfill-ctype/Ctype.php', - 'Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir . '/symfony/polyfill-mbstring/Mbstring.php', - 'Symfony\\Polyfill\\Php73\\Php73' => $vendorDir . '/symfony/polyfill-php73/Php73.php', - 'Taxonomy_Command' => $vendorDir . '/wp-cli/entity-command/src/Taxonomy_Command.php', - 'Term_Command' => $vendorDir . '/wp-cli/entity-command/src/Term_Command.php', - 'Term_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Term_Meta_Command.php', - 'Text_Template' => $vendorDir . '/phpunit/php-text-template/src/Template.php', - 'TheSeer\\Tokenizer\\Exception' => $vendorDir . '/theseer/tokenizer/src/Exception.php', - 'TheSeer\\Tokenizer\\NamespaceUri' => $vendorDir . '/theseer/tokenizer/src/NamespaceUri.php', - 'TheSeer\\Tokenizer\\NamespaceUriException' => $vendorDir . '/theseer/tokenizer/src/NamespaceUriException.php', - 'TheSeer\\Tokenizer\\Token' => $vendorDir . '/theseer/tokenizer/src/Token.php', - 'TheSeer\\Tokenizer\\TokenCollection' => $vendorDir . '/theseer/tokenizer/src/TokenCollection.php', - 'TheSeer\\Tokenizer\\TokenCollectionException' => $vendorDir . '/theseer/tokenizer/src/TokenCollectionException.php', - 'TheSeer\\Tokenizer\\Tokenizer' => $vendorDir . '/theseer/tokenizer/src/Tokenizer.php', - 'TheSeer\\Tokenizer\\XMLSerializer' => $vendorDir . '/theseer/tokenizer/src/XMLSerializer.php', - 'Theme_Command' => $vendorDir . '/wp-cli/extension-command/src/Theme_Command.php', - 'Theme_Language_Command' => $vendorDir . '/wp-cli/language-command/src/Theme_Language_Command.php', - 'Theme_Mod_Command' => $vendorDir . '/wp-cli/extension-command/src/Theme_Mod_Command.php', - 'Transient_Command' => $vendorDir . '/wp-cli/cache-command/src/Transient_Command.php', - 'User_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Command.php', - 'User_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Meta_Command.php', - 'User_Session_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Session_Command.php', - 'User_Term_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Term_Command.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Cart_Items' => $baseDir . '/includes/connection/class-cart-items.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Coupons' => $baseDir . '/includes/connection/class-coupons.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Customers' => $baseDir . '/includes/connection/class-customers.php', @@ -2614,253 +114,5 @@ 'WPGraphQL\\Extensions\\WooCommerce\\Type_Registry' => $baseDir . '/includes/class-type-registry.php', 'WPGraphQL\\Extensions\\WooCommerce\\Utils\\QL_Session_Handler' => $baseDir . '/includes/utils/class-ql-session-handler.php', 'WPGraphQL\\Extensions\\WooCommerce\\WooCommerce_Filters' => $baseDir . '/includes/class-woocommerce-filters.php', - 'WP_CLI' => $vendorDir . '/wp-cli/wp-cli/php/class-wp-cli.php', - 'WP_CLI\\Autoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Autoloader.php', - 'WP_CLI\\Bootstrap\\AutoloaderStep' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/AutoloaderStep.php', - 'WP_CLI\\Bootstrap\\BootstrapState' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapState.php', - 'WP_CLI\\Bootstrap\\BootstrapStep' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapStep.php', - 'WP_CLI\\Bootstrap\\ConfigureRunner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/ConfigureRunner.php', - 'WP_CLI\\Bootstrap\\DeclareAbstractBaseCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareAbstractBaseCommand.php', - 'WP_CLI\\Bootstrap\\DeclareMainClass' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareMainClass.php', - 'WP_CLI\\Bootstrap\\DefineProtectedCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DefineProtectedCommands.php', - 'WP_CLI\\Bootstrap\\IncludeFallbackAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFallbackAutoloader.php', - 'WP_CLI\\Bootstrap\\IncludeFrameworkAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFrameworkAutoloader.php', - 'WP_CLI\\Bootstrap\\IncludePackageAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludePackageAutoloader.php', - 'WP_CLI\\Bootstrap\\InitializeColorization' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeColorization.php', - 'WP_CLI\\Bootstrap\\InitializeLogger' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeLogger.php', - 'WP_CLI\\Bootstrap\\LaunchRunner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php', - 'WP_CLI\\Bootstrap\\LoadDispatcher' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadDispatcher.php', - 'WP_CLI\\Bootstrap\\LoadRequiredCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadRequiredCommand.php', - 'WP_CLI\\Bootstrap\\LoadUtilityFunctions' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadUtilityFunctions.php', - 'WP_CLI\\Bootstrap\\RegisterDeferredCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterDeferredCommands.php', - 'WP_CLI\\Bootstrap\\RegisterFrameworkCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterFrameworkCommands.php', - 'WP_CLI\\Bootstrap\\RunnerInstance' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RunnerInstance.php', - 'WP_CLI\\CommandWithDBObject' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithDBObject.php', - 'WP_CLI\\CommandWithMeta' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithMeta.php', - 'WP_CLI\\CommandWithTerms' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithTerms.php', - 'WP_CLI\\CommandWithTranslation' => $vendorDir . '/wp-cli/language-command/src/WP_CLI/CommandWithTranslation.php', - 'WP_CLI\\CommandWithUpgrade' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/CommandWithUpgrade.php', - 'WP_CLI\\Completions' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Completions.php', - 'WP_CLI\\ComposerIO' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ComposerIO.php', - 'WP_CLI\\Configurator' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Configurator.php', - 'WP_CLI\\Core\\CoreUpgrader' => $vendorDir . '/wp-cli/core-command/src/WP_CLI/Core/CoreUpgrader.php', - 'WP_CLI\\Core\\NonDestructiveCoreUpgrader' => $vendorDir . '/wp-cli/core-command/src/WP_CLI/Core/NonDestructiveCoreUpgrader.php', - 'WP_CLI\\DestructivePluginUpgrader' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/DestructivePluginUpgrader.php', - 'WP_CLI\\DestructiveThemeUpgrader' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/DestructiveThemeUpgrader.php', - 'WP_CLI\\Dispatcher\\CommandAddition' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandAddition.php', - 'WP_CLI\\Dispatcher\\CommandFactory' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandFactory.php', - 'WP_CLI\\Dispatcher\\CommandNamespace' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandNamespace.php', - 'WP_CLI\\Dispatcher\\CompositeCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CompositeCommand.php', - 'WP_CLI\\Dispatcher\\RootCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/RootCommand.php', - 'WP_CLI\\Dispatcher\\Subcommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/Subcommand.php', - 'WP_CLI\\DocParser' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/DocParser.php', - 'WP_CLI\\Embeds\\Cache_Command' => $vendorDir . '/wp-cli/embed-command/src/Cache_Command.php', - 'WP_CLI\\Embeds\\Embeds_Namespace' => $vendorDir . '/wp-cli/embed-command/src/Embeds_Namespace.php', - 'WP_CLI\\Embeds\\Fetch_Command' => $vendorDir . '/wp-cli/embed-command/src/Fetch_Command.php', - 'WP_CLI\\Embeds\\Handler_Command' => $vendorDir . '/wp-cli/embed-command/src/Handler_Command.php', - 'WP_CLI\\Embeds\\Provider_Command' => $vendorDir . '/wp-cli/embed-command/src/Provider_Command.php', - 'WP_CLI\\Embeds\\oEmbed' => $vendorDir . '/wp-cli/embed-command/src/oEmbed.php', - 'WP_CLI\\Entity\\NonExistentKeyException' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Entity/NonExistentKeyException.php', - 'WP_CLI\\Entity\\RecursiveDataStructureTraverser' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Entity/RecursiveDataStructureTraverser.php', - 'WP_CLI\\Entity\\Utils' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Entity/Utils.php', - 'WP_CLI\\ExitException' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ExitException.php', - 'WP_CLI\\Extractor' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Extractor.php', - 'WP_CLI\\Fetchers\\Base' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Base.php', - 'WP_CLI\\Fetchers\\Comment' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Comment.php', - 'WP_CLI\\Fetchers\\Plugin' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/Fetchers/Plugin.php', - 'WP_CLI\\Fetchers\\Post' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Post.php', - 'WP_CLI\\Fetchers\\Site' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Site.php', - 'WP_CLI\\Fetchers\\Theme' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/Fetchers/Theme.php', - 'WP_CLI\\Fetchers\\UnfilteredPlugin' => $vendorDir . '/wp-cli/checksum-command/src/WP_CLI/Fetchers/UnfilteredPlugin.php', - 'WP_CLI\\Fetchers\\User' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/User.php', - 'WP_CLI\\FileCache' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/FileCache.php', - 'WP_CLI\\Formatter' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Formatter.php', - 'WP_CLI\\I18n\\CommandNamespace' => $vendorDir . '/wp-cli/i18n-command/src/CommandNamespace.php', - 'WP_CLI\\I18n\\IterableCodeExtractor' => $vendorDir . '/wp-cli/i18n-command/src/IterableCodeExtractor.php', - 'WP_CLI\\I18n\\JedGenerator' => $vendorDir . '/wp-cli/i18n-command/src/JedGenerator.php', - 'WP_CLI\\I18n\\JsCodeExtractor' => $vendorDir . '/wp-cli/i18n-command/src/JsCodeExtractor.php', - 'WP_CLI\\I18n\\JsFunctionsScanner' => $vendorDir . '/wp-cli/i18n-command/src/JsFunctionsScanner.php', - 'WP_CLI\\I18n\\MakeJsonCommand' => $vendorDir . '/wp-cli/i18n-command/src/MakeJsonCommand.php', - 'WP_CLI\\I18n\\MakePotCommand' => $vendorDir . '/wp-cli/i18n-command/src/MakePotCommand.php', - 'WP_CLI\\I18n\\MapCodeExtractor' => $vendorDir . '/wp-cli/i18n-command/src/MapCodeExtractor.php', - 'WP_CLI\\I18n\\PhpCodeExtractor' => $vendorDir . '/wp-cli/i18n-command/src/PhpCodeExtractor.php', - 'WP_CLI\\I18n\\PhpFunctionsScanner' => $vendorDir . '/wp-cli/i18n-command/src/PhpFunctionsScanner.php', - 'WP_CLI\\I18n\\PotGenerator' => $vendorDir . '/wp-cli/i18n-command/src/PotGenerator.php', - 'WP_CLI\\Inflector' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Inflector.php', - 'WP_CLI\\Iterators\\CSV' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/CSV.php', - 'WP_CLI\\Iterators\\Exception' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Exception.php', - 'WP_CLI\\Iterators\\Query' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Query.php', - 'WP_CLI\\Iterators\\Table' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Table.php', - 'WP_CLI\\Iterators\\Transform' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Transform.php', - 'WP_CLI\\JsonManipulator' => $vendorDir . '/wp-cli/package-command/src/WP_CLI/JsonManipulator.php', - 'WP_CLI\\LanguagePackUpgrader' => $vendorDir . '/wp-cli/language-command/src/WP_CLI/LanguagePackUpgrader.php', - 'WP_CLI\\Loggers\\Base' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Base.php', - 'WP_CLI\\Loggers\\Execution' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Execution.php', - 'WP_CLI\\Loggers\\Quiet' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Quiet.php', - 'WP_CLI\\Loggers\\Regular' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Regular.php', - 'WP_CLI\\MaintenanceMode\\MaintenanceModeCommand' => $vendorDir . '/wp-cli/maintenance-mode-command/src/MaintenanceModeCommand.php', - 'WP_CLI\\NoOp' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/NoOp.php', - 'WP_CLI\\PackageManagerEventSubscriber' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/PackageManagerEventSubscriber.php', - 'WP_CLI\\Process' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Process.php', - 'WP_CLI\\ProcessRun' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ProcessRun.php', - 'WP_CLI\\Runner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Runner.php', - 'WP_CLI\\SearchReplacer' => $vendorDir . '/wp-cli/search-replace-command/src/WP_CLI/SearchReplacer.php', - 'WP_CLI\\Shell\\REPL' => $vendorDir . '/wp-cli/shell-command/src/WP_CLI/Shell/REPL.php', - 'WP_CLI\\SynopsisParser' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/SynopsisParser.php', - 'WP_CLI\\SynopsisValidator' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/SynopsisValidator.php', - 'WP_CLI\\UpgraderSkin' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/UpgraderSkin.php', - 'WP_CLI\\WpHttpCacheManager' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/WpHttpCacheManager.php', - 'WP_CLI_Command' => $vendorDir . '/wp-cli/wp-cli/php/class-wp-cli-command.php', - 'WP_Export_Base_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Base_Writer.php', - 'WP_Export_Exception' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Exception.php', - 'WP_Export_File_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_File_Writer.php', - 'WP_Export_Oxymel' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Oxymel.php', - 'WP_Export_Query' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Query.php', - 'WP_Export_Returner' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Returner.php', - 'WP_Export_Split_Files_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Split_Files_Writer.php', - 'WP_Export_Stdout_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Stdout_Writer.php', - 'WP_Export_Term_Exception' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Term_Exception.php', - 'WP_Export_WXR_Formatter' => $vendorDir . '/wp-cli/export-command/src/WP_Export_WXR_Formatter.php', - 'WP_Export_XML_Over_HTTP' => $vendorDir . '/wp-cli/export-command/src/WP_Export_XML_Over_HTTP.php', 'WP_GraphQL_WooCommerce' => $baseDir . '/includes/class-wp-graphql-woocommerce.php', - 'WP_Iterator_Exception' => $vendorDir . '/wp-cli/export-command/src/WP_Iterator_Exception.php', - 'WP_Map_Iterator' => $vendorDir . '/wp-cli/export-command/src/WP_Map_Iterator.php', - 'WP_Post_IDs_Iterator' => $vendorDir . '/wp-cli/export-command/src/WP_Post_IDs_Iterator.php', - 'Webmozart\\Assert\\Assert' => $vendorDir . '/webmozart/assert/src/Assert.php', - 'Widget_Command' => $vendorDir . '/wp-cli/widget-command/src/Widget_Command.php', - 'cli\\Arguments' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Arguments.php', - 'cli\\Colors' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Colors.php', - 'cli\\Memoize' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Memoize.php', - 'cli\\Notify' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Notify.php', - 'cli\\Progress' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Progress.php', - 'cli\\Shell' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Shell.php', - 'cli\\Streams' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Streams.php', - 'cli\\Table' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Table.php', - 'cli\\Tree' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Tree.php', - 'cli\\arguments\\Argument' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/Argument.php', - 'cli\\arguments\\HelpScreen' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/HelpScreen.php', - 'cli\\arguments\\InvalidArguments' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/InvalidArguments.php', - 'cli\\arguments\\Lexer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/Lexer.php', - 'cli\\notify\\Dots' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/notify/Dots.php', - 'cli\\notify\\Spinner' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/notify/Spinner.php', - 'cli\\progress\\Bar' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/progress/Bar.php', - 'cli\\table\\Ascii' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Ascii.php', - 'cli\\table\\Renderer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Renderer.php', - 'cli\\table\\Tabular' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Tabular.php', - 'cli\\tree\\Ascii' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Ascii.php', - 'cli\\tree\\Markdown' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Markdown.php', - 'cli\\tree\\Renderer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Renderer.php', - 'phpDocumentor\\Reflection\\DocBlock' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock.php', - 'phpDocumentor\\Reflection\\DocBlockFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlockFactory.php', - 'phpDocumentor\\Reflection\\DocBlockFactoryInterface' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php', - 'phpDocumentor\\Reflection\\DocBlock\\Description' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Description.php', - 'phpDocumentor\\Reflection\\DocBlock\\DescriptionFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/DescriptionFactory.php', - 'phpDocumentor\\Reflection\\DocBlock\\ExampleFinder' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/ExampleFinder.php', - 'phpDocumentor\\Reflection\\DocBlock\\Serializer' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Serializer.php', - 'phpDocumentor\\Reflection\\DocBlock\\StandardTagFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/StandardTagFactory.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tag' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tag.php', - 'phpDocumentor\\Reflection\\DocBlock\\TagFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/TagFactory.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Author' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Author.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\BaseTag' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/BaseTag.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Covers' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Covers.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Deprecated' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Deprecated.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Example' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\StaticMethod' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/StaticMethod.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\Strategy' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/Strategy.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\AlignFormatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/AlignFormatter.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\PassthroughFormatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/PassthroughFormatter.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Generic' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Generic.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Link' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Link.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Method' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Method.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Param' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Param.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Property' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Property.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyRead' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyRead.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyWrite' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyWrite.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Fqsen' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Fqsen.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Reference' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Reference.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Url' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Url.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Return_' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Return_.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\See' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/See.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Since' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Source' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Source.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Throws' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Throws.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Uses' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Uses.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Var_' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Var_.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Version' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Version.php', - 'phpDocumentor\\Reflection\\Element' => $vendorDir . '/phpdocumentor/reflection-common/src/Element.php', - 'phpDocumentor\\Reflection\\File' => $vendorDir . '/phpdocumentor/reflection-common/src/File.php', - 'phpDocumentor\\Reflection\\Fqsen' => $vendorDir . '/phpdocumentor/reflection-common/src/Fqsen.php', - 'phpDocumentor\\Reflection\\FqsenResolver' => $vendorDir . '/phpdocumentor/type-resolver/src/FqsenResolver.php', - 'phpDocumentor\\Reflection\\Location' => $vendorDir . '/phpdocumentor/reflection-common/src/Location.php', - 'phpDocumentor\\Reflection\\Project' => $vendorDir . '/phpdocumentor/reflection-common/src/Project.php', - 'phpDocumentor\\Reflection\\ProjectFactory' => $vendorDir . '/phpdocumentor/reflection-common/src/ProjectFactory.php', - 'phpDocumentor\\Reflection\\Type' => $vendorDir . '/phpdocumentor/type-resolver/src/Type.php', - 'phpDocumentor\\Reflection\\TypeResolver' => $vendorDir . '/phpdocumentor/type-resolver/src/TypeResolver.php', - 'phpDocumentor\\Reflection\\Types\\Array_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Array_.php', - 'phpDocumentor\\Reflection\\Types\\Boolean' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Boolean.php', - 'phpDocumentor\\Reflection\\Types\\Callable_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Callable_.php', - 'phpDocumentor\\Reflection\\Types\\Compound' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Compound.php', - 'phpDocumentor\\Reflection\\Types\\Context' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Context.php', - 'phpDocumentor\\Reflection\\Types\\ContextFactory' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/ContextFactory.php', - 'phpDocumentor\\Reflection\\Types\\Float_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Float_.php', - 'phpDocumentor\\Reflection\\Types\\Integer' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Integer.php', - 'phpDocumentor\\Reflection\\Types\\Iterable_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Iterable_.php', - 'phpDocumentor\\Reflection\\Types\\Mixed_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Mixed_.php', - 'phpDocumentor\\Reflection\\Types\\Null_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Null_.php', - 'phpDocumentor\\Reflection\\Types\\Nullable' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Nullable.php', - 'phpDocumentor\\Reflection\\Types\\Object_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Object_.php', - 'phpDocumentor\\Reflection\\Types\\Parent_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Parent_.php', - 'phpDocumentor\\Reflection\\Types\\Resource_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Resource_.php', - 'phpDocumentor\\Reflection\\Types\\Scalar' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Scalar.php', - 'phpDocumentor\\Reflection\\Types\\Self_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Self_.php', - 'phpDocumentor\\Reflection\\Types\\Static_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Static_.php', - 'phpDocumentor\\Reflection\\Types\\String_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/String_.php', - 'phpDocumentor\\Reflection\\Types\\This' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/This.php', - 'phpDocumentor\\Reflection\\Types\\Void_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Void_.php', - 'tad\\WPBrowser\\Adapters\\WP' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Adapters/WP.php', - 'tad\\WPBrowser\\Connector\\WordPress' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Connector/WordPress.php', - 'tad\\WPBrowser\\Documentation\\TableGenerator' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Documentation/TableGenerator.php', - 'tad\\WPBrowser\\Environment\\Constants' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/Constants.php', - 'tad\\WPBrowser\\Environment\\Executor' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/Executor.php', - 'tad\\WPBrowser\\Environment\\System' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/System.php', - 'tad\\WPBrowser\\Extension\\Copier' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Extension/Copier.php', - 'tad\\WPBrowser\\Extension\\Symlinker' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Extension/Symlinker.php', - 'tad\\WPBrowser\\Filesystem\\FileReplacers\\AbstractFileReplacer' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/AbstractFileReplacer.php', - 'tad\\WPBrowser\\Filesystem\\FileReplacers\\HtaccesReplacer' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/HtaccesReplacer.php', - 'tad\\WPBrowser\\Filesystem\\FileReplacers\\WPConfigReplacer' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/WPConfigReplacer.php', - 'tad\\WPBrowser\\Filesystem\\Filesystem' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/Filesystem.php', - 'tad\\WPBrowser\\Filesystem\\Utils' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/Utils.php', - 'tad\\WPBrowser\\Generators\\Blog' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Blog.php', - 'tad\\WPBrowser\\Generators\\Comment' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Comment.php', - 'tad\\WPBrowser\\Generators\\Date' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Date.php', - 'tad\\WPBrowser\\Generators\\Links' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Links.php', - 'tad\\WPBrowser\\Generators\\Post' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Post.php', - 'tad\\WPBrowser\\Generators\\RedirectingWPConfig' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/RedirectingWPConfig.php', - 'tad\\WPBrowser\\Generators\\SubdomainHtaccess' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/SubdomainHtaccess.php', - 'tad\\WPBrowser\\Generators\\SubfolderHtaccess' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/SubfolderHtaccess.php', - 'tad\\WPBrowser\\Generators\\Tables' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Tables.php', - 'tad\\WPBrowser\\Generators\\TemplateProviderInterface' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/TemplateProviderInterface.php', - 'tad\\WPBrowser\\Generators\\User' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/User.php', - 'tad\\WPBrowser\\Generators\\User\\Roles' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/User/Roles.php', - 'tad\\WPBrowser\\Generators\\WpPassword' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/WpPassword.php', - 'tad\\WPBrowser\\Iterators\\Filters\\ActionsQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/ActionsQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\ClassMethodQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/ClassMethodQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\FactoryQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FactoryQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\FiltersQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FiltersQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\FunctionQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FunctionQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\MainStatementQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/MainStatementQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\QueriesCallerBasedFilterIterator' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/QueriesCallerBasedFilterIterator.php', - 'tad\\WPBrowser\\Iterators\\Filters\\QueriesCallerBasedKeepingFilterIterator' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/QueriesCallerBasedKeepingFilterIterator.php', - 'tad\\WPBrowser\\Iterators\\Filters\\SetupTearDownQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/SetupTearDownQueriesFilter.php', - 'tad\\WPBrowser\\Module\\Support\\DbDump' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/Support/DbDump.php', - 'tad\\WPBrowser\\Module\\Support\\UriToIndexMapper' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/Support/UriToIndexMapper.php', - 'tad\\WPBrowser\\Module\\WPLoader\\FactoryStore' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/FactoryStore.php', - 'tad\\WPBrowser\\Module\\WPLoader\\Filters' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/Filters.php', - 'tad\\WPBrowser\\Module\\WPLoader\\FiltersGroup' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/FiltersGroup.php', - 'tad\\WPBrowser\\Services\\Db\\MySQLDumpFactory' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpFactory.php', - 'tad\\WPBrowser\\Services\\Db\\MySQLDumpFactoryInterface' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpFactoryInterface.php', - 'tad\\WPBrowser\\Services\\Db\\MySQLDumpInterface' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpInterface.php', - 'tad\\WPBrowser\\Services\\WP\\Bootstrapper' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/WP/Bootstrapper.php', - 'tad\\WPBrowser\\Template\\Data' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Template/Data.php', ); diff --git a/vendor/composer/autoload_files.php b/vendor/composer/autoload_files.php deleted file mode 100644 index 363da3904..000000000 --- a/vendor/composer/autoload_files.php +++ /dev/null @@ -1,47 +0,0 @@ - $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', - '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', - '0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php', - 'ba366f96f4fddbdef61ad7a862b44f61' => $vendorDir . '/wp-cli/package-command/package-command.php', - '3937806105cc8e221b8fa8db5b70d2f2' => $vendorDir . '/wp-cli/mustangostang-spyc/includes/functions.php', - 'be01b9b16925dcb22165c40b46681ac6' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/cli.php', - '8a0ad02df6a5087f2c380f8fd52db273' => $vendorDir . '/wp-cli/cache-command/cache-command.php', - 'f3f0199a3ecd9f501d0a3b361bd2f61c' => $vendorDir . '/wp-cli/entity-command/entity-command.php', - '3f201033d5aceb2293314273be88f7c6' => $vendorDir . '/wp-cli/extension-command/extension-command.php', - 'c65f753375faee349b7adc48c2ee7cc2' => $vendorDir . '/wp-cli/db-command/db-command.php', - '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php', - 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php', - 'd979c11fe80ba96ae3037b43429fe546' => $vendorDir . '/wp-cli/scaffold-command/scaffold-command.php', - '5c6ec5cff8f9d625772c8ed147f6b894' => $vendorDir . '/wp-cli/export-command/export-command.php', - 'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php', - 'b66d29757fcb2fb7a9608d068e3716b0' => $vendorDir . '/wp-cli/checksum-command/checksum-command.php', - '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', - '72579e7bd17821bb1321b87411366eae' => $vendorDir . '/illuminate/support/helpers.php', - '30cbb6e4122dc988e494c6b9c0438233' => $vendorDir . '/wp-cli/import-command/import-command.php', - '5e099d3cac677dd2bec1003ea7707745' => $vendorDir . '/wp-cli/media-command/media-command.php', - 'ac949ce40a981819ba132473518a9a31' => $vendorDir . '/wp-cli/wp-config-transformer/src/WPConfigTransformer.php', - '5deaf6ce9c8bbdfb65104c7e938d5875' => $vendorDir . '/wp-cli/config-command/config-command.php', - '68c39b88215b6cf7a0da164166670ef9' => $vendorDir . '/wp-cli/core-command/core-command.php', - '7654e00bf0e632580764400bd8293a9c' => $vendorDir . '/wp-cli/cron-command/cron-command.php', - '021d3a13471556f0b57038d679f7f8ea' => $vendorDir . '/wp-cli/embed-command/embed-command.php', - 'f958dca3f412fd7975da1700912a9321' => $vendorDir . '/wp-cli/eval-command/eval-command.php', - 'ffb465a494c3101218c4417180c2c9a2' => $vendorDir . '/wp-cli/i18n-command/i18n-command.php', - 'ace0d205db7f4135ec32132a0076d555' => $vendorDir . '/wp-cli/language-command/language-command.php', - '1c88c1eff05217a8cac80c64c9ac2080' => $vendorDir . '/wp-cli/maintenance-mode-command/maintenance-mode-command.php', - 'f399c1c8d0c787d5c94c09884cdd9762' => $vendorDir . '/wp-cli/rewrite-command/rewrite-command.php', - '080fadd667195d055c5a23386f270261' => $vendorDir . '/wp-cli/role-command/role-command.php', - '8ecb13f8bbc22b1b34d12b14ec01077a' => $vendorDir . '/wp-cli/search-replace-command/search-replace-command.php', - '9f04dd0aa5d67ec75a75c88c345a079e' => $vendorDir . '/wp-cli/server-command/server-command.php', - '129d58fa8151374aceb8571bcaa97504' => $vendorDir . '/wp-cli/shell-command/shell-command.php', - '8519779bbb65eeb842af2f629ce7b6f8' => $vendorDir . '/wp-cli/super-admin-command/super-admin-command.php', - '1f05372afcc7d0c51a305cef1d56dd01' => $vendorDir . '/wp-cli/widget-command/widget-command.php', - '6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', - 'e2b8090921f5e293ca4eb0c107749811' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/functions.php', -); diff --git a/vendor/composer/autoload_namespaces.php b/vendor/composer/autoload_namespaces.php index 2e03c2641..b7fc0125d 100644 --- a/vendor/composer/autoload_namespaces.php +++ b/vendor/composer/autoload_namespaces.php @@ -6,15 +6,4 @@ $baseDir = dirname($vendorDir); return array( - 'cli' => array($vendorDir . '/wp-cli/php-cli-tools/lib'), - 'WP_CLI' => array($vendorDir . '/wp-cli/wp-cli/php'), - 'Requests' => array($vendorDir . '/rmccue/requests/library'), - 'Prophecy\\' => array($vendorDir . '/phpspec/prophecy/src'), - 'PhpOption\\' => array($vendorDir . '/phpoption/phpoption/src'), - 'Oxymel' => array($vendorDir . '/nb/oxymel'), - 'Mustache' => array($vendorDir . '/mustache/mustache/src'), - 'Hautelook' => array($vendorDir . '/hautelook/phpass/src'), - 'Handlebars' => array($vendorDir . '/xamin/handlebars.php/src'), - 'Behat\\Gherkin' => array($vendorDir . '/behat/gherkin/src'), - 'BaconStringUtils' => array($vendorDir . '/bacon/bacon-string-utils/src'), ); diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php index 93fe0453f..0e04ec26c 100644 --- a/vendor/composer/autoload_psr4.php +++ b/vendor/composer/autoload_psr4.php @@ -6,62 +6,5 @@ $baseDir = dirname($vendorDir); return array( - 'tad\\' => array($vendorDir . '/lucatume/wp-browser/src/tad', $vendorDir . '/lucatume/wp-browser-commons/src/tad'), - 'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/reflection-docblock/src', $vendorDir . '/phpdocumentor/type-resolver/src'), - 'Webmozart\\Assert\\' => array($vendorDir . '/webmozart/assert/src'), - 'WP_CLI\\MaintenanceMode\\' => array($vendorDir . '/wp-cli/maintenance-mode-command/src'), - 'WP_CLI\\I18n\\' => array($vendorDir . '/wp-cli/i18n-command/src'), - 'WP_CLI\\Embeds\\' => array($vendorDir . '/wp-cli/embed-command/src'), - 'WP_CLI\\' => array($vendorDir . '/wp-cli/entity-command/src/WP_CLI', $vendorDir . '/wp-cli/shell-command/src/WP_CLI'), 'WPGraphQL\\Extensions\\WooCommerce\\' => array($baseDir . '/includes'), - 'Symfony\\Polyfill\\Php73\\' => array($vendorDir . '/symfony/polyfill-php73'), - 'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'), - 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'), - 'Symfony\\Contracts\\Translation\\' => array($vendorDir . '/symfony/translation-contracts'), - 'Symfony\\Contracts\\Service\\' => array($vendorDir . '/symfony/service-contracts'), - 'Symfony\\Contracts\\EventDispatcher\\' => array($vendorDir . '/symfony/event-dispatcher-contracts'), - 'Symfony\\Component\\Yaml\\' => array($vendorDir . '/symfony/yaml'), - 'Symfony\\Component\\Translation\\' => array($vendorDir . '/symfony/translation'), - 'Symfony\\Component\\Process\\' => array($vendorDir . '/symfony/process'), - 'Symfony\\Component\\Finder\\' => array($vendorDir . '/symfony/finder'), - 'Symfony\\Component\\Filesystem\\' => array($vendorDir . '/symfony/filesystem'), - 'Symfony\\Component\\EventDispatcher\\' => array($vendorDir . '/symfony/event-dispatcher'), - 'Symfony\\Component\\DomCrawler\\' => array($vendorDir . '/symfony/dom-crawler'), - 'Symfony\\Component\\CssSelector\\' => array($vendorDir . '/symfony/css-selector'), - 'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'), - 'Symfony\\Component\\BrowserKit\\' => array($vendorDir . '/symfony/browser-kit'), - 'Seld\\PharUtils\\' => array($vendorDir . '/seld/phar-utils/src'), - 'Seld\\JsonLint\\' => array($vendorDir . '/seld/jsonlint/src/Seld/JsonLint'), - 'Psr\\SimpleCache\\' => array($vendorDir . '/psr/simple-cache/src'), - 'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'), - 'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src'), - 'Psr\\Container\\' => array($vendorDir . '/psr/container/src'), - 'Peast\\test\\' => array($vendorDir . '/mck89/peast/test/Peast'), - 'Peast\\' => array($vendorDir . '/mck89/peast/lib/Peast'), - 'Mustangostang\\' => array($vendorDir . '/wp-cli/mustangostang-spyc/src'), - 'MikeMcLin\\WpPassword\\' => array($vendorDir . '/mikemclin/laravel-wp-password/src'), - 'JsonSchema\\' => array($vendorDir . '/justinrainbow/json-schema/src/JsonSchema'), - 'Illuminate\\Support\\' => array($vendorDir . '/illuminate/support'), - 'Illuminate\\Contracts\\' => array($vendorDir . '/illuminate/contracts'), - 'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'), - 'GuzzleHttp\\Promise\\' => array($vendorDir . '/guzzlehttp/promises/src'), - 'GuzzleHttp\\' => array($vendorDir . '/guzzlehttp/guzzle/src'), - 'Gumlet\\' => array($vendorDir . '/gumlet/php-image-resize/lib'), - 'Gettext\\Languages\\' => array($vendorDir . '/gettext/languages/src'), - 'Gettext\\' => array($vendorDir . '/gettext/gettext/src'), - 'Facebook\\WebDriver\\' => array($vendorDir . '/facebook/webdriver/lib'), - 'Dotenv\\' => array($vendorDir . '/vlucas/phpdotenv/src'), - 'Doctrine\\Instantiator\\' => array($vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator'), - 'Doctrine\\Common\\Inflector\\' => array($vendorDir . '/doctrine/inflector/lib/Doctrine/Common/Inflector'), - 'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'), - 'Composer\\XdebugHandler\\' => array($vendorDir . '/composer/xdebug-handler/src'), - 'Composer\\Spdx\\' => array($vendorDir . '/composer/spdx-licenses/src'), - 'Composer\\Semver\\' => array($vendorDir . '/composer/semver/src'), - 'Composer\\CaBundle\\' => array($vendorDir . '/composer/ca-bundle/src'), - 'Composer\\' => array($vendorDir . '/composer/composer/src/Composer'), - 'Codeception\\PHPUnit\\' => array($vendorDir . '/codeception/phpunit-wrapper/src'), - 'Codeception\\Extension\\' => array($vendorDir . '/codeception/codeception/ext'), - 'Codeception\\' => array($vendorDir . '/codeception/codeception/src/Codeception', $vendorDir . '/codeception/stub/src', $vendorDir . '/lucatume/wp-browser/src/Codeception'), - 'Carbon\\' => array($vendorDir . '/nesbot/carbon/src/Carbon'), - '' => array($vendorDir . '/wp-cli/cache-command/src', $vendorDir . '/wp-cli/checksum-command/src', $vendorDir . '/wp-cli/config-command/src', $vendorDir . '/wp-cli/core-command/src', $vendorDir . '/wp-cli/cron-command/src', $vendorDir . '/wp-cli/db-command/src', $vendorDir . '/wp-cli/entity-command/src', $vendorDir . '/wp-cli/eval-command/src', $vendorDir . '/wp-cli/export-command/src', $vendorDir . '/wp-cli/extension-command/src', $vendorDir . '/wp-cli/import-command/src', $vendorDir . '/wp-cli/language-command/src', $vendorDir . '/wp-cli/media-command/src', $vendorDir . '/wp-cli/package-command/src', $vendorDir . '/wp-cli/rewrite-command/src', $vendorDir . '/wp-cli/role-command/src', $vendorDir . '/wp-cli/scaffold-command/src', $vendorDir . '/wp-cli/search-replace-command/src', $vendorDir . '/wp-cli/server-command/src', $vendorDir . '/wp-cli/shell-command/src', $vendorDir . '/wp-cli/super-admin-command/src', $vendorDir . '/wp-cli/widget-command/src'), ); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index d8ddaa7ca..f796db66b 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit7a6810d883e7e56f4120cefc43c77766 +class ComposerAutoloaderInit83ea8ceeec7856c3ed76cc34ad81baa1 { private static $loader; @@ -19,15 +19,15 @@ public static function getLoader() return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInit7a6810d883e7e56f4120cefc43c77766', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInit83ea8ceeec7856c3ed76cc34ad81baa1', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInit7a6810d883e7e56f4120cefc43c77766', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInit83ea8ceeec7856c3ed76cc34ad81baa1', 'loadClassLoader')); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInit83ea8ceeec7856c3ed76cc34ad81baa1::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { @@ -47,24 +47,6 @@ public static function getLoader() $loader->register(true); - if ($useStaticLoader) { - $includeFiles = Composer\Autoload\ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$files; - } else { - $includeFiles = require __DIR__ . '/autoload_files.php'; - } - foreach ($includeFiles as $fileIdentifier => $file) { - composerRequire7a6810d883e7e56f4120cefc43c77766($fileIdentifier, $file); - } - return $loader; } } - -function composerRequire7a6810d883e7e56f4120cefc43c77766($fileIdentifier, $file) -{ - if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { - require $file; - - $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; - } -} diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 38f4eb043..99f6f465a 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,2979 +4,23 @@ namespace Composer\Autoload; -class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 +class ComposerStaticInit83ea8ceeec7856c3ed76cc34ad81baa1 { - public static $files = array ( - '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', - '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', - '0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php', - 'ba366f96f4fddbdef61ad7a862b44f61' => __DIR__ . '/..' . '/wp-cli/package-command/package-command.php', - '3937806105cc8e221b8fa8db5b70d2f2' => __DIR__ . '/..' . '/wp-cli/mustangostang-spyc/includes/functions.php', - 'be01b9b16925dcb22165c40b46681ac6' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/cli.php', - '8a0ad02df6a5087f2c380f8fd52db273' => __DIR__ . '/..' . '/wp-cli/cache-command/cache-command.php', - 'f3f0199a3ecd9f501d0a3b361bd2f61c' => __DIR__ . '/..' . '/wp-cli/entity-command/entity-command.php', - '3f201033d5aceb2293314273be88f7c6' => __DIR__ . '/..' . '/wp-cli/extension-command/extension-command.php', - 'c65f753375faee349b7adc48c2ee7cc2' => __DIR__ . '/..' . '/wp-cli/db-command/db-command.php', - '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php', - 'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php', - 'd979c11fe80ba96ae3037b43429fe546' => __DIR__ . '/..' . '/wp-cli/scaffold-command/scaffold-command.php', - '5c6ec5cff8f9d625772c8ed147f6b894' => __DIR__ . '/..' . '/wp-cli/export-command/export-command.php', - 'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php', - 'b66d29757fcb2fb7a9608d068e3716b0' => __DIR__ . '/..' . '/wp-cli/checksum-command/checksum-command.php', - '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php', - '72579e7bd17821bb1321b87411366eae' => __DIR__ . '/..' . '/illuminate/support/helpers.php', - '30cbb6e4122dc988e494c6b9c0438233' => __DIR__ . '/..' . '/wp-cli/import-command/import-command.php', - '5e099d3cac677dd2bec1003ea7707745' => __DIR__ . '/..' . '/wp-cli/media-command/media-command.php', - 'ac949ce40a981819ba132473518a9a31' => __DIR__ . '/..' . '/wp-cli/wp-config-transformer/src/WPConfigTransformer.php', - '5deaf6ce9c8bbdfb65104c7e938d5875' => __DIR__ . '/..' . '/wp-cli/config-command/config-command.php', - '68c39b88215b6cf7a0da164166670ef9' => __DIR__ . '/..' . '/wp-cli/core-command/core-command.php', - '7654e00bf0e632580764400bd8293a9c' => __DIR__ . '/..' . '/wp-cli/cron-command/cron-command.php', - '021d3a13471556f0b57038d679f7f8ea' => __DIR__ . '/..' . '/wp-cli/embed-command/embed-command.php', - 'f958dca3f412fd7975da1700912a9321' => __DIR__ . '/..' . '/wp-cli/eval-command/eval-command.php', - 'ffb465a494c3101218c4417180c2c9a2' => __DIR__ . '/..' . '/wp-cli/i18n-command/i18n-command.php', - 'ace0d205db7f4135ec32132a0076d555' => __DIR__ . '/..' . '/wp-cli/language-command/language-command.php', - '1c88c1eff05217a8cac80c64c9ac2080' => __DIR__ . '/..' . '/wp-cli/maintenance-mode-command/maintenance-mode-command.php', - 'f399c1c8d0c787d5c94c09884cdd9762' => __DIR__ . '/..' . '/wp-cli/rewrite-command/rewrite-command.php', - '080fadd667195d055c5a23386f270261' => __DIR__ . '/..' . '/wp-cli/role-command/role-command.php', - '8ecb13f8bbc22b1b34d12b14ec01077a' => __DIR__ . '/..' . '/wp-cli/search-replace-command/search-replace-command.php', - '9f04dd0aa5d67ec75a75c88c345a079e' => __DIR__ . '/..' . '/wp-cli/server-command/server-command.php', - '129d58fa8151374aceb8571bcaa97504' => __DIR__ . '/..' . '/wp-cli/shell-command/shell-command.php', - '8519779bbb65eeb842af2f629ce7b6f8' => __DIR__ . '/..' . '/wp-cli/super-admin-command/super-admin-command.php', - '1f05372afcc7d0c51a305cef1d56dd01' => __DIR__ . '/..' . '/wp-cli/widget-command/widget-command.php', - '6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php', - 'e2b8090921f5e293ca4eb0c107749811' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/functions.php', - ); - public static $prefixLengthsPsr4 = array ( - 't' => - array ( - 'tad\\' => 4, - ), - 'p' => - array ( - 'phpDocumentor\\Reflection\\' => 25, - ), 'W' => array ( - 'Webmozart\\Assert\\' => 17, - 'WP_CLI\\MaintenanceMode\\' => 23, - 'WP_CLI\\I18n\\' => 12, - 'WP_CLI\\Embeds\\' => 14, - 'WP_CLI\\' => 7, 'WPGraphQL\\Extensions\\WooCommerce\\' => 33, ), - 'S' => - array ( - 'Symfony\\Polyfill\\Php73\\' => 23, - 'Symfony\\Polyfill\\Mbstring\\' => 26, - 'Symfony\\Polyfill\\Ctype\\' => 23, - 'Symfony\\Contracts\\Translation\\' => 30, - 'Symfony\\Contracts\\Service\\' => 26, - 'Symfony\\Contracts\\EventDispatcher\\' => 34, - 'Symfony\\Component\\Yaml\\' => 23, - 'Symfony\\Component\\Translation\\' => 30, - 'Symfony\\Component\\Process\\' => 26, - 'Symfony\\Component\\Finder\\' => 25, - 'Symfony\\Component\\Filesystem\\' => 29, - 'Symfony\\Component\\EventDispatcher\\' => 34, - 'Symfony\\Component\\DomCrawler\\' => 29, - 'Symfony\\Component\\CssSelector\\' => 30, - 'Symfony\\Component\\Console\\' => 26, - 'Symfony\\Component\\BrowserKit\\' => 29, - 'Seld\\PharUtils\\' => 15, - 'Seld\\JsonLint\\' => 14, - ), - 'P' => - array ( - 'Psr\\SimpleCache\\' => 16, - 'Psr\\Log\\' => 8, - 'Psr\\Http\\Message\\' => 17, - 'Psr\\Container\\' => 14, - 'Peast\\test\\' => 11, - 'Peast\\' => 6, - ), - 'M' => - array ( - 'Mustangostang\\' => 14, - 'MikeMcLin\\WpPassword\\' => 21, - ), - 'J' => - array ( - 'JsonSchema\\' => 11, - ), - 'I' => - array ( - 'Illuminate\\Support\\' => 19, - 'Illuminate\\Contracts\\' => 21, - ), - 'G' => - array ( - 'GuzzleHttp\\Psr7\\' => 16, - 'GuzzleHttp\\Promise\\' => 19, - 'GuzzleHttp\\' => 11, - 'Gumlet\\' => 7, - 'Gettext\\Languages\\' => 18, - 'Gettext\\' => 8, - ), - 'F' => - array ( - 'Facebook\\WebDriver\\' => 19, - ), - 'D' => - array ( - 'Dotenv\\' => 7, - 'Doctrine\\Instantiator\\' => 22, - 'Doctrine\\Common\\Inflector\\' => 26, - 'DeepCopy\\' => 9, - ), - 'C' => - array ( - 'Composer\\XdebugHandler\\' => 23, - 'Composer\\Spdx\\' => 14, - 'Composer\\Semver\\' => 16, - 'Composer\\CaBundle\\' => 18, - 'Composer\\' => 9, - 'Codeception\\PHPUnit\\' => 20, - 'Codeception\\Extension\\' => 22, - 'Codeception\\' => 12, - 'Carbon\\' => 7, - ), ); public static $prefixDirsPsr4 = array ( - 'tad\\' => - array ( - 0 => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad', - 1 => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad', - ), - 'phpDocumentor\\Reflection\\' => - array ( - 0 => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src', - 1 => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src', - 2 => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src', - ), - 'Webmozart\\Assert\\' => - array ( - 0 => __DIR__ . '/..' . '/webmozart/assert/src', - ), - 'WP_CLI\\MaintenanceMode\\' => - array ( - 0 => __DIR__ . '/..' . '/wp-cli/maintenance-mode-command/src', - ), - 'WP_CLI\\I18n\\' => - array ( - 0 => __DIR__ . '/..' . '/wp-cli/i18n-command/src', - ), - 'WP_CLI\\Embeds\\' => - array ( - 0 => __DIR__ . '/..' . '/wp-cli/embed-command/src', - ), - 'WP_CLI\\' => - array ( - 0 => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI', - 1 => __DIR__ . '/..' . '/wp-cli/shell-command/src/WP_CLI', - ), 'WPGraphQL\\Extensions\\WooCommerce\\' => array ( 0 => __DIR__ . '/../..' . '/includes', ), - 'Symfony\\Polyfill\\Php73\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/polyfill-php73', - ), - 'Symfony\\Polyfill\\Mbstring\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring', - ), - 'Symfony\\Polyfill\\Ctype\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/polyfill-ctype', - ), - 'Symfony\\Contracts\\Translation\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/translation-contracts', - ), - 'Symfony\\Contracts\\Service\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/service-contracts', - ), - 'Symfony\\Contracts\\EventDispatcher\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/event-dispatcher-contracts', - ), - 'Symfony\\Component\\Yaml\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/yaml', - ), - 'Symfony\\Component\\Translation\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/translation', - ), - 'Symfony\\Component\\Process\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/process', - ), - 'Symfony\\Component\\Finder\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/finder', - ), - 'Symfony\\Component\\Filesystem\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/filesystem', - ), - 'Symfony\\Component\\EventDispatcher\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/event-dispatcher', - ), - 'Symfony\\Component\\DomCrawler\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/dom-crawler', - ), - 'Symfony\\Component\\CssSelector\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/css-selector', - ), - 'Symfony\\Component\\Console\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/console', - ), - 'Symfony\\Component\\BrowserKit\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/browser-kit', - ), - 'Seld\\PharUtils\\' => - array ( - 0 => __DIR__ . '/..' . '/seld/phar-utils/src', - ), - 'Seld\\JsonLint\\' => - array ( - 0 => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint', - ), - 'Psr\\SimpleCache\\' => - array ( - 0 => __DIR__ . '/..' . '/psr/simple-cache/src', - ), - 'Psr\\Log\\' => - array ( - 0 => __DIR__ . '/..' . '/psr/log/Psr/Log', - ), - 'Psr\\Http\\Message\\' => - array ( - 0 => __DIR__ . '/..' . '/psr/http-message/src', - ), - 'Psr\\Container\\' => - array ( - 0 => __DIR__ . '/..' . '/psr/container/src', - ), - 'Peast\\test\\' => - array ( - 0 => __DIR__ . '/..' . '/mck89/peast/test/Peast', - ), - 'Peast\\' => - array ( - 0 => __DIR__ . '/..' . '/mck89/peast/lib/Peast', - ), - 'Mustangostang\\' => - array ( - 0 => __DIR__ . '/..' . '/wp-cli/mustangostang-spyc/src', - ), - 'MikeMcLin\\WpPassword\\' => - array ( - 0 => __DIR__ . '/..' . '/mikemclin/laravel-wp-password/src', - ), - 'JsonSchema\\' => - array ( - 0 => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema', - ), - 'Illuminate\\Support\\' => - array ( - 0 => __DIR__ . '/..' . '/illuminate/support', - ), - 'Illuminate\\Contracts\\' => - array ( - 0 => __DIR__ . '/..' . '/illuminate/contracts', - ), - 'GuzzleHttp\\Psr7\\' => - array ( - 0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src', - ), - 'GuzzleHttp\\Promise\\' => - array ( - 0 => __DIR__ . '/..' . '/guzzlehttp/promises/src', - ), - 'GuzzleHttp\\' => - array ( - 0 => __DIR__ . '/..' . '/guzzlehttp/guzzle/src', - ), - 'Gumlet\\' => - array ( - 0 => __DIR__ . '/..' . '/gumlet/php-image-resize/lib', - ), - 'Gettext\\Languages\\' => - array ( - 0 => __DIR__ . '/..' . '/gettext/languages/src', - ), - 'Gettext\\' => - array ( - 0 => __DIR__ . '/..' . '/gettext/gettext/src', - ), - 'Facebook\\WebDriver\\' => - array ( - 0 => __DIR__ . '/..' . '/facebook/webdriver/lib', - ), - 'Dotenv\\' => - array ( - 0 => __DIR__ . '/..' . '/vlucas/phpdotenv/src', - ), - 'Doctrine\\Instantiator\\' => - array ( - 0 => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator', - ), - 'Doctrine\\Common\\Inflector\\' => - array ( - 0 => __DIR__ . '/..' . '/doctrine/inflector/lib/Doctrine/Common/Inflector', - ), - 'DeepCopy\\' => - array ( - 0 => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy', - ), - 'Composer\\XdebugHandler\\' => - array ( - 0 => __DIR__ . '/..' . '/composer/xdebug-handler/src', - ), - 'Composer\\Spdx\\' => - array ( - 0 => __DIR__ . '/..' . '/composer/spdx-licenses/src', - ), - 'Composer\\Semver\\' => - array ( - 0 => __DIR__ . '/..' . '/composer/semver/src', - ), - 'Composer\\CaBundle\\' => - array ( - 0 => __DIR__ . '/..' . '/composer/ca-bundle/src', - ), - 'Composer\\' => - array ( - 0 => __DIR__ . '/..' . '/composer/composer/src/Composer', - ), - 'Codeception\\PHPUnit\\' => - array ( - 0 => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src', - ), - 'Codeception\\Extension\\' => - array ( - 0 => __DIR__ . '/..' . '/codeception/codeception/ext', - ), - 'Codeception\\' => - array ( - 0 => __DIR__ . '/..' . '/codeception/codeception/src/Codeception', - 1 => __DIR__ . '/..' . '/codeception/stub/src', - 2 => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception', - ), - 'Carbon\\' => - array ( - 0 => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon', - ), - ); - - public static $fallbackDirsPsr4 = array ( - 0 => __DIR__ . '/..' . '/wp-cli/cache-command/src', - 1 => __DIR__ . '/..' . '/wp-cli/checksum-command/src', - 2 => __DIR__ . '/..' . '/wp-cli/config-command/src', - 3 => __DIR__ . '/..' . '/wp-cli/core-command/src', - 4 => __DIR__ . '/..' . '/wp-cli/cron-command/src', - 5 => __DIR__ . '/..' . '/wp-cli/db-command/src', - 6 => __DIR__ . '/..' . '/wp-cli/entity-command/src', - 7 => __DIR__ . '/..' . '/wp-cli/eval-command/src', - 8 => __DIR__ . '/..' . '/wp-cli/export-command/src', - 9 => __DIR__ . '/..' . '/wp-cli/extension-command/src', - 10 => __DIR__ . '/..' . '/wp-cli/import-command/src', - 11 => __DIR__ . '/..' . '/wp-cli/language-command/src', - 12 => __DIR__ . '/..' . '/wp-cli/media-command/src', - 13 => __DIR__ . '/..' . '/wp-cli/package-command/src', - 14 => __DIR__ . '/..' . '/wp-cli/rewrite-command/src', - 15 => __DIR__ . '/..' . '/wp-cli/role-command/src', - 16 => __DIR__ . '/..' . '/wp-cli/scaffold-command/src', - 17 => __DIR__ . '/..' . '/wp-cli/search-replace-command/src', - 18 => __DIR__ . '/..' . '/wp-cli/server-command/src', - 19 => __DIR__ . '/..' . '/wp-cli/shell-command/src', - 20 => __DIR__ . '/..' . '/wp-cli/super-admin-command/src', - 21 => __DIR__ . '/..' . '/wp-cli/widget-command/src', - ); - - public static $prefixesPsr0 = array ( - 'c' => - array ( - 'cli' => - array ( - 0 => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib', - ), - ), - 'W' => - array ( - 'WP_CLI' => - array ( - 0 => __DIR__ . '/..' . '/wp-cli/wp-cli/php', - ), - ), - 'R' => - array ( - 'Requests' => - array ( - 0 => __DIR__ . '/..' . '/rmccue/requests/library', - ), - ), - 'P' => - array ( - 'Prophecy\\' => - array ( - 0 => __DIR__ . '/..' . '/phpspec/prophecy/src', - ), - 'PhpOption\\' => - array ( - 0 => __DIR__ . '/..' . '/phpoption/phpoption/src', - ), - ), - 'O' => - array ( - 'Oxymel' => - array ( - 0 => __DIR__ . '/..' . '/nb/oxymel', - ), - ), - 'M' => - array ( - 'Mustache' => - array ( - 0 => __DIR__ . '/..' . '/mustache/mustache/src', - ), - ), - 'H' => - array ( - 'Hautelook' => - array ( - 0 => __DIR__ . '/..' . '/hautelook/phpass/src', - ), - 'Handlebars' => - array ( - 0 => __DIR__ . '/..' . '/xamin/handlebars.php/src', - ), - ), - 'B' => - array ( - 'Behat\\Gherkin' => - array ( - 0 => __DIR__ . '/..' . '/behat/gherkin/src', - ), - 'BaconStringUtils' => - array ( - 0 => __DIR__ . '/..' . '/bacon/bacon-string-utils/src', - ), - ), ); public static $classMap = array ( - 'BaconStringUtils\\Filter\\Slugify' => __DIR__ . '/..' . '/bacon/bacon-string-utils/src/BaconStringUtils/Filter/Slugify.php', - 'BaconStringUtils\\Filter\\SlugifyFactory' => __DIR__ . '/..' . '/bacon/bacon-string-utils/src/BaconStringUtils/Filter/SlugifyFactory.php', - 'BaconStringUtils\\Module' => __DIR__ . '/..' . '/bacon/bacon-string-utils/src/BaconStringUtils/Module.php', - 'BaconStringUtils\\Slugifier' => __DIR__ . '/..' . '/bacon/bacon-string-utils/src/BaconStringUtils/Slugifier.php', - 'BaconStringUtils\\SlugifierFactory' => __DIR__ . '/..' . '/bacon/bacon-string-utils/src/BaconStringUtils/SlugifierFactory.php', - 'BaconStringUtils\\UniDecoder' => __DIR__ . '/..' . '/bacon/bacon-string-utils/src/BaconStringUtils/UniDecoder.php', - 'Behat\\Gherkin\\Cache\\CacheInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Cache/CacheInterface.php', - 'Behat\\Gherkin\\Cache\\FileCache' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Cache/FileCache.php', - 'Behat\\Gherkin\\Cache\\MemoryCache' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Cache/MemoryCache.php', - 'Behat\\Gherkin\\Exception\\CacheException' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Exception/CacheException.php', - 'Behat\\Gherkin\\Exception\\Exception' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Exception/Exception.php', - 'Behat\\Gherkin\\Exception\\LexerException' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Exception/LexerException.php', - 'Behat\\Gherkin\\Exception\\NodeException' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Exception/NodeException.php', - 'Behat\\Gherkin\\Exception\\ParserException' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Exception/ParserException.php', - 'Behat\\Gherkin\\Filter\\ComplexFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/ComplexFilter.php', - 'Behat\\Gherkin\\Filter\\ComplexFilterInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/ComplexFilterInterface.php', - 'Behat\\Gherkin\\Filter\\FeatureFilterInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/FeatureFilterInterface.php', - 'Behat\\Gherkin\\Filter\\FilterInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/FilterInterface.php', - 'Behat\\Gherkin\\Filter\\LineFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/LineFilter.php', - 'Behat\\Gherkin\\Filter\\LineRangeFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/LineRangeFilter.php', - 'Behat\\Gherkin\\Filter\\NameFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/NameFilter.php', - 'Behat\\Gherkin\\Filter\\NarrativeFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/NarrativeFilter.php', - 'Behat\\Gherkin\\Filter\\PathsFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/PathsFilter.php', - 'Behat\\Gherkin\\Filter\\RoleFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/RoleFilter.php', - 'Behat\\Gherkin\\Filter\\SimpleFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/SimpleFilter.php', - 'Behat\\Gherkin\\Filter\\TagFilter' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Filter/TagFilter.php', - 'Behat\\Gherkin\\Gherkin' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Gherkin.php', - 'Behat\\Gherkin\\Keywords\\ArrayKeywords' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Keywords/ArrayKeywords.php', - 'Behat\\Gherkin\\Keywords\\CachedArrayKeywords' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Keywords/CachedArrayKeywords.php', - 'Behat\\Gherkin\\Keywords\\CucumberKeywords' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Keywords/CucumberKeywords.php', - 'Behat\\Gherkin\\Keywords\\KeywordsDumper' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Keywords/KeywordsDumper.php', - 'Behat\\Gherkin\\Keywords\\KeywordsInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Keywords/KeywordsInterface.php', - 'Behat\\Gherkin\\Lexer' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Lexer.php', - 'Behat\\Gherkin\\Loader\\AbstractFileLoader' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Loader/AbstractFileLoader.php', - 'Behat\\Gherkin\\Loader\\ArrayLoader' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Loader/ArrayLoader.php', - 'Behat\\Gherkin\\Loader\\DirectoryLoader' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Loader/DirectoryLoader.php', - 'Behat\\Gherkin\\Loader\\FileLoaderInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Loader/FileLoaderInterface.php', - 'Behat\\Gherkin\\Loader\\GherkinFileLoader' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Loader/GherkinFileLoader.php', - 'Behat\\Gherkin\\Loader\\LoaderInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Loader/LoaderInterface.php', - 'Behat\\Gherkin\\Loader\\YamlFileLoader' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Loader/YamlFileLoader.php', - 'Behat\\Gherkin\\Node\\ArgumentInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/ArgumentInterface.php', - 'Behat\\Gherkin\\Node\\BackgroundNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/BackgroundNode.php', - 'Behat\\Gherkin\\Node\\ExampleNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/ExampleNode.php', - 'Behat\\Gherkin\\Node\\ExampleTableNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/ExampleTableNode.php', - 'Behat\\Gherkin\\Node\\FeatureNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/FeatureNode.php', - 'Behat\\Gherkin\\Node\\KeywordNodeInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/KeywordNodeInterface.php', - 'Behat\\Gherkin\\Node\\NodeInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/NodeInterface.php', - 'Behat\\Gherkin\\Node\\OutlineNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/OutlineNode.php', - 'Behat\\Gherkin\\Node\\PyStringNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/PyStringNode.php', - 'Behat\\Gherkin\\Node\\ScenarioInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioInterface.php', - 'Behat\\Gherkin\\Node\\ScenarioLikeInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioLikeInterface.php', - 'Behat\\Gherkin\\Node\\ScenarioNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioNode.php', - 'Behat\\Gherkin\\Node\\StepContainerInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/StepContainerInterface.php', - 'Behat\\Gherkin\\Node\\StepNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/StepNode.php', - 'Behat\\Gherkin\\Node\\TableNode' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/TableNode.php', - 'Behat\\Gherkin\\Node\\TaggedNodeInterface' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Node/TaggedNodeInterface.php', - 'Behat\\Gherkin\\Parser' => __DIR__ . '/..' . '/behat/gherkin/src/Behat/Gherkin/Parser.php', - 'Cache_Command' => __DIR__ . '/..' . '/wp-cli/cache-command/src/Cache_Command.php', - 'Capabilities_Command' => __DIR__ . '/..' . '/wp-cli/role-command/src/Capabilities_Command.php', - 'Carbon\\Carbon' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Carbon.php', - 'Carbon\\CarbonImmutable' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonImmutable.php', - 'Carbon\\CarbonInterface' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonInterface.php', - 'Carbon\\CarbonInterval' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonInterval.php', - 'Carbon\\CarbonPeriod' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonPeriod.php', - 'Carbon\\CarbonTimeZone' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonTimeZone.php', - 'Carbon\\Exceptions\\InvalidDateException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php', - 'Carbon\\Factory' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Factory.php', - 'Carbon\\FactoryImmutable' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/FactoryImmutable.php', - 'Carbon\\Language' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Language.php', - 'Carbon\\Laravel\\ServiceProvider' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Laravel/ServiceProvider.php', - 'Carbon\\Traits\\Boundaries' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Boundaries.php', - 'Carbon\\Traits\\Comparison' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Comparison.php', - 'Carbon\\Traits\\Converter' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Converter.php', - 'Carbon\\Traits\\Creator' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Creator.php', - 'Carbon\\Traits\\Date' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Date.php', - 'Carbon\\Traits\\Difference' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Difference.php', - 'Carbon\\Traits\\Localization' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Localization.php', - 'Carbon\\Traits\\Macro' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Macro.php', - 'Carbon\\Traits\\Modifiers' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Modifiers.php', - 'Carbon\\Traits\\Mutability' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Mutability.php', - 'Carbon\\Traits\\Options' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Options.php', - 'Carbon\\Traits\\Rounding' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Rounding.php', - 'Carbon\\Traits\\Serialization' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Serialization.php', - 'Carbon\\Traits\\Test' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Test.php', - 'Carbon\\Traits\\Timestamp' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Timestamp.php', - 'Carbon\\Traits\\Units' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Units.php', - 'Carbon\\Traits\\Week' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Week.php', - 'Carbon\\Translator' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Translator.php', - 'Checksum_Base_Command' => __DIR__ . '/..' . '/wp-cli/checksum-command/src/Checksum_Base_Command.php', - 'Checksum_Core_Command' => __DIR__ . '/..' . '/wp-cli/checksum-command/src/Checksum_Core_Command.php', - 'Checksum_Plugin_Command' => __DIR__ . '/..' . '/wp-cli/checksum-command/src/Checksum_Plugin_Command.php', - 'Codeception\\Actor' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Actor.php', - 'Codeception\\Application' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Application.php', - 'Codeception\\Codecept' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Codecept.php', - 'Codeception\\Command\\Bootstrap' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Bootstrap.php', - 'Codeception\\Command\\Build' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Build.php', - 'Codeception\\Command\\Clean' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Clean.php', - 'Codeception\\Command\\Completion' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Completion.php', - 'Codeception\\Command\\CompletionFallback' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/CompletionFallback.php', - 'Codeception\\Command\\ConfigValidate' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/ConfigValidate.php', - 'Codeception\\Command\\Console' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Console.php', - 'Codeception\\Command\\DryRun' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/DryRun.php', - 'Codeception\\Command\\GenerateCept' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateCept.php', - 'Codeception\\Command\\GenerateCest' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateCest.php', - 'Codeception\\Command\\GenerateEnvironment' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateEnvironment.php', - 'Codeception\\Command\\GenerateFeature' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateFeature.php', - 'Codeception\\Command\\GenerateGroup' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateGroup.php', - 'Codeception\\Command\\GenerateHelper' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateHelper.php', - 'Codeception\\Command\\GeneratePageObject' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GeneratePageObject.php', - 'Codeception\\Command\\GenerateScenarios' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateScenarios.php', - 'Codeception\\Command\\GenerateSnapshot' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateSnapshot.php', - 'Codeception\\Command\\GenerateStepObject' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateStepObject.php', - 'Codeception\\Command\\GenerateSuite' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateSuite.php', - 'Codeception\\Command\\GenerateTest' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GenerateTest.php', - 'Codeception\\Command\\GenerateWPAjax' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPAjax.php', - 'Codeception\\Command\\GenerateWPCanonical' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPCanonical.php', - 'Codeception\\Command\\GenerateWPRestApi' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestApi.php', - 'Codeception\\Command\\GenerateWPRestController' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestController.php', - 'Codeception\\Command\\GenerateWPRestPostTypeController' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestPostTypeController.php', - 'Codeception\\Command\\GenerateWPUnit' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPUnit.php', - 'Codeception\\Command\\GenerateWPXMLRPC' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPXMLRPC.php', - 'Codeception\\Command\\GherkinSnippets' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GherkinSnippets.php', - 'Codeception\\Command\\GherkinSteps' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/GherkinSteps.php', - 'Codeception\\Command\\Init' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Init.php', - 'Codeception\\Command\\Run' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Run.php', - 'Codeception\\Command\\SelfUpdate' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/SelfUpdate.php', - 'Codeception\\Command\\Shared\\Config' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Shared/Config.php', - 'Codeception\\Command\\Shared\\FileSystem' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Shared/FileSystem.php', - 'Codeception\\Command\\Shared\\Style' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Command/Shared/Style.php', - 'Codeception\\Configuration' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Configuration.php', - 'Codeception\\Coverage\\Filter' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Coverage/Filter.php', - 'Codeception\\Coverage\\Subscriber\\Local' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Coverage/Subscriber/Local.php', - 'Codeception\\Coverage\\Subscriber\\LocalServer' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Coverage/Subscriber/LocalServer.php', - 'Codeception\\Coverage\\Subscriber\\Printer' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Coverage/Subscriber/Printer.php', - 'Codeception\\Coverage\\Subscriber\\RemoteServer' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Coverage/Subscriber/RemoteServer.php', - 'Codeception\\Coverage\\SuiteSubscriber' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Coverage/SuiteSubscriber.php', - 'Codeception\\CustomCommandInterface' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/CustomCommandInterface.php', - 'Codeception\\Event\\FailEvent' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Event/FailEvent.php', - 'Codeception\\Event\\PrintResultEvent' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Event/PrintResultEvent.php', - 'Codeception\\Event\\StepEvent' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Event/StepEvent.php', - 'Codeception\\Event\\SuiteEvent' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Event/SuiteEvent.php', - 'Codeception\\Event\\TestEvent' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Event/TestEvent.php', - 'Codeception\\Events' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Events.php', - 'Codeception\\Example' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Example.php', - 'Codeception\\Exception\\ConditionalAssertionFailed' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ConditionalAssertionFailed.php', - 'Codeception\\Exception\\ConfigurationException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ConfigurationException.php', - 'Codeception\\Exception\\ConnectionException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ConnectionException.php', - 'Codeception\\Exception\\ContentNotFound' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ContentNotFound.php', - 'Codeception\\Exception\\ElementNotFound' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ElementNotFound.php', - 'Codeception\\Exception\\ExtensionException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ExtensionException.php', - 'Codeception\\Exception\\ExternalUrlException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ExternalUrlException.php', - 'Codeception\\Exception\\Fail' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/Fail.php', - 'Codeception\\Exception\\Incomplete' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/Incomplete.php', - 'Codeception\\Exception\\InjectionException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/InjectionException.php', - 'Codeception\\Exception\\MalformedLocatorException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/MalformedLocatorException.php', - 'Codeception\\Exception\\ModuleConfigException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ModuleConfigException.php', - 'Codeception\\Exception\\ModuleConflictException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ModuleConflictException.php', - 'Codeception\\Exception\\ModuleException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ModuleException.php', - 'Codeception\\Exception\\ModuleRequireException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ModuleRequireException.php', - 'Codeception\\Exception\\ParseException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/ParseException.php', - 'Codeception\\Exception\\RemoteException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/RemoteException.php', - 'Codeception\\Exception\\Skip' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/Skip.php', - 'Codeception\\Exception\\TestParseException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/TestParseException.php', - 'Codeception\\Exception\\TestRuntimeException' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Exception/TestRuntimeException.php', - 'Codeception\\Extension' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Extension.php', - 'Codeception\\Extension\\DotReporter' => __DIR__ . '/..' . '/codeception/codeception/ext/DotReporter.php', - 'Codeception\\Extension\\Logger' => __DIR__ . '/..' . '/codeception/codeception/ext/Logger.php', - 'Codeception\\Extension\\Recorder' => __DIR__ . '/..' . '/codeception/codeception/ext/Recorder.php', - 'Codeception\\Extension\\RunBefore' => __DIR__ . '/..' . '/codeception/codeception/ext/RunBefore.php', - 'Codeception\\Extension\\RunFailed' => __DIR__ . '/..' . '/codeception/codeception/ext/RunFailed.php', - 'Codeception\\Extension\\RunProcess' => __DIR__ . '/..' . '/codeception/codeception/ext/RunProcess.php', - 'Codeception\\Extension\\SimpleReporter' => __DIR__ . '/..' . '/codeception/codeception/ext/SimpleReporter.php', - 'Codeception\\GroupObject' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/GroupObject.php', - 'Codeception\\InitTemplate' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/InitTemplate.php', - 'Codeception\\Lib\\Actor\\Shared\\Comment' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Actor/Shared/Comment.php', - 'Codeception\\Lib\\Actor\\Shared\\Friend' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Actor/Shared/Friend.php', - 'Codeception\\Lib\\Connector\\Guzzle' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Guzzle.php', - 'Codeception\\Lib\\Connector\\Guzzle6' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Guzzle6.php', - 'Codeception\\Lib\\Connector\\Laravel5' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Laravel5.php', - 'Codeception\\Lib\\Connector\\Laravel5\\ExceptionHandlerDecorator' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Laravel5/ExceptionHandlerDecorator.php', - 'Codeception\\Lib\\Connector\\Lumen' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Lumen.php', - 'Codeception\\Lib\\Connector\\Lumen\\DummyKernel' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Lumen/DummyKernel.php', - 'Codeception\\Lib\\Connector\\Phalcon' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Phalcon.php', - 'Codeception\\Lib\\Connector\\Phalcon\\MemorySession' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Phalcon/MemorySession.php', - 'Codeception\\Lib\\Connector\\Shared\\LaravelCommon' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Shared/LaravelCommon.php', - 'Codeception\\Lib\\Connector\\Shared\\PhpSuperGlobalsConverter' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Shared/PhpSuperGlobalsConverter.php', - 'Codeception\\Lib\\Connector\\Symfony' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Symfony.php', - 'Codeception\\Lib\\Connector\\Universal' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Universal.php', - 'Codeception\\Lib\\Connector\\Yii1' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Yii1.php', - 'Codeception\\Lib\\Connector\\Yii2' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2.php', - 'Codeception\\Lib\\Connector\\Yii2\\ConnectionWatcher' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/ConnectionWatcher.php', - 'Codeception\\Lib\\Connector\\Yii2\\FixturesStore' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/FixturesStore.php', - 'Codeception\\Lib\\Connector\\Yii2\\Logger' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/Logger.php', - 'Codeception\\Lib\\Connector\\Yii2\\TestMailer' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/TestMailer.php', - 'Codeception\\Lib\\Connector\\Yii2\\TransactionForcer' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/TransactionForcer.php', - 'Codeception\\Lib\\Connector\\ZF1' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/ZF1.php', - 'Codeception\\Lib\\Connector\\ZF2' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/ZF2.php', - 'Codeception\\Lib\\Connector\\ZF2\\PersistentServiceManager' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/ZF2/PersistentServiceManager.php', - 'Codeception\\Lib\\Connector\\ZendExpressive' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/ZendExpressive.php', - 'Codeception\\Lib\\Connector\\ZendExpressive\\ResponseCollector' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Connector/ZendExpressive/ResponseCollector.php', - 'Codeception\\Lib\\Console\\Colorizer' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Console/Colorizer.php', - 'Codeception\\Lib\\Console\\DiffFactory' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Console/DiffFactory.php', - 'Codeception\\Lib\\Console\\Message' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Console/Message.php', - 'Codeception\\Lib\\Console\\MessageFactory' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Console/MessageFactory.php', - 'Codeception\\Lib\\Console\\Output' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Console/Output.php', - 'Codeception\\Lib\\DbPopulator' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/DbPopulator.php', - 'Codeception\\Lib\\Di' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Di.php', - 'Codeception\\Lib\\Driver\\AmazonSQS' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/AmazonSQS.php', - 'Codeception\\Lib\\Driver\\Beanstalk' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/Beanstalk.php', - 'Codeception\\Lib\\Driver\\Db' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/Db.php', - 'Codeception\\Lib\\Driver\\ExtendedDbDriver' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Driver/ExtendedDbDriver.php', - 'Codeception\\Lib\\Driver\\ExtendedMySql' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Driver/ExtendedMySql.php', - 'Codeception\\Lib\\Driver\\Facebook' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/Facebook.php', - 'Codeception\\Lib\\Driver\\Iron' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/Iron.php', - 'Codeception\\Lib\\Driver\\MongoDb' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/MongoDb.php', - 'Codeception\\Lib\\Driver\\MySql' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/MySql.php', - 'Codeception\\Lib\\Driver\\Oci' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/Oci.php', - 'Codeception\\Lib\\Driver\\PostgreSql' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/PostgreSql.php', - 'Codeception\\Lib\\Driver\\SqlSrv' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/SqlSrv.php', - 'Codeception\\Lib\\Driver\\Sqlite' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Driver/Sqlite.php', - 'Codeception\\Lib\\Framework' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Framework.php', - 'Codeception\\Lib\\Friend' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Friend.php', - 'Codeception\\Lib\\Generator\\AbstractGenerator' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Generator/AbstractGenerator.php', - 'Codeception\\Lib\\Generator\\AcceptanceSuiteConfig' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Generator/AcceptanceSuiteConfig.php', - 'Codeception\\Lib\\Generator\\Actions' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Actions.php', - 'Codeception\\Lib\\Generator\\Actor' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Actor.php', - 'Codeception\\Lib\\Generator\\Cept' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Cept.php', - 'Codeception\\Lib\\Generator\\Cest' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Cest.php', - 'Codeception\\Lib\\Generator\\Feature' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Feature.php', - 'Codeception\\Lib\\Generator\\FunctionalSuiteConfig' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Generator/FunctionalSuiteConfig.php', - 'Codeception\\Lib\\Generator\\GeneratorInterface' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Generator/GeneratorInterface.php', - 'Codeception\\Lib\\Generator\\GherkinSnippets' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/GherkinSnippets.php', - 'Codeception\\Lib\\Generator\\Group' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Group.php', - 'Codeception\\Lib\\Generator\\Helper' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Helper.php', - 'Codeception\\Lib\\Generator\\IntegrationSuiteConfig' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Generator/IntegrationSuiteConfig.php', - 'Codeception\\Lib\\Generator\\IntegrationSuiteThemeConfig' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Generator/IntegrationSuiteThemeConfig.php', - 'Codeception\\Lib\\Generator\\PageObject' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/PageObject.php', - 'Codeception\\Lib\\Generator\\Shared\\Classname' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Shared/Classname.php', - 'Codeception\\Lib\\Generator\\Snapshot' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Snapshot.php', - 'Codeception\\Lib\\Generator\\StepObject' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/StepObject.php', - 'Codeception\\Lib\\Generator\\Test' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Generator/Test.php', - 'Codeception\\Lib\\Generator\\WPUnit' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Lib/Generator/WPUnit.php', - 'Codeception\\Lib\\GroupManager' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/GroupManager.php', - 'Codeception\\Lib\\InnerBrowser' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/InnerBrowser.php', - 'Codeception\\Lib\\Interfaces\\API' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/API.php', - 'Codeception\\Lib\\Interfaces\\ActiveRecord' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/ActiveRecord.php', - 'Codeception\\Lib\\Interfaces\\ConflictsWithModule' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/ConflictsWithModule.php', - 'Codeception\\Lib\\Interfaces\\DataMapper' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/DataMapper.php', - 'Codeception\\Lib\\Interfaces\\Db' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/Db.php', - 'Codeception\\Lib\\Interfaces\\DependsOnModule' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/DependsOnModule.php', - 'Codeception\\Lib\\Interfaces\\DoctrineProvider' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/DoctrineProvider.php', - 'Codeception\\Lib\\Interfaces\\ElementLocator' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/ElementLocator.php', - 'Codeception\\Lib\\Interfaces\\MultiSession' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/MultiSession.php', - 'Codeception\\Lib\\Interfaces\\ORM' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/ORM.php', - 'Codeception\\Lib\\Interfaces\\PageSourceSaver' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/PageSourceSaver.php', - 'Codeception\\Lib\\Interfaces\\PartedModule' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/PartedModule.php', - 'Codeception\\Lib\\Interfaces\\Queue' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/Queue.php', - 'Codeception\\Lib\\Interfaces\\Remote' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/Remote.php', - 'Codeception\\Lib\\Interfaces\\RequiresPackage' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/RequiresPackage.php', - 'Codeception\\Lib\\Interfaces\\ScreenshotSaver' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/ScreenshotSaver.php', - 'Codeception\\Lib\\Interfaces\\SessionSnapshot' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/SessionSnapshot.php', - 'Codeception\\Lib\\Interfaces\\Web' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Interfaces/Web.php', - 'Codeception\\Lib\\ModuleContainer' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/ModuleContainer.php', - 'Codeception\\Lib\\Notification' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Notification.php', - 'Codeception\\Lib\\ParamsLoader' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/ParamsLoader.php', - 'Codeception\\Lib\\Parser' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Parser.php', - 'Codeception\\Lib\\Shared\\LaravelCommon' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Lib/Shared/LaravelCommon.php', - 'Codeception\\Module' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module.php', - 'Codeception\\Module\\AMQP' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/AMQP.php', - 'Codeception\\Module\\AngularJS' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/AngularJS.php', - 'Codeception\\Module\\Apc' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Apc.php', - 'Codeception\\Module\\Asserts' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Asserts.php', - 'Codeception\\Module\\Cli' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Cli.php', - 'Codeception\\Module\\DataFactory' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/DataFactory.php', - 'Codeception\\Module\\Db' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Db.php', - 'Codeception\\Module\\Doctrine2' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Doctrine2.php', - 'Codeception\\Module\\FTP' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/FTP.php', - 'Codeception\\Module\\Facebook' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Facebook.php', - 'Codeception\\Module\\Filesystem' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Filesystem.php', - 'Codeception\\Module\\Laravel5' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Laravel5.php', - 'Codeception\\Module\\Lumen' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Lumen.php', - 'Codeception\\Module\\Memcache' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Memcache.php', - 'Codeception\\Module\\MongoDb' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/MongoDb.php', - 'Codeception\\Module\\Phalcon' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Phalcon.php', - 'Codeception\\Module\\PhpBrowser' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/PhpBrowser.php', - 'Codeception\\Module\\Queue' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Queue.php', - 'Codeception\\Module\\REST' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/REST.php', - 'Codeception\\Module\\Redis' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Redis.php', - 'Codeception\\Module\\SOAP' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/SOAP.php', - 'Codeception\\Module\\Sequence' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Sequence.php', - 'Codeception\\Module\\Silex' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Silex.php', - 'Codeception\\Module\\Symfony' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Symfony.php', - 'Codeception\\Module\\WPBrowser' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPBrowser.php', - 'Codeception\\Module\\WPBrowserMethods' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPBrowserMethods.php', - 'Codeception\\Module\\WPCLI' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPCLI.php', - 'Codeception\\Module\\WPDb' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPDb.php', - 'Codeception\\Module\\WPFilesystem' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPFilesystem.php', - 'Codeception\\Module\\WPLoader' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPLoader.php', - 'Codeception\\Module\\WPQueries' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPQueries.php', - 'Codeception\\Module\\WPWebDriver' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WPWebDriver.php', - 'Codeception\\Module\\WebDriver' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/WebDriver.php', - 'Codeception\\Module\\WordPress' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Module/WordPress.php', - 'Codeception\\Module\\XMLRPC' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/XMLRPC.php', - 'Codeception\\Module\\Yii1' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Yii1.php', - 'Codeception\\Module\\Yii2' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/Yii2.php', - 'Codeception\\Module\\ZF1' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/ZF1.php', - 'Codeception\\Module\\ZF2' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/ZF2.php', - 'Codeception\\Module\\ZendExpressive' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Module/ZendExpressive.php', - 'Codeception\\PHPUnit\\ConsolePrinter' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/ConsolePrinter.php', - 'Codeception\\PHPUnit\\Constraint\\Crawler' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Constraint/Crawler.php', - 'Codeception\\PHPUnit\\Constraint\\CrawlerNot' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Constraint/CrawlerNot.php', - 'Codeception\\PHPUnit\\Constraint\\JsonContains' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Constraint/JsonContains.php', - 'Codeception\\PHPUnit\\Constraint\\JsonType' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Constraint/JsonType.php', - 'Codeception\\PHPUnit\\Constraint\\Page' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Constraint/Page.php', - 'Codeception\\PHPUnit\\Constraint\\WebDriver' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Constraint/WebDriver.php', - 'Codeception\\PHPUnit\\Constraint\\WebDriverNot' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Constraint/WebDriverNot.php', - 'Codeception\\PHPUnit\\FilterTest' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/FilterTest.php', - 'Codeception\\PHPUnit\\Init' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Init.php', - 'Codeception\\PHPUnit\\Listener' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Listener.php', - 'Codeception\\PHPUnit\\Log\\JUnit' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Log/JUnit.php', - 'Codeception\\PHPUnit\\Log\\PhpUnit' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Log/PhpUnit.php', - 'Codeception\\PHPUnit\\ResultPrinter' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/ResultPrinter.php', - 'Codeception\\PHPUnit\\ResultPrinter\\HTML' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/ResultPrinter/HTML.php', - 'Codeception\\PHPUnit\\ResultPrinter\\Report' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/ResultPrinter/Report.php', - 'Codeception\\PHPUnit\\ResultPrinter\\UI' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/ResultPrinter/UI.php', - 'Codeception\\PHPUnit\\Runner' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/Runner.php', - 'Codeception\\PHPUnit\\TestCase' => __DIR__ . '/..' . '/codeception/phpunit-wrapper/src/TestCase.php', - 'Codeception\\Scenario' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Scenario.php', - 'Codeception\\Snapshot' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Snapshot.php', - 'Codeception\\Step' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step.php', - 'Codeception\\Step\\Action' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Action.php', - 'Codeception\\Step\\Argument\\FormattedOutput' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Argument/FormattedOutput.php', - 'Codeception\\Step\\Argument\\PasswordArgument' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Argument/PasswordArgument.php', - 'Codeception\\Step\\Assertion' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Assertion.php', - 'Codeception\\Step\\Comment' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Comment.php', - 'Codeception\\Step\\Condition' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Condition.php', - 'Codeception\\Step\\ConditionalAssertion' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/ConditionalAssertion.php', - 'Codeception\\Step\\Executor' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Executor.php', - 'Codeception\\Step\\Incomplete' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Incomplete.php', - 'Codeception\\Step\\Meta' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Meta.php', - 'Codeception\\Step\\Skip' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Step/Skip.php', - 'Codeception\\Stub' => __DIR__ . '/..' . '/codeception/stub/src/Stub.php', - 'Codeception\\Stub\\ConsecutiveMap' => __DIR__ . '/..' . '/codeception/stub/src/Stub/ConsecutiveMap.php', - 'Codeception\\Stub\\Expected' => __DIR__ . '/..' . '/codeception/stub/src/Stub/Expected.php', - 'Codeception\\Stub\\StubMarshaler' => __DIR__ . '/..' . '/codeception/stub/src/Stub/StubMarshaler.php', - 'Codeception\\Subscriber\\AutoRebuild' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/AutoRebuild.php', - 'Codeception\\Subscriber\\BeforeAfterTest' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/BeforeAfterTest.php', - 'Codeception\\Subscriber\\Bootstrap' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/Bootstrap.php', - 'Codeception\\Subscriber\\Console' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/Console.php', - 'Codeception\\Subscriber\\Dependencies' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/Dependencies.php', - 'Codeception\\Subscriber\\ErrorHandler' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/ErrorHandler.php', - 'Codeception\\Subscriber\\ExtensionLoader' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/ExtensionLoader.php', - 'Codeception\\Subscriber\\FailFast' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/FailFast.php', - 'Codeception\\Subscriber\\GracefulTermination' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/GracefulTermination.php', - 'Codeception\\Subscriber\\Module' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/Module.php', - 'Codeception\\Subscriber\\PrepareTest' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/PrepareTest.php', - 'Codeception\\Subscriber\\Shared\\StaticEvents' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Subscriber/Shared/StaticEvents.php', - 'Codeception\\Suite' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Suite.php', - 'Codeception\\SuiteManager' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/SuiteManager.php', - 'Codeception\\Template\\Acceptance' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Template/Acceptance.php', - 'Codeception\\Template\\Api' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Template/Api.php', - 'Codeception\\Template\\Bootstrap' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Template/Bootstrap.php', - 'Codeception\\Template\\Unit' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Template/Unit.php', - 'Codeception\\Template\\Wpbrowser' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/Template/Wpbrowser.php', - 'Codeception\\TestCase\\WPAjaxTestCase' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/TestCase/WPAjaxTestCase.php', - 'Codeception\\TestCase\\WPCanonicalTestCase' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/TestCase/WPCanonicalTestCase.php', - 'Codeception\\TestCase\\WPRestApiTestCase' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestApiTestCase.php', - 'Codeception\\TestCase\\WPRestControllerTestCase' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestControllerTestCase.php', - 'Codeception\\TestCase\\WPRestPostTypeControllerTestCase' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestPostTypeControllerTestCase.php', - 'Codeception\\TestCase\\WPTestCase' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/TestCase/WPTestCase.php', - 'Codeception\\TestCase\\WPXMLRPCTestCase' => __DIR__ . '/..' . '/lucatume/wp-browser/src/Codeception/TestCase/WPXMLRPCTestCase.php', - 'Codeception\\TestInterface' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/TestInterface.php', - 'Codeception\\Test\\Cept' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Cept.php', - 'Codeception\\Test\\Cest' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Cest.php', - 'Codeception\\Test\\Descriptor' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Descriptor.php', - 'Codeception\\Test\\Feature\\AssertionCounter' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Feature/AssertionCounter.php', - 'Codeception\\Test\\Feature\\CodeCoverage' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Feature/CodeCoverage.php', - 'Codeception\\Test\\Feature\\ErrorLogger' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Feature/ErrorLogger.php', - 'Codeception\\Test\\Feature\\IgnoreIfMetadataBlocked' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Feature/IgnoreIfMetadataBlocked.php', - 'Codeception\\Test\\Feature\\MetadataCollector' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Feature/MetadataCollector.php', - 'Codeception\\Test\\Feature\\ScenarioLoader' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Feature/ScenarioLoader.php', - 'Codeception\\Test\\Feature\\Stub' => __DIR__ . '/..' . '/codeception/stub/src/Test/Feature/Stub.php', - 'Codeception\\Test\\Gherkin' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Gherkin.php', - 'Codeception\\Test\\Interfaces\\Dependent' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Interfaces/Dependent.php', - 'Codeception\\Test\\Interfaces\\Descriptive' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Interfaces/Descriptive.php', - 'Codeception\\Test\\Interfaces\\Plain' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Interfaces/Plain.php', - 'Codeception\\Test\\Interfaces\\Reported' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Interfaces/Reported.php', - 'Codeception\\Test\\Interfaces\\ScenarioDriven' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Interfaces/ScenarioDriven.php', - 'Codeception\\Test\\Interfaces\\StrictCoverage' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Interfaces/StrictCoverage.php', - 'Codeception\\Test\\Loader' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Loader.php', - 'Codeception\\Test\\Loader\\Cept' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Loader/Cept.php', - 'Codeception\\Test\\Loader\\Cest' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Loader/Cest.php', - 'Codeception\\Test\\Loader\\Gherkin' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Loader/Gherkin.php', - 'Codeception\\Test\\Loader\\LoaderInterface' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Loader/LoaderInterface.php', - 'Codeception\\Test\\Loader\\Unit' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Loader/Unit.php', - 'Codeception\\Test\\Metadata' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Metadata.php', - 'Codeception\\Test\\Test' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Test.php', - 'Codeception\\Test\\Unit' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Test/Unit.php', - 'Codeception\\Util\\ActionSequence' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/ActionSequence.php', - 'Codeception\\Util\\Annotation' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Annotation.php', - 'Codeception\\Util\\ArrayContainsComparator' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/ArrayContainsComparator.php', - 'Codeception\\Util\\Autoload' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Autoload.php', - 'Codeception\\Util\\Debug' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Debug.php', - 'Codeception\\Util\\FileSystem' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/FileSystem.php', - 'Codeception\\Util\\Fixtures' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Fixtures.php', - 'Codeception\\Util\\HttpCode' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/HttpCode.php', - 'Codeception\\Util\\JsonArray' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/JsonArray.php', - 'Codeception\\Util\\JsonType' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/JsonType.php', - 'Codeception\\Util\\Locator' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Locator.php', - 'Codeception\\Util\\Maybe' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Maybe.php', - 'Codeception\\Util\\PathResolver' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/PathResolver.php', - 'Codeception\\Util\\PropertyAccess' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/PropertyAccess.php', - 'Codeception\\Util\\ReflectionHelper' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/ReflectionHelper.php', - 'Codeception\\Util\\Shared\\Asserts' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Shared/Asserts.php', - 'Codeception\\Util\\Shared\\Namespaces' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Shared/Namespaces.php', - 'Codeception\\Util\\Soap' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Soap.php', - 'Codeception\\Util\\Stub' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Stub.php', - 'Codeception\\Util\\Template' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Template.php', - 'Codeception\\Util\\Uri' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Uri.php', - 'Codeception\\Util\\Xml' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/Xml.php', - 'Codeception\\Util\\XmlBuilder' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/XmlBuilder.php', - 'Codeception\\Util\\XmlStructure' => __DIR__ . '/..' . '/codeception/codeception/src/Codeception/Util/XmlStructure.php', - 'Comment_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Comment_Command.php', - 'Comment_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Comment_Meta_Command.php', - 'Composer\\Autoload\\AutoloadGenerator' => __DIR__ . '/..' . '/composer/composer/src/Composer/Autoload/AutoloadGenerator.php', - 'Composer\\Autoload\\ClassLoader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Autoload/ClassLoader.php', - 'Composer\\Autoload\\ClassMapGenerator' => __DIR__ . '/..' . '/composer/composer/src/Composer/Autoload/ClassMapGenerator.php', - 'Composer\\CaBundle\\CaBundle' => __DIR__ . '/..' . '/composer/ca-bundle/src/CaBundle.php', - 'Composer\\Cache' => __DIR__ . '/..' . '/composer/composer/src/Composer/Cache.php', - 'Composer\\Command\\AboutCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/AboutCommand.php', - 'Composer\\Command\\ArchiveCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ArchiveCommand.php', - 'Composer\\Command\\BaseCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/BaseCommand.php', - 'Composer\\Command\\BaseDependencyCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/BaseDependencyCommand.php', - 'Composer\\Command\\CheckPlatformReqsCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/CheckPlatformReqsCommand.php', - 'Composer\\Command\\ClearCacheCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ClearCacheCommand.php', - 'Composer\\Command\\ConfigCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ConfigCommand.php', - 'Composer\\Command\\CreateProjectCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/CreateProjectCommand.php', - 'Composer\\Command\\DependsCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/DependsCommand.php', - 'Composer\\Command\\DiagnoseCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/DiagnoseCommand.php', - 'Composer\\Command\\DumpAutoloadCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/DumpAutoloadCommand.php', - 'Composer\\Command\\ExecCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ExecCommand.php', - 'Composer\\Command\\GlobalCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/GlobalCommand.php', - 'Composer\\Command\\HomeCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/HomeCommand.php', - 'Composer\\Command\\InitCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/InitCommand.php', - 'Composer\\Command\\InstallCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/InstallCommand.php', - 'Composer\\Command\\LicensesCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/LicensesCommand.php', - 'Composer\\Command\\OutdatedCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/OutdatedCommand.php', - 'Composer\\Command\\ProhibitsCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ProhibitsCommand.php', - 'Composer\\Command\\RemoveCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/RemoveCommand.php', - 'Composer\\Command\\RequireCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/RequireCommand.php', - 'Composer\\Command\\RunScriptCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/RunScriptCommand.php', - 'Composer\\Command\\ScriptAliasCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ScriptAliasCommand.php', - 'Composer\\Command\\SearchCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/SearchCommand.php', - 'Composer\\Command\\SelfUpdateCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/SelfUpdateCommand.php', - 'Composer\\Command\\ShowCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ShowCommand.php', - 'Composer\\Command\\StatusCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/StatusCommand.php', - 'Composer\\Command\\SuggestsCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/SuggestsCommand.php', - 'Composer\\Command\\UpdateCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/UpdateCommand.php', - 'Composer\\Command\\ValidateCommand' => __DIR__ . '/..' . '/composer/composer/src/Composer/Command/ValidateCommand.php', - 'Composer\\Compiler' => __DIR__ . '/..' . '/composer/composer/src/Composer/Compiler.php', - 'Composer\\Composer' => __DIR__ . '/..' . '/composer/composer/src/Composer/Composer.php', - 'Composer\\Config' => __DIR__ . '/..' . '/composer/composer/src/Composer/Config.php', - 'Composer\\Config\\ConfigSourceInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Config/ConfigSourceInterface.php', - 'Composer\\Config\\JsonConfigSource' => __DIR__ . '/..' . '/composer/composer/src/Composer/Config/JsonConfigSource.php', - 'Composer\\Console\\Application' => __DIR__ . '/..' . '/composer/composer/src/Composer/Console/Application.php', - 'Composer\\Console\\HtmlOutputFormatter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Console/HtmlOutputFormatter.php', - 'Composer\\DependencyResolver\\Decisions' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Decisions.php', - 'Composer\\DependencyResolver\\DefaultPolicy' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/DefaultPolicy.php', - 'Composer\\DependencyResolver\\GenericRule' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/GenericRule.php', - 'Composer\\DependencyResolver\\Operation\\InstallOperation' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Operation/InstallOperation.php', - 'Composer\\DependencyResolver\\Operation\\MarkAliasInstalledOperation' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php', - 'Composer\\DependencyResolver\\Operation\\MarkAliasUninstalledOperation' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php', - 'Composer\\DependencyResolver\\Operation\\OperationInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Operation/OperationInterface.php', - 'Composer\\DependencyResolver\\Operation\\SolverOperation' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Operation/SolverOperation.php', - 'Composer\\DependencyResolver\\Operation\\UninstallOperation' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Operation/UninstallOperation.php', - 'Composer\\DependencyResolver\\Operation\\UpdateOperation' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Operation/UpdateOperation.php', - 'Composer\\DependencyResolver\\PolicyInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php', - 'Composer\\DependencyResolver\\Pool' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Pool.php', - 'Composer\\DependencyResolver\\Problem' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Problem.php', - 'Composer\\DependencyResolver\\Request' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Request.php', - 'Composer\\DependencyResolver\\Rule' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Rule.php', - 'Composer\\DependencyResolver\\Rule2Literals' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Rule2Literals.php', - 'Composer\\DependencyResolver\\RuleSet' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/RuleSet.php', - 'Composer\\DependencyResolver\\RuleSetGenerator' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/RuleSetGenerator.php', - 'Composer\\DependencyResolver\\RuleSetIterator' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/RuleSetIterator.php', - 'Composer\\DependencyResolver\\RuleWatchChain' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/RuleWatchChain.php', - 'Composer\\DependencyResolver\\RuleWatchGraph' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/RuleWatchGraph.php', - 'Composer\\DependencyResolver\\RuleWatchNode' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/RuleWatchNode.php', - 'Composer\\DependencyResolver\\Solver' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Solver.php', - 'Composer\\DependencyResolver\\SolverBugException' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/SolverBugException.php', - 'Composer\\DependencyResolver\\SolverProblemsException' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/SolverProblemsException.php', - 'Composer\\DependencyResolver\\Transaction' => __DIR__ . '/..' . '/composer/composer/src/Composer/DependencyResolver/Transaction.php', - 'Composer\\Downloader\\ArchiveDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/ArchiveDownloader.php', - 'Composer\\Downloader\\ChangeReportInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/ChangeReportInterface.php', - 'Composer\\Downloader\\DownloadManager' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/DownloadManager.php', - 'Composer\\Downloader\\DownloaderInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/DownloaderInterface.php', - 'Composer\\Downloader\\DvcsDownloaderInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/DvcsDownloaderInterface.php', - 'Composer\\Downloader\\FileDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/FileDownloader.php', - 'Composer\\Downloader\\FilesystemException' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/FilesystemException.php', - 'Composer\\Downloader\\FossilDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/FossilDownloader.php', - 'Composer\\Downloader\\GitDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/GitDownloader.php', - 'Composer\\Downloader\\GzipDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/GzipDownloader.php', - 'Composer\\Downloader\\HgDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/HgDownloader.php', - 'Composer\\Downloader\\PathDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/PathDownloader.php', - 'Composer\\Downloader\\PearPackageExtractor' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/PearPackageExtractor.php', - 'Composer\\Downloader\\PerforceDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/PerforceDownloader.php', - 'Composer\\Downloader\\PharDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/PharDownloader.php', - 'Composer\\Downloader\\RarDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/RarDownloader.php', - 'Composer\\Downloader\\SvnDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/SvnDownloader.php', - 'Composer\\Downloader\\TarDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/TarDownloader.php', - 'Composer\\Downloader\\TransportException' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/TransportException.php', - 'Composer\\Downloader\\VcsCapableDownloaderInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/VcsCapableDownloaderInterface.php', - 'Composer\\Downloader\\VcsDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/VcsDownloader.php', - 'Composer\\Downloader\\XzDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/XzDownloader.php', - 'Composer\\Downloader\\ZipDownloader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Downloader/ZipDownloader.php', - 'Composer\\EventDispatcher\\Event' => __DIR__ . '/..' . '/composer/composer/src/Composer/EventDispatcher/Event.php', - 'Composer\\EventDispatcher\\EventDispatcher' => __DIR__ . '/..' . '/composer/composer/src/Composer/EventDispatcher/EventDispatcher.php', - 'Composer\\EventDispatcher\\EventSubscriberInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/EventDispatcher/EventSubscriberInterface.php', - 'Composer\\EventDispatcher\\ScriptExecutionException' => __DIR__ . '/..' . '/composer/composer/src/Composer/EventDispatcher/ScriptExecutionException.php', - 'Composer\\Exception\\NoSslException' => __DIR__ . '/..' . '/composer/composer/src/Composer/Exception/NoSslException.php', - 'Composer\\Factory' => __DIR__ . '/..' . '/composer/composer/src/Composer/Factory.php', - 'Composer\\IO\\BaseIO' => __DIR__ . '/..' . '/composer/composer/src/Composer/IO/BaseIO.php', - 'Composer\\IO\\BufferIO' => __DIR__ . '/..' . '/composer/composer/src/Composer/IO/BufferIO.php', - 'Composer\\IO\\ConsoleIO' => __DIR__ . '/..' . '/composer/composer/src/Composer/IO/ConsoleIO.php', - 'Composer\\IO\\IOInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/IO/IOInterface.php', - 'Composer\\IO\\NullIO' => __DIR__ . '/..' . '/composer/composer/src/Composer/IO/NullIO.php', - 'Composer\\Installer' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer.php', - 'Composer\\Installer\\BinaryInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/BinaryInstaller.php', - 'Composer\\Installer\\BinaryPresenceInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/BinaryPresenceInterface.php', - 'Composer\\Installer\\InstallationManager' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/InstallationManager.php', - 'Composer\\Installer\\InstallerEvent' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/InstallerEvent.php', - 'Composer\\Installer\\InstallerEvents' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/InstallerEvents.php', - 'Composer\\Installer\\InstallerInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/InstallerInterface.php', - 'Composer\\Installer\\LibraryInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/LibraryInstaller.php', - 'Composer\\Installer\\MetapackageInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/MetapackageInstaller.php', - 'Composer\\Installer\\NoopInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/NoopInstaller.php', - 'Composer\\Installer\\PackageEvent' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/PackageEvent.php', - 'Composer\\Installer\\PackageEvents' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/PackageEvents.php', - 'Composer\\Installer\\PearBinaryInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/PearBinaryInstaller.php', - 'Composer\\Installer\\PearInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/PearInstaller.php', - 'Composer\\Installer\\PluginInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/PluginInstaller.php', - 'Composer\\Installer\\ProjectInstaller' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/ProjectInstaller.php', - 'Composer\\Installer\\SuggestedPackagesReporter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Installer/SuggestedPackagesReporter.php', - 'Composer\\Json\\JsonFile' => __DIR__ . '/..' . '/composer/composer/src/Composer/Json/JsonFile.php', - 'Composer\\Json\\JsonFormatter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Json/JsonFormatter.php', - 'Composer\\Json\\JsonManipulator' => __DIR__ . '/..' . '/composer/composer/src/Composer/Json/JsonManipulator.php', - 'Composer\\Json\\JsonValidationException' => __DIR__ . '/..' . '/composer/composer/src/Composer/Json/JsonValidationException.php', - 'Composer\\Package\\AliasPackage' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/AliasPackage.php', - 'Composer\\Package\\Archiver\\ArchivableFilesFilter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFilter.php', - 'Composer\\Package\\Archiver\\ArchivableFilesFinder' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFinder.php', - 'Composer\\Package\\Archiver\\ArchiveManager' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/ArchiveManager.php', - 'Composer\\Package\\Archiver\\ArchiverInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php', - 'Composer\\Package\\Archiver\\BaseExcludeFilter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/BaseExcludeFilter.php', - 'Composer\\Package\\Archiver\\ComposerExcludeFilter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/ComposerExcludeFilter.php', - 'Composer\\Package\\Archiver\\GitExcludeFilter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/GitExcludeFilter.php', - 'Composer\\Package\\Archiver\\HgExcludeFilter' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/HgExcludeFilter.php', - 'Composer\\Package\\Archiver\\PharArchiver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/PharArchiver.php', - 'Composer\\Package\\Archiver\\ZipArchiver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Archiver/ZipArchiver.php', - 'Composer\\Package\\BasePackage' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/BasePackage.php', - 'Composer\\Package\\Comparer\\Comparer' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Comparer/Comparer.php', - 'Composer\\Package\\CompletePackage' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/CompletePackage.php', - 'Composer\\Package\\CompletePackageInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/CompletePackageInterface.php', - 'Composer\\Package\\Dumper\\ArrayDumper' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php', - 'Composer\\Package\\Link' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Link.php', - 'Composer\\Package\\LinkConstraint\\EmptyConstraint' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/LinkConstraint/EmptyConstraint.php', - 'Composer\\Package\\LinkConstraint\\LinkConstraintInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/LinkConstraint/LinkConstraintInterface.php', - 'Composer\\Package\\LinkConstraint\\MultiConstraint' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/LinkConstraint/MultiConstraint.php', - 'Composer\\Package\\LinkConstraint\\SpecificConstraint' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/LinkConstraint/SpecificConstraint.php', - 'Composer\\Package\\LinkConstraint\\VersionConstraint' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/LinkConstraint/VersionConstraint.php', - 'Composer\\Package\\Loader\\ArrayLoader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Loader/ArrayLoader.php', - 'Composer\\Package\\Loader\\InvalidPackageException' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Loader/InvalidPackageException.php', - 'Composer\\Package\\Loader\\JsonLoader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Loader/JsonLoader.php', - 'Composer\\Package\\Loader\\LoaderInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Loader/LoaderInterface.php', - 'Composer\\Package\\Loader\\RootPackageLoader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Loader/RootPackageLoader.php', - 'Composer\\Package\\Loader\\ValidatingArrayLoader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php', - 'Composer\\Package\\Locker' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Locker.php', - 'Composer\\Package\\Package' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Package.php', - 'Composer\\Package\\PackageInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/PackageInterface.php', - 'Composer\\Package\\RootAliasPackage' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/RootAliasPackage.php', - 'Composer\\Package\\RootPackage' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/RootPackage.php', - 'Composer\\Package\\RootPackageInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/RootPackageInterface.php', - 'Composer\\Package\\Version\\VersionGuesser' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Version/VersionGuesser.php', - 'Composer\\Package\\Version\\VersionParser' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Version/VersionParser.php', - 'Composer\\Package\\Version\\VersionSelector' => __DIR__ . '/..' . '/composer/composer/src/Composer/Package/Version/VersionSelector.php', - 'Composer\\Plugin\\Capability\\Capability' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/Capability/Capability.php', - 'Composer\\Plugin\\Capability\\CommandProvider' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/Capability/CommandProvider.php', - 'Composer\\Plugin\\Capable' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/Capable.php', - 'Composer\\Plugin\\CommandEvent' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/CommandEvent.php', - 'Composer\\Plugin\\PluginEvents' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/PluginEvents.php', - 'Composer\\Plugin\\PluginInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/PluginInterface.php', - 'Composer\\Plugin\\PluginManager' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/PluginManager.php', - 'Composer\\Plugin\\PreCommandRunEvent' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/PreCommandRunEvent.php', - 'Composer\\Plugin\\PreFileDownloadEvent' => __DIR__ . '/..' . '/composer/composer/src/Composer/Plugin/PreFileDownloadEvent.php', - 'Composer\\Question\\StrictConfirmationQuestion' => __DIR__ . '/..' . '/composer/composer/src/Composer/Question/StrictConfirmationQuestion.php', - 'Composer\\Repository\\ArrayRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/ArrayRepository.php', - 'Composer\\Repository\\ArtifactRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/ArtifactRepository.php', - 'Composer\\Repository\\BaseRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/BaseRepository.php', - 'Composer\\Repository\\ComposerRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/ComposerRepository.php', - 'Composer\\Repository\\CompositeRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/CompositeRepository.php', - 'Composer\\Repository\\ConfigurableRepositoryInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/ConfigurableRepositoryInterface.php', - 'Composer\\Repository\\FilesystemRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/FilesystemRepository.php', - 'Composer\\Repository\\InstalledArrayRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/InstalledArrayRepository.php', - 'Composer\\Repository\\InstalledFilesystemRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/InstalledFilesystemRepository.php', - 'Composer\\Repository\\InstalledRepositoryInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/InstalledRepositoryInterface.php', - 'Composer\\Repository\\InvalidRepositoryException' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/InvalidRepositoryException.php', - 'Composer\\Repository\\PackageRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/PackageRepository.php', - 'Composer\\Repository\\PathRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/PathRepository.php', - 'Composer\\Repository\\PearRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/PearRepository.php', - 'Composer\\Repository\\Pear\\BaseChannelReader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/BaseChannelReader.php', - 'Composer\\Repository\\Pear\\ChannelInfo' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/ChannelInfo.php', - 'Composer\\Repository\\Pear\\ChannelReader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/ChannelReader.php', - 'Composer\\Repository\\Pear\\ChannelRest10Reader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/ChannelRest10Reader.php', - 'Composer\\Repository\\Pear\\ChannelRest11Reader' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/ChannelRest11Reader.php', - 'Composer\\Repository\\Pear\\DependencyConstraint' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/DependencyConstraint.php', - 'Composer\\Repository\\Pear\\DependencyInfo' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/DependencyInfo.php', - 'Composer\\Repository\\Pear\\PackageDependencyParser' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/PackageDependencyParser.php', - 'Composer\\Repository\\Pear\\PackageInfo' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/PackageInfo.php', - 'Composer\\Repository\\Pear\\ReleaseInfo' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Pear/ReleaseInfo.php', - 'Composer\\Repository\\PlatformRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/PlatformRepository.php', - 'Composer\\Repository\\RepositoryFactory' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/RepositoryFactory.php', - 'Composer\\Repository\\RepositoryInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/RepositoryInterface.php', - 'Composer\\Repository\\RepositoryManager' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/RepositoryManager.php', - 'Composer\\Repository\\RepositorySecurityException' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/RepositorySecurityException.php', - 'Composer\\Repository\\VcsRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/VcsRepository.php', - 'Composer\\Repository\\Vcs\\BitbucketDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/BitbucketDriver.php', - 'Composer\\Repository\\Vcs\\FossilDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php', - 'Composer\\Repository\\Vcs\\GitBitbucketDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/GitBitbucketDriver.php', - 'Composer\\Repository\\Vcs\\GitDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/GitDriver.php', - 'Composer\\Repository\\Vcs\\GitHubDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php', - 'Composer\\Repository\\Vcs\\GitLabDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php', - 'Composer\\Repository\\Vcs\\HgBitbucketDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/HgBitbucketDriver.php', - 'Composer\\Repository\\Vcs\\HgDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/HgDriver.php', - 'Composer\\Repository\\Vcs\\PerforceDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php', - 'Composer\\Repository\\Vcs\\SvnDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/SvnDriver.php', - 'Composer\\Repository\\Vcs\\VcsDriver' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/VcsDriver.php', - 'Composer\\Repository\\Vcs\\VcsDriverInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/Vcs/VcsDriverInterface.php', - 'Composer\\Repository\\VersionCacheInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/VersionCacheInterface.php', - 'Composer\\Repository\\WritableArrayRepository' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/WritableArrayRepository.php', - 'Composer\\Repository\\WritableRepositoryInterface' => __DIR__ . '/..' . '/composer/composer/src/Composer/Repository/WritableRepositoryInterface.php', - 'Composer\\Script\\CommandEvent' => __DIR__ . '/..' . '/composer/composer/src/Composer/Script/CommandEvent.php', - 'Composer\\Script\\Event' => __DIR__ . '/..' . '/composer/composer/src/Composer/Script/Event.php', - 'Composer\\Script\\PackageEvent' => __DIR__ . '/..' . '/composer/composer/src/Composer/Script/PackageEvent.php', - 'Composer\\Script\\ScriptEvents' => __DIR__ . '/..' . '/composer/composer/src/Composer/Script/ScriptEvents.php', - 'Composer\\SelfUpdate\\Keys' => __DIR__ . '/..' . '/composer/composer/src/Composer/SelfUpdate/Keys.php', - 'Composer\\SelfUpdate\\Versions' => __DIR__ . '/..' . '/composer/composer/src/Composer/SelfUpdate/Versions.php', - 'Composer\\Semver\\Comparator' => __DIR__ . '/..' . '/composer/semver/src/Comparator.php', - 'Composer\\Semver\\Constraint\\AbstractConstraint' => __DIR__ . '/..' . '/composer/semver/src/Constraint/AbstractConstraint.php', - 'Composer\\Semver\\Constraint\\Constraint' => __DIR__ . '/..' . '/composer/semver/src/Constraint/Constraint.php', - 'Composer\\Semver\\Constraint\\ConstraintInterface' => __DIR__ . '/..' . '/composer/semver/src/Constraint/ConstraintInterface.php', - 'Composer\\Semver\\Constraint\\EmptyConstraint' => __DIR__ . '/..' . '/composer/semver/src/Constraint/EmptyConstraint.php', - 'Composer\\Semver\\Constraint\\MultiConstraint' => __DIR__ . '/..' . '/composer/semver/src/Constraint/MultiConstraint.php', - 'Composer\\Semver\\Semver' => __DIR__ . '/..' . '/composer/semver/src/Semver.php', - 'Composer\\Semver\\VersionParser' => __DIR__ . '/..' . '/composer/semver/src/VersionParser.php', - 'Composer\\Spdx\\SpdxLicenses' => __DIR__ . '/..' . '/composer/spdx-licenses/src/SpdxLicenses.php', - 'Composer\\Util\\AuthHelper' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/AuthHelper.php', - 'Composer\\Util\\Bitbucket' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Bitbucket.php', - 'Composer\\Util\\ComposerMirror' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/ComposerMirror.php', - 'Composer\\Util\\ConfigValidator' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/ConfigValidator.php', - 'Composer\\Util\\ErrorHandler' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/ErrorHandler.php', - 'Composer\\Util\\Filesystem' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Filesystem.php', - 'Composer\\Util\\Git' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Git.php', - 'Composer\\Util\\GitHub' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/GitHub.php', - 'Composer\\Util\\GitLab' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/GitLab.php', - 'Composer\\Util\\Hg' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Hg.php', - 'Composer\\Util\\IniHelper' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/IniHelper.php', - 'Composer\\Util\\NoProxyPattern' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/NoProxyPattern.php', - 'Composer\\Util\\Perforce' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Perforce.php', - 'Composer\\Util\\Platform' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Platform.php', - 'Composer\\Util\\ProcessExecutor' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/ProcessExecutor.php', - 'Composer\\Util\\RemoteFilesystem' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/RemoteFilesystem.php', - 'Composer\\Util\\Silencer' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Silencer.php', - 'Composer\\Util\\SpdxLicense' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/SpdxLicense.php', - 'Composer\\Util\\StreamContextFactory' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/StreamContextFactory.php', - 'Composer\\Util\\Svn' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Svn.php', - 'Composer\\Util\\TlsHelper' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/TlsHelper.php', - 'Composer\\Util\\Url' => __DIR__ . '/..' . '/composer/composer/src/Composer/Util/Url.php', - 'Composer\\XdebugHandler' => __DIR__ . '/..' . '/composer/composer/src/Composer/XdebugHandler.php', - 'Composer\\XdebugHandler\\PhpConfig' => __DIR__ . '/..' . '/composer/xdebug-handler/src/PhpConfig.php', - 'Composer\\XdebugHandler\\Process' => __DIR__ . '/..' . '/composer/xdebug-handler/src/Process.php', - 'Composer\\XdebugHandler\\Status' => __DIR__ . '/..' . '/composer/xdebug-handler/src/Status.php', - 'Composer\\XdebugHandler\\XdebugHandler' => __DIR__ . '/..' . '/composer/xdebug-handler/src/XdebugHandler.php', - 'Config_Command' => __DIR__ . '/..' . '/wp-cli/config-command/src/Config_Command.php', - 'Core_Command' => __DIR__ . '/..' . '/wp-cli/core-command/src/Core_Command.php', - 'Core_Command_Namespace' => __DIR__ . '/..' . '/wp-cli/checksum-command/src/Core_Command_Namespace.php', - 'Core_Language_Command' => __DIR__ . '/..' . '/wp-cli/language-command/src/Core_Language_Command.php', - 'Cron_Command' => __DIR__ . '/..' . '/wp-cli/cron-command/src/Cron_Command.php', - 'Cron_Event_Command' => __DIR__ . '/..' . '/wp-cli/cron-command/src/Cron_Event_Command.php', - 'Cron_Schedule_Command' => __DIR__ . '/..' . '/wp-cli/cron-command/src/Cron_Schedule_Command.php', - 'DB_Command' => __DIR__ . '/..' . '/wp-cli/db-command/src/DB_Command.php', - 'DeepCopy\\DeepCopy' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/DeepCopy.php', - 'DeepCopy\\Exception\\CloneException' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Exception/CloneException.php', - 'DeepCopy\\Exception\\PropertyException' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Exception/PropertyException.php', - 'DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php', - 'DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php', - 'DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php', - 'DeepCopy\\Filter\\Filter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php', - 'DeepCopy\\Filter\\KeepFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php', - 'DeepCopy\\Filter\\ReplaceFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/ReplaceFilter.php', - 'DeepCopy\\Filter\\SetNullFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/SetNullFilter.php', - 'DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php', - 'DeepCopy\\Matcher\\Matcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php', - 'DeepCopy\\Matcher\\PropertyMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyMatcher.php', - 'DeepCopy\\Matcher\\PropertyNameMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyNameMatcher.php', - 'DeepCopy\\Matcher\\PropertyTypeMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php', - 'DeepCopy\\Reflection\\ReflectionHelper' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php', - 'DeepCopy\\TypeFilter\\Date\\DateIntervalFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DateIntervalFilter.php', - 'DeepCopy\\TypeFilter\\ReplaceFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php', - 'DeepCopy\\TypeFilter\\ShallowCopyFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php', - 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php', - 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedListFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php', - 'DeepCopy\\TypeFilter\\TypeFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php', - 'DeepCopy\\TypeMatcher\\TypeMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeMatcher/TypeMatcher.php', - 'Doctrine\\Common\\Inflector\\Inflector' => __DIR__ . '/..' . '/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php', - 'Doctrine\\Instantiator\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php', - 'Doctrine\\Instantiator\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php', - 'Doctrine\\Instantiator\\Exception\\UnexpectedValueException' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php', - 'Doctrine\\Instantiator\\Instantiator' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php', - 'Doctrine\\Instantiator\\InstantiatorInterface' => __DIR__ . '/..' . '/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php', - 'Dotenv\\Dotenv' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Dotenv.php', - 'Dotenv\\Environment\\AbstractVariables' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/AbstractVariables.php', - 'Dotenv\\Environment\\Adapter\\AdapterInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/Adapter/AdapterInterface.php', - 'Dotenv\\Environment\\Adapter\\ApacheAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/Adapter/ApacheAdapter.php', - 'Dotenv\\Environment\\Adapter\\ArrayAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/Adapter/ArrayAdapter.php', - 'Dotenv\\Environment\\Adapter\\EnvConstAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/Adapter/EnvConstAdapter.php', - 'Dotenv\\Environment\\Adapter\\PutenvAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/Adapter/PutenvAdapter.php', - 'Dotenv\\Environment\\Adapter\\ServerConstAdapter' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/Adapter/ServerConstAdapter.php', - 'Dotenv\\Environment\\DotenvFactory' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/DotenvFactory.php', - 'Dotenv\\Environment\\DotenvVariables' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/DotenvVariables.php', - 'Dotenv\\Environment\\FactoryInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/FactoryInterface.php', - 'Dotenv\\Environment\\VariablesInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Environment/VariablesInterface.php', - 'Dotenv\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/ExceptionInterface.php', - 'Dotenv\\Exception\\InvalidFileException' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/InvalidFileException.php', - 'Dotenv\\Exception\\InvalidPathException' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/InvalidPathException.php', - 'Dotenv\\Exception\\ValidationException' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Exception/ValidationException.php', - 'Dotenv\\Lines' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Lines.php', - 'Dotenv\\Loader' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Loader.php', - 'Dotenv\\Parser' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Parser.php', - 'Dotenv\\Regex\\Error' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Regex/Error.php', - 'Dotenv\\Regex\\Regex' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Regex/Regex.php', - 'Dotenv\\Regex\\Result' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Regex/Result.php', - 'Dotenv\\Regex\\Success' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Regex/Success.php', - 'Dotenv\\Validator' => __DIR__ . '/..' . '/vlucas/phpdotenv/src/Validator.php', - 'EvalFile_Command' => __DIR__ . '/..' . '/wp-cli/eval-command/src/EvalFile_Command.php', - 'Eval_Command' => __DIR__ . '/..' . '/wp-cli/eval-command/src/Eval_Command.php', - 'Export_Command' => __DIR__ . '/..' . '/wp-cli/export-command/src/Export_Command.php', - 'Facebook\\WebDriver\\Chrome\\ChromeDriver' => __DIR__ . '/..' . '/facebook/webdriver/lib/Chrome/ChromeDriver.php', - 'Facebook\\WebDriver\\Chrome\\ChromeDriverService' => __DIR__ . '/..' . '/facebook/webdriver/lib/Chrome/ChromeDriverService.php', - 'Facebook\\WebDriver\\Chrome\\ChromeOptions' => __DIR__ . '/..' . '/facebook/webdriver/lib/Chrome/ChromeOptions.php', - 'Facebook\\WebDriver\\Cookie' => __DIR__ . '/..' . '/facebook/webdriver/lib/Cookie.php', - 'Facebook\\WebDriver\\Exception\\ElementNotSelectableException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/ElementNotSelectableException.php', - 'Facebook\\WebDriver\\Exception\\ElementNotVisibleException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/ElementNotVisibleException.php', - 'Facebook\\WebDriver\\Exception\\ExpectedException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/ExpectedException.php', - 'Facebook\\WebDriver\\Exception\\IMEEngineActivationFailedException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/IMEEngineActivationFailedException.php', - 'Facebook\\WebDriver\\Exception\\IMENotAvailableException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/IMENotAvailableException.php', - 'Facebook\\WebDriver\\Exception\\IndexOutOfBoundsException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/IndexOutOfBoundsException.php', - 'Facebook\\WebDriver\\Exception\\InvalidCookieDomainException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/InvalidCookieDomainException.php', - 'Facebook\\WebDriver\\Exception\\InvalidCoordinatesException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/InvalidCoordinatesException.php', - 'Facebook\\WebDriver\\Exception\\InvalidElementStateException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/InvalidElementStateException.php', - 'Facebook\\WebDriver\\Exception\\InvalidSelectorException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/InvalidSelectorException.php', - 'Facebook\\WebDriver\\Exception\\MoveTargetOutOfBoundsException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/MoveTargetOutOfBoundsException.php', - 'Facebook\\WebDriver\\Exception\\NoAlertOpenException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoAlertOpenException.php', - 'Facebook\\WebDriver\\Exception\\NoCollectionException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoCollectionException.php', - 'Facebook\\WebDriver\\Exception\\NoScriptResultException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoScriptResultException.php', - 'Facebook\\WebDriver\\Exception\\NoStringException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoStringException.php', - 'Facebook\\WebDriver\\Exception\\NoStringLengthException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoStringLengthException.php', - 'Facebook\\WebDriver\\Exception\\NoStringWrapperException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoStringWrapperException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchCollectionException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoSuchCollectionException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchDocumentException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoSuchDocumentException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchDriverException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoSuchDriverException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchElementException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoSuchElementException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchFrameException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoSuchFrameException.php', - 'Facebook\\WebDriver\\Exception\\NoSuchWindowException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NoSuchWindowException.php', - 'Facebook\\WebDriver\\Exception\\NullPointerException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/NullPointerException.php', - 'Facebook\\WebDriver\\Exception\\ScriptTimeoutException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/ScriptTimeoutException.php', - 'Facebook\\WebDriver\\Exception\\SessionNotCreatedException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/SessionNotCreatedException.php', - 'Facebook\\WebDriver\\Exception\\StaleElementReferenceException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/StaleElementReferenceException.php', - 'Facebook\\WebDriver\\Exception\\TimeOutException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/TimeOutException.php', - 'Facebook\\WebDriver\\Exception\\UnableToSetCookieException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnableToSetCookieException.php', - 'Facebook\\WebDriver\\Exception\\UnexpectedAlertOpenException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnexpectedAlertOpenException.php', - 'Facebook\\WebDriver\\Exception\\UnexpectedJavascriptException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnexpectedJavascriptException.php', - 'Facebook\\WebDriver\\Exception\\UnexpectedTagNameException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnexpectedTagNameException.php', - 'Facebook\\WebDriver\\Exception\\UnknownCommandException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnknownCommandException.php', - 'Facebook\\WebDriver\\Exception\\UnknownServerException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnknownServerException.php', - 'Facebook\\WebDriver\\Exception\\UnrecognizedExceptionException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnrecognizedExceptionException.php', - 'Facebook\\WebDriver\\Exception\\UnsupportedOperationException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/UnsupportedOperationException.php', - 'Facebook\\WebDriver\\Exception\\WebDriverCurlException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/WebDriverCurlException.php', - 'Facebook\\WebDriver\\Exception\\WebDriverException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/WebDriverException.php', - 'Facebook\\WebDriver\\Exception\\XPathLookupException' => __DIR__ . '/..' . '/facebook/webdriver/lib/Exception/XPathLookupException.php', - 'Facebook\\WebDriver\\Firefox\\FirefoxDriver' => __DIR__ . '/..' . '/facebook/webdriver/lib/Firefox/FirefoxDriver.php', - 'Facebook\\WebDriver\\Firefox\\FirefoxPreferences' => __DIR__ . '/..' . '/facebook/webdriver/lib/Firefox/FirefoxPreferences.php', - 'Facebook\\WebDriver\\Firefox\\FirefoxProfile' => __DIR__ . '/..' . '/facebook/webdriver/lib/Firefox/FirefoxProfile.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverButtonReleaseAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverButtonReleaseAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverClickAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverClickAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverClickAndHoldAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverClickAndHoldAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverContextClickAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverContextClickAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverCoordinates' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverCoordinates.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverDoubleClickAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverDoubleClickAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeyDownAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeyDownAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeyUpAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeyUpAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeysRelatedAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeysRelatedAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMouseAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMouseAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMouseMoveAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMouseMoveAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMoveToOffsetAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMoveToOffsetAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverSendKeysAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverSendKeysAction.php', - 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverSingleKeyAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Internal/WebDriverSingleKeyAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverDoubleTapAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverDoubleTapAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverDownAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverDownAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverFlickAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverFlickAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverFlickFromElementAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverFlickFromElementAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverLongPressAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverLongPressAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverMoveAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverMoveAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverScrollAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverScrollAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverScrollFromElementAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverScrollFromElementAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTapAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTapAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTouchAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTouchAction.php', - 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTouchScreen' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTouchScreen.php', - 'Facebook\\WebDriver\\Interactions\\WebDriverActions' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/WebDriverActions.php', - 'Facebook\\WebDriver\\Interactions\\WebDriverCompositeAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/WebDriverCompositeAction.php', - 'Facebook\\WebDriver\\Interactions\\WebDriverTouchActions' => __DIR__ . '/..' . '/facebook/webdriver/lib/Interactions/WebDriverTouchActions.php', - 'Facebook\\WebDriver\\Internal\\WebDriverLocatable' => __DIR__ . '/..' . '/facebook/webdriver/lib/Internal/WebDriverLocatable.php', - 'Facebook\\WebDriver\\JavaScriptExecutor' => __DIR__ . '/..' . '/facebook/webdriver/lib/JavaScriptExecutor.php', - 'Facebook\\WebDriver\\Net\\URLChecker' => __DIR__ . '/..' . '/facebook/webdriver/lib/Net/URLChecker.php', - 'Facebook\\WebDriver\\Remote\\DesiredCapabilities' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/DesiredCapabilities.php', - 'Facebook\\WebDriver\\Remote\\DriverCommand' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/DriverCommand.php', - 'Facebook\\WebDriver\\Remote\\ExecuteMethod' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/ExecuteMethod.php', - 'Facebook\\WebDriver\\Remote\\FileDetector' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/FileDetector.php', - 'Facebook\\WebDriver\\Remote\\HttpCommandExecutor' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/HttpCommandExecutor.php', - 'Facebook\\WebDriver\\Remote\\LocalFileDetector' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/LocalFileDetector.php', - 'Facebook\\WebDriver\\Remote\\RemoteExecuteMethod' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/RemoteExecuteMethod.php', - 'Facebook\\WebDriver\\Remote\\RemoteKeyboard' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/RemoteKeyboard.php', - 'Facebook\\WebDriver\\Remote\\RemoteMouse' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/RemoteMouse.php', - 'Facebook\\WebDriver\\Remote\\RemoteTargetLocator' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/RemoteTargetLocator.php', - 'Facebook\\WebDriver\\Remote\\RemoteTouchScreen' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/RemoteTouchScreen.php', - 'Facebook\\WebDriver\\Remote\\RemoteWebDriver' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/RemoteWebDriver.php', - 'Facebook\\WebDriver\\Remote\\RemoteWebElement' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/RemoteWebElement.php', - 'Facebook\\WebDriver\\Remote\\Service\\DriverCommandExecutor' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/Service/DriverCommandExecutor.php', - 'Facebook\\WebDriver\\Remote\\Service\\DriverService' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/Service/DriverService.php', - 'Facebook\\WebDriver\\Remote\\UselessFileDetector' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/UselessFileDetector.php', - 'Facebook\\WebDriver\\Remote\\WebDriverBrowserType' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/WebDriverBrowserType.php', - 'Facebook\\WebDriver\\Remote\\WebDriverCapabilityType' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/WebDriverCapabilityType.php', - 'Facebook\\WebDriver\\Remote\\WebDriverCommand' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/WebDriverCommand.php', - 'Facebook\\WebDriver\\Remote\\WebDriverResponse' => __DIR__ . '/..' . '/facebook/webdriver/lib/Remote/WebDriverResponse.php', - 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriver' => __DIR__ . '/..' . '/facebook/webdriver/lib/Support/Events/EventFiringWebDriver.php', - 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriverNavigation' => __DIR__ . '/..' . '/facebook/webdriver/lib/Support/Events/EventFiringWebDriverNavigation.php', - 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebElement' => __DIR__ . '/..' . '/facebook/webdriver/lib/Support/Events/EventFiringWebElement.php', - 'Facebook\\WebDriver\\Support\\XPathEscaper' => __DIR__ . '/..' . '/facebook/webdriver/lib/Support/XPathEscaper.php', - 'Facebook\\WebDriver\\WebDriver' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriver.php', - 'Facebook\\WebDriver\\WebDriverAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverAction.php', - 'Facebook\\WebDriver\\WebDriverAlert' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverAlert.php', - 'Facebook\\WebDriver\\WebDriverBy' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverBy.php', - 'Facebook\\WebDriver\\WebDriverCapabilities' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverCapabilities.php', - 'Facebook\\WebDriver\\WebDriverCommandExecutor' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverCommandExecutor.php', - 'Facebook\\WebDriver\\WebDriverDimension' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverDimension.php', - 'Facebook\\WebDriver\\WebDriverDispatcher' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverDispatcher.php', - 'Facebook\\WebDriver\\WebDriverElement' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverElement.php', - 'Facebook\\WebDriver\\WebDriverEventListener' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverEventListener.php', - 'Facebook\\WebDriver\\WebDriverExpectedCondition' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverExpectedCondition.php', - 'Facebook\\WebDriver\\WebDriverHasInputDevices' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverHasInputDevices.php', - 'Facebook\\WebDriver\\WebDriverKeyboard' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverKeyboard.php', - 'Facebook\\WebDriver\\WebDriverKeys' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverKeys.php', - 'Facebook\\WebDriver\\WebDriverMouse' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverMouse.php', - 'Facebook\\WebDriver\\WebDriverNavigation' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverNavigation.php', - 'Facebook\\WebDriver\\WebDriverOptions' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverOptions.php', - 'Facebook\\WebDriver\\WebDriverPlatform' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverPlatform.php', - 'Facebook\\WebDriver\\WebDriverPoint' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverPoint.php', - 'Facebook\\WebDriver\\WebDriverSearchContext' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverSearchContext.php', - 'Facebook\\WebDriver\\WebDriverSelect' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverSelect.php', - 'Facebook\\WebDriver\\WebDriverSelectInterface' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverSelectInterface.php', - 'Facebook\\WebDriver\\WebDriverTargetLocator' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverTargetLocator.php', - 'Facebook\\WebDriver\\WebDriverTimeouts' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverTimeouts.php', - 'Facebook\\WebDriver\\WebDriverUpAction' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverUpAction.php', - 'Facebook\\WebDriver\\WebDriverWait' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverWait.php', - 'Facebook\\WebDriver\\WebDriverWindow' => __DIR__ . '/..' . '/facebook/webdriver/lib/WebDriverWindow.php', - 'Gettext\\BaseTranslator' => __DIR__ . '/..' . '/gettext/gettext/src/BaseTranslator.php', - 'Gettext\\Extractors\\Blade' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Blade.php', - 'Gettext\\Extractors\\Csv' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Csv.php', - 'Gettext\\Extractors\\CsvDictionary' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/CsvDictionary.php', - 'Gettext\\Extractors\\Extractor' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Extractor.php', - 'Gettext\\Extractors\\ExtractorInterface' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/ExtractorInterface.php', - 'Gettext\\Extractors\\Jed' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Jed.php', - 'Gettext\\Extractors\\JsCode' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/JsCode.php', - 'Gettext\\Extractors\\Json' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Json.php', - 'Gettext\\Extractors\\JsonDictionary' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/JsonDictionary.php', - 'Gettext\\Extractors\\Mo' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Mo.php', - 'Gettext\\Extractors\\PhpArray' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/PhpArray.php', - 'Gettext\\Extractors\\PhpCode' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/PhpCode.php', - 'Gettext\\Extractors\\Po' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Po.php', - 'Gettext\\Extractors\\Twig' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Twig.php', - 'Gettext\\Extractors\\VueJs' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/VueJs.php', - 'Gettext\\Extractors\\Xliff' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Xliff.php', - 'Gettext\\Extractors\\Yaml' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/Yaml.php', - 'Gettext\\Extractors\\YamlDictionary' => __DIR__ . '/..' . '/gettext/gettext/src/Extractors/YamlDictionary.php', - 'Gettext\\Generators\\Csv' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Csv.php', - 'Gettext\\Generators\\CsvDictionary' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/CsvDictionary.php', - 'Gettext\\Generators\\Generator' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Generator.php', - 'Gettext\\Generators\\GeneratorInterface' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/GeneratorInterface.php', - 'Gettext\\Generators\\Jed' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Jed.php', - 'Gettext\\Generators\\Json' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Json.php', - 'Gettext\\Generators\\JsonDictionary' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/JsonDictionary.php', - 'Gettext\\Generators\\Mo' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Mo.php', - 'Gettext\\Generators\\PhpArray' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/PhpArray.php', - 'Gettext\\Generators\\Po' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Po.php', - 'Gettext\\Generators\\Xliff' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Xliff.php', - 'Gettext\\Generators\\Yaml' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/Yaml.php', - 'Gettext\\Generators\\YamlDictionary' => __DIR__ . '/..' . '/gettext/gettext/src/Generators/YamlDictionary.php', - 'Gettext\\GettextTranslator' => __DIR__ . '/..' . '/gettext/gettext/src/GettextTranslator.php', - 'Gettext\\Languages\\Category' => __DIR__ . '/..' . '/gettext/languages/src/Category.php', - 'Gettext\\Languages\\CldrData' => __DIR__ . '/..' . '/gettext/languages/src/CldrData.php', - 'Gettext\\Languages\\Exporter\\Docs' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Docs.php', - 'Gettext\\Languages\\Exporter\\Exporter' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Exporter.php', - 'Gettext\\Languages\\Exporter\\Html' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Html.php', - 'Gettext\\Languages\\Exporter\\Json' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Json.php', - 'Gettext\\Languages\\Exporter\\Php' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Php.php', - 'Gettext\\Languages\\Exporter\\Po' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Po.php', - 'Gettext\\Languages\\Exporter\\Prettyjson' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Prettyjson.php', - 'Gettext\\Languages\\Exporter\\Xml' => __DIR__ . '/..' . '/gettext/languages/src/Exporter/Xml.php', - 'Gettext\\Languages\\FormulaConverter' => __DIR__ . '/..' . '/gettext/languages/src/FormulaConverter.php', - 'Gettext\\Languages\\Language' => __DIR__ . '/..' . '/gettext/languages/src/Language.php', - 'Gettext\\Merge' => __DIR__ . '/..' . '/gettext/gettext/src/Merge.php', - 'Gettext\\Translation' => __DIR__ . '/..' . '/gettext/gettext/src/Translation.php', - 'Gettext\\Translations' => __DIR__ . '/..' . '/gettext/gettext/src/Translations.php', - 'Gettext\\Translator' => __DIR__ . '/..' . '/gettext/gettext/src/Translator.php', - 'Gettext\\TranslatorInterface' => __DIR__ . '/..' . '/gettext/gettext/src/TranslatorInterface.php', - 'Gettext\\Utils\\CsvTrait' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/CsvTrait.php', - 'Gettext\\Utils\\DictionaryTrait' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/DictionaryTrait.php', - 'Gettext\\Utils\\FunctionsScanner' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/FunctionsScanner.php', - 'Gettext\\Utils\\HeadersExtractorTrait' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/HeadersExtractorTrait.php', - 'Gettext\\Utils\\HeadersGeneratorTrait' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/HeadersGeneratorTrait.php', - 'Gettext\\Utils\\JsFunctionsScanner' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/JsFunctionsScanner.php', - 'Gettext\\Utils\\MultidimensionalArrayTrait' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/MultidimensionalArrayTrait.php', - 'Gettext\\Utils\\ParsedComment' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/ParsedComment.php', - 'Gettext\\Utils\\ParsedFunction' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/ParsedFunction.php', - 'Gettext\\Utils\\PhpFunctionsScanner' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/PhpFunctionsScanner.php', - 'Gettext\\Utils\\StringReader' => __DIR__ . '/..' . '/gettext/gettext/src/Utils/StringReader.php', - 'Gumlet\\ImageResize' => __DIR__ . '/..' . '/gumlet/php-image-resize/lib/ImageResize.php', - 'Gumlet\\ImageResizeException' => __DIR__ . '/..' . '/gumlet/php-image-resize/lib/ImageResizeException.php', - 'GuzzleHttp\\Client' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Client.php', - 'GuzzleHttp\\ClientInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/ClientInterface.php', - 'GuzzleHttp\\Cookie\\CookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php', - 'GuzzleHttp\\Cookie\\CookieJarInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php', - 'GuzzleHttp\\Cookie\\FileCookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php', - 'GuzzleHttp\\Cookie\\SessionCookieJar' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php', - 'GuzzleHttp\\Cookie\\SetCookie' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php', - 'GuzzleHttp\\Exception\\BadResponseException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php', - 'GuzzleHttp\\Exception\\ClientException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ClientException.php', - 'GuzzleHttp\\Exception\\ConnectException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ConnectException.php', - 'GuzzleHttp\\Exception\\GuzzleException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php', - 'GuzzleHttp\\Exception\\RequestException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/RequestException.php', - 'GuzzleHttp\\Exception\\SeekException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/SeekException.php', - 'GuzzleHttp\\Exception\\ServerException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/ServerException.php', - 'GuzzleHttp\\Exception\\TooManyRedirectsException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php', - 'GuzzleHttp\\Exception\\TransferException' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Exception/TransferException.php', - 'GuzzleHttp\\HandlerStack' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/HandlerStack.php', - 'GuzzleHttp\\Handler\\CurlFactory' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php', - 'GuzzleHttp\\Handler\\CurlFactoryInterface' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php', - 'GuzzleHttp\\Handler\\CurlHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php', - 'GuzzleHttp\\Handler\\CurlMultiHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php', - 'GuzzleHttp\\Handler\\EasyHandle' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php', - 'GuzzleHttp\\Handler\\MockHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/MockHandler.php', - 'GuzzleHttp\\Handler\\Proxy' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/Proxy.php', - 'GuzzleHttp\\Handler\\StreamHandler' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php', - 'GuzzleHttp\\MessageFormatter' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/MessageFormatter.php', - 'GuzzleHttp\\Middleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Middleware.php', - 'GuzzleHttp\\Pool' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/Pool.php', - 'GuzzleHttp\\PrepareBodyMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php', - 'GuzzleHttp\\Promise\\AggregateException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/AggregateException.php', - 'GuzzleHttp\\Promise\\CancellationException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/CancellationException.php', - 'GuzzleHttp\\Promise\\Coroutine' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Coroutine.php', - 'GuzzleHttp\\Promise\\EachPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/EachPromise.php', - 'GuzzleHttp\\Promise\\FulfilledPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/FulfilledPromise.php', - 'GuzzleHttp\\Promise\\Promise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/Promise.php', - 'GuzzleHttp\\Promise\\PromiseInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromiseInterface.php', - 'GuzzleHttp\\Promise\\PromisorInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/PromisorInterface.php', - 'GuzzleHttp\\Promise\\RejectedPromise' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectedPromise.php', - 'GuzzleHttp\\Promise\\RejectionException' => __DIR__ . '/..' . '/guzzlehttp/promises/src/RejectionException.php', - 'GuzzleHttp\\Promise\\TaskQueue' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueue.php', - 'GuzzleHttp\\Promise\\TaskQueueInterface' => __DIR__ . '/..' . '/guzzlehttp/promises/src/TaskQueueInterface.php', - 'GuzzleHttp\\Psr7\\AppendStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/AppendStream.php', - 'GuzzleHttp\\Psr7\\BufferStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/BufferStream.php', - 'GuzzleHttp\\Psr7\\CachingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/CachingStream.php', - 'GuzzleHttp\\Psr7\\DroppingStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/DroppingStream.php', - 'GuzzleHttp\\Psr7\\FnStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/FnStream.php', - 'GuzzleHttp\\Psr7\\InflateStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/InflateStream.php', - 'GuzzleHttp\\Psr7\\LazyOpenStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LazyOpenStream.php', - 'GuzzleHttp\\Psr7\\LimitStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/LimitStream.php', - 'GuzzleHttp\\Psr7\\MessageTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MessageTrait.php', - 'GuzzleHttp\\Psr7\\MultipartStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/MultipartStream.php', - 'GuzzleHttp\\Psr7\\NoSeekStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/NoSeekStream.php', - 'GuzzleHttp\\Psr7\\PumpStream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/PumpStream.php', - 'GuzzleHttp\\Psr7\\Request' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Request.php', - 'GuzzleHttp\\Psr7\\Response' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Response.php', - 'GuzzleHttp\\Psr7\\Rfc7230' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Rfc7230.php', - 'GuzzleHttp\\Psr7\\ServerRequest' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/ServerRequest.php', - 'GuzzleHttp\\Psr7\\Stream' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Stream.php', - 'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php', - 'GuzzleHttp\\Psr7\\StreamWrapper' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/StreamWrapper.php', - 'GuzzleHttp\\Psr7\\UploadedFile' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UploadedFile.php', - 'GuzzleHttp\\Psr7\\Uri' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/Uri.php', - 'GuzzleHttp\\Psr7\\UriNormalizer' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriNormalizer.php', - 'GuzzleHttp\\Psr7\\UriResolver' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/UriResolver.php', - 'GuzzleHttp\\RedirectMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RedirectMiddleware.php', - 'GuzzleHttp\\RequestOptions' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RequestOptions.php', - 'GuzzleHttp\\RetryMiddleware' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/RetryMiddleware.php', - 'GuzzleHttp\\TransferStats' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/TransferStats.php', - 'GuzzleHttp\\UriTemplate' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/UriTemplate.php', - 'Handlebars\\Arguments' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Arguments.php', - 'Handlebars\\Autoloader' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Autoloader.php', - 'Handlebars\\BaseString' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/BaseString.php', - 'Handlebars\\Cache' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Cache.php', - 'Handlebars\\Cache\\APC' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Cache/APC.php', - 'Handlebars\\Cache\\Disk' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Cache/Disk.php', - 'Handlebars\\Cache\\Dummy' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Cache/Dummy.php', - 'Handlebars\\ChildContext' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/ChildContext.php', - 'Handlebars\\Context' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Context.php', - 'Handlebars\\Handlebars' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Handlebars.php', - 'Handlebars\\Helper' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Helper.php', - 'Handlebars\\Helper\\BindAttrHelper' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Helper/BindAttrHelper.php', - 'Handlebars\\Helper\\EachHelper' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Helper/EachHelper.php', - 'Handlebars\\Helper\\IfHelper' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Helper/IfHelper.php', - 'Handlebars\\Helper\\UnlessHelper' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Helper/UnlessHelper.php', - 'Handlebars\\Helper\\WithHelper' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Helper/WithHelper.php', - 'Handlebars\\Helpers' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Helpers.php', - 'Handlebars\\Loader' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Loader.php', - 'Handlebars\\Loader\\ArrayLoader' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Loader/ArrayLoader.php', - 'Handlebars\\Loader\\FilesystemLoader' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Loader/FilesystemLoader.php', - 'Handlebars\\Loader\\InlineLoader' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Loader/InlineLoader.php', - 'Handlebars\\Loader\\StringLoader' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Loader/StringLoader.php', - 'Handlebars\\Parser' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Parser.php', - 'Handlebars\\SafeString' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/SafeString.php', - 'Handlebars\\String' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/String.php', - 'Handlebars\\StringWrapper' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/StringWrapper.php', - 'Handlebars\\Template' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Template.php', - 'Handlebars\\Tokenizer' => __DIR__ . '/..' . '/xamin/handlebars.php/src/Handlebars/Tokenizer.php', - 'Hautelook\\Phpass\\PasswordHash' => __DIR__ . '/..' . '/hautelook/phpass/src/Hautelook/Phpass/PasswordHash.php', - 'Illuminate\\Contracts\\Auth\\Access\\Authorizable' => __DIR__ . '/..' . '/illuminate/contracts/Auth/Access/Authorizable.php', - 'Illuminate\\Contracts\\Auth\\Access\\Gate' => __DIR__ . '/..' . '/illuminate/contracts/Auth/Access/Gate.php', - 'Illuminate\\Contracts\\Auth\\Authenticatable' => __DIR__ . '/..' . '/illuminate/contracts/Auth/Authenticatable.php', - 'Illuminate\\Contracts\\Auth\\CanResetPassword' => __DIR__ . '/..' . '/illuminate/contracts/Auth/CanResetPassword.php', - 'Illuminate\\Contracts\\Auth\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Auth/Factory.php', - 'Illuminate\\Contracts\\Auth\\Guard' => __DIR__ . '/..' . '/illuminate/contracts/Auth/Guard.php', - 'Illuminate\\Contracts\\Auth\\MustVerifyEmail' => __DIR__ . '/..' . '/illuminate/contracts/Auth/MustVerifyEmail.php', - 'Illuminate\\Contracts\\Auth\\PasswordBroker' => __DIR__ . '/..' . '/illuminate/contracts/Auth/PasswordBroker.php', - 'Illuminate\\Contracts\\Auth\\PasswordBrokerFactory' => __DIR__ . '/..' . '/illuminate/contracts/Auth/PasswordBrokerFactory.php', - 'Illuminate\\Contracts\\Auth\\StatefulGuard' => __DIR__ . '/..' . '/illuminate/contracts/Auth/StatefulGuard.php', - 'Illuminate\\Contracts\\Auth\\SupportsBasicAuth' => __DIR__ . '/..' . '/illuminate/contracts/Auth/SupportsBasicAuth.php', - 'Illuminate\\Contracts\\Auth\\UserProvider' => __DIR__ . '/..' . '/illuminate/contracts/Auth/UserProvider.php', - 'Illuminate\\Contracts\\Broadcasting\\Broadcaster' => __DIR__ . '/..' . '/illuminate/contracts/Broadcasting/Broadcaster.php', - 'Illuminate\\Contracts\\Broadcasting\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Broadcasting/Factory.php', - 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcast' => __DIR__ . '/..' . '/illuminate/contracts/Broadcasting/ShouldBroadcast.php', - 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcastNow' => __DIR__ . '/..' . '/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php', - 'Illuminate\\Contracts\\Bus\\Dispatcher' => __DIR__ . '/..' . '/illuminate/contracts/Bus/Dispatcher.php', - 'Illuminate\\Contracts\\Bus\\QueueingDispatcher' => __DIR__ . '/..' . '/illuminate/contracts/Bus/QueueingDispatcher.php', - 'Illuminate\\Contracts\\Cache\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Cache/Factory.php', - 'Illuminate\\Contracts\\Cache\\Lock' => __DIR__ . '/..' . '/illuminate/contracts/Cache/Lock.php', - 'Illuminate\\Contracts\\Cache\\LockProvider' => __DIR__ . '/..' . '/illuminate/contracts/Cache/LockProvider.php', - 'Illuminate\\Contracts\\Cache\\LockTimeoutException' => __DIR__ . '/..' . '/illuminate/contracts/Cache/LockTimeoutException.php', - 'Illuminate\\Contracts\\Cache\\Repository' => __DIR__ . '/..' . '/illuminate/contracts/Cache/Repository.php', - 'Illuminate\\Contracts\\Cache\\Store' => __DIR__ . '/..' . '/illuminate/contracts/Cache/Store.php', - 'Illuminate\\Contracts\\Config\\Repository' => __DIR__ . '/..' . '/illuminate/contracts/Config/Repository.php', - 'Illuminate\\Contracts\\Console\\Application' => __DIR__ . '/..' . '/illuminate/contracts/Console/Application.php', - 'Illuminate\\Contracts\\Console\\Kernel' => __DIR__ . '/..' . '/illuminate/contracts/Console/Kernel.php', - 'Illuminate\\Contracts\\Container\\BindingResolutionException' => __DIR__ . '/..' . '/illuminate/contracts/Container/BindingResolutionException.php', - 'Illuminate\\Contracts\\Container\\Container' => __DIR__ . '/..' . '/illuminate/contracts/Container/Container.php', - 'Illuminate\\Contracts\\Container\\ContextualBindingBuilder' => __DIR__ . '/..' . '/illuminate/contracts/Container/ContextualBindingBuilder.php', - 'Illuminate\\Contracts\\Cookie\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Cookie/Factory.php', - 'Illuminate\\Contracts\\Cookie\\QueueingFactory' => __DIR__ . '/..' . '/illuminate/contracts/Cookie/QueueingFactory.php', - 'Illuminate\\Contracts\\Database\\Events\\MigrationEvent' => __DIR__ . '/..' . '/illuminate/contracts/Database/Events/MigrationEvent.php', - 'Illuminate\\Contracts\\Database\\ModelIdentifier' => __DIR__ . '/..' . '/illuminate/contracts/Database/ModelIdentifier.php', - 'Illuminate\\Contracts\\Debug\\ExceptionHandler' => __DIR__ . '/..' . '/illuminate/contracts/Debug/ExceptionHandler.php', - 'Illuminate\\Contracts\\Encryption\\DecryptException' => __DIR__ . '/..' . '/illuminate/contracts/Encryption/DecryptException.php', - 'Illuminate\\Contracts\\Encryption\\EncryptException' => __DIR__ . '/..' . '/illuminate/contracts/Encryption/EncryptException.php', - 'Illuminate\\Contracts\\Encryption\\Encrypter' => __DIR__ . '/..' . '/illuminate/contracts/Encryption/Encrypter.php', - 'Illuminate\\Contracts\\Events\\Dispatcher' => __DIR__ . '/..' . '/illuminate/contracts/Events/Dispatcher.php', - 'Illuminate\\Contracts\\Filesystem\\Cloud' => __DIR__ . '/..' . '/illuminate/contracts/Filesystem/Cloud.php', - 'Illuminate\\Contracts\\Filesystem\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Filesystem/Factory.php', - 'Illuminate\\Contracts\\Filesystem\\FileExistsException' => __DIR__ . '/..' . '/illuminate/contracts/Filesystem/FileExistsException.php', - 'Illuminate\\Contracts\\Filesystem\\FileNotFoundException' => __DIR__ . '/..' . '/illuminate/contracts/Filesystem/FileNotFoundException.php', - 'Illuminate\\Contracts\\Filesystem\\Filesystem' => __DIR__ . '/..' . '/illuminate/contracts/Filesystem/Filesystem.php', - 'Illuminate\\Contracts\\Foundation\\Application' => __DIR__ . '/..' . '/illuminate/contracts/Foundation/Application.php', - 'Illuminate\\Contracts\\Hashing\\Hasher' => __DIR__ . '/..' . '/illuminate/contracts/Hashing/Hasher.php', - 'Illuminate\\Contracts\\Http\\Kernel' => __DIR__ . '/..' . '/illuminate/contracts/Http/Kernel.php', - 'Illuminate\\Contracts\\Mail\\MailQueue' => __DIR__ . '/..' . '/illuminate/contracts/Mail/MailQueue.php', - 'Illuminate\\Contracts\\Mail\\Mailable' => __DIR__ . '/..' . '/illuminate/contracts/Mail/Mailable.php', - 'Illuminate\\Contracts\\Mail\\Mailer' => __DIR__ . '/..' . '/illuminate/contracts/Mail/Mailer.php', - 'Illuminate\\Contracts\\Notifications\\Dispatcher' => __DIR__ . '/..' . '/illuminate/contracts/Notifications/Dispatcher.php', - 'Illuminate\\Contracts\\Notifications\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Notifications/Factory.php', - 'Illuminate\\Contracts\\Pagination\\LengthAwarePaginator' => __DIR__ . '/..' . '/illuminate/contracts/Pagination/LengthAwarePaginator.php', - 'Illuminate\\Contracts\\Pagination\\Paginator' => __DIR__ . '/..' . '/illuminate/contracts/Pagination/Paginator.php', - 'Illuminate\\Contracts\\Pipeline\\Hub' => __DIR__ . '/..' . '/illuminate/contracts/Pipeline/Hub.php', - 'Illuminate\\Contracts\\Pipeline\\Pipeline' => __DIR__ . '/..' . '/illuminate/contracts/Pipeline/Pipeline.php', - 'Illuminate\\Contracts\\Queue\\EntityNotFoundException' => __DIR__ . '/..' . '/illuminate/contracts/Queue/EntityNotFoundException.php', - 'Illuminate\\Contracts\\Queue\\EntityResolver' => __DIR__ . '/..' . '/illuminate/contracts/Queue/EntityResolver.php', - 'Illuminate\\Contracts\\Queue\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Queue/Factory.php', - 'Illuminate\\Contracts\\Queue\\Job' => __DIR__ . '/..' . '/illuminate/contracts/Queue/Job.php', - 'Illuminate\\Contracts\\Queue\\Monitor' => __DIR__ . '/..' . '/illuminate/contracts/Queue/Monitor.php', - 'Illuminate\\Contracts\\Queue\\Queue' => __DIR__ . '/..' . '/illuminate/contracts/Queue/Queue.php', - 'Illuminate\\Contracts\\Queue\\QueueableCollection' => __DIR__ . '/..' . '/illuminate/contracts/Queue/QueueableCollection.php', - 'Illuminate\\Contracts\\Queue\\QueueableEntity' => __DIR__ . '/..' . '/illuminate/contracts/Queue/QueueableEntity.php', - 'Illuminate\\Contracts\\Queue\\ShouldQueue' => __DIR__ . '/..' . '/illuminate/contracts/Queue/ShouldQueue.php', - 'Illuminate\\Contracts\\Redis\\Connection' => __DIR__ . '/..' . '/illuminate/contracts/Redis/Connection.php', - 'Illuminate\\Contracts\\Redis\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Redis/Factory.php', - 'Illuminate\\Contracts\\Redis\\LimiterTimeoutException' => __DIR__ . '/..' . '/illuminate/contracts/Redis/LimiterTimeoutException.php', - 'Illuminate\\Contracts\\Routing\\BindingRegistrar' => __DIR__ . '/..' . '/illuminate/contracts/Routing/BindingRegistrar.php', - 'Illuminate\\Contracts\\Routing\\Registrar' => __DIR__ . '/..' . '/illuminate/contracts/Routing/Registrar.php', - 'Illuminate\\Contracts\\Routing\\ResponseFactory' => __DIR__ . '/..' . '/illuminate/contracts/Routing/ResponseFactory.php', - 'Illuminate\\Contracts\\Routing\\UrlGenerator' => __DIR__ . '/..' . '/illuminate/contracts/Routing/UrlGenerator.php', - 'Illuminate\\Contracts\\Routing\\UrlRoutable' => __DIR__ . '/..' . '/illuminate/contracts/Routing/UrlRoutable.php', - 'Illuminate\\Contracts\\Session\\Session' => __DIR__ . '/..' . '/illuminate/contracts/Session/Session.php', - 'Illuminate\\Contracts\\Support\\Arrayable' => __DIR__ . '/..' . '/illuminate/contracts/Support/Arrayable.php', - 'Illuminate\\Contracts\\Support\\DeferrableProvider' => __DIR__ . '/..' . '/illuminate/contracts/Support/DeferrableProvider.php', - 'Illuminate\\Contracts\\Support\\Htmlable' => __DIR__ . '/..' . '/illuminate/contracts/Support/Htmlable.php', - 'Illuminate\\Contracts\\Support\\Jsonable' => __DIR__ . '/..' . '/illuminate/contracts/Support/Jsonable.php', - 'Illuminate\\Contracts\\Support\\MessageBag' => __DIR__ . '/..' . '/illuminate/contracts/Support/MessageBag.php', - 'Illuminate\\Contracts\\Support\\MessageProvider' => __DIR__ . '/..' . '/illuminate/contracts/Support/MessageProvider.php', - 'Illuminate\\Contracts\\Support\\Renderable' => __DIR__ . '/..' . '/illuminate/contracts/Support/Renderable.php', - 'Illuminate\\Contracts\\Support\\Responsable' => __DIR__ . '/..' . '/illuminate/contracts/Support/Responsable.php', - 'Illuminate\\Contracts\\Translation\\HasLocalePreference' => __DIR__ . '/..' . '/illuminate/contracts/Translation/HasLocalePreference.php', - 'Illuminate\\Contracts\\Translation\\Loader' => __DIR__ . '/..' . '/illuminate/contracts/Translation/Loader.php', - 'Illuminate\\Contracts\\Translation\\Translator' => __DIR__ . '/..' . '/illuminate/contracts/Translation/Translator.php', - 'Illuminate\\Contracts\\Validation\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/Validation/Factory.php', - 'Illuminate\\Contracts\\Validation\\ImplicitRule' => __DIR__ . '/..' . '/illuminate/contracts/Validation/ImplicitRule.php', - 'Illuminate\\Contracts\\Validation\\Rule' => __DIR__ . '/..' . '/illuminate/contracts/Validation/Rule.php', - 'Illuminate\\Contracts\\Validation\\ValidatesWhenResolved' => __DIR__ . '/..' . '/illuminate/contracts/Validation/ValidatesWhenResolved.php', - 'Illuminate\\Contracts\\Validation\\Validator' => __DIR__ . '/..' . '/illuminate/contracts/Validation/Validator.php', - 'Illuminate\\Contracts\\View\\Engine' => __DIR__ . '/..' . '/illuminate/contracts/View/Engine.php', - 'Illuminate\\Contracts\\View\\Factory' => __DIR__ . '/..' . '/illuminate/contracts/View/Factory.php', - 'Illuminate\\Contracts\\View\\View' => __DIR__ . '/..' . '/illuminate/contracts/View/View.php', - 'Illuminate\\Support\\AggregateServiceProvider' => __DIR__ . '/..' . '/illuminate/support/AggregateServiceProvider.php', - 'Illuminate\\Support\\Arr' => __DIR__ . '/..' . '/illuminate/support/Arr.php', - 'Illuminate\\Support\\Carbon' => __DIR__ . '/..' . '/illuminate/support/Carbon.php', - 'Illuminate\\Support\\Collection' => __DIR__ . '/..' . '/illuminate/support/Collection.php', - 'Illuminate\\Support\\Composer' => __DIR__ . '/..' . '/illuminate/support/Composer.php', - 'Illuminate\\Support\\ConfigurationUrlParser' => __DIR__ . '/..' . '/illuminate/support/ConfigurationUrlParser.php', - 'Illuminate\\Support\\DateFactory' => __DIR__ . '/..' . '/illuminate/support/DateFactory.php', - 'Illuminate\\Support\\Facades\\App' => __DIR__ . '/..' . '/illuminate/support/Facades/App.php', - 'Illuminate\\Support\\Facades\\Artisan' => __DIR__ . '/..' . '/illuminate/support/Facades/Artisan.php', - 'Illuminate\\Support\\Facades\\Auth' => __DIR__ . '/..' . '/illuminate/support/Facades/Auth.php', - 'Illuminate\\Support\\Facades\\Blade' => __DIR__ . '/..' . '/illuminate/support/Facades/Blade.php', - 'Illuminate\\Support\\Facades\\Broadcast' => __DIR__ . '/..' . '/illuminate/support/Facades/Broadcast.php', - 'Illuminate\\Support\\Facades\\Bus' => __DIR__ . '/..' . '/illuminate/support/Facades/Bus.php', - 'Illuminate\\Support\\Facades\\Cache' => __DIR__ . '/..' . '/illuminate/support/Facades/Cache.php', - 'Illuminate\\Support\\Facades\\Config' => __DIR__ . '/..' . '/illuminate/support/Facades/Config.php', - 'Illuminate\\Support\\Facades\\Cookie' => __DIR__ . '/..' . '/illuminate/support/Facades/Cookie.php', - 'Illuminate\\Support\\Facades\\Crypt' => __DIR__ . '/..' . '/illuminate/support/Facades/Crypt.php', - 'Illuminate\\Support\\Facades\\DB' => __DIR__ . '/..' . '/illuminate/support/Facades/DB.php', - 'Illuminate\\Support\\Facades\\Date' => __DIR__ . '/..' . '/illuminate/support/Facades/Date.php', - 'Illuminate\\Support\\Facades\\Event' => __DIR__ . '/..' . '/illuminate/support/Facades/Event.php', - 'Illuminate\\Support\\Facades\\Facade' => __DIR__ . '/..' . '/illuminate/support/Facades/Facade.php', - 'Illuminate\\Support\\Facades\\File' => __DIR__ . '/..' . '/illuminate/support/Facades/File.php', - 'Illuminate\\Support\\Facades\\Gate' => __DIR__ . '/..' . '/illuminate/support/Facades/Gate.php', - 'Illuminate\\Support\\Facades\\Hash' => __DIR__ . '/..' . '/illuminate/support/Facades/Hash.php', - 'Illuminate\\Support\\Facades\\Input' => __DIR__ . '/..' . '/illuminate/support/Facades/Input.php', - 'Illuminate\\Support\\Facades\\Lang' => __DIR__ . '/..' . '/illuminate/support/Facades/Lang.php', - 'Illuminate\\Support\\Facades\\Log' => __DIR__ . '/..' . '/illuminate/support/Facades/Log.php', - 'Illuminate\\Support\\Facades\\Mail' => __DIR__ . '/..' . '/illuminate/support/Facades/Mail.php', - 'Illuminate\\Support\\Facades\\Notification' => __DIR__ . '/..' . '/illuminate/support/Facades/Notification.php', - 'Illuminate\\Support\\Facades\\Password' => __DIR__ . '/..' . '/illuminate/support/Facades/Password.php', - 'Illuminate\\Support\\Facades\\Queue' => __DIR__ . '/..' . '/illuminate/support/Facades/Queue.php', - 'Illuminate\\Support\\Facades\\Redirect' => __DIR__ . '/..' . '/illuminate/support/Facades/Redirect.php', - 'Illuminate\\Support\\Facades\\Redis' => __DIR__ . '/..' . '/illuminate/support/Facades/Redis.php', - 'Illuminate\\Support\\Facades\\Request' => __DIR__ . '/..' . '/illuminate/support/Facades/Request.php', - 'Illuminate\\Support\\Facades\\Response' => __DIR__ . '/..' . '/illuminate/support/Facades/Response.php', - 'Illuminate\\Support\\Facades\\Route' => __DIR__ . '/..' . '/illuminate/support/Facades/Route.php', - 'Illuminate\\Support\\Facades\\Schema' => __DIR__ . '/..' . '/illuminate/support/Facades/Schema.php', - 'Illuminate\\Support\\Facades\\Session' => __DIR__ . '/..' . '/illuminate/support/Facades/Session.php', - 'Illuminate\\Support\\Facades\\Storage' => __DIR__ . '/..' . '/illuminate/support/Facades/Storage.php', - 'Illuminate\\Support\\Facades\\URL' => __DIR__ . '/..' . '/illuminate/support/Facades/URL.php', - 'Illuminate\\Support\\Facades\\Validator' => __DIR__ . '/..' . '/illuminate/support/Facades/Validator.php', - 'Illuminate\\Support\\Facades\\View' => __DIR__ . '/..' . '/illuminate/support/Facades/View.php', - 'Illuminate\\Support\\Fluent' => __DIR__ . '/..' . '/illuminate/support/Fluent.php', - 'Illuminate\\Support\\HigherOrderCollectionProxy' => __DIR__ . '/..' . '/illuminate/support/HigherOrderCollectionProxy.php', - 'Illuminate\\Support\\HigherOrderTapProxy' => __DIR__ . '/..' . '/illuminate/support/HigherOrderTapProxy.php', - 'Illuminate\\Support\\HtmlString' => __DIR__ . '/..' . '/illuminate/support/HtmlString.php', - 'Illuminate\\Support\\InteractsWithTime' => __DIR__ . '/..' . '/illuminate/support/InteractsWithTime.php', - 'Illuminate\\Support\\Manager' => __DIR__ . '/..' . '/illuminate/support/Manager.php', - 'Illuminate\\Support\\MessageBag' => __DIR__ . '/..' . '/illuminate/support/MessageBag.php', - 'Illuminate\\Support\\NamespacedItemResolver' => __DIR__ . '/..' . '/illuminate/support/NamespacedItemResolver.php', - 'Illuminate\\Support\\Optional' => __DIR__ . '/..' . '/illuminate/support/Optional.php', - 'Illuminate\\Support\\Pluralizer' => __DIR__ . '/..' . '/illuminate/support/Pluralizer.php', - 'Illuminate\\Support\\ProcessUtils' => __DIR__ . '/..' . '/illuminate/support/ProcessUtils.php', - 'Illuminate\\Support\\ServiceProvider' => __DIR__ . '/..' . '/illuminate/support/ServiceProvider.php', - 'Illuminate\\Support\\Str' => __DIR__ . '/..' . '/illuminate/support/Str.php', - 'Illuminate\\Support\\Testing\\Fakes\\BusFake' => __DIR__ . '/..' . '/illuminate/support/Testing/Fakes/BusFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\EventFake' => __DIR__ . '/..' . '/illuminate/support/Testing/Fakes/EventFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\MailFake' => __DIR__ . '/..' . '/illuminate/support/Testing/Fakes/MailFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\NotificationFake' => __DIR__ . '/..' . '/illuminate/support/Testing/Fakes/NotificationFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\PendingMailFake' => __DIR__ . '/..' . '/illuminate/support/Testing/Fakes/PendingMailFake.php', - 'Illuminate\\Support\\Testing\\Fakes\\QueueFake' => __DIR__ . '/..' . '/illuminate/support/Testing/Fakes/QueueFake.php', - 'Illuminate\\Support\\Traits\\CapsuleManagerTrait' => __DIR__ . '/..' . '/illuminate/support/Traits/CapsuleManagerTrait.php', - 'Illuminate\\Support\\Traits\\ForwardsCalls' => __DIR__ . '/..' . '/illuminate/support/Traits/ForwardsCalls.php', - 'Illuminate\\Support\\Traits\\Localizable' => __DIR__ . '/..' . '/illuminate/support/Traits/Localizable.php', - 'Illuminate\\Support\\Traits\\Macroable' => __DIR__ . '/..' . '/illuminate/support/Traits/Macroable.php', - 'Illuminate\\Support\\Traits\\Tappable' => __DIR__ . '/..' . '/illuminate/support/Traits/Tappable.php', - 'Illuminate\\Support\\ViewErrorBag' => __DIR__ . '/..' . '/illuminate/support/ViewErrorBag.php', - 'Import_Command' => __DIR__ . '/..' . '/wp-cli/import-command/src/Import_Command.php', - 'JsonException' => __DIR__ . '/..' . '/symfony/polyfill-php73/Resources/stubs/JsonException.php', - 'JsonSchema\\Constraints\\BaseConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php', - 'JsonSchema\\Constraints\\CollectionConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php', - 'JsonSchema\\Constraints\\Constraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php', - 'JsonSchema\\Constraints\\ConstraintInterface' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php', - 'JsonSchema\\Constraints\\EnumConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php', - 'JsonSchema\\Constraints\\Factory' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php', - 'JsonSchema\\Constraints\\FormatConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php', - 'JsonSchema\\Constraints\\NumberConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php', - 'JsonSchema\\Constraints\\ObjectConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php', - 'JsonSchema\\Constraints\\SchemaConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php', - 'JsonSchema\\Constraints\\StringConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php', - 'JsonSchema\\Constraints\\TypeCheck\\LooseTypeCheck' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php', - 'JsonSchema\\Constraints\\TypeCheck\\StrictTypeCheck' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php', - 'JsonSchema\\Constraints\\TypeCheck\\TypeCheckInterface' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php', - 'JsonSchema\\Constraints\\TypeConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php', - 'JsonSchema\\Constraints\\UndefinedConstraint' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php', - 'JsonSchema\\Entity\\JsonPointer' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php', - 'JsonSchema\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php', - 'JsonSchema\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php', - 'JsonSchema\\Exception\\InvalidConfigException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php', - 'JsonSchema\\Exception\\InvalidSchemaException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php', - 'JsonSchema\\Exception\\InvalidSchemaMediaTypeException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php', - 'JsonSchema\\Exception\\InvalidSourceUriException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php', - 'JsonSchema\\Exception\\JsonDecodingException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php', - 'JsonSchema\\Exception\\ResourceNotFoundException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php', - 'JsonSchema\\Exception\\RuntimeException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php', - 'JsonSchema\\Exception\\UnresolvableJsonPointerException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php', - 'JsonSchema\\Exception\\UriResolverException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php', - 'JsonSchema\\Exception\\ValidationException' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php', - 'JsonSchema\\Iterator\\ObjectIterator' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php', - 'JsonSchema\\Rfc3339' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php', - 'JsonSchema\\SchemaStorage' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php', - 'JsonSchema\\SchemaStorageInterface' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php', - 'JsonSchema\\UriResolverInterface' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php', - 'JsonSchema\\UriRetrieverInterface' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php', - 'JsonSchema\\Uri\\Retrievers\\AbstractRetriever' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php', - 'JsonSchema\\Uri\\Retrievers\\Curl' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php', - 'JsonSchema\\Uri\\Retrievers\\FileGetContents' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php', - 'JsonSchema\\Uri\\Retrievers\\PredefinedArray' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php', - 'JsonSchema\\Uri\\Retrievers\\UriRetrieverInterface' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php', - 'JsonSchema\\Uri\\UriResolver' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php', - 'JsonSchema\\Uri\\UriRetriever' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php', - 'JsonSchema\\Validator' => __DIR__ . '/..' . '/justinrainbow/json-schema/src/JsonSchema/Validator.php', - 'Language_Namespace' => __DIR__ . '/..' . '/wp-cli/language-command/src/Language_Namespace.php', - 'Media_Command' => __DIR__ . '/..' . '/wp-cli/media-command/src/Media_Command.php', - 'Menu_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Menu_Command.php', - 'Menu_Item_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Menu_Item_Command.php', - 'Menu_Location_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Menu_Location_Command.php', - 'MikeMcLin\\WpPassword\\Contracts\\WpPassword' => __DIR__ . '/..' . '/mikemclin/laravel-wp-password/src/Contracts/WpPassword.php', - 'MikeMcLin\\WpPassword\\Facades\\WpPassword' => __DIR__ . '/..' . '/mikemclin/laravel-wp-password/src/Facades/WpPassword.php', - 'MikeMcLin\\WpPassword\\WpPassword' => __DIR__ . '/..' . '/mikemclin/laravel-wp-password/src/WpPassword.php', - 'MikeMcLin\\WpPassword\\WpPasswordProvider' => __DIR__ . '/..' . '/mikemclin/laravel-wp-password/src/WpPasswordProvider.php', - 'Mustache_Autoloader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Autoloader.php', - 'Mustache_Cache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache.php', - 'Mustache_Cache_AbstractCache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache/AbstractCache.php', - 'Mustache_Cache_FilesystemCache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache/FilesystemCache.php', - 'Mustache_Cache_NoopCache' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Cache/NoopCache.php', - 'Mustache_Compiler' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Compiler.php', - 'Mustache_Context' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Context.php', - 'Mustache_Engine' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Engine.php', - 'Mustache_Exception' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception.php', - 'Mustache_Exception_InvalidArgumentException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/InvalidArgumentException.php', - 'Mustache_Exception_LogicException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/LogicException.php', - 'Mustache_Exception_RuntimeException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/RuntimeException.php', - 'Mustache_Exception_SyntaxException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/SyntaxException.php', - 'Mustache_Exception_UnknownFilterException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/UnknownFilterException.php', - 'Mustache_Exception_UnknownHelperException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/UnknownHelperException.php', - 'Mustache_Exception_UnknownTemplateException' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Exception/UnknownTemplateException.php', - 'Mustache_HelperCollection' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/HelperCollection.php', - 'Mustache_LambdaHelper' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/LambdaHelper.php', - 'Mustache_Loader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader.php', - 'Mustache_Loader_ArrayLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/ArrayLoader.php', - 'Mustache_Loader_CascadingLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/CascadingLoader.php', - 'Mustache_Loader_FilesystemLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/FilesystemLoader.php', - 'Mustache_Loader_InlineLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/InlineLoader.php', - 'Mustache_Loader_MutableLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/MutableLoader.php', - 'Mustache_Loader_ProductionFilesystemLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/ProductionFilesystemLoader.php', - 'Mustache_Loader_StringLoader' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Loader/StringLoader.php', - 'Mustache_Logger' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Logger.php', - 'Mustache_Logger_AbstractLogger' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Logger/AbstractLogger.php', - 'Mustache_Logger_StreamLogger' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Logger/StreamLogger.php', - 'Mustache_Parser' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Parser.php', - 'Mustache_Source' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Source.php', - 'Mustache_Source_FilesystemSource' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Source/FilesystemSource.php', - 'Mustache_Template' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Template.php', - 'Mustache_Tokenizer' => __DIR__ . '/..' . '/mustache/mustache/src/Mustache/Tokenizer.php', - 'Mustangostang\\Spyc' => __DIR__ . '/..' . '/wp-cli/mustangostang-spyc/src/Spyc.php', - 'MySQLDump' => __DIR__ . '/..' . '/dg/mysql-dump/src/MySQLDump.php', - 'MySQLImport' => __DIR__ . '/..' . '/dg/mysql-dump/src/MySQLImport.php', - 'Network_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Network_Meta_Command.php', - 'Network_Namespace' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Network_Namespace.php', - 'Option_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Option_Command.php', - 'Oxymel' => __DIR__ . '/..' . '/nb/oxymel/Oxymel.php', - 'OxymelException' => __DIR__ . '/..' . '/nb/oxymel/Oxymel.php', - 'OxymelTest' => __DIR__ . '/..' . '/nb/oxymel/OxymelTest.php', - 'PHPUnit\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Exception.php', - 'PHPUnit\\Framework\\Assert' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Assert.php', - 'PHPUnit\\Framework\\AssertionFailedError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/AssertionFailedError.php', - 'PHPUnit\\Framework\\CodeCoverageException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/CodeCoverageException.php', - 'PHPUnit\\Framework\\Constraint\\ArrayHasKey' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ArrayHasKey.php', - 'PHPUnit\\Framework\\Constraint\\ArraySubset' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ArraySubset.php', - 'PHPUnit\\Framework\\Constraint\\Attribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Attribute.php', - 'PHPUnit\\Framework\\Constraint\\Callback' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Callback.php', - 'PHPUnit\\Framework\\Constraint\\ClassHasAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ClassHasAttribute.php', - 'PHPUnit\\Framework\\Constraint\\ClassHasStaticAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ClassHasStaticAttribute.php', - 'PHPUnit\\Framework\\Constraint\\Composite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Composite.php', - 'PHPUnit\\Framework\\Constraint\\Constraint' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Constraint.php', - 'PHPUnit\\Framework\\Constraint\\Count' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Count.php', - 'PHPUnit\\Framework\\Constraint\\DirectoryExists' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/DirectoryExists.php', - 'PHPUnit\\Framework\\Constraint\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/Exception.php', - 'PHPUnit\\Framework\\Constraint\\ExceptionCode' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionCode.php', - 'PHPUnit\\Framework\\Constraint\\ExceptionMessage' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessage.php', - 'PHPUnit\\Framework\\Constraint\\ExceptionMessageRegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessageRegularExpression.php', - 'PHPUnit\\Framework\\Constraint\\FileExists' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/FileExists.php', - 'PHPUnit\\Framework\\Constraint\\GreaterThan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/GreaterThan.php', - 'PHPUnit\\Framework\\Constraint\\IsAnything' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php', - 'PHPUnit\\Framework\\Constraint\\IsEmpty' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsEmpty.php', - 'PHPUnit\\Framework\\Constraint\\IsEqual' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsEqual.php', - 'PHPUnit\\Framework\\Constraint\\IsFalse' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsFalse.php', - 'PHPUnit\\Framework\\Constraint\\IsFinite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsFinite.php', - 'PHPUnit\\Framework\\Constraint\\IsIdentical' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php', - 'PHPUnit\\Framework\\Constraint\\IsInfinite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsInfinite.php', - 'PHPUnit\\Framework\\Constraint\\IsInstanceOf' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsInstanceOf.php', - 'PHPUnit\\Framework\\Constraint\\IsJson' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsJson.php', - 'PHPUnit\\Framework\\Constraint\\IsNan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsNan.php', - 'PHPUnit\\Framework\\Constraint\\IsNull' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsNull.php', - 'PHPUnit\\Framework\\Constraint\\IsReadable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsReadable.php', - 'PHPUnit\\Framework\\Constraint\\IsTrue' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsTrue.php', - 'PHPUnit\\Framework\\Constraint\\IsType' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsType.php', - 'PHPUnit\\Framework\\Constraint\\IsWritable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/IsWritable.php', - 'PHPUnit\\Framework\\Constraint\\JsonMatches' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php', - 'PHPUnit\\Framework\\Constraint\\JsonMatchesErrorMessageProvider' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/JsonMatchesErrorMessageProvider.php', - 'PHPUnit\\Framework\\Constraint\\LessThan' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LessThan.php', - 'PHPUnit\\Framework\\Constraint\\LogicalAnd' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalAnd.php', - 'PHPUnit\\Framework\\Constraint\\LogicalNot' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalNot.php', - 'PHPUnit\\Framework\\Constraint\\LogicalOr' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalOr.php', - 'PHPUnit\\Framework\\Constraint\\LogicalXor' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/LogicalXor.php', - 'PHPUnit\\Framework\\Constraint\\ObjectHasAttribute' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/ObjectHasAttribute.php', - 'PHPUnit\\Framework\\Constraint\\RegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/RegularExpression.php', - 'PHPUnit\\Framework\\Constraint\\SameSize' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/SameSize.php', - 'PHPUnit\\Framework\\Constraint\\StringContains' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringContains.php', - 'PHPUnit\\Framework\\Constraint\\StringEndsWith' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringEndsWith.php', - 'PHPUnit\\Framework\\Constraint\\StringMatchesFormatDescription' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringMatchesFormatDescription.php', - 'PHPUnit\\Framework\\Constraint\\StringStartsWith' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/StringStartsWith.php', - 'PHPUnit\\Framework\\Constraint\\TraversableContains' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/TraversableContains.php', - 'PHPUnit\\Framework\\Constraint\\TraversableContainsOnly' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Constraint/TraversableContainsOnly.php', - 'PHPUnit\\Framework\\CoveredCodeNotExecutedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/CoveredCodeNotExecutedException.php', - 'PHPUnit\\Framework\\DataProviderTestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/DataProviderTestSuite.php', - 'PHPUnit\\Framework\\Error\\Deprecated' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Deprecated.php', - 'PHPUnit\\Framework\\Error\\Error' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Error.php', - 'PHPUnit\\Framework\\Error\\Notice' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Notice.php', - 'PHPUnit\\Framework\\Error\\Warning' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Error/Warning.php', - 'PHPUnit\\Framework\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception.php', - 'PHPUnit\\Framework\\ExceptionWrapper' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php', - 'PHPUnit\\Framework\\ExpectationFailedException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/ExpectationFailedException.php', - 'PHPUnit\\Framework\\IncompleteTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTest.php', - 'PHPUnit\\Framework\\IncompleteTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php', - 'PHPUnit\\Framework\\IncompleteTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/IncompleteTestError.php', - 'PHPUnit\\Framework\\InvalidCoversTargetException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php', - 'PHPUnit\\Framework\\MissingCoversAnnotationException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MissingCoversAnnotationException.php', - 'PHPUnit\\Framework\\MockObject\\BadMethodCallException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.php', - 'PHPUnit\\Framework\\MockObject\\Builder\\Identity' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/Identity.php', - 'PHPUnit\\Framework\\MockObject\\Builder\\InvocationMocker' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/InvocationMocker.php', - 'PHPUnit\\Framework\\MockObject\\Builder\\Match' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/Match.php', - 'PHPUnit\\Framework\\MockObject\\Builder\\MethodNameMatch' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/MethodNameMatch.php', - 'PHPUnit\\Framework\\MockObject\\Builder\\NamespaceMatch' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/NamespaceMatch.php', - 'PHPUnit\\Framework\\MockObject\\Builder\\ParametersMatch' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/ParametersMatch.php', - 'PHPUnit\\Framework\\MockObject\\Builder\\Stub' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Builder/Stub.php', - 'PHPUnit\\Framework\\MockObject\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php', - 'PHPUnit\\Framework\\MockObject\\Generator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Generator.php', - 'PHPUnit\\Framework\\MockObject\\Invocation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Invocation/Invocation.php', - 'PHPUnit\\Framework\\MockObject\\InvocationMocker' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/InvocationMocker.php', - 'PHPUnit\\Framework\\MockObject\\Invocation\\ObjectInvocation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Invocation/ObjectInvocation.php', - 'PHPUnit\\Framework\\MockObject\\Invocation\\StaticInvocation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Invocation/StaticInvocation.php', - 'PHPUnit\\Framework\\MockObject\\Invokable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Invokable.php', - 'PHPUnit\\Framework\\MockObject\\Matcher' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\AnyInvokedCount' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/AnyInvokedCount.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\AnyParameters' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/AnyParameters.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\ConsecutiveParameters' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/ConsecutiveParameters.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\DeferredError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/DeferredError.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\Invocation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/Invocation.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtIndex' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtIndex.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastCount' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtLeastCount.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtLeastOnce' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtLeastOnce.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedAtMostCount' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedAtMostCount.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedCount' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedCount.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\InvokedRecorder' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/InvokedRecorder.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\MethodName' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/MethodName.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\Parameters' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/Parameters.php', - 'PHPUnit\\Framework\\MockObject\\Matcher\\StatelessInvocation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Matcher/StatelessInvocation.php', - 'PHPUnit\\Framework\\MockObject\\MockBuilder' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockBuilder.php', - 'PHPUnit\\Framework\\MockObject\\MockMethod' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockMethod.php', - 'PHPUnit\\Framework\\MockObject\\MockMethodSet' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockMethodSet.php', - 'PHPUnit\\Framework\\MockObject\\MockObject' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/ForwardCompatibility/MockObject.php', - 'PHPUnit\\Framework\\MockObject\\RuntimeException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php', - 'PHPUnit\\Framework\\MockObject\\Stub' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\ConsecutiveCalls' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ConsecutiveCalls.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/Exception.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\MatcherCollection' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/MatcherCollection.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnArgument' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnArgument.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnCallback' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnCallback.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnReference' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnReference.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnSelf' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnSelf.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnStub' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnStub.php', - 'PHPUnit\\Framework\\MockObject\\Stub\\ReturnValueMap' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Stub/ReturnValueMap.php', - 'PHPUnit\\Framework\\MockObject\\Verifiable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Verifiable.php', - 'PHPUnit\\Framework\\OutputError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/OutputError.php', - 'PHPUnit\\Framework\\RiskyTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/RiskyTest.php', - 'PHPUnit\\Framework\\RiskyTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/RiskyTestError.php', - 'PHPUnit\\Framework\\SelfDescribing' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SelfDescribing.php', - 'PHPUnit\\Framework\\SkippedTest' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTest.php', - 'PHPUnit\\Framework\\SkippedTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestCase.php', - 'PHPUnit\\Framework\\SkippedTestError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestError.php', - 'PHPUnit\\Framework\\SkippedTestSuiteError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php', - 'PHPUnit\\Framework\\SyntheticError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SyntheticError.php', - 'PHPUnit\\Framework\\Test' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Test.php', - 'PHPUnit\\Framework\\TestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestCase.php', - 'PHPUnit\\Framework\\TestFailure' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestFailure.php', - 'PHPUnit\\Framework\\TestListener' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestListener.php', - 'PHPUnit\\Framework\\TestListenerDefaultImplementation' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestListenerDefaultImplementation.php', - 'PHPUnit\\Framework\\TestResult' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestResult.php', - 'PHPUnit\\Framework\\TestSuite' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestSuite.php', - 'PHPUnit\\Framework\\TestSuiteIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/TestSuiteIterator.php', - 'PHPUnit\\Framework\\UnintentionallyCoveredCodeError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/UnintentionallyCoveredCodeError.php', - 'PHPUnit\\Framework\\Warning' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Warning.php', - 'PHPUnit\\Framework\\WarningTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/WarningTestCase.php', - 'PHPUnit\\Runner\\AfterIncompleteTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterIncompleteTestHook.php', - 'PHPUnit\\Runner\\AfterLastTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterLastTestHook.php', - 'PHPUnit\\Runner\\AfterRiskyTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterRiskyTestHook.php', - 'PHPUnit\\Runner\\AfterSkippedTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterSkippedTestHook.php', - 'PHPUnit\\Runner\\AfterSuccessfulTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterSuccessfulTestHook.php', - 'PHPUnit\\Runner\\AfterTestErrorHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterTestErrorHook.php', - 'PHPUnit\\Runner\\AfterTestFailureHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterTestFailureHook.php', - 'PHPUnit\\Runner\\AfterTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterTestHook.php', - 'PHPUnit\\Runner\\AfterTestWarningHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/AfterTestWarningHook.php', - 'PHPUnit\\Runner\\BaseTestRunner' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/BaseTestRunner.php', - 'PHPUnit\\Runner\\BeforeFirstTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/BeforeFirstTestHook.php', - 'PHPUnit\\Runner\\BeforeTestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/BeforeTestHook.php', - 'PHPUnit\\Runner\\Exception' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Exception.php', - 'PHPUnit\\Runner\\Filter\\ExcludeGroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php', - 'PHPUnit\\Runner\\Filter\\Factory' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/Factory.php', - 'PHPUnit\\Runner\\Filter\\GroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php', - 'PHPUnit\\Runner\\Filter\\IncludeGroupFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php', - 'PHPUnit\\Runner\\Filter\\NameFilterIterator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php', - 'PHPUnit\\Runner\\Hook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/Hook.php', - 'PHPUnit\\Runner\\NullTestResultCache' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/NullTestResultCache.php', - 'PHPUnit\\Runner\\PhptTestCase' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/PhptTestCase.php', - 'PHPUnit\\Runner\\ResultCacheExtension' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/ResultCacheExtension.php', - 'PHPUnit\\Runner\\StandardTestSuiteLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php', - 'PHPUnit\\Runner\\TestHook' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/TestHook.php', - 'PHPUnit\\Runner\\TestListenerAdapter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Hook/TestListenerAdapter.php', - 'PHPUnit\\Runner\\TestResultCache' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestResultCache.php', - 'PHPUnit\\Runner\\TestResultCacheInterface' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestResultCacheInterface.php', - 'PHPUnit\\Runner\\TestSuiteLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php', - 'PHPUnit\\Runner\\TestSuiteSorter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/TestSuiteSorter.php', - 'PHPUnit\\Runner\\Version' => __DIR__ . '/..' . '/phpunit/phpunit/src/Runner/Version.php', - 'PHPUnit\\TextUI\\Command' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/Command.php', - 'PHPUnit\\TextUI\\ResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/ResultPrinter.php', - 'PHPUnit\\TextUI\\TestRunner' => __DIR__ . '/..' . '/phpunit/phpunit/src/TextUI/TestRunner.php', - 'PHPUnit\\Util\\Blacklist' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Blacklist.php', - 'PHPUnit\\Util\\Configuration' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Configuration.php', - 'PHPUnit\\Util\\ConfigurationGenerator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/ConfigurationGenerator.php', - 'PHPUnit\\Util\\ErrorHandler' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/ErrorHandler.php', - 'PHPUnit\\Util\\FileLoader' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/FileLoader.php', - 'PHPUnit\\Util\\Filesystem' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Filesystem.php', - 'PHPUnit\\Util\\Filter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Filter.php', - 'PHPUnit\\Util\\Getopt' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Getopt.php', - 'PHPUnit\\Util\\GlobalState' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/GlobalState.php', - 'PHPUnit\\Util\\InvalidArgumentHelper' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/InvalidArgumentHelper.php', - 'PHPUnit\\Util\\Json' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Json.php', - 'PHPUnit\\Util\\Log\\JUnit' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Log/JUnit.php', - 'PHPUnit\\Util\\Log\\TeamCity' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Log/TeamCity.php', - 'PHPUnit\\Util\\PHP\\AbstractPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/AbstractPhpProcess.php', - 'PHPUnit\\Util\\PHP\\DefaultPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/DefaultPhpProcess.php', - 'PHPUnit\\Util\\PHP\\WindowsPhpProcess' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/PHP/WindowsPhpProcess.php', - 'PHPUnit\\Util\\Printer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Printer.php', - 'PHPUnit\\Util\\RegularExpression' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/RegularExpression.php', - 'PHPUnit\\Util\\Test' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Test.php', - 'PHPUnit\\Util\\TestDox\\CliTestDoxPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/CliTestDoxPrinter.php', - 'PHPUnit\\Util\\TestDox\\HtmlResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/HtmlResultPrinter.php', - 'PHPUnit\\Util\\TestDox\\NamePrettifier' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php', - 'PHPUnit\\Util\\TestDox\\ResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php', - 'PHPUnit\\Util\\TestDox\\TestResult' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/TestResult.php', - 'PHPUnit\\Util\\TestDox\\TextResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/TextResultPrinter.php', - 'PHPUnit\\Util\\TestDox\\XmlResultPrinter' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TestDox/XmlResultPrinter.php', - 'PHPUnit\\Util\\TextTestListRenderer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/TextTestListRenderer.php', - 'PHPUnit\\Util\\Type' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Type.php', - 'PHPUnit\\Util\\XdebugFilterScriptGenerator' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/XdebugFilterScriptGenerator.php', - 'PHPUnit\\Util\\Xml' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/Xml.php', - 'PHPUnit\\Util\\XmlTestListRenderer' => __DIR__ . '/..' . '/phpunit/phpunit/src/Util/XmlTestListRenderer.php', - 'PHPUnit_Framework_MockObject_MockObject' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/MockObject.php', - 'PHP_Token' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_TokenWithScope' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_TokenWithScopeAndVisibility' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ABSTRACT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_AMPERSAND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_AND_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ARRAY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ARRAY_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_AS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_AT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BACKTICK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BAD_CHARACTER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BOOLEAN_AND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BOOLEAN_OR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BOOL_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_BREAK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CALLABLE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CARET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CASE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CATCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CHARACTER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLASS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLASS_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLASS_NAME_CONSTANT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLONE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLOSE_BRACKET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLOSE_CURLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLOSE_SQUARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CLOSE_TAG' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COALESCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COMMA' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_COMMENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CONCAT_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CONST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CONSTANT_ENCAPSED_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CONTINUE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_CURLY_OPEN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DEC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DECLARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DEFAULT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DIR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DIV' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DIV_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DNUMBER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOC_COMMENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOLLAR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOLLAR_OPEN_CURLY_BRACES' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOUBLE_ARROW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOUBLE_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOUBLE_COLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_DOUBLE_QUOTES' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ECHO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ELLIPSIS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ELSE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ELSEIF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EMPTY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENCAPSED_AND_WHITESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDDECLARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDFOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDFOREACH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDIF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDSWITCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ENDWHILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_END_HEREDOC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EVAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EXCLAMATION_MARK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EXIT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_EXTENDS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FINAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FINALLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FOREACH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FUNCTION' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_FUNC_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_GLOBAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_GOTO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_GT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_HALT_COMPILER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IMPLEMENTS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INCLUDE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INCLUDE_ONCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INLINE_HTML' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INSTANCEOF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INSTEADOF' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INTERFACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_INT_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_ISSET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_GREATER_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_IDENTICAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_NOT_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_NOT_IDENTICAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_IS_SMALLER_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_Includes' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LINE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LIST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LNUMBER' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LOGICAL_AND' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LOGICAL_OR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LOGICAL_XOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_LT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_METHOD_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MINUS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MINUS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MOD_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MULT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_MUL_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NAMESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NEW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NS_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NS_SEPARATOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_NUM_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OBJECT_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OBJECT_OPERATOR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_BRACKET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_CURLY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_SQUARE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_TAG' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OPEN_TAG_WITH_ECHO' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_OR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PAAMAYIM_NEKUDOTAYIM' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PERCENT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PIPE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PLUS' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PLUS_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_POW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_POW_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PRINT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PRIVATE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PROTECTED' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_PUBLIC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_QUESTION_MARK' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_REQUIRE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_REQUIRE_ONCE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_RETURN' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SEMICOLON' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SL_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SPACESHIP' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_START_HEREDOC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_STATIC' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_STRING' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_STRING_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_STRING_VARNAME' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_SWITCH' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_Stream' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token/Stream.php', - 'PHP_Token_Stream_CachingFactory' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php', - 'PHP_Token_THROW' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TILDE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TRAIT' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TRAIT_C' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_TRY' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_UNSET' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_UNSET_CAST' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_USE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_USE_FUNCTION' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_VAR' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_VARIABLE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_WHILE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_WHITESPACE' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_XOR_EQUAL' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_YIELD' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'PHP_Token_YIELD_FROM' => __DIR__ . '/..' . '/phpunit/php-token-stream/src/Token.php', - 'Package_Command' => __DIR__ . '/..' . '/wp-cli/package-command/src/Package_Command.php', - 'Peast\\Formatter\\Base' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Formatter/Base.php', - 'Peast\\Formatter\\Compact' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Formatter/Compact.php', - 'Peast\\Formatter\\Expanded' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Formatter/Expanded.php', - 'Peast\\Formatter\\PrettyPrint' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Formatter/PrettyPrint.php', - 'Peast\\Peast' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Peast.php', - 'Peast\\Renderer' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Renderer.php', - 'Peast\\Syntax\\CommentsRegistry' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/CommentsRegistry.php', - 'Peast\\Syntax\\ES2015\\Parser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2015/Parser.php', - 'Peast\\Syntax\\ES2015\\Scanner' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2015/Scanner.php', - 'Peast\\Syntax\\ES2016\\Parser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2016/Parser.php', - 'Peast\\Syntax\\ES2016\\Scanner' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2016/Scanner.php', - 'Peast\\Syntax\\ES2017\\Parser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2017/Parser.php', - 'Peast\\Syntax\\ES2017\\Scanner' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2017/Scanner.php', - 'Peast\\Syntax\\ES2018\\Parser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2018/Parser.php', - 'Peast\\Syntax\\ES2018\\Scanner' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2018/Scanner.php', - 'Peast\\Syntax\\ES2019\\Parser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2019/Parser.php', - 'Peast\\Syntax\\ES2019\\Scanner' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/ES2019/Scanner.php', - 'Peast\\Syntax\\EventsEmitter' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/EventsEmitter.php', - 'Peast\\Syntax\\Exception' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Exception.php', - 'Peast\\Syntax\\JSX\\Parser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/JSX/Parser.php', - 'Peast\\Syntax\\JSX\\Scanner' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/JSX/Scanner.php', - 'Peast\\Syntax\\LSM' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/LSM.php', - 'Peast\\Syntax\\Node\\ArrayExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ArrayExpression.php', - 'Peast\\Syntax\\Node\\ArrayPattern' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ArrayPattern.php', - 'Peast\\Syntax\\Node\\ArrowFunctionExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ArrowFunctionExpression.php', - 'Peast\\Syntax\\Node\\AssignmentExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/AssignmentExpression.php', - 'Peast\\Syntax\\Node\\AssignmentPattern' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/AssignmentPattern.php', - 'Peast\\Syntax\\Node\\AssignmentProperty' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/AssignmentProperty.php', - 'Peast\\Syntax\\Node\\AwaitExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/AwaitExpression.php', - 'Peast\\Syntax\\Node\\BinaryExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/BinaryExpression.php', - 'Peast\\Syntax\\Node\\BlockStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/BlockStatement.php', - 'Peast\\Syntax\\Node\\BooleanLiteral' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/BooleanLiteral.php', - 'Peast\\Syntax\\Node\\BreakStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/BreakStatement.php', - 'Peast\\Syntax\\Node\\CallExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/CallExpression.php', - 'Peast\\Syntax\\Node\\CatchClause' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/CatchClause.php', - 'Peast\\Syntax\\Node\\ClassBody' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ClassBody.php', - 'Peast\\Syntax\\Node\\ClassDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ClassDeclaration.php', - 'Peast\\Syntax\\Node\\ClassExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ClassExpression.php', - 'Peast\\Syntax\\Node\\Class_' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Class_.php', - 'Peast\\Syntax\\Node\\Comment' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Comment.php', - 'Peast\\Syntax\\Node\\ConditionalExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ConditionalExpression.php', - 'Peast\\Syntax\\Node\\ContinueStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ContinueStatement.php', - 'Peast\\Syntax\\Node\\DebuggerStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/DebuggerStatement.php', - 'Peast\\Syntax\\Node\\Declaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Declaration.php', - 'Peast\\Syntax\\Node\\DoWhileStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/DoWhileStatement.php', - 'Peast\\Syntax\\Node\\EmptyStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/EmptyStatement.php', - 'Peast\\Syntax\\Node\\ExportAllDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ExportAllDeclaration.php', - 'Peast\\Syntax\\Node\\ExportDefaultDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ExportDefaultDeclaration.php', - 'Peast\\Syntax\\Node\\ExportNamedDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ExportNamedDeclaration.php', - 'Peast\\Syntax\\Node\\ExportSpecifier' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ExportSpecifier.php', - 'Peast\\Syntax\\Node\\Expression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Expression.php', - 'Peast\\Syntax\\Node\\ExpressionStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ExpressionStatement.php', - 'Peast\\Syntax\\Node\\ForInStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ForInStatement.php', - 'Peast\\Syntax\\Node\\ForOfStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ForOfStatement.php', - 'Peast\\Syntax\\Node\\ForStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ForStatement.php', - 'Peast\\Syntax\\Node\\FunctionDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/FunctionDeclaration.php', - 'Peast\\Syntax\\Node\\FunctionExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/FunctionExpression.php', - 'Peast\\Syntax\\Node\\Function_' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Function_.php', - 'Peast\\Syntax\\Node\\Identifier' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Identifier.php', - 'Peast\\Syntax\\Node\\IfStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/IfStatement.php', - 'Peast\\Syntax\\Node\\ImportDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ImportDeclaration.php', - 'Peast\\Syntax\\Node\\ImportDefaultSpecifier' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ImportDefaultSpecifier.php', - 'Peast\\Syntax\\Node\\ImportNamespaceSpecifier' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ImportNamespaceSpecifier.php', - 'Peast\\Syntax\\Node\\ImportSpecifier' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ImportSpecifier.php', - 'Peast\\Syntax\\Node\\JSX\\JSXAttribute' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXAttribute.php', - 'Peast\\Syntax\\Node\\JSX\\JSXBoundaryElement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXBoundaryElement.php', - 'Peast\\Syntax\\Node\\JSX\\JSXClosingElement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXClosingElement.php', - 'Peast\\Syntax\\Node\\JSX\\JSXClosingFragment' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXClosingFragment.php', - 'Peast\\Syntax\\Node\\JSX\\JSXElement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXElement.php', - 'Peast\\Syntax\\Node\\JSX\\JSXEmptyExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXEmptyExpression.php', - 'Peast\\Syntax\\Node\\JSX\\JSXExpressionContainer' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXExpressionContainer.php', - 'Peast\\Syntax\\Node\\JSX\\JSXFragment' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXFragment.php', - 'Peast\\Syntax\\Node\\JSX\\JSXIdentifier' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXIdentifier.php', - 'Peast\\Syntax\\Node\\JSX\\JSXMemberExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXMemberExpression.php', - 'Peast\\Syntax\\Node\\JSX\\JSXNamespacedName' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXNamespacedName.php', - 'Peast\\Syntax\\Node\\JSX\\JSXOpeningElement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXOpeningElement.php', - 'Peast\\Syntax\\Node\\JSX\\JSXOpeningFragment' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXOpeningFragment.php', - 'Peast\\Syntax\\Node\\JSX\\JSXSpreadAttribute' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXSpreadAttribute.php', - 'Peast\\Syntax\\Node\\JSX\\JSXSpreadChild' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXSpreadChild.php', - 'Peast\\Syntax\\Node\\JSX\\JSXText' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXText.php', - 'Peast\\Syntax\\Node\\LabeledStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/LabeledStatement.php', - 'Peast\\Syntax\\Node\\Literal' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Literal.php', - 'Peast\\Syntax\\Node\\LogicalExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/LogicalExpression.php', - 'Peast\\Syntax\\Node\\MemberExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/MemberExpression.php', - 'Peast\\Syntax\\Node\\MetaProperty' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/MetaProperty.php', - 'Peast\\Syntax\\Node\\MethodDefinition' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/MethodDefinition.php', - 'Peast\\Syntax\\Node\\ModuleDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ModuleDeclaration.php', - 'Peast\\Syntax\\Node\\ModuleSpecifier' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ModuleSpecifier.php', - 'Peast\\Syntax\\Node\\NewExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/NewExpression.php', - 'Peast\\Syntax\\Node\\Node' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Node.php', - 'Peast\\Syntax\\Node\\NullLiteral' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/NullLiteral.php', - 'Peast\\Syntax\\Node\\NumericLiteral' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/NumericLiteral.php', - 'Peast\\Syntax\\Node\\ObjectExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ObjectExpression.php', - 'Peast\\Syntax\\Node\\ObjectPattern' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ObjectPattern.php', - 'Peast\\Syntax\\Node\\ParenthesizedExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ParenthesizedExpression.php', - 'Peast\\Syntax\\Node\\Pattern' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Pattern.php', - 'Peast\\Syntax\\Node\\Program' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Program.php', - 'Peast\\Syntax\\Node\\Property' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Property.php', - 'Peast\\Syntax\\Node\\RegExpLiteral' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/RegExpLiteral.php', - 'Peast\\Syntax\\Node\\RestElement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/RestElement.php', - 'Peast\\Syntax\\Node\\ReturnStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ReturnStatement.php', - 'Peast\\Syntax\\Node\\SequenceExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/SequenceExpression.php', - 'Peast\\Syntax\\Node\\SpreadElement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/SpreadElement.php', - 'Peast\\Syntax\\Node\\Statement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Statement.php', - 'Peast\\Syntax\\Node\\StringLiteral' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/StringLiteral.php', - 'Peast\\Syntax\\Node\\Super' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/Super.php', - 'Peast\\Syntax\\Node\\SwitchCase' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/SwitchCase.php', - 'Peast\\Syntax\\Node\\SwitchStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/SwitchStatement.php', - 'Peast\\Syntax\\Node\\TaggedTemplateExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/TaggedTemplateExpression.php', - 'Peast\\Syntax\\Node\\TemplateElement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/TemplateElement.php', - 'Peast\\Syntax\\Node\\TemplateLiteral' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/TemplateLiteral.php', - 'Peast\\Syntax\\Node\\ThisExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ThisExpression.php', - 'Peast\\Syntax\\Node\\ThrowStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/ThrowStatement.php', - 'Peast\\Syntax\\Node\\TryStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/TryStatement.php', - 'Peast\\Syntax\\Node\\UnaryExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/UnaryExpression.php', - 'Peast\\Syntax\\Node\\UpdateExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/UpdateExpression.php', - 'Peast\\Syntax\\Node\\VariableDeclaration' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/VariableDeclaration.php', - 'Peast\\Syntax\\Node\\VariableDeclarator' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/VariableDeclarator.php', - 'Peast\\Syntax\\Node\\WhileStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/WhileStatement.php', - 'Peast\\Syntax\\Node\\WithStatement' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/WithStatement.php', - 'Peast\\Syntax\\Node\\YieldExpression' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Node/YieldExpression.php', - 'Peast\\Syntax\\Parser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Parser.php', - 'Peast\\Syntax\\Position' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Position.php', - 'Peast\\Syntax\\Scanner' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Scanner.php', - 'Peast\\Syntax\\SourceLocation' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/SourceLocation.php', - 'Peast\\Syntax\\Token' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Token.php', - 'Peast\\Syntax\\Utils' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Syntax/Utils.php', - 'Peast\\Traverser' => __DIR__ . '/..' . '/mck89/peast/lib/Peast/Traverser.php', - 'Peast\\test\\PeastTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/PeastTest.php', - 'Peast\\test\\Syntax\\CommentsRegistryTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/CommentsRegistryTest.php', - 'Peast\\test\\Syntax\\ES2015\\ES2015Test' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/ES2015/ES2015Test.php', - 'Peast\\test\\Syntax\\ES2016\\ES2016Test' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/ES2016/ES2016Test.php', - 'Peast\\test\\Syntax\\ES2017\\ES2017Test' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/ES2017/ES2017Test.php', - 'Peast\\test\\Syntax\\ES2018\\ES2018Test' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/ES2018/ES2018Test.php', - 'Peast\\test\\Syntax\\ES2019\\ES2019Test' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/ES2019/ES2019Test.php', - 'Peast\\test\\Syntax\\Node\\BooleanLiteralTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/Node/BooleanLiteralTest.php', - 'Peast\\test\\Syntax\\Node\\CommentTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/Node/CommentTest.php', - 'Peast\\test\\Syntax\\Node\\NullLiteralTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/Node/NullLiteralTest.php', - 'Peast\\test\\Syntax\\Node\\NumericLiteralTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/Node/NumericLiteralTest.php', - 'Peast\\test\\Syntax\\Node\\StringLiteralTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/Syntax/Node/StringLiteralTest.php', - 'Peast\\test\\TestBase' => __DIR__ . '/..' . '/mck89/peast/test/Peast/TestBase.php', - 'Peast\\test\\TestCaseBase' => __DIR__ . '/..' . '/mck89/peast/test/Peast/TestCaseBase.php', - 'Peast\\test\\Traverser\\RendererTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/RendererTest.php', - 'Peast\\test\\Traverser\\TraverserTest' => __DIR__ . '/..' . '/mck89/peast/test/Peast/TraverserTest.php', - 'PharIo\\Manifest\\Application' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Application.php', - 'PharIo\\Manifest\\ApplicationName' => __DIR__ . '/..' . '/phar-io/manifest/src/values/ApplicationName.php', - 'PharIo\\Manifest\\Author' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Author.php', - 'PharIo\\Manifest\\AuthorCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/AuthorCollection.php', - 'PharIo\\Manifest\\AuthorCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/AuthorCollectionIterator.php', - 'PharIo\\Manifest\\AuthorElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/AuthorElement.php', - 'PharIo\\Manifest\\AuthorElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/AuthorElementCollection.php', - 'PharIo\\Manifest\\BundledComponent' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponent.php', - 'PharIo\\Manifest\\BundledComponentCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponentCollection.php', - 'PharIo\\Manifest\\BundledComponentCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/BundledComponentCollectionIterator.php', - 'PharIo\\Manifest\\BundlesElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/BundlesElement.php', - 'PharIo\\Manifest\\ComponentElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ComponentElement.php', - 'PharIo\\Manifest\\ComponentElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ComponentElementCollection.php', - 'PharIo\\Manifest\\ContainsElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ContainsElement.php', - 'PharIo\\Manifest\\CopyrightElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/CopyrightElement.php', - 'PharIo\\Manifest\\CopyrightInformation' => __DIR__ . '/..' . '/phar-io/manifest/src/values/CopyrightInformation.php', - 'PharIo\\Manifest\\ElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ElementCollection.php', - 'PharIo\\Manifest\\Email' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Email.php', - 'PharIo\\Manifest\\Exception' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/Exception.php', - 'PharIo\\Manifest\\ExtElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtElement.php', - 'PharIo\\Manifest\\ExtElementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtElementCollection.php', - 'PharIo\\Manifest\\Extension' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Extension.php', - 'PharIo\\Manifest\\ExtensionElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ExtensionElement.php', - 'PharIo\\Manifest\\InvalidApplicationNameException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php', - 'PharIo\\Manifest\\InvalidEmailException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidEmailException.php', - 'PharIo\\Manifest\\InvalidUrlException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/InvalidUrlException.php', - 'PharIo\\Manifest\\Library' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Library.php', - 'PharIo\\Manifest\\License' => __DIR__ . '/..' . '/phar-io/manifest/src/values/License.php', - 'PharIo\\Manifest\\LicenseElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/LicenseElement.php', - 'PharIo\\Manifest\\Manifest' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Manifest.php', - 'PharIo\\Manifest\\ManifestDocument' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ManifestDocument.php', - 'PharIo\\Manifest\\ManifestDocumentException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestDocumentException.php', - 'PharIo\\Manifest\\ManifestDocumentLoadingException' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ManifestDocumentLoadingException.php', - 'PharIo\\Manifest\\ManifestDocumentMapper' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestDocumentMapper.php', - 'PharIo\\Manifest\\ManifestDocumentMapperException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php', - 'PharIo\\Manifest\\ManifestElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/ManifestElement.php', - 'PharIo\\Manifest\\ManifestElementException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestElementException.php', - 'PharIo\\Manifest\\ManifestLoader' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestLoader.php', - 'PharIo\\Manifest\\ManifestLoaderException' => __DIR__ . '/..' . '/phar-io/manifest/src/exceptions/ManifestLoaderException.php', - 'PharIo\\Manifest\\ManifestSerializer' => __DIR__ . '/..' . '/phar-io/manifest/src/ManifestSerializer.php', - 'PharIo\\Manifest\\PhpElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/PhpElement.php', - 'PharIo\\Manifest\\PhpExtensionRequirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/PhpExtensionRequirement.php', - 'PharIo\\Manifest\\PhpVersionRequirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/PhpVersionRequirement.php', - 'PharIo\\Manifest\\Requirement' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Requirement.php', - 'PharIo\\Manifest\\RequirementCollection' => __DIR__ . '/..' . '/phar-io/manifest/src/values/RequirementCollection.php', - 'PharIo\\Manifest\\RequirementCollectionIterator' => __DIR__ . '/..' . '/phar-io/manifest/src/values/RequirementCollectionIterator.php', - 'PharIo\\Manifest\\RequiresElement' => __DIR__ . '/..' . '/phar-io/manifest/src/xml/RequiresElement.php', - 'PharIo\\Manifest\\Type' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Type.php', - 'PharIo\\Manifest\\Url' => __DIR__ . '/..' . '/phar-io/manifest/src/values/Url.php', - 'PharIo\\Version\\AbstractVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/AbstractVersionConstraint.php', - 'PharIo\\Version\\AndVersionConstraintGroup' => __DIR__ . '/..' . '/phar-io/version/src/constraints/AndVersionConstraintGroup.php', - 'PharIo\\Version\\AnyVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/AnyVersionConstraint.php', - 'PharIo\\Version\\ExactVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/ExactVersionConstraint.php', - 'PharIo\\Version\\Exception' => __DIR__ . '/..' . '/phar-io/version/src/exceptions/Exception.php', - 'PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/GreaterThanOrEqualToVersionConstraint.php', - 'PharIo\\Version\\InvalidPreReleaseSuffixException' => __DIR__ . '/..' . '/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.php', - 'PharIo\\Version\\InvalidVersionException' => __DIR__ . '/..' . '/phar-io/version/src/exceptions/InvalidVersionException.php', - 'PharIo\\Version\\OrVersionConstraintGroup' => __DIR__ . '/..' . '/phar-io/version/src/constraints/OrVersionConstraintGroup.php', - 'PharIo\\Version\\PreReleaseSuffix' => __DIR__ . '/..' . '/phar-io/version/src/PreReleaseSuffix.php', - 'PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/SpecificMajorAndMinorVersionConstraint.php', - 'PharIo\\Version\\SpecificMajorVersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/SpecificMajorVersionConstraint.php', - 'PharIo\\Version\\UnsupportedVersionConstraintException' => __DIR__ . '/..' . '/phar-io/version/src/exceptions/UnsupportedVersionConstraintException.php', - 'PharIo\\Version\\Version' => __DIR__ . '/..' . '/phar-io/version/src/Version.php', - 'PharIo\\Version\\VersionConstraint' => __DIR__ . '/..' . '/phar-io/version/src/constraints/VersionConstraint.php', - 'PharIo\\Version\\VersionConstraintParser' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintParser.php', - 'PharIo\\Version\\VersionConstraintValue' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintValue.php', - 'PharIo\\Version\\VersionNumber' => __DIR__ . '/..' . '/phar-io/version/src/VersionNumber.php', - 'PhpOption\\LazyOption' => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption/LazyOption.php', - 'PhpOption\\None' => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption/None.php', - 'PhpOption\\Option' => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption/Option.php', - 'PhpOption\\Some' => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption/Some.php', - 'Plugin_Command' => __DIR__ . '/..' . '/wp-cli/extension-command/src/Plugin_Command.php', - 'Plugin_Command_Namespace' => __DIR__ . '/..' . '/wp-cli/checksum-command/src/Plugin_Command_Namespace.php', - 'Plugin_Language_Command' => __DIR__ . '/..' . '/wp-cli/language-command/src/Plugin_Language_Command.php', - 'Post_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Command.php', - 'Post_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Meta_Command.php', - 'Post_Term_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Term_Command.php', - 'Post_Type_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Post_Type_Command.php', - 'Prophecy\\Argument' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument.php', - 'Prophecy\\Argument\\ArgumentsWildcard' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/ArgumentsWildcard.php', - 'Prophecy\\Argument\\Token\\AnyValueToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValueToken.php', - 'Prophecy\\Argument\\Token\\AnyValuesToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php', - 'Prophecy\\Argument\\Token\\ApproximateValueToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ApproximateValueToken.php', - 'Prophecy\\Argument\\Token\\ArrayCountToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayCountToken.php', - 'Prophecy\\Argument\\Token\\ArrayEntryToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEntryToken.php', - 'Prophecy\\Argument\\Token\\ArrayEveryEntryToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEveryEntryToken.php', - 'Prophecy\\Argument\\Token\\CallbackToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/CallbackToken.php', - 'Prophecy\\Argument\\Token\\ExactValueToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ExactValueToken.php', - 'Prophecy\\Argument\\Token\\IdenticalValueToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/IdenticalValueToken.php', - 'Prophecy\\Argument\\Token\\LogicalAndToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalAndToken.php', - 'Prophecy\\Argument\\Token\\LogicalNotToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php', - 'Prophecy\\Argument\\Token\\ObjectStateToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/ObjectStateToken.php', - 'Prophecy\\Argument\\Token\\StringContainsToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/StringContainsToken.php', - 'Prophecy\\Argument\\Token\\TokenInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/TokenInterface.php', - 'Prophecy\\Argument\\Token\\TypeToken' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Argument/Token/TypeToken.php', - 'Prophecy\\Call\\Call' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Call/Call.php', - 'Prophecy\\Call\\CallCenter' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Call/CallCenter.php', - 'Prophecy\\Comparator\\ClosureComparator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Comparator/ClosureComparator.php', - 'Prophecy\\Comparator\\Factory' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Comparator/Factory.php', - 'Prophecy\\Comparator\\ProphecyComparator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Comparator/ProphecyComparator.php', - 'Prophecy\\Doubler\\CachedDoubler' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/CachedDoubler.php', - 'Prophecy\\Doubler\\ClassPatch\\ClassPatchInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php', - 'Prophecy\\Doubler\\ClassPatch\\DisableConstructorPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\HhvmExceptionPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\KeywordPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/KeywordPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\MagicCallPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/MagicCallPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\ProphecySubjectPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\ReflectionClassNewInstancePatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php', - 'Prophecy\\Doubler\\ClassPatch\\SplFileInfoPatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/SplFileInfoPatch.php', - 'Prophecy\\Doubler\\ClassPatch\\ThrowablePatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ThrowablePatch.php', - 'Prophecy\\Doubler\\ClassPatch\\TraversablePatch' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/TraversablePatch.php', - 'Prophecy\\Doubler\\DoubleInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/DoubleInterface.php', - 'Prophecy\\Doubler\\Doubler' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Doubler.php', - 'Prophecy\\Doubler\\Generator\\ClassCodeGenerator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCodeGenerator.php', - 'Prophecy\\Doubler\\Generator\\ClassCreator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCreator.php', - 'Prophecy\\Doubler\\Generator\\ClassMirror' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassMirror.php', - 'Prophecy\\Doubler\\Generator\\Node\\ArgumentNode' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ArgumentNode.php', - 'Prophecy\\Doubler\\Generator\\Node\\ClassNode' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ClassNode.php', - 'Prophecy\\Doubler\\Generator\\Node\\MethodNode' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/MethodNode.php', - 'Prophecy\\Doubler\\Generator\\ReflectionInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ReflectionInterface.php', - 'Prophecy\\Doubler\\Generator\\TypeHintReference' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/TypeHintReference.php', - 'Prophecy\\Doubler\\LazyDouble' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/LazyDouble.php', - 'Prophecy\\Doubler\\NameGenerator' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Doubler/NameGenerator.php', - 'Prophecy\\Exception\\Call\\UnexpectedCallException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Call/UnexpectedCallException.php', - 'Prophecy\\Exception\\Doubler\\ClassCreatorException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassCreatorException.php', - 'Prophecy\\Exception\\Doubler\\ClassMirrorException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassMirrorException.php', - 'Prophecy\\Exception\\Doubler\\ClassNotFoundException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php', - 'Prophecy\\Exception\\Doubler\\DoubleException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.php', - 'Prophecy\\Exception\\Doubler\\DoublerException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php', - 'Prophecy\\Exception\\Doubler\\InterfaceNotFoundException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/InterfaceNotFoundException.php', - 'Prophecy\\Exception\\Doubler\\MethodNotExtendableException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotExtendableException.php', - 'Prophecy\\Exception\\Doubler\\MethodNotFoundException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php', - 'Prophecy\\Exception\\Doubler\\ReturnByReferenceException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ReturnByReferenceException.php', - 'Prophecy\\Exception\\Exception' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Exception.php', - 'Prophecy\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php', - 'Prophecy\\Exception\\Prediction\\AggregateException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/AggregateException.php', - 'Prophecy\\Exception\\Prediction\\FailedPredictionException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/FailedPredictionException.php', - 'Prophecy\\Exception\\Prediction\\NoCallsException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/NoCallsException.php', - 'Prophecy\\Exception\\Prediction\\PredictionException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/PredictionException.php', - 'Prophecy\\Exception\\Prediction\\UnexpectedCallsCountException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsCountException.php', - 'Prophecy\\Exception\\Prediction\\UnexpectedCallsException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsException.php', - 'Prophecy\\Exception\\Prophecy\\MethodProphecyException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/MethodProphecyException.php', - 'Prophecy\\Exception\\Prophecy\\ObjectProphecyException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ObjectProphecyException.php', - 'Prophecy\\Exception\\Prophecy\\ProphecyException' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php', - 'Prophecy\\PhpDocumentor\\ClassAndInterfaceTagRetriever' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php', - 'Prophecy\\PhpDocumentor\\ClassTagRetriever' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassTagRetriever.php', - 'Prophecy\\PhpDocumentor\\LegacyClassTagRetriever' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php', - 'Prophecy\\PhpDocumentor\\MethodTagRetrieverInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php', - 'Prophecy\\Prediction\\CallPrediction' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/CallPrediction.php', - 'Prophecy\\Prediction\\CallTimesPrediction' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/CallTimesPrediction.php', - 'Prophecy\\Prediction\\CallbackPrediction' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/CallbackPrediction.php', - 'Prophecy\\Prediction\\NoCallsPrediction' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/NoCallsPrediction.php', - 'Prophecy\\Prediction\\PredictionInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prediction/PredictionInterface.php', - 'Prophecy\\Promise\\CallbackPromise' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/CallbackPromise.php', - 'Prophecy\\Promise\\PromiseInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/PromiseInterface.php', - 'Prophecy\\Promise\\ReturnArgumentPromise' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/ReturnArgumentPromise.php', - 'Prophecy\\Promise\\ReturnPromise' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/ReturnPromise.php', - 'Prophecy\\Promise\\ThrowPromise' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Promise/ThrowPromise.php', - 'Prophecy\\Prophecy\\MethodProphecy' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/MethodProphecy.php', - 'Prophecy\\Prophecy\\ObjectProphecy' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php', - 'Prophecy\\Prophecy\\ProphecyInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecyInterface.php', - 'Prophecy\\Prophecy\\ProphecySubjectInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecySubjectInterface.php', - 'Prophecy\\Prophecy\\Revealer' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/Revealer.php', - 'Prophecy\\Prophecy\\RevealerInterface' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophecy/RevealerInterface.php', - 'Prophecy\\Prophet' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Prophet.php', - 'Prophecy\\Util\\ExportUtil' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Util/ExportUtil.php', - 'Prophecy\\Util\\StringUtil' => __DIR__ . '/..' . '/phpspec/prophecy/src/Prophecy/Util/StringUtil.php', - 'Psr\\Container\\ContainerExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerExceptionInterface.php', - 'Psr\\Container\\ContainerInterface' => __DIR__ . '/..' . '/psr/container/src/ContainerInterface.php', - 'Psr\\Container\\NotFoundExceptionInterface' => __DIR__ . '/..' . '/psr/container/src/NotFoundExceptionInterface.php', - 'Psr\\Http\\Message\\MessageInterface' => __DIR__ . '/..' . '/psr/http-message/src/MessageInterface.php', - 'Psr\\Http\\Message\\RequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/RequestInterface.php', - 'Psr\\Http\\Message\\ResponseInterface' => __DIR__ . '/..' . '/psr/http-message/src/ResponseInterface.php', - 'Psr\\Http\\Message\\ServerRequestInterface' => __DIR__ . '/..' . '/psr/http-message/src/ServerRequestInterface.php', - 'Psr\\Http\\Message\\StreamInterface' => __DIR__ . '/..' . '/psr/http-message/src/StreamInterface.php', - 'Psr\\Http\\Message\\UploadedFileInterface' => __DIR__ . '/..' . '/psr/http-message/src/UploadedFileInterface.php', - 'Psr\\Http\\Message\\UriInterface' => __DIR__ . '/..' . '/psr/http-message/src/UriInterface.php', - 'Psr\\Log\\AbstractLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/AbstractLogger.php', - 'Psr\\Log\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/log/Psr/Log/InvalidArgumentException.php', - 'Psr\\Log\\LogLevel' => __DIR__ . '/..' . '/psr/log/Psr/Log/LogLevel.php', - 'Psr\\Log\\LoggerAwareInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerAwareInterface.php', - 'Psr\\Log\\LoggerAwareTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerAwareTrait.php', - 'Psr\\Log\\LoggerInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerInterface.php', - 'Psr\\Log\\LoggerTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerTrait.php', - 'Psr\\Log\\NullLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/NullLogger.php', - 'Psr\\Log\\Test\\DummyTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', - 'Psr\\Log\\Test\\LoggerInterfaceTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', - 'Psr\\Log\\Test\\TestLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/TestLogger.php', - 'Psr\\SimpleCache\\CacheException' => __DIR__ . '/..' . '/psr/simple-cache/src/CacheException.php', - 'Psr\\SimpleCache\\CacheInterface' => __DIR__ . '/..' . '/psr/simple-cache/src/CacheInterface.php', - 'Psr\\SimpleCache\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/simple-cache/src/InvalidArgumentException.php', - 'Requests' => __DIR__ . '/..' . '/rmccue/requests/library/Requests.php', - 'Requests_Auth' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Auth.php', - 'Requests_Auth_Basic' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Auth/Basic.php', - 'Requests_Cookie' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Cookie.php', - 'Requests_Cookie_Jar' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Cookie/Jar.php', - 'Requests_Exception' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception.php', - 'Requests_Exception_HTTP' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP.php', - 'Requests_Exception_HTTP_304' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/304.php', - 'Requests_Exception_HTTP_305' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/305.php', - 'Requests_Exception_HTTP_306' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/306.php', - 'Requests_Exception_HTTP_400' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/400.php', - 'Requests_Exception_HTTP_401' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/401.php', - 'Requests_Exception_HTTP_402' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/402.php', - 'Requests_Exception_HTTP_403' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/403.php', - 'Requests_Exception_HTTP_404' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/404.php', - 'Requests_Exception_HTTP_405' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/405.php', - 'Requests_Exception_HTTP_406' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/406.php', - 'Requests_Exception_HTTP_407' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/407.php', - 'Requests_Exception_HTTP_408' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/408.php', - 'Requests_Exception_HTTP_409' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/409.php', - 'Requests_Exception_HTTP_410' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/410.php', - 'Requests_Exception_HTTP_411' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/411.php', - 'Requests_Exception_HTTP_412' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/412.php', - 'Requests_Exception_HTTP_413' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/413.php', - 'Requests_Exception_HTTP_414' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/414.php', - 'Requests_Exception_HTTP_415' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/415.php', - 'Requests_Exception_HTTP_416' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/416.php', - 'Requests_Exception_HTTP_417' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/417.php', - 'Requests_Exception_HTTP_418' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/418.php', - 'Requests_Exception_HTTP_428' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/428.php', - 'Requests_Exception_HTTP_429' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/429.php', - 'Requests_Exception_HTTP_431' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/431.php', - 'Requests_Exception_HTTP_500' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/500.php', - 'Requests_Exception_HTTP_501' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/501.php', - 'Requests_Exception_HTTP_502' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/502.php', - 'Requests_Exception_HTTP_503' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/503.php', - 'Requests_Exception_HTTP_504' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/504.php', - 'Requests_Exception_HTTP_505' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/505.php', - 'Requests_Exception_HTTP_511' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/511.php', - 'Requests_Exception_HTTP_Unknown' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/HTTP/Unknown.php', - 'Requests_Exception_Transport' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/Transport.php', - 'Requests_Exception_Transport_cURL' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Exception/Transport/cURL.php', - 'Requests_Hooker' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Hooker.php', - 'Requests_Hooks' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Hooks.php', - 'Requests_IDNAEncoder' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/IDNAEncoder.php', - 'Requests_IPv6' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/IPv6.php', - 'Requests_IRI' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/IRI.php', - 'Requests_Proxy' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Proxy.php', - 'Requests_Proxy_HTTP' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Proxy/HTTP.php', - 'Requests_Response' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Response.php', - 'Requests_Response_Headers' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Response/Headers.php', - 'Requests_SSL' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/SSL.php', - 'Requests_Session' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Session.php', - 'Requests_Transport' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Transport.php', - 'Requests_Transport_cURL' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Transport/cURL.php', - 'Requests_Transport_fsockopen' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Transport/fsockopen.php', - 'Requests_Utility_CaseInsensitiveDictionary' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Utility/CaseInsensitiveDictionary.php', - 'Requests_Utility_FilteredIterator' => __DIR__ . '/..' . '/rmccue/requests/library/Requests/Utility/FilteredIterator.php', - 'Rewrite_Command' => __DIR__ . '/..' . '/wp-cli/rewrite-command/src/Rewrite_Command.php', - 'Role_Command' => __DIR__ . '/..' . '/wp-cli/role-command/src/Role_Command.php', - 'Scaffold_Command' => __DIR__ . '/..' . '/wp-cli/scaffold-command/src/Scaffold_Command.php', - 'Search_Replace_Command' => __DIR__ . '/..' . '/wp-cli/search-replace-command/src/Search_Replace_Command.php', - 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/CodeCoverage.php', - 'SebastianBergmann\\CodeCoverage\\CoveredCodeNotExecutedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php', - 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Driver.php', - 'SebastianBergmann\\CodeCoverage\\Driver\\PHPDBG' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/PHPDBG.php', - 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Xdebug.php', - 'SebastianBergmann\\CodeCoverage\\Exception' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/Exception.php', - 'SebastianBergmann\\CodeCoverage\\Filter' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Filter.php', - 'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php', - 'SebastianBergmann\\CodeCoverage\\MissingCoversAnnotationException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php', - 'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/AbstractNode.php', - 'SebastianBergmann\\CodeCoverage\\Node\\Builder' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Builder.php', - 'SebastianBergmann\\CodeCoverage\\Node\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Directory.php', - 'SebastianBergmann\\CodeCoverage\\Node\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/File.php', - 'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Iterator.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Clover' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Clover.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Crap4j.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Facade.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php', - 'SebastianBergmann\\CodeCoverage\\Report\\PHP' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/PHP.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Text' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Text.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/File.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Method.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Node.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Project.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Report.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Source.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php', - 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php', - 'SebastianBergmann\\CodeCoverage\\RuntimeException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/RuntimeException.php', - 'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php', - 'SebastianBergmann\\CodeCoverage\\Util' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Util.php', - 'SebastianBergmann\\CodeCoverage\\Version' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Version.php', - 'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => __DIR__ . '/..' . '/sebastian/code-unit-reverse-lookup/src/Wizard.php', - 'SebastianBergmann\\Comparator\\ArrayComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ArrayComparator.php', - 'SebastianBergmann\\Comparator\\Comparator' => __DIR__ . '/..' . '/sebastian/comparator/src/Comparator.php', - 'SebastianBergmann\\Comparator\\ComparisonFailure' => __DIR__ . '/..' . '/sebastian/comparator/src/ComparisonFailure.php', - 'SebastianBergmann\\Comparator\\DOMNodeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DOMNodeComparator.php', - 'SebastianBergmann\\Comparator\\DateTimeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DateTimeComparator.php', - 'SebastianBergmann\\Comparator\\DoubleComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/DoubleComparator.php', - 'SebastianBergmann\\Comparator\\ExceptionComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ExceptionComparator.php', - 'SebastianBergmann\\Comparator\\Factory' => __DIR__ . '/..' . '/sebastian/comparator/src/Factory.php', - 'SebastianBergmann\\Comparator\\MockObjectComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/MockObjectComparator.php', - 'SebastianBergmann\\Comparator\\NumericComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/NumericComparator.php', - 'SebastianBergmann\\Comparator\\ObjectComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ObjectComparator.php', - 'SebastianBergmann\\Comparator\\ResourceComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ResourceComparator.php', - 'SebastianBergmann\\Comparator\\ScalarComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/ScalarComparator.php', - 'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/SplObjectStorageComparator.php', - 'SebastianBergmann\\Comparator\\TypeComparator' => __DIR__ . '/..' . '/sebastian/comparator/src/TypeComparator.php', - 'SebastianBergmann\\Diff\\Chunk' => __DIR__ . '/..' . '/sebastian/diff/src/Chunk.php', - 'SebastianBergmann\\Diff\\ConfigurationException' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/ConfigurationException.php', - 'SebastianBergmann\\Diff\\Diff' => __DIR__ . '/..' . '/sebastian/diff/src/Diff.php', - 'SebastianBergmann\\Diff\\Differ' => __DIR__ . '/..' . '/sebastian/diff/src/Differ.php', - 'SebastianBergmann\\Diff\\Exception' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/Exception.php', - 'SebastianBergmann\\Diff\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/diff/src/Exception/InvalidArgumentException.php', - 'SebastianBergmann\\Diff\\Line' => __DIR__ . '/..' . '/sebastian/diff/src/Line.php', - 'SebastianBergmann\\Diff\\LongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/LongestCommonSubsequenceCalculator.php', - 'SebastianBergmann\\Diff\\MemoryEfficientLongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php', - 'SebastianBergmann\\Diff\\Output\\AbstractChunkOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php', - 'SebastianBergmann\\Diff\\Output\\DiffOnlyOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php', - 'SebastianBergmann\\Diff\\Output\\DiffOutputBuilderInterface' => __DIR__ . '/..' . '/sebastian/diff/src/Output/DiffOutputBuilderInterface.php', - 'SebastianBergmann\\Diff\\Output\\StrictUnifiedDiffOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php', - 'SebastianBergmann\\Diff\\Output\\UnifiedDiffOutputBuilder' => __DIR__ . '/..' . '/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php', - 'SebastianBergmann\\Diff\\Parser' => __DIR__ . '/..' . '/sebastian/diff/src/Parser.php', - 'SebastianBergmann\\Diff\\TimeEfficientLongestCommonSubsequenceCalculator' => __DIR__ . '/..' . '/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php', - 'SebastianBergmann\\Environment\\Console' => __DIR__ . '/..' . '/sebastian/environment/src/Console.php', - 'SebastianBergmann\\Environment\\OperatingSystem' => __DIR__ . '/..' . '/sebastian/environment/src/OperatingSystem.php', - 'SebastianBergmann\\Environment\\Runtime' => __DIR__ . '/..' . '/sebastian/environment/src/Runtime.php', - 'SebastianBergmann\\Exporter\\Exporter' => __DIR__ . '/..' . '/sebastian/exporter/src/Exporter.php', - 'SebastianBergmann\\FileIterator\\Facade' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Facade.php', - 'SebastianBergmann\\FileIterator\\Factory' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Factory.php', - 'SebastianBergmann\\FileIterator\\Iterator' => __DIR__ . '/..' . '/phpunit/php-file-iterator/src/Iterator.php', - 'SebastianBergmann\\GlobalState\\Blacklist' => __DIR__ . '/..' . '/sebastian/global-state/src/Blacklist.php', - 'SebastianBergmann\\GlobalState\\CodeExporter' => __DIR__ . '/..' . '/sebastian/global-state/src/CodeExporter.php', - 'SebastianBergmann\\GlobalState\\Exception' => __DIR__ . '/..' . '/sebastian/global-state/src/exceptions/Exception.php', - 'SebastianBergmann\\GlobalState\\Restorer' => __DIR__ . '/..' . '/sebastian/global-state/src/Restorer.php', - 'SebastianBergmann\\GlobalState\\RuntimeException' => __DIR__ . '/..' . '/sebastian/global-state/src/exceptions/RuntimeException.php', - 'SebastianBergmann\\GlobalState\\Snapshot' => __DIR__ . '/..' . '/sebastian/global-state/src/Snapshot.php', - 'SebastianBergmann\\ObjectEnumerator\\Enumerator' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/Enumerator.php', - 'SebastianBergmann\\ObjectEnumerator\\Exception' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/Exception.php', - 'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/object-enumerator/src/InvalidArgumentException.php', - 'SebastianBergmann\\ObjectReflector\\Exception' => __DIR__ . '/..' . '/sebastian/object-reflector/src/Exception.php', - 'SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/object-reflector/src/InvalidArgumentException.php', - 'SebastianBergmann\\ObjectReflector\\ObjectReflector' => __DIR__ . '/..' . '/sebastian/object-reflector/src/ObjectReflector.php', - 'SebastianBergmann\\RecursionContext\\Context' => __DIR__ . '/..' . '/sebastian/recursion-context/src/Context.php', - 'SebastianBergmann\\RecursionContext\\Exception' => __DIR__ . '/..' . '/sebastian/recursion-context/src/Exception.php', - 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => __DIR__ . '/..' . '/sebastian/recursion-context/src/InvalidArgumentException.php', - 'SebastianBergmann\\ResourceOperations\\ResourceOperations' => __DIR__ . '/..' . '/sebastian/resource-operations/src/ResourceOperations.php', - 'SebastianBergmann\\Timer\\Exception' => __DIR__ . '/..' . '/phpunit/php-timer/src/Exception.php', - 'SebastianBergmann\\Timer\\RuntimeException' => __DIR__ . '/..' . '/phpunit/php-timer/src/RuntimeException.php', - 'SebastianBergmann\\Timer\\Timer' => __DIR__ . '/..' . '/phpunit/php-timer/src/Timer.php', - 'SebastianBergmann\\Version' => __DIR__ . '/..' . '/sebastian/version/src/Version.php', - 'Seld\\JsonLint\\DuplicateKeyException' => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php', - 'Seld\\JsonLint\\JsonParser' => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint/JsonParser.php', - 'Seld\\JsonLint\\Lexer' => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint/Lexer.php', - 'Seld\\JsonLint\\ParsingException' => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint/ParsingException.php', - 'Seld\\JsonLint\\Undefined' => __DIR__ . '/..' . '/seld/jsonlint/src/Seld/JsonLint/Undefined.php', - 'Seld\\PharUtils\\Timestamps' => __DIR__ . '/..' . '/seld/phar-utils/src/Timestamps.php', - 'Server_Command' => __DIR__ . '/..' . '/wp-cli/server-command/src/Server_Command.php', - 'Shell_Command' => __DIR__ . '/..' . '/wp-cli/shell-command/src/Shell_Command.php', - 'Sidebar_Command' => __DIR__ . '/..' . '/wp-cli/widget-command/src/Sidebar_Command.php', - 'Site_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Site_Command.php', - 'Site_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Site_Meta_Command.php', - 'Site_Option_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Site_Option_Command.php', - 'Site_Switch_Language_Command' => __DIR__ . '/..' . '/wp-cli/language-command/src/Site_Switch_Language_Command.php', - 'Super_Admin_Command' => __DIR__ . '/..' . '/wp-cli/super-admin-command/src/Super_Admin_Command.php', - 'Symfony\\Component\\BrowserKit\\AbstractBrowser' => __DIR__ . '/..' . '/symfony/browser-kit/AbstractBrowser.php', - 'Symfony\\Component\\BrowserKit\\Client' => __DIR__ . '/..' . '/symfony/browser-kit/Client.php', - 'Symfony\\Component\\BrowserKit\\Cookie' => __DIR__ . '/..' . '/symfony/browser-kit/Cookie.php', - 'Symfony\\Component\\BrowserKit\\CookieJar' => __DIR__ . '/..' . '/symfony/browser-kit/CookieJar.php', - 'Symfony\\Component\\BrowserKit\\Exception\\BadMethodCallException' => __DIR__ . '/..' . '/symfony/browser-kit/Exception/BadMethodCallException.php', - 'Symfony\\Component\\BrowserKit\\History' => __DIR__ . '/..' . '/symfony/browser-kit/History.php', - 'Symfony\\Component\\BrowserKit\\HttpBrowser' => __DIR__ . '/..' . '/symfony/browser-kit/HttpBrowser.php', - 'Symfony\\Component\\BrowserKit\\Request' => __DIR__ . '/..' . '/symfony/browser-kit/Request.php', - 'Symfony\\Component\\BrowserKit\\Response' => __DIR__ . '/..' . '/symfony/browser-kit/Response.php', - 'Symfony\\Component\\BrowserKit\\Test\\Constraint\\BrowserCookieValueSame' => __DIR__ . '/..' . '/symfony/browser-kit/Test/Constraint/BrowserCookieValueSame.php', - 'Symfony\\Component\\BrowserKit\\Test\\Constraint\\BrowserHasCookie' => __DIR__ . '/..' . '/symfony/browser-kit/Test/Constraint/BrowserHasCookie.php', - 'Symfony\\Component\\Console\\Application' => __DIR__ . '/..' . '/symfony/console/Application.php', - 'Symfony\\Component\\Console\\CommandLoader\\CommandLoaderInterface' => __DIR__ . '/..' . '/symfony/console/CommandLoader/CommandLoaderInterface.php', - 'Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader' => __DIR__ . '/..' . '/symfony/console/CommandLoader/ContainerCommandLoader.php', - 'Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader' => __DIR__ . '/..' . '/symfony/console/CommandLoader/FactoryCommandLoader.php', - 'Symfony\\Component\\Console\\Command\\Command' => __DIR__ . '/..' . '/symfony/console/Command/Command.php', - 'Symfony\\Component\\Console\\Command\\HelpCommand' => __DIR__ . '/..' . '/symfony/console/Command/HelpCommand.php', - 'Symfony\\Component\\Console\\Command\\ListCommand' => __DIR__ . '/..' . '/symfony/console/Command/ListCommand.php', - 'Symfony\\Component\\Console\\Command\\LockableTrait' => __DIR__ . '/..' . '/symfony/console/Command/LockableTrait.php', - 'Symfony\\Component\\Console\\ConsoleEvents' => __DIR__ . '/..' . '/symfony/console/ConsoleEvents.php', - 'Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass' => __DIR__ . '/..' . '/symfony/console/DependencyInjection/AddConsoleCommandPass.php', - 'Symfony\\Component\\Console\\Descriptor\\ApplicationDescription' => __DIR__ . '/..' . '/symfony/console/Descriptor/ApplicationDescription.php', - 'Symfony\\Component\\Console\\Descriptor\\Descriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/Descriptor.php', - 'Symfony\\Component\\Console\\Descriptor\\DescriptorInterface' => __DIR__ . '/..' . '/symfony/console/Descriptor/DescriptorInterface.php', - 'Symfony\\Component\\Console\\Descriptor\\JsonDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/JsonDescriptor.php', - 'Symfony\\Component\\Console\\Descriptor\\MarkdownDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/MarkdownDescriptor.php', - 'Symfony\\Component\\Console\\Descriptor\\TextDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/TextDescriptor.php', - 'Symfony\\Component\\Console\\Descriptor\\XmlDescriptor' => __DIR__ . '/..' . '/symfony/console/Descriptor/XmlDescriptor.php', - 'Symfony\\Component\\Console\\EventListener\\ErrorListener' => __DIR__ . '/..' . '/symfony/console/EventListener/ErrorListener.php', - 'Symfony\\Component\\Console\\Event\\ConsoleCommandEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleCommandEvent.php', - 'Symfony\\Component\\Console\\Event\\ConsoleErrorEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleErrorEvent.php', - 'Symfony\\Component\\Console\\Event\\ConsoleEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleEvent.php', - 'Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent' => __DIR__ . '/..' . '/symfony/console/Event/ConsoleTerminateEvent.php', - 'Symfony\\Component\\Console\\Exception\\CommandNotFoundException' => __DIR__ . '/..' . '/symfony/console/Exception/CommandNotFoundException.php', - 'Symfony\\Component\\Console\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/console/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Console\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/console/Exception/InvalidArgumentException.php', - 'Symfony\\Component\\Console\\Exception\\InvalidOptionException' => __DIR__ . '/..' . '/symfony/console/Exception/InvalidOptionException.php', - 'Symfony\\Component\\Console\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/console/Exception/LogicException.php', - 'Symfony\\Component\\Console\\Exception\\NamespaceNotFoundException' => __DIR__ . '/..' . '/symfony/console/Exception/NamespaceNotFoundException.php', - 'Symfony\\Component\\Console\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/console/Exception/RuntimeException.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatter' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatter.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterInterface.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyle.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyleInterface.php', - 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack' => __DIR__ . '/..' . '/symfony/console/Formatter/OutputFormatterStyleStack.php', - 'Symfony\\Component\\Console\\Formatter\\WrappableOutputFormatterInterface' => __DIR__ . '/..' . '/symfony/console/Formatter/WrappableOutputFormatterInterface.php', - 'Symfony\\Component\\Console\\Helper\\DebugFormatterHelper' => __DIR__ . '/..' . '/symfony/console/Helper/DebugFormatterHelper.php', - 'Symfony\\Component\\Console\\Helper\\DescriptorHelper' => __DIR__ . '/..' . '/symfony/console/Helper/DescriptorHelper.php', - 'Symfony\\Component\\Console\\Helper\\Dumper' => __DIR__ . '/..' . '/symfony/console/Helper/Dumper.php', - 'Symfony\\Component\\Console\\Helper\\FormatterHelper' => __DIR__ . '/..' . '/symfony/console/Helper/FormatterHelper.php', - 'Symfony\\Component\\Console\\Helper\\Helper' => __DIR__ . '/..' . '/symfony/console/Helper/Helper.php', - 'Symfony\\Component\\Console\\Helper\\HelperInterface' => __DIR__ . '/..' . '/symfony/console/Helper/HelperInterface.php', - 'Symfony\\Component\\Console\\Helper\\HelperSet' => __DIR__ . '/..' . '/symfony/console/Helper/HelperSet.php', - 'Symfony\\Component\\Console\\Helper\\InputAwareHelper' => __DIR__ . '/..' . '/symfony/console/Helper/InputAwareHelper.php', - 'Symfony\\Component\\Console\\Helper\\ProcessHelper' => __DIR__ . '/..' . '/symfony/console/Helper/ProcessHelper.php', - 'Symfony\\Component\\Console\\Helper\\ProgressBar' => __DIR__ . '/..' . '/symfony/console/Helper/ProgressBar.php', - 'Symfony\\Component\\Console\\Helper\\ProgressIndicator' => __DIR__ . '/..' . '/symfony/console/Helper/ProgressIndicator.php', - 'Symfony\\Component\\Console\\Helper\\QuestionHelper' => __DIR__ . '/..' . '/symfony/console/Helper/QuestionHelper.php', - 'Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper' => __DIR__ . '/..' . '/symfony/console/Helper/SymfonyQuestionHelper.php', - 'Symfony\\Component\\Console\\Helper\\Table' => __DIR__ . '/..' . '/symfony/console/Helper/Table.php', - 'Symfony\\Component\\Console\\Helper\\TableCell' => __DIR__ . '/..' . '/symfony/console/Helper/TableCell.php', - 'Symfony\\Component\\Console\\Helper\\TableRows' => __DIR__ . '/..' . '/symfony/console/Helper/TableRows.php', - 'Symfony\\Component\\Console\\Helper\\TableSeparator' => __DIR__ . '/..' . '/symfony/console/Helper/TableSeparator.php', - 'Symfony\\Component\\Console\\Helper\\TableStyle' => __DIR__ . '/..' . '/symfony/console/Helper/TableStyle.php', - 'Symfony\\Component\\Console\\Input\\ArgvInput' => __DIR__ . '/..' . '/symfony/console/Input/ArgvInput.php', - 'Symfony\\Component\\Console\\Input\\ArrayInput' => __DIR__ . '/..' . '/symfony/console/Input/ArrayInput.php', - 'Symfony\\Component\\Console\\Input\\Input' => __DIR__ . '/..' . '/symfony/console/Input/Input.php', - 'Symfony\\Component\\Console\\Input\\InputArgument' => __DIR__ . '/..' . '/symfony/console/Input/InputArgument.php', - 'Symfony\\Component\\Console\\Input\\InputAwareInterface' => __DIR__ . '/..' . '/symfony/console/Input/InputAwareInterface.php', - 'Symfony\\Component\\Console\\Input\\InputDefinition' => __DIR__ . '/..' . '/symfony/console/Input/InputDefinition.php', - 'Symfony\\Component\\Console\\Input\\InputInterface' => __DIR__ . '/..' . '/symfony/console/Input/InputInterface.php', - 'Symfony\\Component\\Console\\Input\\InputOption' => __DIR__ . '/..' . '/symfony/console/Input/InputOption.php', - 'Symfony\\Component\\Console\\Input\\StreamableInputInterface' => __DIR__ . '/..' . '/symfony/console/Input/StreamableInputInterface.php', - 'Symfony\\Component\\Console\\Input\\StringInput' => __DIR__ . '/..' . '/symfony/console/Input/StringInput.php', - 'Symfony\\Component\\Console\\Logger\\ConsoleLogger' => __DIR__ . '/..' . '/symfony/console/Logger/ConsoleLogger.php', - 'Symfony\\Component\\Console\\Output\\BufferedOutput' => __DIR__ . '/..' . '/symfony/console/Output/BufferedOutput.php', - 'Symfony\\Component\\Console\\Output\\ConsoleOutput' => __DIR__ . '/..' . '/symfony/console/Output/ConsoleOutput.php', - 'Symfony\\Component\\Console\\Output\\ConsoleOutputInterface' => __DIR__ . '/..' . '/symfony/console/Output/ConsoleOutputInterface.php', - 'Symfony\\Component\\Console\\Output\\ConsoleSectionOutput' => __DIR__ . '/..' . '/symfony/console/Output/ConsoleSectionOutput.php', - 'Symfony\\Component\\Console\\Output\\NullOutput' => __DIR__ . '/..' . '/symfony/console/Output/NullOutput.php', - 'Symfony\\Component\\Console\\Output\\Output' => __DIR__ . '/..' . '/symfony/console/Output/Output.php', - 'Symfony\\Component\\Console\\Output\\OutputInterface' => __DIR__ . '/..' . '/symfony/console/Output/OutputInterface.php', - 'Symfony\\Component\\Console\\Output\\StreamOutput' => __DIR__ . '/..' . '/symfony/console/Output/StreamOutput.php', - 'Symfony\\Component\\Console\\Question\\ChoiceQuestion' => __DIR__ . '/..' . '/symfony/console/Question/ChoiceQuestion.php', - 'Symfony\\Component\\Console\\Question\\ConfirmationQuestion' => __DIR__ . '/..' . '/symfony/console/Question/ConfirmationQuestion.php', - 'Symfony\\Component\\Console\\Question\\Question' => __DIR__ . '/..' . '/symfony/console/Question/Question.php', - 'Symfony\\Component\\Console\\Style\\OutputStyle' => __DIR__ . '/..' . '/symfony/console/Style/OutputStyle.php', - 'Symfony\\Component\\Console\\Style\\StyleInterface' => __DIR__ . '/..' . '/symfony/console/Style/StyleInterface.php', - 'Symfony\\Component\\Console\\Style\\SymfonyStyle' => __DIR__ . '/..' . '/symfony/console/Style/SymfonyStyle.php', - 'Symfony\\Component\\Console\\Terminal' => __DIR__ . '/..' . '/symfony/console/Terminal.php', - 'Symfony\\Component\\Console\\Tester\\ApplicationTester' => __DIR__ . '/..' . '/symfony/console/Tester/ApplicationTester.php', - 'Symfony\\Component\\Console\\Tester\\CommandTester' => __DIR__ . '/..' . '/symfony/console/Tester/CommandTester.php', - 'Symfony\\Component\\Console\\Tester\\TesterTrait' => __DIR__ . '/..' . '/symfony/console/Tester/TesterTrait.php', - 'Symfony\\Component\\CssSelector\\CssSelectorConverter' => __DIR__ . '/..' . '/symfony/css-selector/CssSelectorConverter.php', - 'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/css-selector/Exception/ExceptionInterface.php', - 'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => __DIR__ . '/..' . '/symfony/css-selector/Exception/ExpressionErrorException.php', - 'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => __DIR__ . '/..' . '/symfony/css-selector/Exception/InternalErrorException.php', - 'Symfony\\Component\\CssSelector\\Exception\\ParseException' => __DIR__ . '/..' . '/symfony/css-selector/Exception/ParseException.php', - 'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => __DIR__ . '/..' . '/symfony/css-selector/Exception/SyntaxErrorException.php', - 'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/AbstractNode.php', - 'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/AttributeNode.php', - 'Symfony\\Component\\CssSelector\\Node\\ClassNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/ClassNode.php', - 'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/CombinedSelectorNode.php', - 'Symfony\\Component\\CssSelector\\Node\\ElementNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/ElementNode.php', - 'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/FunctionNode.php', - 'Symfony\\Component\\CssSelector\\Node\\HashNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/HashNode.php', - 'Symfony\\Component\\CssSelector\\Node\\NegationNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/NegationNode.php', - 'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => __DIR__ . '/..' . '/symfony/css-selector/Node/NodeInterface.php', - 'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/PseudoNode.php', - 'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => __DIR__ . '/..' . '/symfony/css-selector/Node/SelectorNode.php', - 'Symfony\\Component\\CssSelector\\Node\\Specificity' => __DIR__ . '/..' . '/symfony/css-selector/Node/Specificity.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/CommentHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/HandlerInterface.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/HashHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/NumberHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/StringHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php', - 'Symfony\\Component\\CssSelector\\Parser\\Parser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Parser.php', - 'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => __DIR__ . '/..' . '/symfony/css-selector/Parser/ParserInterface.php', - 'Symfony\\Component\\CssSelector\\Parser\\Reader' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Reader.php', - 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Shortcut/ClassParser.php', - 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Shortcut/ElementParser.php', - 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php', - 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Shortcut/HashParser.php', - 'Symfony\\Component\\CssSelector\\Parser\\Token' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Token.php', - 'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => __DIR__ . '/..' . '/symfony/css-selector/Parser/TokenStream.php', - 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php', - 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php', - 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => __DIR__ . '/..' . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/AbstractExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/CombinationExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/FunctionExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/HtmlExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/NodeExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php', - 'Symfony\\Component\\CssSelector\\XPath\\Translator' => __DIR__ . '/..' . '/symfony/css-selector/XPath/Translator.php', - 'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => __DIR__ . '/..' . '/symfony/css-selector/XPath/TranslatorInterface.php', - 'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => __DIR__ . '/..' . '/symfony/css-selector/XPath/XPathExpr.php', - 'Symfony\\Component\\DomCrawler\\AbstractUriElement' => __DIR__ . '/..' . '/symfony/dom-crawler/AbstractUriElement.php', - 'Symfony\\Component\\DomCrawler\\Crawler' => __DIR__ . '/..' . '/symfony/dom-crawler/Crawler.php', - 'Symfony\\Component\\DomCrawler\\Field\\ChoiceFormField' => __DIR__ . '/..' . '/symfony/dom-crawler/Field/ChoiceFormField.php', - 'Symfony\\Component\\DomCrawler\\Field\\FileFormField' => __DIR__ . '/..' . '/symfony/dom-crawler/Field/FileFormField.php', - 'Symfony\\Component\\DomCrawler\\Field\\FormField' => __DIR__ . '/..' . '/symfony/dom-crawler/Field/FormField.php', - 'Symfony\\Component\\DomCrawler\\Field\\InputFormField' => __DIR__ . '/..' . '/symfony/dom-crawler/Field/InputFormField.php', - 'Symfony\\Component\\DomCrawler\\Field\\TextareaFormField' => __DIR__ . '/..' . '/symfony/dom-crawler/Field/TextareaFormField.php', - 'Symfony\\Component\\DomCrawler\\Form' => __DIR__ . '/..' . '/symfony/dom-crawler/Form.php', - 'Symfony\\Component\\DomCrawler\\FormFieldRegistry' => __DIR__ . '/..' . '/symfony/dom-crawler/FormFieldRegistry.php', - 'Symfony\\Component\\DomCrawler\\Image' => __DIR__ . '/..' . '/symfony/dom-crawler/Image.php', - 'Symfony\\Component\\DomCrawler\\Link' => __DIR__ . '/..' . '/symfony/dom-crawler/Link.php', - 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorAttributeValueSame' => __DIR__ . '/..' . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorAttributeValueSame.php', - 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorExists' => __DIR__ . '/..' . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorExists.php', - 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorTextContains' => __DIR__ . '/..' . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorTextContains.php', - 'Symfony\\Component\\DomCrawler\\Test\\Constraint\\CrawlerSelectorTextSame' => __DIR__ . '/..' . '/symfony/dom-crawler/Test/Constraint/CrawlerSelectorTextSame.php', - 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher' => __DIR__ . '/..' . '/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php', - 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcherInterface' => __DIR__ . '/..' . '/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php', - 'Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener' => __DIR__ . '/..' . '/symfony/event-dispatcher/Debug/WrappedListener.php', - 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\ExtractingEventDispatcher' => __DIR__ . '/..' . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', - 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\RegisterListenersPass' => __DIR__ . '/..' . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', - 'Symfony\\Component\\EventDispatcher\\Event' => __DIR__ . '/..' . '/symfony/event-dispatcher/Event.php', - 'Symfony\\Component\\EventDispatcher\\EventDispatcher' => __DIR__ . '/..' . '/symfony/event-dispatcher/EventDispatcher.php', - 'Symfony\\Component\\EventDispatcher\\EventDispatcherInterface' => __DIR__ . '/..' . '/symfony/event-dispatcher/EventDispatcherInterface.php', - 'Symfony\\Component\\EventDispatcher\\EventSubscriberInterface' => __DIR__ . '/..' . '/symfony/event-dispatcher/EventSubscriberInterface.php', - 'Symfony\\Component\\EventDispatcher\\GenericEvent' => __DIR__ . '/..' . '/symfony/event-dispatcher/GenericEvent.php', - 'Symfony\\Component\\EventDispatcher\\ImmutableEventDispatcher' => __DIR__ . '/..' . '/symfony/event-dispatcher/ImmutableEventDispatcher.php', - 'Symfony\\Component\\EventDispatcher\\LegacyEventDispatcherProxy' => __DIR__ . '/..' . '/symfony/event-dispatcher/LegacyEventDispatcherProxy.php', - 'Symfony\\Component\\EventDispatcher\\LegacyEventProxy' => __DIR__ . '/..' . '/symfony/event-dispatcher/LegacyEventProxy.php', - 'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/filesystem/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/FileNotFoundException.php', - 'Symfony\\Component\\Filesystem\\Exception\\IOException' => __DIR__ . '/..' . '/symfony/filesystem/Exception/IOException.php', - 'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => __DIR__ . '/..' . '/symfony/filesystem/Exception/IOExceptionInterface.php', - 'Symfony\\Component\\Filesystem\\Filesystem' => __DIR__ . '/..' . '/symfony/filesystem/Filesystem.php', - 'Symfony\\Component\\Filesystem\\LockHandler' => __DIR__ . '/..' . '/symfony/filesystem/LockHandler.php', - 'Symfony\\Component\\Finder\\Comparator\\Comparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/Comparator.php', - 'Symfony\\Component\\Finder\\Comparator\\DateComparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/DateComparator.php', - 'Symfony\\Component\\Finder\\Comparator\\NumberComparator' => __DIR__ . '/..' . '/symfony/finder/Comparator/NumberComparator.php', - 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException' => __DIR__ . '/..' . '/symfony/finder/Exception/AccessDeniedException.php', - 'Symfony\\Component\\Finder\\Exception\\DirectoryNotFoundException' => __DIR__ . '/..' . '/symfony/finder/Exception/DirectoryNotFoundException.php', - 'Symfony\\Component\\Finder\\Finder' => __DIR__ . '/..' . '/symfony/finder/Finder.php', - 'Symfony\\Component\\Finder\\Gitignore' => __DIR__ . '/..' . '/symfony/finder/Gitignore.php', - 'Symfony\\Component\\Finder\\Glob' => __DIR__ . '/..' . '/symfony/finder/Glob.php', - 'Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/CustomFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/DateRangeFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/DepthRangeFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FileTypeFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FilecontentFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/FilenameFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/MultiplePcreFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\PathFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/PathFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/RecursiveDirectoryIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/SizeRangeFilterIterator.php', - 'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/SortableIterator.php', - 'Symfony\\Component\\Finder\\SplFileInfo' => __DIR__ . '/..' . '/symfony/finder/SplFileInfo.php', - 'Symfony\\Component\\Process\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/process/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Process\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/process/Exception/InvalidArgumentException.php', - 'Symfony\\Component\\Process\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/process/Exception/LogicException.php', - 'Symfony\\Component\\Process\\Exception\\ProcessFailedException' => __DIR__ . '/..' . '/symfony/process/Exception/ProcessFailedException.php', - 'Symfony\\Component\\Process\\Exception\\ProcessSignaledException' => __DIR__ . '/..' . '/symfony/process/Exception/ProcessSignaledException.php', - 'Symfony\\Component\\Process\\Exception\\ProcessTimedOutException' => __DIR__ . '/..' . '/symfony/process/Exception/ProcessTimedOutException.php', - 'Symfony\\Component\\Process\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/process/Exception/RuntimeException.php', - 'Symfony\\Component\\Process\\ExecutableFinder' => __DIR__ . '/..' . '/symfony/process/ExecutableFinder.php', - 'Symfony\\Component\\Process\\InputStream' => __DIR__ . '/..' . '/symfony/process/InputStream.php', - 'Symfony\\Component\\Process\\PhpExecutableFinder' => __DIR__ . '/..' . '/symfony/process/PhpExecutableFinder.php', - 'Symfony\\Component\\Process\\PhpProcess' => __DIR__ . '/..' . '/symfony/process/PhpProcess.php', - 'Symfony\\Component\\Process\\Pipes\\AbstractPipes' => __DIR__ . '/..' . '/symfony/process/Pipes/AbstractPipes.php', - 'Symfony\\Component\\Process\\Pipes\\PipesInterface' => __DIR__ . '/..' . '/symfony/process/Pipes/PipesInterface.php', - 'Symfony\\Component\\Process\\Pipes\\UnixPipes' => __DIR__ . '/..' . '/symfony/process/Pipes/UnixPipes.php', - 'Symfony\\Component\\Process\\Pipes\\WindowsPipes' => __DIR__ . '/..' . '/symfony/process/Pipes/WindowsPipes.php', - 'Symfony\\Component\\Process\\Process' => __DIR__ . '/..' . '/symfony/process/Process.php', - 'Symfony\\Component\\Process\\ProcessUtils' => __DIR__ . '/..' . '/symfony/process/ProcessUtils.php', - 'Symfony\\Component\\Translation\\Catalogue\\AbstractOperation' => __DIR__ . '/..' . '/symfony/translation/Catalogue/AbstractOperation.php', - 'Symfony\\Component\\Translation\\Catalogue\\MergeOperation' => __DIR__ . '/..' . '/symfony/translation/Catalogue/MergeOperation.php', - 'Symfony\\Component\\Translation\\Catalogue\\OperationInterface' => __DIR__ . '/..' . '/symfony/translation/Catalogue/OperationInterface.php', - 'Symfony\\Component\\Translation\\Catalogue\\TargetOperation' => __DIR__ . '/..' . '/symfony/translation/Catalogue/TargetOperation.php', - 'Symfony\\Component\\Translation\\Command\\XliffLintCommand' => __DIR__ . '/..' . '/symfony/translation/Command/XliffLintCommand.php', - 'Symfony\\Component\\Translation\\DataCollectorTranslator' => __DIR__ . '/..' . '/symfony/translation/DataCollectorTranslator.php', - 'Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector' => __DIR__ . '/..' . '/symfony/translation/DataCollector/TranslationDataCollector.php', - 'Symfony\\Component\\Translation\\DependencyInjection\\TranslationDumperPass' => __DIR__ . '/..' . '/symfony/translation/DependencyInjection/TranslationDumperPass.php', - 'Symfony\\Component\\Translation\\DependencyInjection\\TranslationExtractorPass' => __DIR__ . '/..' . '/symfony/translation/DependencyInjection/TranslationExtractorPass.php', - 'Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPass' => __DIR__ . '/..' . '/symfony/translation/DependencyInjection/TranslatorPass.php', - 'Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass' => __DIR__ . '/..' . '/symfony/translation/DependencyInjection/TranslatorPathsPass.php', - 'Symfony\\Component\\Translation\\Dumper\\CsvFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/CsvFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\DumperInterface' => __DIR__ . '/..' . '/symfony/translation/Dumper/DumperInterface.php', - 'Symfony\\Component\\Translation\\Dumper\\FileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/FileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/IcuResFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\IniFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/IniFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\JsonFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/JsonFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\MoFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/MoFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\PhpFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/PhpFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\PoFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/PoFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\QtFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/QtFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\XliffFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/XliffFileDumper.php', - 'Symfony\\Component\\Translation\\Dumper\\YamlFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/YamlFileDumper.php', - 'Symfony\\Component\\Translation\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/translation/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Translation\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/translation/Exception/InvalidArgumentException.php', - 'Symfony\\Component\\Translation\\Exception\\InvalidResourceException' => __DIR__ . '/..' . '/symfony/translation/Exception/InvalidResourceException.php', - 'Symfony\\Component\\Translation\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/translation/Exception/LogicException.php', - 'Symfony\\Component\\Translation\\Exception\\NotFoundResourceException' => __DIR__ . '/..' . '/symfony/translation/Exception/NotFoundResourceException.php', - 'Symfony\\Component\\Translation\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/translation/Exception/RuntimeException.php', - 'Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor' => __DIR__ . '/..' . '/symfony/translation/Extractor/AbstractFileExtractor.php', - 'Symfony\\Component\\Translation\\Extractor\\ChainExtractor' => __DIR__ . '/..' . '/symfony/translation/Extractor/ChainExtractor.php', - 'Symfony\\Component\\Translation\\Extractor\\ExtractorInterface' => __DIR__ . '/..' . '/symfony/translation/Extractor/ExtractorInterface.php', - 'Symfony\\Component\\Translation\\Extractor\\PhpExtractor' => __DIR__ . '/..' . '/symfony/translation/Extractor/PhpExtractor.php', - 'Symfony\\Component\\Translation\\Extractor\\PhpStringTokenParser' => __DIR__ . '/..' . '/symfony/translation/Extractor/PhpStringTokenParser.php', - 'Symfony\\Component\\Translation\\Formatter\\ChoiceMessageFormatterInterface' => __DIR__ . '/..' . '/symfony/translation/Formatter/ChoiceMessageFormatterInterface.php', - 'Symfony\\Component\\Translation\\Formatter\\IntlFormatter' => __DIR__ . '/..' . '/symfony/translation/Formatter/IntlFormatter.php', - 'Symfony\\Component\\Translation\\Formatter\\IntlFormatterInterface' => __DIR__ . '/..' . '/symfony/translation/Formatter/IntlFormatterInterface.php', - 'Symfony\\Component\\Translation\\Formatter\\MessageFormatter' => __DIR__ . '/..' . '/symfony/translation/Formatter/MessageFormatter.php', - 'Symfony\\Component\\Translation\\Formatter\\MessageFormatterInterface' => __DIR__ . '/..' . '/symfony/translation/Formatter/MessageFormatterInterface.php', - 'Symfony\\Component\\Translation\\IdentityTranslator' => __DIR__ . '/..' . '/symfony/translation/IdentityTranslator.php', - 'Symfony\\Component\\Translation\\Interval' => __DIR__ . '/..' . '/symfony/translation/Interval.php', - 'Symfony\\Component\\Translation\\Loader\\ArrayLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/ArrayLoader.php', - 'Symfony\\Component\\Translation\\Loader\\CsvFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/CsvFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\FileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/FileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\IcuDatFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/IcuDatFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\IcuResFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/IcuResFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\IniFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/IniFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\JsonFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/JsonFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\LoaderInterface' => __DIR__ . '/..' . '/symfony/translation/Loader/LoaderInterface.php', - 'Symfony\\Component\\Translation\\Loader\\MoFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/MoFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\PhpFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/PhpFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\PoFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/PoFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\QtFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/QtFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\XliffFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/XliffFileLoader.php', - 'Symfony\\Component\\Translation\\Loader\\YamlFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/YamlFileLoader.php', - 'Symfony\\Component\\Translation\\LoggingTranslator' => __DIR__ . '/..' . '/symfony/translation/LoggingTranslator.php', - 'Symfony\\Component\\Translation\\MessageCatalogue' => __DIR__ . '/..' . '/symfony/translation/MessageCatalogue.php', - 'Symfony\\Component\\Translation\\MessageCatalogueInterface' => __DIR__ . '/..' . '/symfony/translation/MessageCatalogueInterface.php', - 'Symfony\\Component\\Translation\\MessageSelector' => __DIR__ . '/..' . '/symfony/translation/MessageSelector.php', - 'Symfony\\Component\\Translation\\MetadataAwareInterface' => __DIR__ . '/..' . '/symfony/translation/MetadataAwareInterface.php', - 'Symfony\\Component\\Translation\\PluralizationRules' => __DIR__ . '/..' . '/symfony/translation/PluralizationRules.php', - 'Symfony\\Component\\Translation\\Reader\\TranslationReader' => __DIR__ . '/..' . '/symfony/translation/Reader/TranslationReader.php', - 'Symfony\\Component\\Translation\\Reader\\TranslationReaderInterface' => __DIR__ . '/..' . '/symfony/translation/Reader/TranslationReaderInterface.php', - 'Symfony\\Component\\Translation\\Translator' => __DIR__ . '/..' . '/symfony/translation/Translator.php', - 'Symfony\\Component\\Translation\\TranslatorBagInterface' => __DIR__ . '/..' . '/symfony/translation/TranslatorBagInterface.php', - 'Symfony\\Component\\Translation\\TranslatorInterface' => __DIR__ . '/..' . '/symfony/translation/TranslatorInterface.php', - 'Symfony\\Component\\Translation\\Util\\ArrayConverter' => __DIR__ . '/..' . '/symfony/translation/Util/ArrayConverter.php', - 'Symfony\\Component\\Translation\\Util\\XliffUtils' => __DIR__ . '/..' . '/symfony/translation/Util/XliffUtils.php', - 'Symfony\\Component\\Translation\\Writer\\TranslationWriter' => __DIR__ . '/..' . '/symfony/translation/Writer/TranslationWriter.php', - 'Symfony\\Component\\Translation\\Writer\\TranslationWriterInterface' => __DIR__ . '/..' . '/symfony/translation/Writer/TranslationWriterInterface.php', - 'Symfony\\Component\\Yaml\\Command\\LintCommand' => __DIR__ . '/..' . '/symfony/yaml/Command/LintCommand.php', - 'Symfony\\Component\\Yaml\\Dumper' => __DIR__ . '/..' . '/symfony/yaml/Dumper.php', - 'Symfony\\Component\\Yaml\\Escaper' => __DIR__ . '/..' . '/symfony/yaml/Escaper.php', - 'Symfony\\Component\\Yaml\\Exception\\DumpException' => __DIR__ . '/..' . '/symfony/yaml/Exception/DumpException.php', - 'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/yaml/Exception/ExceptionInterface.php', - 'Symfony\\Component\\Yaml\\Exception\\ParseException' => __DIR__ . '/..' . '/symfony/yaml/Exception/ParseException.php', - 'Symfony\\Component\\Yaml\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/yaml/Exception/RuntimeException.php', - 'Symfony\\Component\\Yaml\\Inline' => __DIR__ . '/..' . '/symfony/yaml/Inline.php', - 'Symfony\\Component\\Yaml\\Parser' => __DIR__ . '/..' . '/symfony/yaml/Parser.php', - 'Symfony\\Component\\Yaml\\Tag\\TaggedValue' => __DIR__ . '/..' . '/symfony/yaml/Tag/TaggedValue.php', - 'Symfony\\Component\\Yaml\\Unescaper' => __DIR__ . '/..' . '/symfony/yaml/Unescaper.php', - 'Symfony\\Component\\Yaml\\Yaml' => __DIR__ . '/..' . '/symfony/yaml/Yaml.php', - 'Symfony\\Contracts\\EventDispatcher\\Event' => __DIR__ . '/..' . '/symfony/event-dispatcher-contracts/Event.php', - 'Symfony\\Contracts\\EventDispatcher\\EventDispatcherInterface' => __DIR__ . '/..' . '/symfony/event-dispatcher-contracts/EventDispatcherInterface.php', - 'Symfony\\Contracts\\Service\\ResetInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ResetInterface.php', - 'Symfony\\Contracts\\Service\\ServiceLocatorTrait' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceLocatorTrait.php', - 'Symfony\\Contracts\\Service\\ServiceProviderInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceProviderInterface.php', - 'Symfony\\Contracts\\Service\\ServiceSubscriberInterface' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceSubscriberInterface.php', - 'Symfony\\Contracts\\Service\\ServiceSubscriberTrait' => __DIR__ . '/..' . '/symfony/service-contracts/ServiceSubscriberTrait.php', - 'Symfony\\Contracts\\Service\\Test\\ServiceLocatorTest' => __DIR__ . '/..' . '/symfony/service-contracts/Test/ServiceLocatorTest.php', - 'Symfony\\Contracts\\Translation\\LocaleAwareInterface' => __DIR__ . '/..' . '/symfony/translation-contracts/LocaleAwareInterface.php', - 'Symfony\\Contracts\\Translation\\Test\\TranslatorTest' => __DIR__ . '/..' . '/symfony/translation-contracts/Test/TranslatorTest.php', - 'Symfony\\Contracts\\Translation\\TranslatorInterface' => __DIR__ . '/..' . '/symfony/translation-contracts/TranslatorInterface.php', - 'Symfony\\Contracts\\Translation\\TranslatorTrait' => __DIR__ . '/..' . '/symfony/translation-contracts/TranslatorTrait.php', - 'Symfony\\Polyfill\\Ctype\\Ctype' => __DIR__ . '/..' . '/symfony/polyfill-ctype/Ctype.php', - 'Symfony\\Polyfill\\Mbstring\\Mbstring' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/Mbstring.php', - 'Symfony\\Polyfill\\Php73\\Php73' => __DIR__ . '/..' . '/symfony/polyfill-php73/Php73.php', - 'Taxonomy_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Taxonomy_Command.php', - 'Term_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Term_Command.php', - 'Term_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/Term_Meta_Command.php', - 'Text_Template' => __DIR__ . '/..' . '/phpunit/php-text-template/src/Template.php', - 'TheSeer\\Tokenizer\\Exception' => __DIR__ . '/..' . '/theseer/tokenizer/src/Exception.php', - 'TheSeer\\Tokenizer\\NamespaceUri' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUri.php', - 'TheSeer\\Tokenizer\\NamespaceUriException' => __DIR__ . '/..' . '/theseer/tokenizer/src/NamespaceUriException.php', - 'TheSeer\\Tokenizer\\Token' => __DIR__ . '/..' . '/theseer/tokenizer/src/Token.php', - 'TheSeer\\Tokenizer\\TokenCollection' => __DIR__ . '/..' . '/theseer/tokenizer/src/TokenCollection.php', - 'TheSeer\\Tokenizer\\TokenCollectionException' => __DIR__ . '/..' . '/theseer/tokenizer/src/TokenCollectionException.php', - 'TheSeer\\Tokenizer\\Tokenizer' => __DIR__ . '/..' . '/theseer/tokenizer/src/Tokenizer.php', - 'TheSeer\\Tokenizer\\XMLSerializer' => __DIR__ . '/..' . '/theseer/tokenizer/src/XMLSerializer.php', - 'Theme_Command' => __DIR__ . '/..' . '/wp-cli/extension-command/src/Theme_Command.php', - 'Theme_Language_Command' => __DIR__ . '/..' . '/wp-cli/language-command/src/Theme_Language_Command.php', - 'Theme_Mod_Command' => __DIR__ . '/..' . '/wp-cli/extension-command/src/Theme_Mod_Command.php', - 'Transient_Command' => __DIR__ . '/..' . '/wp-cli/cache-command/src/Transient_Command.php', - 'User_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Command.php', - 'User_Meta_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Meta_Command.php', - 'User_Session_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Session_Command.php', - 'User_Term_Command' => __DIR__ . '/..' . '/wp-cli/entity-command/src/User_Term_Command.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Cart_Items' => __DIR__ . '/../..' . '/includes/connection/class-cart-items.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Coupons' => __DIR__ . '/../..' . '/includes/connection/class-coupons.php', 'WPGraphQL\\Extensions\\WooCommerce\\Connection\\Customers' => __DIR__ . '/../..' . '/includes/connection/class-customers.php', @@ -3085,265 +129,15 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'WPGraphQL\\Extensions\\WooCommerce\\Type_Registry' => __DIR__ . '/../..' . '/includes/class-type-registry.php', 'WPGraphQL\\Extensions\\WooCommerce\\Utils\\QL_Session_Handler' => __DIR__ . '/../..' . '/includes/utils/class-ql-session-handler.php', 'WPGraphQL\\Extensions\\WooCommerce\\WooCommerce_Filters' => __DIR__ . '/../..' . '/includes/class-woocommerce-filters.php', - 'WP_CLI' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/class-wp-cli.php', - 'WP_CLI\\Autoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Autoloader.php', - 'WP_CLI\\Bootstrap\\AutoloaderStep' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/AutoloaderStep.php', - 'WP_CLI\\Bootstrap\\BootstrapState' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapState.php', - 'WP_CLI\\Bootstrap\\BootstrapStep' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapStep.php', - 'WP_CLI\\Bootstrap\\ConfigureRunner' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/ConfigureRunner.php', - 'WP_CLI\\Bootstrap\\DeclareAbstractBaseCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareAbstractBaseCommand.php', - 'WP_CLI\\Bootstrap\\DeclareMainClass' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareMainClass.php', - 'WP_CLI\\Bootstrap\\DefineProtectedCommands' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DefineProtectedCommands.php', - 'WP_CLI\\Bootstrap\\IncludeFallbackAutoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFallbackAutoloader.php', - 'WP_CLI\\Bootstrap\\IncludeFrameworkAutoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFrameworkAutoloader.php', - 'WP_CLI\\Bootstrap\\IncludePackageAutoloader' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludePackageAutoloader.php', - 'WP_CLI\\Bootstrap\\InitializeColorization' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeColorization.php', - 'WP_CLI\\Bootstrap\\InitializeLogger' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeLogger.php', - 'WP_CLI\\Bootstrap\\LaunchRunner' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php', - 'WP_CLI\\Bootstrap\\LoadDispatcher' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadDispatcher.php', - 'WP_CLI\\Bootstrap\\LoadRequiredCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadRequiredCommand.php', - 'WP_CLI\\Bootstrap\\LoadUtilityFunctions' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadUtilityFunctions.php', - 'WP_CLI\\Bootstrap\\RegisterDeferredCommands' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterDeferredCommands.php', - 'WP_CLI\\Bootstrap\\RegisterFrameworkCommands' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterFrameworkCommands.php', - 'WP_CLI\\Bootstrap\\RunnerInstance' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RunnerInstance.php', - 'WP_CLI\\CommandWithDBObject' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/CommandWithDBObject.php', - 'WP_CLI\\CommandWithMeta' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/CommandWithMeta.php', - 'WP_CLI\\CommandWithTerms' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/CommandWithTerms.php', - 'WP_CLI\\CommandWithTranslation' => __DIR__ . '/..' . '/wp-cli/language-command/src/WP_CLI/CommandWithTranslation.php', - 'WP_CLI\\CommandWithUpgrade' => __DIR__ . '/..' . '/wp-cli/extension-command/src/WP_CLI/CommandWithUpgrade.php', - 'WP_CLI\\Completions' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Completions.php', - 'WP_CLI\\ComposerIO' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/ComposerIO.php', - 'WP_CLI\\Configurator' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Configurator.php', - 'WP_CLI\\Core\\CoreUpgrader' => __DIR__ . '/..' . '/wp-cli/core-command/src/WP_CLI/Core/CoreUpgrader.php', - 'WP_CLI\\Core\\NonDestructiveCoreUpgrader' => __DIR__ . '/..' . '/wp-cli/core-command/src/WP_CLI/Core/NonDestructiveCoreUpgrader.php', - 'WP_CLI\\DestructivePluginUpgrader' => __DIR__ . '/..' . '/wp-cli/extension-command/src/WP_CLI/DestructivePluginUpgrader.php', - 'WP_CLI\\DestructiveThemeUpgrader' => __DIR__ . '/..' . '/wp-cli/extension-command/src/WP_CLI/DestructiveThemeUpgrader.php', - 'WP_CLI\\Dispatcher\\CommandAddition' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandAddition.php', - 'WP_CLI\\Dispatcher\\CommandFactory' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandFactory.php', - 'WP_CLI\\Dispatcher\\CommandNamespace' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandNamespace.php', - 'WP_CLI\\Dispatcher\\CompositeCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CompositeCommand.php', - 'WP_CLI\\Dispatcher\\RootCommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/RootCommand.php', - 'WP_CLI\\Dispatcher\\Subcommand' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/Subcommand.php', - 'WP_CLI\\DocParser' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/DocParser.php', - 'WP_CLI\\Embeds\\Cache_Command' => __DIR__ . '/..' . '/wp-cli/embed-command/src/Cache_Command.php', - 'WP_CLI\\Embeds\\Embeds_Namespace' => __DIR__ . '/..' . '/wp-cli/embed-command/src/Embeds_Namespace.php', - 'WP_CLI\\Embeds\\Fetch_Command' => __DIR__ . '/..' . '/wp-cli/embed-command/src/Fetch_Command.php', - 'WP_CLI\\Embeds\\Handler_Command' => __DIR__ . '/..' . '/wp-cli/embed-command/src/Handler_Command.php', - 'WP_CLI\\Embeds\\Provider_Command' => __DIR__ . '/..' . '/wp-cli/embed-command/src/Provider_Command.php', - 'WP_CLI\\Embeds\\oEmbed' => __DIR__ . '/..' . '/wp-cli/embed-command/src/oEmbed.php', - 'WP_CLI\\Entity\\NonExistentKeyException' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/Entity/NonExistentKeyException.php', - 'WP_CLI\\Entity\\RecursiveDataStructureTraverser' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/Entity/RecursiveDataStructureTraverser.php', - 'WP_CLI\\Entity\\Utils' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/Entity/Utils.php', - 'WP_CLI\\ExitException' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/ExitException.php', - 'WP_CLI\\Extractor' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Extractor.php', - 'WP_CLI\\Fetchers\\Base' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Base.php', - 'WP_CLI\\Fetchers\\Comment' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Comment.php', - 'WP_CLI\\Fetchers\\Plugin' => __DIR__ . '/..' . '/wp-cli/extension-command/src/WP_CLI/Fetchers/Plugin.php', - 'WP_CLI\\Fetchers\\Post' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Post.php', - 'WP_CLI\\Fetchers\\Site' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Site.php', - 'WP_CLI\\Fetchers\\Theme' => __DIR__ . '/..' . '/wp-cli/extension-command/src/WP_CLI/Fetchers/Theme.php', - 'WP_CLI\\Fetchers\\UnfilteredPlugin' => __DIR__ . '/..' . '/wp-cli/checksum-command/src/WP_CLI/Fetchers/UnfilteredPlugin.php', - 'WP_CLI\\Fetchers\\User' => __DIR__ . '/..' . '/wp-cli/entity-command/src/WP_CLI/Fetchers/User.php', - 'WP_CLI\\FileCache' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/FileCache.php', - 'WP_CLI\\Formatter' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Formatter.php', - 'WP_CLI\\I18n\\CommandNamespace' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/CommandNamespace.php', - 'WP_CLI\\I18n\\IterableCodeExtractor' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/IterableCodeExtractor.php', - 'WP_CLI\\I18n\\JedGenerator' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/JedGenerator.php', - 'WP_CLI\\I18n\\JsCodeExtractor' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/JsCodeExtractor.php', - 'WP_CLI\\I18n\\JsFunctionsScanner' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/JsFunctionsScanner.php', - 'WP_CLI\\I18n\\MakeJsonCommand' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/MakeJsonCommand.php', - 'WP_CLI\\I18n\\MakePotCommand' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/MakePotCommand.php', - 'WP_CLI\\I18n\\MapCodeExtractor' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/MapCodeExtractor.php', - 'WP_CLI\\I18n\\PhpCodeExtractor' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/PhpCodeExtractor.php', - 'WP_CLI\\I18n\\PhpFunctionsScanner' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/PhpFunctionsScanner.php', - 'WP_CLI\\I18n\\PotGenerator' => __DIR__ . '/..' . '/wp-cli/i18n-command/src/PotGenerator.php', - 'WP_CLI\\Inflector' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Inflector.php', - 'WP_CLI\\Iterators\\CSV' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/CSV.php', - 'WP_CLI\\Iterators\\Exception' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Exception.php', - 'WP_CLI\\Iterators\\Query' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Query.php', - 'WP_CLI\\Iterators\\Table' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Table.php', - 'WP_CLI\\Iterators\\Transform' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Transform.php', - 'WP_CLI\\JsonManipulator' => __DIR__ . '/..' . '/wp-cli/package-command/src/WP_CLI/JsonManipulator.php', - 'WP_CLI\\LanguagePackUpgrader' => __DIR__ . '/..' . '/wp-cli/language-command/src/WP_CLI/LanguagePackUpgrader.php', - 'WP_CLI\\Loggers\\Base' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Base.php', - 'WP_CLI\\Loggers\\Execution' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Execution.php', - 'WP_CLI\\Loggers\\Quiet' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Quiet.php', - 'WP_CLI\\Loggers\\Regular' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Regular.php', - 'WP_CLI\\MaintenanceMode\\MaintenanceModeCommand' => __DIR__ . '/..' . '/wp-cli/maintenance-mode-command/src/MaintenanceModeCommand.php', - 'WP_CLI\\NoOp' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/NoOp.php', - 'WP_CLI\\PackageManagerEventSubscriber' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/PackageManagerEventSubscriber.php', - 'WP_CLI\\Process' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Process.php', - 'WP_CLI\\ProcessRun' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/ProcessRun.php', - 'WP_CLI\\Runner' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/Runner.php', - 'WP_CLI\\SearchReplacer' => __DIR__ . '/..' . '/wp-cli/search-replace-command/src/WP_CLI/SearchReplacer.php', - 'WP_CLI\\Shell\\REPL' => __DIR__ . '/..' . '/wp-cli/shell-command/src/WP_CLI/Shell/REPL.php', - 'WP_CLI\\SynopsisParser' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/SynopsisParser.php', - 'WP_CLI\\SynopsisValidator' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/SynopsisValidator.php', - 'WP_CLI\\UpgraderSkin' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/UpgraderSkin.php', - 'WP_CLI\\WpHttpCacheManager' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/WP_CLI/WpHttpCacheManager.php', - 'WP_CLI_Command' => __DIR__ . '/..' . '/wp-cli/wp-cli/php/class-wp-cli-command.php', - 'WP_Export_Base_Writer' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Base_Writer.php', - 'WP_Export_Exception' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Exception.php', - 'WP_Export_File_Writer' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_File_Writer.php', - 'WP_Export_Oxymel' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Oxymel.php', - 'WP_Export_Query' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Query.php', - 'WP_Export_Returner' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Returner.php', - 'WP_Export_Split_Files_Writer' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Split_Files_Writer.php', - 'WP_Export_Stdout_Writer' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Stdout_Writer.php', - 'WP_Export_Term_Exception' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_Term_Exception.php', - 'WP_Export_WXR_Formatter' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_WXR_Formatter.php', - 'WP_Export_XML_Over_HTTP' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Export_XML_Over_HTTP.php', 'WP_GraphQL_WooCommerce' => __DIR__ . '/../..' . '/includes/class-wp-graphql-woocommerce.php', - 'WP_Iterator_Exception' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Iterator_Exception.php', - 'WP_Map_Iterator' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Map_Iterator.php', - 'WP_Post_IDs_Iterator' => __DIR__ . '/..' . '/wp-cli/export-command/src/WP_Post_IDs_Iterator.php', - 'Webmozart\\Assert\\Assert' => __DIR__ . '/..' . '/webmozart/assert/src/Assert.php', - 'Widget_Command' => __DIR__ . '/..' . '/wp-cli/widget-command/src/Widget_Command.php', - 'cli\\Arguments' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Arguments.php', - 'cli\\Colors' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Colors.php', - 'cli\\Memoize' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Memoize.php', - 'cli\\Notify' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Notify.php', - 'cli\\Progress' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Progress.php', - 'cli\\Shell' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Shell.php', - 'cli\\Streams' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Streams.php', - 'cli\\Table' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Table.php', - 'cli\\Tree' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/Tree.php', - 'cli\\arguments\\Argument' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/Argument.php', - 'cli\\arguments\\HelpScreen' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/HelpScreen.php', - 'cli\\arguments\\InvalidArguments' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/InvalidArguments.php', - 'cli\\arguments\\Lexer' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/arguments/Lexer.php', - 'cli\\notify\\Dots' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/notify/Dots.php', - 'cli\\notify\\Spinner' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/notify/Spinner.php', - 'cli\\progress\\Bar' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/progress/Bar.php', - 'cli\\table\\Ascii' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/table/Ascii.php', - 'cli\\table\\Renderer' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/table/Renderer.php', - 'cli\\table\\Tabular' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/table/Tabular.php', - 'cli\\tree\\Ascii' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/tree/Ascii.php', - 'cli\\tree\\Markdown' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/tree/Markdown.php', - 'cli\\tree\\Renderer' => __DIR__ . '/..' . '/wp-cli/php-cli-tools/lib/cli/tree/Renderer.php', - 'phpDocumentor\\Reflection\\DocBlock' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock.php', - 'phpDocumentor\\Reflection\\DocBlockFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlockFactory.php', - 'phpDocumentor\\Reflection\\DocBlockFactoryInterface' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php', - 'phpDocumentor\\Reflection\\DocBlock\\Description' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Description.php', - 'phpDocumentor\\Reflection\\DocBlock\\DescriptionFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/DescriptionFactory.php', - 'phpDocumentor\\Reflection\\DocBlock\\ExampleFinder' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/ExampleFinder.php', - 'phpDocumentor\\Reflection\\DocBlock\\Serializer' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Serializer.php', - 'phpDocumentor\\Reflection\\DocBlock\\StandardTagFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/StandardTagFactory.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tag' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tag.php', - 'phpDocumentor\\Reflection\\DocBlock\\TagFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/TagFactory.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Author' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Author.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\BaseTag' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/BaseTag.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Covers' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Covers.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Deprecated' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Deprecated.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Example' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\StaticMethod' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/StaticMethod.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\Strategy' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/Strategy.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\AlignFormatter' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/AlignFormatter.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\PassthroughFormatter' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/PassthroughFormatter.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Generic' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Generic.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Link' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Link.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Method' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Method.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Param' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Param.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Property' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Property.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyRead' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyRead.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyWrite' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyWrite.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Fqsen' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Fqsen.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Reference' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Reference.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Url' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Url.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Return_' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Return_.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\See' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/See.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Since' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Source' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Source.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Throws' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Throws.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Uses' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Uses.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Var_' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Var_.php', - 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Version' => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Version.php', - 'phpDocumentor\\Reflection\\Element' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/Element.php', - 'phpDocumentor\\Reflection\\File' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/File.php', - 'phpDocumentor\\Reflection\\Fqsen' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/Fqsen.php', - 'phpDocumentor\\Reflection\\FqsenResolver' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/FqsenResolver.php', - 'phpDocumentor\\Reflection\\Location' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/Location.php', - 'phpDocumentor\\Reflection\\Project' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/Project.php', - 'phpDocumentor\\Reflection\\ProjectFactory' => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src/ProjectFactory.php', - 'phpDocumentor\\Reflection\\Type' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Type.php', - 'phpDocumentor\\Reflection\\TypeResolver' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/TypeResolver.php', - 'phpDocumentor\\Reflection\\Types\\Array_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Array_.php', - 'phpDocumentor\\Reflection\\Types\\Boolean' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Boolean.php', - 'phpDocumentor\\Reflection\\Types\\Callable_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Callable_.php', - 'phpDocumentor\\Reflection\\Types\\Compound' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Compound.php', - 'phpDocumentor\\Reflection\\Types\\Context' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Context.php', - 'phpDocumentor\\Reflection\\Types\\ContextFactory' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/ContextFactory.php', - 'phpDocumentor\\Reflection\\Types\\Float_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Float_.php', - 'phpDocumentor\\Reflection\\Types\\Integer' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Integer.php', - 'phpDocumentor\\Reflection\\Types\\Iterable_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Iterable_.php', - 'phpDocumentor\\Reflection\\Types\\Mixed_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Mixed_.php', - 'phpDocumentor\\Reflection\\Types\\Null_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Null_.php', - 'phpDocumentor\\Reflection\\Types\\Nullable' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Nullable.php', - 'phpDocumentor\\Reflection\\Types\\Object_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Object_.php', - 'phpDocumentor\\Reflection\\Types\\Parent_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Parent_.php', - 'phpDocumentor\\Reflection\\Types\\Resource_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Resource_.php', - 'phpDocumentor\\Reflection\\Types\\Scalar' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Scalar.php', - 'phpDocumentor\\Reflection\\Types\\Self_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Self_.php', - 'phpDocumentor\\Reflection\\Types\\Static_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Static_.php', - 'phpDocumentor\\Reflection\\Types\\String_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/String_.php', - 'phpDocumentor\\Reflection\\Types\\This' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/This.php', - 'phpDocumentor\\Reflection\\Types\\Void_' => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src/Types/Void_.php', - 'tad\\WPBrowser\\Adapters\\WP' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Adapters/WP.php', - 'tad\\WPBrowser\\Connector\\WordPress' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Connector/WordPress.php', - 'tad\\WPBrowser\\Documentation\\TableGenerator' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Documentation/TableGenerator.php', - 'tad\\WPBrowser\\Environment\\Constants' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/Constants.php', - 'tad\\WPBrowser\\Environment\\Executor' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/Executor.php', - 'tad\\WPBrowser\\Environment\\System' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/System.php', - 'tad\\WPBrowser\\Extension\\Copier' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Extension/Copier.php', - 'tad\\WPBrowser\\Extension\\Symlinker' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Extension/Symlinker.php', - 'tad\\WPBrowser\\Filesystem\\FileReplacers\\AbstractFileReplacer' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/AbstractFileReplacer.php', - 'tad\\WPBrowser\\Filesystem\\FileReplacers\\HtaccesReplacer' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/HtaccesReplacer.php', - 'tad\\WPBrowser\\Filesystem\\FileReplacers\\WPConfigReplacer' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/WPConfigReplacer.php', - 'tad\\WPBrowser\\Filesystem\\Filesystem' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/Filesystem.php', - 'tad\\WPBrowser\\Filesystem\\Utils' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/Utils.php', - 'tad\\WPBrowser\\Generators\\Blog' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Blog.php', - 'tad\\WPBrowser\\Generators\\Comment' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Comment.php', - 'tad\\WPBrowser\\Generators\\Date' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Date.php', - 'tad\\WPBrowser\\Generators\\Links' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Links.php', - 'tad\\WPBrowser\\Generators\\Post' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Post.php', - 'tad\\WPBrowser\\Generators\\RedirectingWPConfig' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/RedirectingWPConfig.php', - 'tad\\WPBrowser\\Generators\\SubdomainHtaccess' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/SubdomainHtaccess.php', - 'tad\\WPBrowser\\Generators\\SubfolderHtaccess' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/SubfolderHtaccess.php', - 'tad\\WPBrowser\\Generators\\Tables' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Tables.php', - 'tad\\WPBrowser\\Generators\\TemplateProviderInterface' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/TemplateProviderInterface.php', - 'tad\\WPBrowser\\Generators\\User' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/User.php', - 'tad\\WPBrowser\\Generators\\User\\Roles' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/User/Roles.php', - 'tad\\WPBrowser\\Generators\\WpPassword' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/WpPassword.php', - 'tad\\WPBrowser\\Iterators\\Filters\\ActionsQueriesFilter' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/ActionsQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\ClassMethodQueriesFilter' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/ClassMethodQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\FactoryQueriesFilter' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FactoryQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\FiltersQueriesFilter' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FiltersQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\FunctionQueriesFilter' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FunctionQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\MainStatementQueriesFilter' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/MainStatementQueriesFilter.php', - 'tad\\WPBrowser\\Iterators\\Filters\\QueriesCallerBasedFilterIterator' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/QueriesCallerBasedFilterIterator.php', - 'tad\\WPBrowser\\Iterators\\Filters\\QueriesCallerBasedKeepingFilterIterator' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/QueriesCallerBasedKeepingFilterIterator.php', - 'tad\\WPBrowser\\Iterators\\Filters\\SetupTearDownQueriesFilter' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/SetupTearDownQueriesFilter.php', - 'tad\\WPBrowser\\Module\\Support\\DbDump' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Module/Support/DbDump.php', - 'tad\\WPBrowser\\Module\\Support\\UriToIndexMapper' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Module/Support/UriToIndexMapper.php', - 'tad\\WPBrowser\\Module\\WPLoader\\FactoryStore' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/FactoryStore.php', - 'tad\\WPBrowser\\Module\\WPLoader\\Filters' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/Filters.php', - 'tad\\WPBrowser\\Module\\WPLoader\\FiltersGroup' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/FiltersGroup.php', - 'tad\\WPBrowser\\Services\\Db\\MySQLDumpFactory' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpFactory.php', - 'tad\\WPBrowser\\Services\\Db\\MySQLDumpFactoryInterface' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpFactoryInterface.php', - 'tad\\WPBrowser\\Services\\Db\\MySQLDumpInterface' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpInterface.php', - 'tad\\WPBrowser\\Services\\WP\\Bootstrapper' => __DIR__ . '/..' . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/WP/Bootstrapper.php', - 'tad\\WPBrowser\\Template\\Data' => __DIR__ . '/..' . '/lucatume/wp-browser/src/tad/WPBrowser/Template/Data.php', ); public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$prefixDirsPsr4; - $loader->fallbackDirsPsr4 = ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$fallbackDirsPsr4; - $loader->prefixesPsr0 = ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$prefixesPsr0; - $loader->classMap = ComposerStaticInit7a6810d883e7e56f4120cefc43c77766::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInit83ea8ceeec7856c3ed76cc34ad81baa1::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit83ea8ceeec7856c3ed76cc34ad81baa1::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInit83ea8ceeec7856c3ed76cc34ad81baa1::$classMap; }, null, ClassLoader::class); } From 04f681251dab7b767f13dd83754a84e08ec6d49e Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Wed, 21 Aug 2019 16:51:21 -0400 Subject: [PATCH 46/56] Problematic code removed. --- includes/data/connection/class-post-connection-resolver.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/includes/data/connection/class-post-connection-resolver.php b/includes/data/connection/class-post-connection-resolver.php index cfc8ed81b..ec7f0016b 100644 --- a/includes/data/connection/class-post-connection-resolver.php +++ b/includes/data/connection/class-post-connection-resolver.php @@ -33,8 +33,6 @@ class Post_Connection_Resolver { public static function get_query_args( $query_args, $source, $args, $context, $info ) { // Determine where we're at in the Graph and adjust the query context appropriately. if ( true === is_object( $source ) ) { - $query_args['post_parent'] = 0; - unset( $query_args['post__in'] ); switch ( true ) { case is_a( $source, Product::class ): // @codingStandardsIgnoreLine From 8a68cf9637ff97556238d8febd038f435c62b688 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 22 Aug 2019 11:27:52 -0400 Subject: [PATCH 47/56] Bug related to resolving product connections by taxonomies fixed. --- includes/connection/class-products.php | 60 +++--- .../class-product-connection-resolver.php | 83 ++++---- tests/wpunit/ProductQueriesTest.php | 186 +++++++++++++++++- 3 files changed, 254 insertions(+), 75 deletions(-) diff --git a/includes/connection/class-products.php b/includes/connection/class-products.php index 66b6ecf8c..eefdc60e8 100644 --- a/includes/connection/class-products.php +++ b/includes/connection/class-products.php @@ -158,115 +158,115 @@ public static function get_connection_config( $args = [] ) { */ public static function get_connection_args() { $args = array( - 'slug' => array( + 'slug' => array( 'type' => 'String', 'description' => __( 'Limit result set to products with a specific slug.', 'wp-graphql-woocommerce' ), ), - 'status' => array( + 'status' => array( 'type' => 'String', 'description' => __( 'Limit result set to products assigned a specific status.', 'wp-graphql-woocommerce' ), ), - 'type' => array( + 'type' => array( 'type' => 'ProductTypesEnum', 'description' => __( 'Limit result set to products assigned a specific type.', 'wp-graphql-woocommerce' ), ), - 'typeIn' => array( + 'typeIn' => array( 'type' => array( 'list_of' => 'ProductTypesEnum' ), 'description' => __( 'Limit result set to products assigned to a group of specific types.', 'wp-graphql-woocommerce' ), ), - 'typeNotIn' => array( + 'typeNotIn' => array( 'type' => array( 'list_of' => 'ProductTypesEnum' ), 'description' => __( 'Limit result set to products not assigned to a group of specific types.', 'wp-graphql-woocommerce' ), ), - 'sku' => array( + 'sku' => array( 'type' => 'String', 'description' => __( 'Limit result set to products with specific SKU(s). Use commas to separate.', 'wp-graphql-woocommerce' ), ), - 'featured' => array( + 'featured' => array( 'type' => 'Boolean', 'description' => __( 'Limit result set to featured products.', 'wp-graphql-woocommerce' ), ), - 'categoryName' => array( + 'category' => array( 'type' => 'String', 'description' => __( 'Limit result set to products assigned a specific category name.', 'wp-graphql-woocommerce' ), ), - 'categoryNameIn' => array( + 'categoryIn' => array( 'type' => array( 'list_of' => 'String' ), 'description' => __( 'Limit result set to products assigned to a group of specific categories by name.', 'wp-graphql-woocommerce' ), ), - 'categoryNameNotIn' => array( + 'categoryNotIn' => array( 'type' => array( 'list_of' => 'String' ), 'description' => __( 'Limit result set to products not assigned to a group of specific categories by name.', 'wp-graphql-woocommerce' ), ), - 'category' => array( + 'categoryId' => array( 'type' => 'Int', 'description' => __( 'Limit result set to products assigned a specific category name.', 'wp-graphql-woocommerce' ), ), - 'categoryIn' => array( + 'categoryIdIn' => array( 'type' => array( 'list_of' => 'Int' ), 'description' => __( 'Limit result set to products assigned to a specific group of category IDs.', 'wp-graphql-woocommerce' ), ), - 'categoryNotIn' => array( + 'categoryIdNotIn' => array( 'type' => array( 'list_of' => 'Int' ), 'description' => __( 'Limit result set to products not assigned to a specific group of category IDs.', 'wp-graphql-woocommerce' ), ), - 'tag' => array( + 'tag' => array( 'type' => 'String', 'description' => __( 'Limit result set to products assigned a specific tag name.', 'wp-graphql-woocommerce' ), ), - 'tagSlugIn' => array( + 'tagIn' => array( 'type' => array( 'list_of' => 'String' ), - 'description' => __( 'Limit result set to products assigned to a specific group of tag IDs.', 'wp-graphql-woocommerce' ), + 'description' => __( 'Limit result set to products assigned to a specific group of tags by name.', 'wp-graphql-woocommerce' ), ), - 'tagSlugNotIn' => array( + 'tagNotIn' => array( 'type' => array( 'list_of' => 'String' ), - 'description' => __( 'Limit result set to products not assigned to a specific group of tag IDs.', 'wp-graphql-woocommerce' ), + 'description' => __( 'Limit result set to products not assigned to a specific group of tags by name.', 'wp-graphql-woocommerce' ), ), - 'tagId' => array( + 'tagId' => array( 'type' => 'Int', 'description' => __( 'Limit result set to products assigned a specific tag ID.', 'wp-graphql-woocommerce' ), ), - 'tagIn' => array( + 'tagIdIn' => array( 'type' => array( 'list_of' => 'Int' ), 'description' => __( 'Limit result set to products assigned to a specific group of tag IDs.', 'wp-graphql-woocommerce' ), ), - 'tagNotIn' => array( + 'tagIdNotIn' => array( 'type' => array( 'list_of' => 'Int' ), 'description' => __( 'Limit result set to products not assigned to a specific group of tag IDs.', 'wp-graphql-woocommerce' ), ), - 'shippingClassId' => array( + 'shippingClassId' => array( 'type' => 'Int', 'description' => __( 'Limit result set to products assigned a specific shipping class ID.', 'wp-graphql-woocommerce' ), ), - 'attribute' => array( + 'attribute' => array( 'type' => 'String', 'description' => __( 'Limit result set to products with a specific attribute. Use the taxonomy name/attribute slug.', 'wp-graphql-woocommerce' ), ), - 'attributeTerm' => array( + 'attributeTerm' => array( 'type' => 'String', 'description' => __( 'Limit result set to products with a specific attribute term ID (required an assigned attribute).', 'wp-graphql-woocommerce' ), ), - 'stockStatus' => array( + 'stockStatus' => array( 'type' => array( 'list_of' => 'StockStatusEnum' ), 'description' => __( 'Limit result set to products in stock or out of stock.', 'wp-graphql-woocommerce' ), ), - 'onSale' => array( + 'onSale' => array( 'type' => 'Boolean', 'description' => __( 'Limit result set to products on sale.', 'wp-graphql-woocommerce' ), ), - 'minPrice' => array( + 'minPrice' => array( 'type' => 'Float', 'description' => __( 'Limit result set to products based on a minimum price.', 'wp-graphql-woocommerce' ), ), - 'maxPrice' => array( + 'maxPrice' => array( 'type' => 'Float', 'description' => __( 'Limit result set to products based on a maximum price.', 'wp-graphql-woocommerce' ), ), - 'search' => array( + 'search' => array( 'type' => 'String', 'description' => __( 'Limit result set to products based on a keyword search.', 'wp-graphql-woocommerce' ), ), - 'visibility' => array( + 'visibility' => array( 'type' => 'CatalogVisibilityEnum', 'description' => __( 'Limit result set to products with a specific visibility level.', 'wp-graphql-woocommerce' ), ), diff --git a/includes/data/connection/class-product-connection-resolver.php b/includes/data/connection/class-product-connection-resolver.php index ac6efde4d..90ff181fb 100644 --- a/includes/data/connection/class-product-connection-resolver.php +++ b/includes/data/connection/class-product-connection-resolver.php @@ -328,79 +328,74 @@ public function sanitize_input_fields( array $where_args ) { $tax_query = array(); $taxonomy_args = array( - 'type' => 'product_type', - 'typeIn' => 'product_type', - 'typeNotIn' => 'product_type', - 'categoryName' => 'product_cat', - 'category' => 'product_cat', - 'categoryIn' => 'product_cat', - 'categoryNotIn' => 'product_cat', - 'tagSlug' => 'product_tag', - 'tagId' => 'product_tag', - 'tagIn' => 'product_tag', - 'tagNotIn' => 'product_tag', + 'type' => 'product_type', + 'typeIn' => 'product_type', + 'typeNotIn' => 'product_type', + 'category' => 'product_cat', + 'categoryIn' => 'product_cat', + 'categoryNotIn' => 'product_cat', + 'categoryId' => 'product_cat', + 'categoryIdIn' => 'product_cat', + 'categoryIdNotIn' => 'product_cat', + 'tag' => 'product_tag', + 'tagIn' => 'product_tag', + 'tagNotIn' => 'product_tag', + 'tagId' => 'product_tag', + 'tagIdIn' => 'product_tag', + 'tagIdNotIn' => 'product_tag', ); foreach ( $taxonomy_args as $field => $taxonomy ) { if ( ! empty( $where_args[ $field ] ) ) { + // Set tax query operator. + switch ( true ) { + case \wc_graphql_ends_with( $field, 'NotIn' ): + $operator = 'NOT IN'; + break; + default: + $operator = 'IN'; + break; + } + + // Set tax query config. switch ( $field ) { case 'type': case 'typeIn': case 'typeNotIn': - $tax_query[] = array( - 'taxonomy' => $taxonomy, - 'field' => 'slug', - 'terms' => $where_args[ $field ], - ); - break; - case 'categoryName': - case 'categoryNameIn': - case 'categoryNameNotIn': - $tax_query[] = array( - 'taxonomy' => $taxonomy, - 'field' => 'slug', - 'terms' => $where_args[ $field ], - ); - break; case 'category': case 'categoryIn': case 'categoryNotIn': - $tax_query[] = array( - 'taxonomy' => $taxonomy, - 'field' => 'term_id', - 'terms' => $where_args[ $field ], - ); - break; case 'tag': - case 'tagSlugIn': - case 'tagSlugNotIn': + case 'tagIn': + case 'tagNotIn': $tax_query[] = array( 'taxonomy' => $taxonomy, 'field' => 'slug', 'terms' => $where_args[ $field ], + 'operator' => $operator, ); break; + case 'categoryId': + case 'categoryIdIn': + case 'categoryIdNotIn': case 'tagId': - case 'tagIn': - case 'tagNotIn': + case 'tagIdIn': + case 'tagIdNotIn': $tax_query[] = array( 'taxonomy' => $taxonomy, 'field' => 'term_id', 'terms' => $where_args[ $field ], + 'operator' => $operator, ); break; } - - if ( \wc_graphql_ends_with( $field, 'NotIn' ) ) { - $key = max( array_keys( $tax_query ) ); - $tax_query[ $key ]['operator'] = 'NOT IN'; - } elseif ( \wc_graphql_ends_with( $field, 'In' ) ) { - $key = max( array_keys( $tax_query ) ); - $tax_query[ $key ]['operator'] = 'IN'; - } } } + if ( 1 < count( $tax_query ) ) { + $tax_query['relation'] = 'AND'; + } + // Filter by attribute and term. if ( ! empty( $where_args['attribute'] ) && ! empty( $where_args['attributeTerm'] ) ) { if ( in_array( $where_args['attribute'], \wc_get_attribute_taxonomy_names(), true ) ) { diff --git a/tests/wpunit/ProductQueriesTest.php b/tests/wpunit/ProductQueriesTest.php index 48b1069d4..713ea32cd 100644 --- a/tests/wpunit/ProductQueriesTest.php +++ b/tests/wpunit/ProductQueriesTest.php @@ -186,17 +186,21 @@ public function testProductByQueryAndArgs() { } public function testProductsQueryAndWhereArgs() { + $category_3 = $this->helper->create_product_category( 'category-three' ); + $category_4 = $this->helper->create_product_category( 'category-four' ); $products = array ( $this->product, $this->helper->create_simple( array( 'price' => 10, 'regular_price' => 10, + 'category_ids' => array( $category_3, $category_4 ) ) ), $this->helper->create_simple( array( - 'featured' => "true", + 'featured' => 'true', + 'category_ids' => array( $category_3 ), ) ), $this->helper->create_external(), @@ -206,6 +210,12 @@ public function testProductsQueryAndWhereArgs() { query ProductsQuery( $slug: String, $status: String, + $category: String, + $categoryIn: [String], + $categoryNotIn: [String], + $categoryId: Int, + $categoryIdIn: [Int] + $categoryIdNotIn: [Int] $type: ProductTypesEnum, $typeIn: [ProductTypesEnum], $typeNotIn: [ProductTypesEnum], @@ -216,6 +226,12 @@ public function testProductsQueryAndWhereArgs() { products( where: { slug: $slug, status: $status, + category: $category, + categoryIn: $categoryIn, + categoryNotIn: $categoryNotIn, + categoryId: $categoryId, + categoryIdIn: $categoryIdIn, + categoryIdNotIn: $categoryIdNotIn, type: $type, typeIn: $typeIn, typeNotIn: $typeNotIn, @@ -463,6 +479,174 @@ public function testProductsQueryAndWhereArgs() { codecept_debug( $actual ); $this->assertEquals( $expected, $actual ); + + /** + * Assertion Ten + * + * tests "categoryName" where argument + */ + $variables = array( 'category' => 'category-three' ); + $actual = do_graphql_request( $query, 'ProductsQuery', $variables ); + $expected = array( + 'data' => array( + 'products' => array( + 'nodes' => $this->helper->print_nodes( + $products, + array( + 'filter' => function( $id ) use ( $category_3 ) { + $product = \wc_get_product( $id ); + return in_array( $category_3, $product->get_category_ids(), true ); + }, + ) + ), + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEquals( $expected, $actual ); + + /** + * Assertion Eleven + * + * tests "categoryName" where argument + */ + $variables = array( 'categoryIn' => array( 'category-three' ) ); + $actual = do_graphql_request( $query, 'ProductsQuery', $variables ); + $expected = array( + 'data' => array( + 'products' => array( + 'nodes' => $this->helper->print_nodes( + $products, + array( + 'filter' => function( $id ) use ( $category_3 ) { + $product = \wc_get_product( $id ); + return in_array( $category_3, $product->get_category_ids(), true ); + }, + ) + ), + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEquals( $expected, $actual ); + + /** + * Assertion Twelve + * + * tests "categoryName" where argument + */ + $variables = array( 'categoryNotIn' => array( 'category-four' ) ); + $actual = do_graphql_request( $query, 'ProductsQuery', $variables ); + $expected = array( + 'data' => array( + 'products' => array( + 'nodes' => $this->helper->print_nodes( + $products, + array( + 'filter' => function( $id ) use ( $category_4 ) { + $product = \wc_get_product( $id ); + return ! in_array( $category_4, $product->get_category_ids() ); + }, + ) + ), + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEquals( $expected, $actual ); + + /** + * Assertion Thirteen + * + * tests "categoryName" where argument + */ + $variables = array( 'categoryId' => $category_3 ); + $actual = do_graphql_request( $query, 'ProductsQuery', $variables ); + $expected = array( + 'data' => array( + 'products' => array( + 'nodes' => $this->helper->print_nodes( + $products, + array( + 'filter' => function( $id ) use ( $category_3 ) { + $product = \wc_get_product( $id ); + return in_array( $category_3, $product->get_category_ids(), true ); + }, + ) + ), + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEquals( $expected, $actual ); + + /** + * Assertion Fourteen + * + * tests "categoryName" where argument + */ + $variables = array( 'categoryIdIn' => array( $category_3 ) ); + $actual = do_graphql_request( $query, 'ProductsQuery', $variables ); + $expected = array( + 'data' => array( + 'products' => array( + 'nodes' => $this->helper->print_nodes( + $products, + array( + 'filter' => function( $id ) use ( $category_3 ) { + $product = \wc_get_product( $id ); + return in_array( $category_3, $product->get_category_ids(), true ); + }, + ) + ), + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEquals( $expected, $actual ); + + /** + * Assertion Fifteen + * + * tests "categoryName" where argument + */ + $variables = array( 'categoryIdNotIn' => array( $category_4 ) ); + $actual = do_graphql_request( $query, 'ProductsQuery', $variables ); + $expected = array( + 'data' => array( + 'products' => array( + 'nodes' => $this->helper->print_nodes( + $products, + array( + 'filter' => function( $id ) use ( $category_4 ) { + $product = \wc_get_product( $id ); + return ! in_array( $category_4, $product->get_category_ids() );; + }, + ) + ), + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEquals( $expected, $actual ); } public function testProductToTermConnection() { From 05019140f87e0fdec356e9e89363eae3aca826b3 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 22 Aug 2019 15:31:34 -0400 Subject: [PATCH 48/56] Product connection field "taxonomyFilter" where arg implemented and tested. --- includes/class-type-registry.php | 4 ++ includes/connection/class-products.php | 4 ++ .../class-product-connection-resolver.php | 23 ++++++++ includes/type/enum/class-product-taxonomy.php | 43 ++++++++++++++ includes/type/enum/class-product-types.php | 2 +- includes/type/enum/class-tax-status.php | 12 ++-- .../type/enum/class-taxonomy-operator.php | 33 +++++++++++ .../class-product-taxonomy-filter-input.php | 44 ++++++++++++++ ...product-taxonomy-filter-relation-input.php | 34 +++++++++++ tests/wpunit/ProductQueriesTest.php | 59 +++++++++++++++++-- vendor/composer/autoload_classmap.php | 4 ++ vendor/composer/autoload_static.php | 4 ++ 12 files changed, 252 insertions(+), 14 deletions(-) create mode 100644 includes/type/enum/class-product-taxonomy.php create mode 100644 includes/type/enum/class-taxonomy-operator.php create mode 100644 includes/type/input/class-product-taxonomy-filter-input.php create mode 100644 includes/type/input/class-product-taxonomy-filter-relation-input.php diff --git a/includes/class-type-registry.php b/includes/class-type-registry.php index abaee4160..608d8741a 100644 --- a/includes/class-type-registry.php +++ b/includes/class-type-registry.php @@ -39,6 +39,8 @@ public static function graphql_register_types() { \WPGraphQL\Extensions\WooCommerce\Type\WPEnum\WC_Connection_Orderby_Enum::register(); \WPGraphQL\Extensions\WooCommerce\Type\WPEnum\Tax_Rate_Connection_Orderby_Enum::register(); \WPGraphQL\Extensions\WooCommerce\Type\WPEnum\Pricing_Field_Format::register(); + \WPGraphQL\Extensions\WooCommerce\Type\WPEnum\Product_Taxonomy::register(); + \WPGraphQL\Extensions\WooCommerce\Type\WPEnum\Taxonomy_Operator::register(); // InputObjects. \WPGraphQL\Extensions\WooCommerce\Type\WPInputObject\Customer_Address_Input::register(); @@ -51,6 +53,8 @@ public static function graphql_register_types() { \WPGraphQL\Extensions\WooCommerce\Type\WPInputObject\Shipping_Line_Input::register(); \WPGraphQL\Extensions\WooCommerce\Type\WPInputObject\Create_Account_Input::register(); \WPGraphQL\Extensions\WooCommerce\Type\WPInputObject\Cart_Item_Quantity_Input::register(); + \WPGraphQL\Extensions\WooCommerce\Type\WPInputObject\Product_Taxonomy_Filter_Input::register(); + \WPGraphQL\Extensions\WooCommerce\Type\WPInputObject\Product_Taxonomy_Filter_Relation_Input::register(); // Objects. \WPGraphQL\Extensions\WooCommerce\Type\WPObject\Coupon_Type::register(); diff --git a/includes/connection/class-products.php b/includes/connection/class-products.php index eefdc60e8..f8a15dfbc 100644 --- a/includes/connection/class-products.php +++ b/includes/connection/class-products.php @@ -270,6 +270,10 @@ public static function get_connection_args() { 'type' => 'CatalogVisibilityEnum', 'description' => __( 'Limit result set to products with a specific visibility level.', 'wp-graphql-woocommerce' ), ), + 'taxonomyFilter' => array( + 'type' => array( 'list_of' => 'ProductTaxonomyFilterRelationInput' ), + 'description' => __( 'Limit result set with complex set of taxonomy filters.', 'wp-graphql-woocommerce' ), + ), ); if ( wc_tax_enabled() ) { diff --git a/includes/data/connection/class-product-connection-resolver.php b/includes/data/connection/class-product-connection-resolver.php index 90ff181fb..c792a1925 100644 --- a/includes/data/connection/class-product-connection-resolver.php +++ b/includes/data/connection/class-product-connection-resolver.php @@ -478,6 +478,29 @@ public function sanitize_input_fields( array $where_args ) { } } + // Process "taxonomyFilter". + if ( ! empty( $where_args['taxonomyFilter'] ) ) { + foreach ( $where_args['taxonomyFilter'] as $filter ) { + foreach ( $filter as $relation => $filter_args ) { + foreach ( $filter_args as $filter_arg ) { + $tax_query[] = array( + 'relation' => $relation, + array( + 'taxonomy' => $filter_arg['taxonomy'], + 'field' => ! empty( $filter_arg['ids'] ) ? 'term_id' : 'slug', + 'terms' => ! empty( $filter_arg['ids'] ) + ? $filter_arg['ids'] + : $filter_arg['terms'], + 'operator' => ! empty( $filter_arg['operator'] ) + ? $filter_arg['operator'] + : 'IN', + ), + ); + } + } + } + } + if ( ! empty( $tax_query ) && 1 > count( $tax_query ) ) { $tax_query['relation'] = 'AND'; } diff --git a/includes/type/enum/class-product-taxonomy.php b/includes/type/enum/class-product-taxonomy.php new file mode 100644 index 000000000..ebe30feeb --- /dev/null +++ b/includes/type/enum/class-product-taxonomy.php @@ -0,0 +1,43 @@ + $attribute ); + } + + register_graphql_enum_type( + 'ProductTaxonomyEnum', + array( + 'description' => __( 'Product taxonomies', 'wp-graphql-woocommerce' ), + 'values' => array_merge( + array( + 'TYPE' => array( 'value' => 'product_type' ), + 'CATEGORY' => array( 'value' => 'product_cat' ), + 'TAG' => array( 'value' => 'product_tag' ), + 'BRAND' => array( 'value' => 'product_brand' ), + ), + $attribute_values + ), + ) + ); + } +} diff --git a/includes/type/enum/class-product-types.php b/includes/type/enum/class-product-types.php index 25854c1a9..6a721db7b 100644 --- a/includes/type/enum/class-product-types.php +++ b/includes/type/enum/class-product-types.php @@ -45,7 +45,7 @@ public static function register() { register_graphql_enum_type( 'ProductTypesEnum', array( - 'description' => __( 'Product type enumeration', 'wp-graphql' ), + 'description' => __( 'Product type enumeration', 'wp-graphql-woocommerce' ), 'values' => $values, ) ); diff --git a/includes/type/enum/class-tax-status.php b/includes/type/enum/class-tax-status.php index 4e382addf..9493897a2 100644 --- a/includes/type/enum/class-tax-status.php +++ b/includes/type/enum/class-tax-status.php @@ -16,17 +16,15 @@ class Tax_Status { * Registers type */ public static function register() { - $values = [ - 'TAXABLE' => array( 'value' => 'taxable' ), - 'SHIPPING' => array( 'value' => 'shipping' ), - 'NONE' => array( 'value' => 'none' ), - ]; - register_graphql_enum_type( 'TaxStatusEnum', array( 'description' => __( 'Product tax status enumeration', 'wp-graphql' ), - 'values' => $values, + 'values' => array( + 'TAXABLE' => array( 'value' => 'taxable' ), + 'SHIPPING' => array( 'value' => 'shipping' ), + 'NONE' => array( 'value' => 'none' ), + ), ) ); } diff --git a/includes/type/enum/class-taxonomy-operator.php b/includes/type/enum/class-taxonomy-operator.php new file mode 100644 index 000000000..bedac7565 --- /dev/null +++ b/includes/type/enum/class-taxonomy-operator.php @@ -0,0 +1,33 @@ + __( 'Taxonomy query operators', 'wp-graphql' ), + 'values' => array( + 'IN' => array( 'value' => 'IN' ), + 'NOT_IN' => array( 'value' => 'NOT IN' ), + 'AND' => array( 'value' => 'AND' ), + 'EXISTS' => array( 'value' => 'EXISTS' ), + 'NOT_EXISTS' => array( 'value' => 'NOT EXISTS' ), + ), + ) + ); + } +} diff --git a/includes/type/input/class-product-taxonomy-filter-input.php b/includes/type/input/class-product-taxonomy-filter-input.php new file mode 100644 index 000000000..31242f7f8 --- /dev/null +++ b/includes/type/input/class-product-taxonomy-filter-input.php @@ -0,0 +1,44 @@ + __( 'Product filter', 'wp-graphql-woocommerce' ), + 'fields' => array( + 'taxonomy' => array( + 'type' => array( 'non_null' => 'ProductTaxonomyEnum' ), + 'description' => __( 'Which field to select taxonomy term by.', 'wp-graphql-woocommerce' ), + ), + 'terms' => array( + 'type' => array( 'list_of' => 'String' ), + 'description' => __( 'A list of term slugs', 'wp-graphql-woocommerce' ), + ), + 'ids' => array( + 'type' => array( 'list_of' => 'Int' ), + 'description' => __( 'A list of term ids', 'wp-graphql-woocommerce' ), + ), + 'operator' => array( + 'type' => 'TaxonomyOperatorEnum', + 'description' => __( 'Filter operation type', 'wp-graphql-woocommerce' ), + ), + ), + ) + ); + } +} diff --git a/includes/type/input/class-product-taxonomy-filter-relation-input.php b/includes/type/input/class-product-taxonomy-filter-relation-input.php new file mode 100644 index 000000000..cc2696873 --- /dev/null +++ b/includes/type/input/class-product-taxonomy-filter-relation-input.php @@ -0,0 +1,34 @@ + __( 'Product taxonomy filter type', 'wp-graphql-woocommerce' ), + 'fields' => array( + 'or' => array( + 'type' => array( 'list_of' => 'ProductTaxonomyFilterInput' ), + ), + 'and' => array( + 'type' => array( 'list_of' => 'ProductTaxonomyFilterInput' ), + ), + ), + ) + ); + } +} diff --git a/tests/wpunit/ProductQueriesTest.php b/tests/wpunit/ProductQueriesTest.php index 713ea32cd..d5a92a2b3 100644 --- a/tests/wpunit/ProductQueriesTest.php +++ b/tests/wpunit/ProductQueriesTest.php @@ -222,6 +222,7 @@ public function testProductsQueryAndWhereArgs() { $featured: Boolean, $maxPrice: Float, $orderby: [WCConnectionOrderbyInput] + $taxonomyFilter: [ProductTaxonomyFilterRelationInput] ){ products( where: { slug: $slug, @@ -238,6 +239,7 @@ public function testProductsQueryAndWhereArgs() { featured: $featured, maxPrice: $maxPrice, orderby: $orderby + taxonomyFilter: $taxonomyFilter } ) { nodes { id @@ -483,7 +485,7 @@ public function testProductsQueryAndWhereArgs() { /** * Assertion Ten * - * tests "categoryName" where argument + * tests "category" where argument */ $variables = array( 'category' => 'category-three' ); $actual = do_graphql_request( $query, 'ProductsQuery', $variables ); @@ -511,7 +513,7 @@ public function testProductsQueryAndWhereArgs() { /** * Assertion Eleven * - * tests "categoryName" where argument + * tests "categoryIn" where argument */ $variables = array( 'categoryIn' => array( 'category-three' ) ); $actual = do_graphql_request( $query, 'ProductsQuery', $variables ); @@ -539,7 +541,7 @@ public function testProductsQueryAndWhereArgs() { /** * Assertion Twelve * - * tests "categoryName" where argument + * tests "categoryNotIn" where argument */ $variables = array( 'categoryNotIn' => array( 'category-four' ) ); $actual = do_graphql_request( $query, 'ProductsQuery', $variables ); @@ -567,7 +569,7 @@ public function testProductsQueryAndWhereArgs() { /** * Assertion Thirteen * - * tests "categoryName" where argument + * tests "categoryId" where argument */ $variables = array( 'categoryId' => $category_3 ); $actual = do_graphql_request( $query, 'ProductsQuery', $variables ); @@ -595,7 +597,7 @@ public function testProductsQueryAndWhereArgs() { /** * Assertion Fourteen * - * tests "categoryName" where argument + * tests "categoryIdIn" where argument */ $variables = array( 'categoryIdIn' => array( $category_3 ) ); $actual = do_graphql_request( $query, 'ProductsQuery', $variables ); @@ -623,7 +625,7 @@ public function testProductsQueryAndWhereArgs() { /** * Assertion Fifteen * - * tests "categoryName" where argument + * tests "categoryIdNotIn" where argument */ $variables = array( 'categoryIdNotIn' => array( $category_4 ) ); $actual = do_graphql_request( $query, 'ProductsQuery', $variables ); @@ -647,6 +649,51 @@ public function testProductsQueryAndWhereArgs() { codecept_debug( $actual ); $this->assertEquals( $expected, $actual ); + + /** + * Assertion Sixteen + * + * tests "taxonomyFilter" where argument + */ + $variables = array( + 'taxonomyFilter' => array( + array( + 'and' => array( + array( + 'taxonomy' => 'CATEGORY', + 'terms' => array( 'category-three' ), + ), + array( + 'taxonomy' => 'CATEGORY', + 'terms' => array( 'category-four' ), + 'operator' => 'NOT_IN' + ), + ) + ) + ), + ); + $actual = do_graphql_request( $query, 'ProductsQuery', $variables ); + $expected = array( + 'data' => array( + 'products' => array( + 'nodes' => $this->helper->print_nodes( + $products, + array( + 'filter' => function( $id ) use ( $category_4, $category_3 ) { + $product = \wc_get_product( $id ); + return ! in_array( $category_4, $product->get_category_ids() ) + && in_array( $category_3, $product->get_category_ids() ); + }, + ) + ), + ), + ), + ); + + // use --debug flag to view. + codecept_debug( $actual ); + + $this->assertEquals( $expected, $actual ); } public function testProductToTermConnection() { diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 81c8c5e6f..614eb5db5 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -78,11 +78,13 @@ 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Manage_Stock' => $baseDir . '/includes/type/enum/class-manage-stock.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Order_Status' => $baseDir . '/includes/type/enum/class-order-status.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Pricing_Field_Format' => $baseDir . '/includes/type/enum/class-pricing-field-format.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Product_Taxonomy' => $baseDir . '/includes/type/enum/class-product-taxonomy.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Product_Types' => $baseDir . '/includes/type/enum/class-product-types.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Stock_Status' => $baseDir . '/includes/type/enum/class-stock-status.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Tax_Class' => $baseDir . '/includes/type/enum/class-tax-class.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Tax_Rate_Connection_Orderby_Enum' => $baseDir . '/includes/type/enum/class-tax-rate-connection-orderby-enum.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Tax_Status' => $baseDir . '/includes/type/enum/class-tax-status.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Taxonomy_Operator' => $baseDir . '/includes/type/enum/class-taxonomy-operator.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\WC_Connection_Orderby_Enum' => $baseDir . '/includes/type/enum/class-wc-connection-orderby-enum.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Cart_Item_Quantity_Input' => $baseDir . '/includes/type/input/class-cart-item-quantity-input.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Create_Account_Input' => $baseDir . '/includes/type/input/class-create-account-input.php', @@ -91,6 +93,8 @@ 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Line_Item_Input' => $baseDir . '/includes/type/input/class-line-item-input.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Meta_Data_Input' => $baseDir . '/includes/type/input/class-meta-data-input.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Product_Attribute_Input' => $baseDir . '/includes/type/input/class-product-attribute-input.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Product_Taxonomy_Filter_Input' => $baseDir . '/includes/type/input/class-product-taxonomy-filter-input.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Product_Taxonomy_Filter_Relation_Input' => $baseDir . '/includes/type/input/class-product-taxonomy-filter-relation-input.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Shipping_Line_Input' => $baseDir . '/includes/type/input/class-shipping-line-input.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Tax_Rate_Connection_Orderby_Input' => $baseDir . '/includes/type/input/class-tax-rate-connection-orderby-input.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\WC_Connection_Orderby_Input' => $baseDir . '/includes/type/input/class-wc-connection-orderby-input.php', diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 5839aa9f2..1bf99b609 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -93,11 +93,13 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Manage_Stock' => __DIR__ . '/../..' . '/includes/type/enum/class-manage-stock.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Order_Status' => __DIR__ . '/../..' . '/includes/type/enum/class-order-status.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Pricing_Field_Format' => __DIR__ . '/../..' . '/includes/type/enum/class-pricing-field-format.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Product_Taxonomy' => __DIR__ . '/../..' . '/includes/type/enum/class-product-taxonomy.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Product_Types' => __DIR__ . '/../..' . '/includes/type/enum/class-product-types.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Stock_Status' => __DIR__ . '/../..' . '/includes/type/enum/class-stock-status.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Tax_Class' => __DIR__ . '/../..' . '/includes/type/enum/class-tax-class.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Tax_Rate_Connection_Orderby_Enum' => __DIR__ . '/../..' . '/includes/type/enum/class-tax-rate-connection-orderby-enum.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Tax_Status' => __DIR__ . '/../..' . '/includes/type/enum/class-tax-status.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\Taxonomy_Operator' => __DIR__ . '/../..' . '/includes/type/enum/class-taxonomy-operator.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPEnum\\WC_Connection_Orderby_Enum' => __DIR__ . '/../..' . '/includes/type/enum/class-wc-connection-orderby-enum.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Cart_Item_Quantity_Input' => __DIR__ . '/../..' . '/includes/type/input/class-cart-item-quantity-input.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Create_Account_Input' => __DIR__ . '/../..' . '/includes/type/input/class-create-account-input.php', @@ -106,6 +108,8 @@ class ComposerStaticInit7a6810d883e7e56f4120cefc43c77766 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Line_Item_Input' => __DIR__ . '/../..' . '/includes/type/input/class-line-item-input.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Meta_Data_Input' => __DIR__ . '/../..' . '/includes/type/input/class-meta-data-input.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Product_Attribute_Input' => __DIR__ . '/../..' . '/includes/type/input/class-product-attribute-input.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Product_Taxonomy_Filter_Input' => __DIR__ . '/../..' . '/includes/type/input/class-product-taxonomy-filter-input.php', + 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Product_Taxonomy_Filter_Relation_Input' => __DIR__ . '/../..' . '/includes/type/input/class-product-taxonomy-filter-relation-input.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Shipping_Line_Input' => __DIR__ . '/../..' . '/includes/type/input/class-shipping-line-input.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\Tax_Rate_Connection_Orderby_Input' => __DIR__ . '/../..' . '/includes/type/input/class-tax-rate-connection-orderby-input.php', 'WPGraphQL\\Extensions\\WooCommerce\\Type\\WPInputObject\\WC_Connection_Orderby_Input' => __DIR__ . '/../..' . '/includes/type/input/class-wc-connection-orderby-input.php', From 1f291d81d18fb5aa41aaab0a229fd047da5297bf Mon Sep 17 00:00:00 2001 From: ranaaterning <48205839+ranaaterning@users.noreply.github.com> Date: Sat, 24 Aug 2019 17:43:59 +0200 Subject: [PATCH 49/56] Add contributor --- README.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.txt b/README.txt index 7cf43a476..122a4ffa8 100644 --- a/README.txt +++ b/README.txt @@ -1,5 +1,5 @@ === WP GraphQL WooCommerce === -Contributors: kidunot89 +Contributors: kidunot89, ranaaterning Tags: GraphQL, WooCommerce, WPGraphQL Requires at least: 4.9 Tested up to: 5.2 From 25208587ef4aefd7e93557fe19e8ed2f72dcc3ea Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Mon, 26 Aug 2019 15:13:51 -0400 Subject: [PATCH 50/56] "NewCustomerCheckingOutCept" written. --- .travis.yml | 4 +- tests/_support/Helper/Acceptance.php | 408 ++++++++++++++++++ tests/acceptance.suite.dist.yml | 10 +- .../acceptance/NewCustomerCheckingOutCept.php | 57 ++- tests/functional/QLSessionHandlerCest.php | 80 ++-- tests/wpunit/ProductQueriesTest.php | 2 +- vendor/autoload.php | 2 +- vendor/composer/autoload_real.php | 8 +- vendor/composer/autoload_static.php | 8 +- 9 files changed, 524 insertions(+), 55 deletions(-) diff --git a/.travis.yml b/.travis.yml index d21e47772..46139a7d7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -91,11 +91,11 @@ script: # Execute unit tests with coverage if specified, otherwise without coverage - | if [ ! -z "$WP_VERSION" ]; then - docker-compose run \ + docker-compose run --rm \ -e SUITES='acceptance;functional;wpunit' \ -e COVERAGE=${COVERAGE:-0} \ -e DEBUG=${DEBUG:-0} \ - testing --rm testing --scale app=0 + testing --scale app=0 fi - | if [ "$PHPCS" == "1" ]; then diff --git a/tests/_support/Helper/Acceptance.php b/tests/_support/Helper/Acceptance.php index f8ce2160d..f15113cf8 100644 --- a/tests/_support/Helper/Acceptance.php +++ b/tests/_support/Helper/Acceptance.php @@ -4,6 +4,414 @@ // here you can define custom actions // all public methods declared in helper class will be available in $I class Acceptance extends \Codeception\Module { + /** + * Adds item to cart. + * + * @param array $input + * @param string $session_header + * @return array + */ + public function addToCart( array $input, $session_header = null ) { + $rest = $this->getModule( 'REST' ); + // Add to cart mutation + $mutation = ' + mutation addToCart( $input: AddToCartInput! ) { + addToCart( input: $input ) { + clientMutationId + cartItem { + key + product { + id + } + variation { + id + } + quantity + subtotal + subtotalTax + total + tax + } + } + } + '; + + // Add item to cart. + $rest->haveHttpHeader( 'Content-Type', 'application/json' ); + if ( ! empty( $session_header ) ) { + $rest->haveHttpHeader( 'woocommerce-session', $session_header ); + } + + // Send request. + $rest->sendPOST( + '/graphql', + json_encode( + array( + 'query' => $mutation, + 'variables' => array( 'input' => $input ), + ) + ) + ); + + // Confirm success. + $rest->seeResponseCodeIs( 200 ); + $rest->seeResponseIsJson(); + + // Get response. + $response = json_decode( $rest->grabResponse(), true ); + + // Update session header. + $rest->seeHttpHeaderOnce('woocommerce-session'); + $response['session_header'] = $rest->grabHttpHeader( 'woocommerce-session' ); + + // Return response. + return $response; + } + + /** + * Place customer order. + * + * @param array $input + * @param string $session_header + * + * @return array + */ + public function checkout( array $input, $session_header = null ) { + $rest = $this->getModule( 'REST' ); + + // Checkout mutation. + $mutation = ' + mutation checkout( $input: CheckoutInput! ) { + checkout( input: $input ) { + clientMutationId + order { + id + orderId + currency + orderVersion + date + modified + status + discountTotal + discountTax + shippingTotal + shippingTax + cartTax + total + totalTax + subtotal + orderNumber + orderKey + createdVia + pricesIncludeTax + parent { + id + } + customer { + id + } + customerIpAddress + customerUserAgent + customerNote + billing { + firstName + lastName + company + address1 + address2 + city + state + postcode + country + email + phone + } + shipping { + firstName + lastName + company + address1 + address2 + city + state + postcode + country + } + paymentMethod + paymentMethodTitle + transactionId + dateCompleted + datePaid + cartHash + shippingAddressMapUrl + hasBillingAddress + hasShippingAddress + isDownloadPermitted + needsShippingAddress + hasDownloadableItem + downloadableItems { + downloadId + } + needsPayment + needsProcessing + couponLines { + nodes { + itemId + orderId + code + discount + discountTax + coupon { + id + } + } + } + feeLines { + nodes { + itemId + orderId + amount + name + taxStatus + total + totalTax + taxClass + } + } + shippingLines { + nodes { + itemId + orderId + methodTitle + total + totalTax + taxClass + } + } + taxLines { + nodes { + rateCode + label + taxTotal + shippingTaxTotal + isCompound + taxRate { + rateId + } + } + } + lineItems { + nodes { + productId + variationId + quantity + taxClass + subtotal + subtotalTax + total + totalTax + taxStatus + product { + id + } + variation { + id + } + } + } + } + customer { + id + } + } + } + '; + + // Checkout customer order. + $rest->haveHttpHeader( 'Content-Type', 'application/json' ); + if ( ! empty( $session_header ) ) { + $rest->haveHttpHeader( 'woocommerce-session', $session_header ); + } + $rest->sendPOST( + '/graphql', + json_encode( + array( + 'query' => $mutation, + 'variables' => array( 'input' => $input ), + ) + ) + ); + + // Confirm success. + $rest->seeResponseCodeIs( 200 ); + $rest->seeResponseIsJson(); + + // Get response. + $response = json_decode( $rest->grabResponse(), true ); + + // Update session header. + $rest->seeHttpHeaderOnce('woocommerce-session'); + $response['session_header'] = $rest->grabHttpHeader( 'woocommerce-session' ); + + // Return response. + return $response; + } + + /** + * Creates store products + * + * @return array + */ + public function getCatalog() { + $this->_setupStore(); + + $product_catalog = array(); + $products = array( + array( + 'post_name' => 't-shirt', + 'meta_input' => array( + '_price' => 45, + '_regular_price' => 45, + ) + ), + array( + 'post_name' => 'jeans', + 'meta_input' => array( + '_price' => 60, + '_regular_price' => 60, + ) + ), + array( + 'post_name' => 'belt', + 'meta_input' => array( + '_price' => 45, + '_regular_price' => 45, + ) + ), + array( + 'post_name' => 'shoes', + 'meta_input' => array( + '_price' => 115, + '_regular_price' => 115, + ) + ), + array( + 'post_name' => 'socks', + 'meta_input' => array( + '_price' => 20, + '_regular_price' => 20, + ) + ), + ); + foreach ( $products as $product ) { + $this->haveAProductInTheDatabase( $product, $product_id ); + $product_catalog[ $product['post_name'] ] = $product_id; + } + + return $product_catalog; + } + + /** + * Initializes store options and actions + * + * @param AcceptanceTester $I + * @return void + */ + public function _setupStore() { + // Turn on tax calculations and store shipping countries. Important! + update_option( 'woocommerce_ship_to_countries', 'all' ); + update_option( 'woocommerce_prices_include_tax', 'no' ); + update_option( 'woocommerce_calc_taxes', 'yes' ); + update_option( 'woocommerce_tax_round_at_subtotal', 'no' ); + + // Enable payment gateway. + update_option( + 'woocommerce_bacs_settings', + array( + 'enabled' => 'yes', + 'title' => 'Direct bank transfer', + 'description' => 'Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account.', + 'instructions' => 'Instructions that will be added to the thank you page and emails.', + 'account' => '', + ) + ); + + + // Additional cart fees. + add_action( + 'woocommerce_cart_calculate_fees', + function() { + $percentage = 0.01; + $surcharge = ( WC()->cart->cart_contents_total + WC()->cart->shipping_total ) * $percentage; + WC()->cart->add_fee( 'Surcharge', $surcharge, true, '' ); + } + ); + } + + /** + * Adds Product in database + * + * @param AcceptanceTester $I + * @param array $args Product args. + * @param integer $product_id ID for product being created. + * @param string $term Product type. Defaults to 'simple'. + * @param integer $term_id Product type term ID. + * @return void + */ + public function haveAProductInTheDatabase( $args, &$product_id, $term = 'simple', &$term_id = 0 ) { + $wpdb = $this->getModule( 'WPDb' ); + // Create Product + $product_id = $wpdb->havePostInDatabase( + array_replace_recursive( + array( + 'post_type' => 'product', + 'post_name' => 't-shirt', + 'meta_input' => array( + '_visibility' => 'visible', + '_sku' => '', + '_price' => '100', + '_regular_price' => '100', + '_sale_price' => '', + '_sale_date_on_sale_from' => null, + '_sale_date_on_sale_to' => null, + 'total_sales' => '0', + '_tax_status' => 'taxable', + '_tax_class' => '', + '_manage_stock' => false, + '_stock_quantity' => null, + '_stock_status' => 'instock', + '_backorders' => 'no', + '_low_stock_amount' => '', + '_sold_individually' => false, + '_weight' => '', + '_length' => '', + '_width' => '', + '_height' => '', + '_upsell_ids' => array(), + '_cross_sell_ids' => array(), + '_purchase_note' => '', + '_default_attributes' => array(), + '_product_attributes' => array(), + '_virtual' => false, + '_downloadable' => false, + '_download_limit' => -1, + '_download_expiry' => -1, + '_featured' => false, + '_wc_rating_counts' => array(), + '_wc_average_rating' => 0, + '_wc_review_count' => 0, + ), + ), + $args + ) + ); + + if ( ! $term_id ) { + $term_id = $wpdb->grabTermIdFromDatabase( [ 'name' => $term, 'slug' => $term ] ); + } + $term_taxonomy_id = $wpdb->grabTermTaxonomyIdFromDatabase( [ 'term_id' => $term_id, 'taxonomy' => 'product_type' ] ); + $wpdb->haveTermRelationshipInDatabase( $product_id, $term_id ); + } } diff --git a/tests/acceptance.suite.dist.yml b/tests/acceptance.suite.dist.yml index 471ada029..a1b0607d9 100644 --- a/tests/acceptance.suite.dist.yml +++ b/tests/acceptance.suite.dist.yml @@ -8,8 +8,12 @@ actor: AcceptanceTester modules: enabled: - - WPDb + - Asserts + - REST - WPBrowser + - WPDb + - WPLoader - \Helper\Acceptance - disabled: - - WPLoader \ No newline at end of file + config: + WPDb: + cleanup: false \ No newline at end of file diff --git a/tests/acceptance/NewCustomerCheckingOutCept.php b/tests/acceptance/NewCustomerCheckingOutCept.php index bd763a835..e6d87bfbf 100644 --- a/tests/acceptance/NewCustomerCheckingOutCept.php +++ b/tests/acceptance/NewCustomerCheckingOutCept.php @@ -1,3 +1,58 @@ wantTo('perform actions and see result'); +$product_catalog = $I->getCatalog(); +$I->wantTo('add an some items to the cart and checkout.'); + +$add_to_cart_input = array( + 'clientMutationId' => 'someId', + 'productId' => $product_catalog['t-shirt'], + 'quantity' => 3, +); + +$success = $I->addToCart( $add_to_cart_input, null ); + +// use --debug flag to view +codecept_debug( $success ); + +$I->assertArrayNotHasKey( 'error', $success ); +$I->assertArrayHasKey('data', $success ); +$I->assertArrayHasKey('addToCart', $success['data'] ); +$I->assertArrayHasKey('cartItem', $success['data']['addToCart'] ); +$I->assertArrayHasKey('key', $success['data']['addToCart']['cartItem'] ); + +$checkout_input = array( + 'clientMutationId' => 'someId', + 'paymentMethod' => 'bacs', + 'shippingMethod' => 'flat rate', + 'billing' => array( + 'firstName' => 'May', + 'lastName' => 'Parker', + 'address1' => '20 Ingram St', + 'city' => 'New York City', + 'state' => 'NY', + 'postcode' => '12345', + 'country' => 'US', + 'email' => 'superfreak500@gmail.com', + 'phone' => '555-555-1234', + ), + 'shipping' => array( + 'firstName' => 'May', + 'lastName' => 'Parker', + 'address1' => '20 Ingram St', + 'city' => 'New York City', + 'state' => 'NY', + 'postcode' => '12345', + 'country' => 'US', + ), +); + +$success = $I->checkout( $checkout_input, $success['session_header'] ); + +// use --debug flag to view +codecept_debug( $success ); + +$I->assertArrayNotHasKey( 'error', $success ); +$I->assertArrayHasKey('data', $success ); +$I->assertArrayHasKey('checkout', $success['data'] ); +$I->assertArrayHasKey('order', $success['data']['checkout'] ); +$I->assertArrayHasKey('id', $success['data']['checkout']['order'] ); \ No newline at end of file diff --git a/tests/functional/QLSessionHandlerCest.php b/tests/functional/QLSessionHandlerCest.php index 5e57dbcb7..a6f76da2c 100644 --- a/tests/functional/QLSessionHandlerCest.php +++ b/tests/functional/QLSessionHandlerCest.php @@ -5,45 +5,47 @@ class QLSessionHandlerCest { public function _before( FunctionalTester $I ) { // Create Product - $this->product_id = $I->havePostInDatabase( array( - 'post_type' => 'product', - 'post_name' => 't-shirt', - 'meta_input' => array( - '_visibility' => 'visible', - '_sku' => '', - '_price' => '100', - '_regular_price' => '100', - '_sale_price' => '', - '_sale_date_on_sale_from' => null, - '_sale_date_on_sale_to' => null, - 'total_sales' => '0', - '_tax_status' => 'taxable', - '_tax_class' => '', - '_manage_stock' => false, - '_stock_quantity' => null, - '_stock_status' => 'instock', - '_backorders' => 'no', - '_low_stock_amount' => '', - '_sold_individually' => false, - '_weight' => '', - '_length' => '', - '_width' => '', - '_height' => '', - '_upsell_ids' => array(), - '_cross_sell_ids' => array(), - '_purchase_note' => '', - '_default_attributes' => array(), - '_product_attributes' => array(), - '_virtual' => false, - '_downloadable' => false, - '_download_limit' => -1, - '_download_expiry' => -1, - '_featured' => false, - '_wc_rating_counts' => array(), - '_wc_average_rating' => 0, - '_wc_review_count' => 0, - ), - )); + $this->product_id = $I->havePostInDatabase( + array( + 'post_type' => 'product', + 'post_name' => 't-shirt', + 'meta_input' => array( + '_visibility' => 'visible', + '_sku' => '', + '_price' => '100', + '_regular_price' => '100', + '_sale_price' => '', + '_sale_date_on_sale_from' => null, + '_sale_date_on_sale_to' => null, + 'total_sales' => '0', + '_tax_status' => 'taxable', + '_tax_class' => '', + '_manage_stock' => false, + '_stock_quantity' => null, + '_stock_status' => 'instock', + '_backorders' => 'no', + '_low_stock_amount' => '', + '_sold_individually' => false, + '_weight' => '', + '_length' => '', + '_width' => '', + '_height' => '', + '_upsell_ids' => array(), + '_cross_sell_ids' => array(), + '_purchase_note' => '', + '_default_attributes' => array(), + '_product_attributes' => array(), + '_virtual' => false, + '_downloadable' => false, + '_download_limit' => -1, + '_download_expiry' => -1, + '_featured' => false, + '_wc_rating_counts' => array(), + '_wc_average_rating' => 0, + '_wc_review_count' => 0, + ), + ) + ); $term_id = $I->grabTermIdFromDatabase( [ 'name' => 'simple', 'slug' => 'simple' ] ); $term_taxonomy_id = $I->grabTermTaxonomyIdFromDatabase( [ 'term_id' => $term_id, 'taxonomy' => 'product_type' ] ); $I->haveTermRelationshipInDatabase( $this->product_id, $term_id ); diff --git a/tests/wpunit/ProductQueriesTest.php b/tests/wpunit/ProductQueriesTest.php index d5a92a2b3..170efe010 100644 --- a/tests/wpunit/ProductQueriesTest.php +++ b/tests/wpunit/ProductQueriesTest.php @@ -1001,4 +1001,4 @@ public function testRelatedProductConnections() { $this->assertEqualSets( $expected, $actual ); } -} \ No newline at end of file +} diff --git a/vendor/autoload.php b/vendor/autoload.php index 2aa19cc22..bd51a4410 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit83ea8ceeec7856c3ed76cc34ad81baa1::getLoader(); +return ComposerAutoloaderInit72e2c552614a55e0e85344a2a0086ef3::getLoader(); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index f796db66b..2891e63e2 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit83ea8ceeec7856c3ed76cc34ad81baa1 +class ComposerAutoloaderInit72e2c552614a55e0e85344a2a0086ef3 { private static $loader; @@ -19,15 +19,15 @@ public static function getLoader() return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInit83ea8ceeec7856c3ed76cc34ad81baa1', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInit72e2c552614a55e0e85344a2a0086ef3', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInit83ea8ceeec7856c3ed76cc34ad81baa1', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInit72e2c552614a55e0e85344a2a0086ef3', 'loadClassLoader')); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit83ea8ceeec7856c3ed76cc34ad81baa1::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInit72e2c552614a55e0e85344a2a0086ef3::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 197398987..36f6fe1fc 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInit83ea8ceeec7856c3ed76cc34ad81baa1 +class ComposerStaticInit72e2c552614a55e0e85344a2a0086ef3 { public static $prefixLengthsPsr4 = array ( 'W' => @@ -139,9 +139,9 @@ class ComposerStaticInit83ea8ceeec7856c3ed76cc34ad81baa1 public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit83ea8ceeec7856c3ed76cc34ad81baa1::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit83ea8ceeec7856c3ed76cc34ad81baa1::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInit83ea8ceeec7856c3ed76cc34ad81baa1::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInit72e2c552614a55e0e85344a2a0086ef3::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit72e2c552614a55e0e85344a2a0086ef3::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInit72e2c552614a55e0e85344a2a0086ef3::$classMap; }, null, ClassLoader::class); } From b7f52e2a278b430f2b7bb1fe561b306d13477f08 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Mon, 26 Aug 2019 17:39:46 -0400 Subject: [PATCH 51/56] Checkout mutation output fields updated. --- .../data/mutation/class-checkout-mutation.php | 51 ++++++++++--------- includes/mutation/class-checkout.php | 20 +++++--- tests/_support/Helper/Acceptance.php | 2 + .../acceptance/NewCustomerCheckingOutCept.php | 4 ++ tests/wpunit/CheckoutMutationTest.php | 21 +++++++- vendor/autoload.php | 2 +- vendor/composer/autoload_real.php | 8 +-- vendor/composer/autoload_static.php | 8 +-- 8 files changed, 74 insertions(+), 42 deletions(-) diff --git a/includes/data/mutation/class-checkout-mutation.php b/includes/data/mutation/class-checkout-mutation.php index f225ef689..674ce9bc0 100644 --- a/includes/data/mutation/class-checkout-mutation.php +++ b/includes/data/mutation/class-checkout-mutation.php @@ -63,12 +63,11 @@ protected static function maybe_skip_fieldset( $fieldset_key, $data ) { */ public static function prepare_checkout_args( $input, $context, $info ) { $data = array( - 'terms' => (int) isset( $input['terms'] ), - 'createaccount' => (int) ! empty( $input['account'] ), - 'payment_method' => isset( $input['paymentMethod'] ) ? $input['paymentMethod'] : '', - 'shipping_method' => isset( $input['shippingMethod'] ) ? $input['shippingMethod'] : '', - 'ship_to_different_address' => ! empty( $input['shipToDifferentAddress'] ) && ! wc_ship_to_billing_address_only(), - 'woocommerce_checkout_update_totals' => isset( $input['updateTotals'] ), + 'terms' => (int) isset( $input['terms'] ), + 'createaccount' => (int) ! empty( $input['account'] ), + 'payment_method' => isset( $input['paymentMethod'] ) ? $input['paymentMethod'] : '', + 'shipping_method' => isset( $input['shippingMethod'] ) ? $input['shippingMethod'] : '', + 'ship_to_different_address' => ! empty( $input['shipToDifferentAddress'] ) && ! wc_ship_to_billing_address_only(), ); $skipped = array(); @@ -460,6 +459,11 @@ protected function process_order_without_payment( $order_id ) { $order = wc_get_order( $order_id ); $order->payment_complete(); wc_empty_cart(); + + return array( + 'result' => 'success', + 'redirect' => apply_filters( 'woocommerce_checkout_no_payment_needed_redirect', $order->get_checkout_order_received_url(), $order ), + ); } /** @@ -468,12 +472,11 @@ protected function process_order_without_payment( $order_id ) { * @param array $data Order data. * @param AppContext $context AppContext instance. * @param ResolveInfo $info ResolveInfo instance. + * @param array $results Order status. * * @throws UserError When validation fails. */ - public static function process_checkout( $data, $context, $info ) { - WC()->session->set( 'refresh_totals', true ); - + public static function process_checkout( $data, $context, $info, &$results = null ) { wc_maybe_define_constant( 'WOOCOMMERCE_CHECKOUT', true ); wc_set_time_limit( 0 ); @@ -491,26 +494,24 @@ public static function process_checkout( $data, $context, $info ) { // Validate posted data and cart items before proceeding. self::validate_checkout( $data ); - if ( empty( $data['woocommerce_checkout_update_totals'] ) ) { - self::process_customer( $data ); - $order_id = WC()->checkout->create_order( $data ); - $order = wc_get_order( $order_id ); + self::process_customer( $data ); + $order_id = WC()->checkout->create_order( $data ); + $order = wc_get_order( $order_id ); - if ( is_wp_error( $order_id ) ) { - throw new UserError( $order_id->get_error_message() ); - } + if ( is_wp_error( $order_id ) ) { + throw new UserError( $order_id->get_error_message() ); + } - if ( ! $order ) { - throw new UserError( __( 'Unable to create order.', 'wp-graphql-woocommerce' ) ); - } + if ( ! $order ) { + throw new UserError( __( 'Unable to create order.', 'wp-graphql-woocommerce' ) ); + } - do_action( 'woocommerce_checkout_order_processed', $order_id, $data, $order ); + do_action( 'woocommerce_checkout_order_processed', $order_id, $data, $order ); - if ( WC()->cart->needs_payment() ) { - self::process_order_payment( $order_id, $data['payment_method'] ); - } else { - self::process_order_without_payment( $order_id ); - } + if ( WC()->cart->needs_payment() ) { + $results = self::process_order_payment( $order_id, $data['payment_method'] ); + } else { + $results = self::process_order_without_payment( $order_id ); } return $order_id; diff --git a/includes/mutation/class-checkout.php b/includes/mutation/class-checkout.php index a5f299650..d961b1b96 100644 --- a/includes/mutation/class-checkout.php +++ b/includes/mutation/class-checkout.php @@ -55,10 +55,6 @@ public static function get_input_fields() { 'type' => 'Boolean', 'description' => __( 'Ship to a separate address', 'wp-graphql-woocommerce' ), ), - 'updateTotals' => array( - 'type' => 'Boolean', - 'description' => __( 'Update order totals', 'wp-graphql-woocommerce' ), - ), 'paymentMethodTitle' => array( 'type' => 'String', 'description' => __( 'Payment method title.', 'woocommerce' ), @@ -97,6 +93,18 @@ public static function get_output_fields() { return is_user_logged_in() ? new Customer( get_current_user_id() ) : null; }, ), + 'result' => array( + 'type' => 'String', + 'resolve' => function( $payload ) { + return $payload['result']; + }, + ), + 'redirect' => array( + 'type' => 'String', + 'resolve' => function( $payload ) { + return $payload['redirect']; + }, + ), ); } @@ -122,7 +130,7 @@ public static function mutate_and_get_payload() { */ do_action( 'woocommerce_graphql_before_checkout', $args, $input, $context, $info ); - $order_id = Checkout_Mutation::process_checkout( $args, $context, $info ); + $order_id = Checkout_Mutation::process_checkout( $args, $context, $info, $results ); if ( is_wp_error( $order_id ) ) { throw new UserError( $order_id->get_error_message( 'checkout-error' ) ); @@ -138,7 +146,7 @@ public static function mutate_and_get_payload() { */ do_action( 'woocommerce_graphql_after_checkout', $order_id, $input, $context, $info ); - return array( 'id' => $order_id ); + return array_merge( array( 'id' => $order_id ), $results ); } catch ( \Exception $e ) { Order_Mutation::purge( $order ); throw new UserError( $e->getMessage() ); diff --git a/tests/_support/Helper/Acceptance.php b/tests/_support/Helper/Acceptance.php index f15113cf8..60752c417 100644 --- a/tests/_support/Helper/Acceptance.php +++ b/tests/_support/Helper/Acceptance.php @@ -224,6 +224,8 @@ public function checkout( array $input, $session_header = null ) { customer { id } + result + redirect } } '; diff --git a/tests/acceptance/NewCustomerCheckingOutCept.php b/tests/acceptance/NewCustomerCheckingOutCept.php index e6d87bfbf..3b377b71f 100644 --- a/tests/acceptance/NewCustomerCheckingOutCept.php +++ b/tests/acceptance/NewCustomerCheckingOutCept.php @@ -55,4 +55,8 @@ $I->assertArrayHasKey('data', $success ); $I->assertArrayHasKey('checkout', $success['data'] ); $I->assertArrayHasKey('order', $success['data']['checkout'] ); +$I->assertArrayHasKey('customer', $success['data']['checkout'] ); +$I->assertArrayHasKey('result', $success['data']['checkout'] ); +$I->assertEquals( 'success', $success['data']['checkout']['result'] ); +$I->assertArrayHasKey('redirect', $success['data']['checkout'] ); $I->assertArrayHasKey('id', $success['data']['checkout']['order'] ); \ No newline at end of file diff --git a/tests/wpunit/CheckoutMutationTest.php b/tests/wpunit/CheckoutMutationTest.php index 9f7908561..fceb94572 100644 --- a/tests/wpunit/CheckoutMutationTest.php +++ b/tests/wpunit/CheckoutMutationTest.php @@ -220,6 +220,8 @@ private function checkout( $input ) { customer { id } + result + redirect } } '; @@ -294,6 +296,9 @@ public function testCheckoutOrderMutation() { $this->assertArrayHasKey('id', $actual['data']['checkout']['order'] ); $order = \WC_Order_Factory::get_order( $actual['data']['checkout']['order']['orderId'] ); + // Get Available payment gateways. + $available_gateways = WC()->payment_gateways->get_available_payment_gateways(); + $expected = array( 'data' => array( 'checkout' => array( @@ -414,7 +419,9 @@ function( $item ) { ), 'customer' => array( 'id' => $this->customer->to_relay_id( $order->get_customer_id() ) - ) + ), + 'result' => 'success', + 'redirect' => $available_gateways['bacs']->process_payment( $order->get_id() )['redirect'], ), ) ); @@ -474,6 +481,9 @@ public function testCheckoutOrderMutationWithNewAccount() { $this->assertArrayHasKey('id', $actual['data']['checkout']['order'] ); $order = \WC_Order_Factory::get_order( $actual['data']['checkout']['order']['orderId'] ); + // Get Available payment gateways. + $available_gateways = WC()->payment_gateways->get_available_payment_gateways(); + $expected = array( 'data' => array( 'checkout' => array( @@ -594,7 +604,9 @@ function( $item ) { ), 'customer' => array( 'id' => $this->customer->to_relay_id( $order->get_customer_id() ) - ) + ), + 'result' => 'success', + 'redirect' => $available_gateways['bacs']->process_payment( $order->get_id() )['redirect'], ), ) ); @@ -660,6 +672,9 @@ public function testCheckoutOrderMutationWithNoAccount() { $this->assertArrayHasKey('id', $actual['data']['checkout']['order'] ); $order = \WC_Order_Factory::get_order( $actual['data']['checkout']['order']['orderId'] ); + // Get Available payment gateways. + $available_gateways = WC()->payment_gateways->get_available_payment_gateways(); + $expected = array( 'data' => array( 'checkout' => array( @@ -779,6 +794,8 @@ function( $item ) { ) ), 'customer' => null, + 'result' => 'success', + 'redirect' => $available_gateways['bacs']->process_payment( $order->get_id() )['redirect'], ), ) ); diff --git a/vendor/autoload.php b/vendor/autoload.php index bd51a4410..3d7cfc379 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit72e2c552614a55e0e85344a2a0086ef3::getLoader(); +return ComposerAutoloaderInit47658c4b7d8904b82de7ca7f79505649::getLoader(); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index 2891e63e2..1fcf5e90a 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit72e2c552614a55e0e85344a2a0086ef3 +class ComposerAutoloaderInit47658c4b7d8904b82de7ca7f79505649 { private static $loader; @@ -19,15 +19,15 @@ public static function getLoader() return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInit72e2c552614a55e0e85344a2a0086ef3', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInit47658c4b7d8904b82de7ca7f79505649', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInit72e2c552614a55e0e85344a2a0086ef3', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInit47658c4b7d8904b82de7ca7f79505649', 'loadClassLoader')); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit72e2c552614a55e0e85344a2a0086ef3::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInit47658c4b7d8904b82de7ca7f79505649::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 36f6fe1fc..5f1cce3b5 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInit72e2c552614a55e0e85344a2a0086ef3 +class ComposerStaticInit47658c4b7d8904b82de7ca7f79505649 { public static $prefixLengthsPsr4 = array ( 'W' => @@ -139,9 +139,9 @@ class ComposerStaticInit72e2c552614a55e0e85344a2a0086ef3 public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit72e2c552614a55e0e85344a2a0086ef3::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit72e2c552614a55e0e85344a2a0086ef3::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInit72e2c552614a55e0e85344a2a0086ef3::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInit47658c4b7d8904b82de7ca7f79505649::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit47658c4b7d8904b82de7ca7f79505649::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInit47658c4b7d8904b82de7ca7f79505649::$classMap; }, null, ClassLoader::class); } From afeac37d56a97010109480d13de0849737b384ca Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Tue, 27 Aug 2019 11:57:52 -0400 Subject: [PATCH 52/56] NewCustomerCheckingOutCept updated. --- includes/utils/class-ql-session-handler.php | 4 +- tests/_support/Helper/Acceptance.php | 134 +++++++++++++----- .../acceptance/NewCustomerCheckingOutCept.php | 120 +++++++++++++++- vendor/composer/ClassLoader.php | 2 +- 4 files changed, 223 insertions(+), 37 deletions(-) diff --git a/includes/utils/class-ql-session-handler.php b/includes/utils/class-ql-session-handler.php index 444bd77e5..37ce725c7 100644 --- a/includes/utils/class-ql-session-handler.php +++ b/includes/utils/class-ql-session-handler.php @@ -8,10 +8,12 @@ namespace WPGraphQL\Extensions\WooCommerce\Utils; +use WC_Session_Handler; + /** * Class - QL_Session_Handler */ -class QL_Session_Handler extends \WC_Session_Handler { +class QL_Session_Handler extends WC_Session_Handler { /** * Encrypt and decrypt * diff --git a/tests/_support/Helper/Acceptance.php b/tests/_support/Helper/Acceptance.php index 60752c417..fa9a23f30 100644 --- a/tests/_support/Helper/Acceptance.php +++ b/tests/_support/Helper/Acceptance.php @@ -12,11 +12,9 @@ class Acceptance extends \Codeception\Module { * @return array */ public function addToCart( array $input, $session_header = null ) { - $rest = $this->getModule( 'REST' ); - // Add to cart mutation $mutation = ' - mutation addToCart( $input: AddToCartInput! ) { + mutation ( $input: AddToCartInput! ) { addToCart( input: $input ) { clientMutationId cartItem { @@ -37,33 +35,82 @@ public function addToCart( array $input, $session_header = null ) { } '; - // Add item to cart. - $rest->haveHttpHeader( 'Content-Type', 'application/json' ); - if ( ! empty( $session_header ) ) { - $rest->haveHttpHeader( 'woocommerce-session', $session_header ); - } + // Execute query. + $response = $this->executeQuery( $mutation, $input, $session_header, true ); - // Send request. - $rest->sendPOST( - '/graphql', - json_encode( - array( - 'query' => $mutation, - 'variables' => array( 'input' => $input ), - ) - ) - ); + // Return response. + return $response; + } - // Confirm success. - $rest->seeResponseCodeIs( 200 ); - $rest->seeResponseIsJson(); + /** + * Update cart items quantities. + * + * @param array $input + * @param string $session_header + * @return array + */ + public function updateQuantity( array $input, $session_header = null ) { + // Update cart items mutation + $mutation = ' + mutation updateItemQuantities( $input: UpdateItemQuantitiesInput! ) { + updateItemQuantities( input: $input ) { + clientMutationId + updated { + key + quantity + } + removed { + key + quantity + } + items { + key + quantity + } + } + } + '; - // Get response. - $response = json_decode( $rest->grabResponse(), true ); + // Execute query. + $response = $this->executeQuery( $mutation, $input, $session_header ); - // Update session header. - $rest->seeHttpHeaderOnce('woocommerce-session'); - $response['session_header'] = $rest->grabHttpHeader( 'woocommerce-session' ); + // Return response. + return $response; + } + + /** + * Removes an items from the cart. + * + * @param array $input + * @param string $session_header + * @return array + */ + public function removeFromCart( array $input, $session_header = null ) { + // Remove item from cart mutation + $mutation = ' + mutation ( $input: RemoveItemsFromCartInput! ) { + removeItemsFromCart( input: $input ) { + clientMutationId + cartItems { + key + product { + id + } + variation { + id + } + quantity + subtotal + subtotalTax + total + tax + } + } + } + '; + + // Execute query. + $response = $this->executeQuery( $mutation, $input, $session_header ); // Return response. return $response; @@ -78,8 +125,6 @@ public function addToCart( array $input, $session_header = null ) { * @return array */ public function checkout( array $input, $session_header = null ) { - $rest = $this->getModule( 'REST' ); - // Checkout mutation. $mutation = ' mutation checkout( $input: CheckoutInput! ) { @@ -230,11 +275,33 @@ public function checkout( array $input, $session_header = null ) { } '; - // Checkout customer order. + // Execute query. + $response = $this->executeQuery( $mutation, $input, $session_header ); + + // Return response. + return $response; + } + + /** + * Executes GraphQL query and returns a response + * + * @param string $mutation + * @param array $input + * @param string|null $session_header + * @param bool $update_header + * + * @return array + */ + public function executeQuery( string $mutation, array $input, $session_header = null, $update_header = false ) { + $rest = $this->getModule( 'REST' ); + + // Add item to cart. $rest->haveHttpHeader( 'Content-Type', 'application/json' ); if ( ! empty( $session_header ) ) { $rest->haveHttpHeader( 'woocommerce-session', $session_header ); } + + // Send request. $rest->sendPOST( '/graphql', json_encode( @@ -252,11 +319,12 @@ public function checkout( array $input, $session_header = null ) { // Get response. $response = json_decode( $rest->grabResponse(), true ); - // Update session header. - $rest->seeHttpHeaderOnce('woocommerce-session'); - $response['session_header'] = $rest->grabHttpHeader( 'woocommerce-session' ); + if ( $update_header ) { + // Update session header. + $rest->seeHttpHeaderOnce('woocommerce-session'); + $response['session_header'] = $rest->grabHttpHeader( 'woocommerce-session' ); + } - // Return response. return $response; } diff --git a/tests/acceptance/NewCustomerCheckingOutCept.php b/tests/acceptance/NewCustomerCheckingOutCept.php index 3b377b71f..911b19de0 100644 --- a/tests/acceptance/NewCustomerCheckingOutCept.php +++ b/tests/acceptance/NewCustomerCheckingOutCept.php @@ -1,7 +1,7 @@ getCatalog(); -$I->wantTo('add an some items to the cart and checkout.'); +$I->wantTo('add items to the cart'); $add_to_cart_input = array( 'clientMutationId' => 'someId', @@ -14,11 +14,127 @@ // use --debug flag to view codecept_debug( $success ); +if ( ! empty ( $success['session_header'] ) ) { + $session = $success['session_header']; +} + +$I->assertArrayNotHasKey( 'error', $success ); +$I->assertArrayHasKey('data', $success ); +$I->assertArrayHasKey('addToCart', $success['data'] ); +$I->assertArrayHasKey('cartItem', $success['data']['addToCart'] ); +$I->assertArrayHasKey('key', $success['data']['addToCart']['cartItem'] ); +$shirt_key = $success['data']['addToCart']['cartItem']['key']; + +$add_to_cart_input = array( + 'clientMutationId' => 'someId', + 'productId' => $product_catalog['belt'], + 'quantity' => 2, +); + +$success = $I->addToCart( $add_to_cart_input, $session ); + +// use --debug flag to view +codecept_debug( $success ); + +if ( ! empty ( $success['session_header'] ) ) { + $session = $success['session_header']; +} + +$I->assertArrayNotHasKey( 'error', $success ); +$I->assertArrayHasKey('data', $success ); +$I->assertArrayHasKey('addToCart', $success['data'] ); +$I->assertArrayHasKey('cartItem', $success['data']['addToCart'] ); +$I->assertArrayHasKey('key', $success['data']['addToCart']['cartItem'] ); +$belt_key = $success['data']['addToCart']['cartItem']['key']; + +$add_to_cart_input = array( + 'clientMutationId' => 'someId', + 'productId' => $product_catalog['jeans'], + 'quantity' => 4, +); + +$success = $I->addToCart( $add_to_cart_input, $session ); + +// use --debug flag to view +codecept_debug( $success ); + +if ( ! empty ( $success['session_header'] ) ) { + $session = $success['session_header']; +} + +$I->assertArrayNotHasKey( 'error', $success ); +$I->assertArrayHasKey('data', $success ); +$I->assertArrayHasKey('addToCart', $success['data'] ); +$I->assertArrayHasKey('cartItem', $success['data']['addToCart'] ); +$I->assertArrayHasKey('key', $success['data']['addToCart']['cartItem'] ); +$jeans_key = $success['data']['addToCart']['cartItem']['key']; + +$add_to_cart_input = array( + 'clientMutationId' => 'someId', + 'productId' => $product_catalog['socks'], + 'quantity' => 1, +); + +$success = $I->addToCart( $add_to_cart_input, $session ); + +// use --debug flag to view +codecept_debug( $success ); + +if ( ! empty ( $success['session_header'] ) ) { + $session = $success['session_header']; +} + $I->assertArrayNotHasKey( 'error', $success ); $I->assertArrayHasKey('data', $success ); $I->assertArrayHasKey('addToCart', $success['data'] ); $I->assertArrayHasKey('cartItem', $success['data']['addToCart'] ); $I->assertArrayHasKey('key', $success['data']['addToCart']['cartItem'] ); +$socks_key = $success['data']['addToCart']['cartItem']['key']; + +$I->wantTo('remove some items from the cart'); + +$remove_from_cart_input = array( + 'clientMutationId' => 'someId', + 'keys' => $socks_key, +); + +$success = $I->removeFromCart( $remove_from_cart_input, $session ); + +// use --debug flag to view +codecept_debug( $success ); + +$I->assertArrayNotHasKey( 'error', $success ); +$I->assertArrayHasKey('data', $success ); +$I->assertArrayHasKey('removeItemsFromCart', $success['data'] ); +$I->assertArrayHasKey('cartItems', $success['data']['removeItemsFromCart'] ); +$I->assertCount( 1, $success['data']['removeItemsFromCart']['cartItems'] ); + +$I->wantTo('update an item in the cart'); + +$update_quantity_input = array( + 'clientMutationId' => 'someId', + 'items' => array( + array( 'key' => $belt_key, 'quantity' => 0 ), + array( 'key' => $jeans_key, 'quantity' => 1 ), + ), +); + +$success = $I->updateQuantity( $update_quantity_input, $session ); + +// use --debug flag to view +codecept_debug( $success ); + +$I->assertArrayNotHasKey( 'error', $success ); +$I->assertArrayHasKey('data', $success ); +$I->assertArrayHasKey('updateItemQuantities', $success['data'] ); +$I->assertArrayHasKey('removed', $success['data']['updateItemQuantities'] ); +$I->assertCount( 1, $success['data']['updateItemQuantities']['removed'] ); +$I->assertArrayHasKey('updated', $success['data']['updateItemQuantities'] ); +$I->assertCount( 1, $success['data']['updateItemQuantities']['updated'] ); +$I->assertArrayHasKey('items', $success['data']['updateItemQuantities'] ); +$I->assertCount( 2, $success['data']['updateItemQuantities']['items'] ); + +$I->wantTo('checkout'); $checkout_input = array( 'clientMutationId' => 'someId', @@ -46,7 +162,7 @@ ), ); -$success = $I->checkout( $checkout_input, $success['session_header'] ); +$success = $I->checkout( $checkout_input, $session ); // use --debug flag to view codecept_debug( $success ); diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index 95f7e0978..fce8549f0 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -279,7 +279,7 @@ public function isClassMapAuthoritative() */ public function setApcuPrefix($apcuPrefix) { - $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; + $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; } /** From a6bc2d316b0e0f0f60f5bbfe0d97899d6425e45f Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Tue, 27 Aug 2019 12:09:48 -0400 Subject: [PATCH 53/56] Typehinting removed --- tests/_support/Helper/Acceptance.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/_support/Helper/Acceptance.php b/tests/_support/Helper/Acceptance.php index fa9a23f30..66fb5e246 100644 --- a/tests/_support/Helper/Acceptance.php +++ b/tests/_support/Helper/Acceptance.php @@ -11,7 +11,7 @@ class Acceptance extends \Codeception\Module { * @param string $session_header * @return array */ - public function addToCart( array $input, $session_header = null ) { + public function addToCart( $input, $session_header = null ) { // Add to cart mutation $mutation = ' mutation ( $input: AddToCartInput! ) { @@ -49,7 +49,7 @@ public function addToCart( array $input, $session_header = null ) { * @param string $session_header * @return array */ - public function updateQuantity( array $input, $session_header = null ) { + public function updateQuantity( $input, $session_header = null ) { // Update cart items mutation $mutation = ' mutation updateItemQuantities( $input: UpdateItemQuantitiesInput! ) { @@ -85,7 +85,7 @@ public function updateQuantity( array $input, $session_header = null ) { * @param string $session_header * @return array */ - public function removeFromCart( array $input, $session_header = null ) { + public function removeFromCart( $input, $session_header = null ) { // Remove item from cart mutation $mutation = ' mutation ( $input: RemoveItemsFromCartInput! ) { @@ -124,7 +124,7 @@ public function removeFromCart( array $input, $session_header = null ) { * * @return array */ - public function checkout( array $input, $session_header = null ) { + public function checkout( $input, $session_header = null ) { // Checkout mutation. $mutation = ' mutation checkout( $input: CheckoutInput! ) { @@ -292,7 +292,7 @@ public function checkout( array $input, $session_header = null ) { * * @return array */ - public function executeQuery( string $mutation, array $input, $session_header = null, $update_header = false ) { + public function executeQuery( $mutation, $input, $session_header = null, $update_header = false ) { $rest = $this->getModule( 'REST' ); // Add item to cart. From 1772464da393cbc83e2e36501062b644ea75e7e2 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Tue, 27 Aug 2019 13:25:51 -0400 Subject: [PATCH 54/56] README.md updated. --- README.md | 91 +++++++++++++++++++++++++++++++------------------------ 1 file changed, 52 insertions(+), 39 deletions(-) diff --git a/README.md b/README.md index 5139fe555..c8a9de486 100644 --- a/README.md +++ b/README.md @@ -12,10 +12,12 @@ ## What does this plugin do? It adds WooCommerce functionality to the WPGraphQL schema using WooCommerce's [CRUD](https://github.com/woocommerce/woocommerce/wiki/CRUD-Objects-in-3.0) objects. -## Working Features -- Query product, customers, coupons, order, refund, product variations. +## Features +- Query product, customers, coupons, order, refund, product variations with complex filtering options. +- Add items to cart and process user store session using HTTP header defined by WooGraphQL's built-in session handler +- Create/process user checkout with the `checkout` mutation. -## Upcoming Features +## Future Features - Adminstrator mutations. Eg. Creating and deleting products, coupons, and refunds. ## Playground @@ -31,42 +33,47 @@ Until the documentation is in full effect, it's recommended that a [GraphiQL](ht ### Setup 1. Make sure all dependencies are install by running `composer install` from the CMD/Terminal in the project directory. -2. Next the copy 5 distributed files with the `.dist` in there filenames. For instance `.env.dist` becomes `.env` and `wpunit.suite.dist.yml` becomes `wpunit.suite.yml`. The distributed files and what their copied names should are as follows. - - `tests/acceptance.suite.dist.yml` => `tests/acceptance.suite.yml` - - `tests/functional.suite.dist.yml` => `tests/functional.suite.yml` - - `tests/wpunit.suite.dist.yml` => `tests/wpunit.suite.yml` +2. Next the copy 2 distributed files with the `.dist` in there filenames. For instance `.env.dist` becomes `.env` and `wpunit.suite.dist.yml` becomes `wpunit.suite.yml`. The distributed files and what their copied names should are as follows. - `codeception.dist.yml` => `codeception.yml` - `.env.dist` => `.env` 3. Next open `.env` and alter to make you usage. ``` - # Shared - TEST_DB_NAME="wpgraphql_woocommerce_test" - TEST_DB_HOST="127.0.0.1" - TEST_DB_USER="root" - TEST_DB_PASSWORD="" - - # Install script + # docker ENV variables + DB_NAME=wordpress + DB_HOST=app_db + DB_USER=wordpress + DB_PASSWORD=wordpress + WP_TABLE_PREFIX=wp_ + WP_URL=http://localhost + WP_DOMAIN=localhost + ADMIN_EMAIL=admin@example.com + ADMIN_USERNAME=admin + ADMIN_PASSWORD=password + ADMIN_PATH=/wp-admin + + # local codeception/install-wp-tests ENV variables + TEST_DB_NAME=woographql_tests + TEST_DB_HOST=127.0.0.1 + TEST_DB_USER=wordpress + TEST_DB_PASSWORD=wordpress + TEST_WP_TABLE_PREFIX=wp_ + + # install-wp-tests ENV variables SKIP_DB_CREATE=false - - # Codeception - TEST_SITE_WP_ADMIN_PATH="/wp-admin" - TEST_SITE_DB_NAME="wpgraphql_woocommerce_test" - TEST_SITE_DB_HOST="127.0.0.1" - TEST_SITE_DB_USER="root" - TEST_SITE_DB_PASSWORD="" - TEST_SITE_TABLE_PREFIX="wp_" - TEST_TABLE_PREFIX="wp_" - TEST_SITE_WP_URL="http://localhost" - TEST_SITE_WP_DOMAIN="localhost" - TEST_SITE_ADMIN_EMAIL="admin@localhost" - TEST_SITE_ADMIN_USERNAME="admin" - TEST_SITE_ADMIN_PASSWORD="password" + TEST_WP_ROOT_FOLDER=/tmp/wordpress + TEST_ADMIN_EMAIL=admin@wp.test + + # codeception ENV variables + TESTS_DIR=tests + TESTS_OUTPUT=tests/_output + TESTS_DATA=tests/_data + TESTS_SUPPORT=tests/_support + TESTS_ENVS=tests/_envs ``` - - `Shared` variables are as the comment implies, variables shared in both the `install-wp-tests` script and the **Codeception** configuration. The variable names should tell you what they mean. - - `Install script` variables are specified to the `install-wp-tests` script, and most likely won't changed. I've listed their meaning below. - - `WP_VERSION` WordPress version used for testing - - `SKIP_DB_CREATE` Should database creation be skipped? - - `Codeception` variables are specified to the **Codeception** configuration. View the config files and Codeception's [Docs](https://codeception.com/docs/reference/Configuration#Suite-Configuration) for more info on them. + - `docker ENV variables`: variables defined for use in the Docker/Docker-Compose setups. These are also used in `codeception.dist.yml` for testing within a Docker container. It's recommend that this file be left unchanged and a `codeception.yml` be created for local codeception unit testing. + - `local codeception/install-wp-tests ENV variables`: variable defined for use with codeception testing w/o docker and the `install-wp-tests` script in the `bin` directory. As mentioned above a `codeception.yml` should be created from `codeception.dist.yml` and the variables in the `WPLoader` config should be set accordingly. + - `install-wp-tests ENV variables`: variables specific to the `install-wp-tests` script. The script can be run using `composer install-wp-tests` in the terminal from project directory. + - `codeception ENV variables`: variables used by codeception. This includes within the docker container as well. 4. Once you have finish modifying the `.env` file. Run `composer install-wp-tests` from the project directory. 5. Upon success you can begin running the tests. @@ -81,12 +88,18 @@ To learn more about the usage of Codeception with WordPress view the [Documentat It's possible to run functional and acceptance tests, but is very limited at the moment. The script docker entrypoint script runs all three suites (acceptance, functional, and wpunit) at once. This will change eventually, however as of right now, this is the limitation. ### Running tests -Even though the two suite use a Docker environment to run, the docker environment relies on a few environmental variables defined in `.env` and a volume source provided by the test install script. -0. Ensure that you can copy `.env.dist` to `.env`. -1. First you must run `composer install-wp-tests` to ensure the required dependencies are available. -2. Next run `docker-compose build` from the terminal in the project root directory, to build the docker image for test environment. -3. And now you're ready to run the tests. Running `docker-compose run --rm wpbrowser` does just that. -You can rerun the tests by simply repeating step 3. +Even though the two suite use a Docker environment to run, the docker environment relies on a few environmental variables defined in `.env.dist` and a volume source provided by the test install script and the configuration `codeception.dist.yml`. If you have created a `codeception.yml` file ensure it is identical to `codeception.dist.yml` or delete it. +Run the following in the terminal to run all three suites. Isolating specific suites should be simple to figure out. +``` +docker-compose run --rm -e SUITE=acceptance;wpunit;functional -e DEBUG=1 -e COVERAGE=1 testing --scale app=0 +``` +- The `COVERAGE`, and `DEBUG` vars are optional flags for toggle codecoverage and debug output. +- `--scale app=0` ensures that the service running a local app doesn't create any instances. It must be added or a collision with `mysql` will occur. More on this service in the next section + +## Using docker-compose to run a local installation for live testing. +This is rather simple just like with testing using docker ensure that `env.dist` and `codeception.dist.yml` are untouched and run `docker-compose up --scale testing=0 app` and wait for `app_1 | Success: Exported to '/var/www/html/wp-content/plugins/wp-graphql-woocommerce/tests/_data/dump.sql'.` to print to the terminal, then navigate to `http://localhost:8091`. And that's it. You can view the configuration for the installation in the `docker-compose.yml`. Note if you get redirected to `http://localhost` run `docker-compose down` to remove any existing containers related to the project, then re-run the `docker-compose up --scale testing=0 app` command. +- For more information about the docker-image uses in the service, it's on [Docker Hub](https://hub.docker.com/r/kidunot89/woographql-app). + ## HTTP Error 500 :construction: If you get HTTP 500 error upon activation or accessing the `endpoint` and have **CMD/Terminal** access with **Composer** installed. From dcbd241f2fa00a903160a25277a539247f2b13fb Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Tue, 27 Aug 2019 13:47:34 -0400 Subject: [PATCH 55/56] 3rd party default value hook added. --- .../data/mutation/class-checkout-mutation.php | 54 ++++++++++++++++++- 1 file changed, 53 insertions(+), 1 deletion(-) diff --git a/includes/data/mutation/class-checkout-mutation.php b/includes/data/mutation/class-checkout-mutation.php index 674ce9bc0..933ba3d43 100644 --- a/includes/data/mutation/class-checkout-mutation.php +++ b/includes/data/mutation/class-checkout-mutation.php @@ -22,6 +22,13 @@ class Checkout_Mutation { */ private static $fields; + /** + * Caches customer object. @see get_value. + * + * @var WC_Customer + */ + private $logged_in_customer = null; + /** * Is registration required to checkout? * @@ -78,11 +85,14 @@ public static function prepare_checkout_args( $input, $context, $info ) { } foreach ( $fieldset as $field => $input_key ) { + $key = "{$fieldset_key}_{$field}"; $value = ! empty( $input[ $fieldset_key ][ $input_key ] ) ? $input[ $fieldset_key ][ $input_key ] : null; if ( $value ) { - $data[ "{$fieldset_key}_{$field}" ] = $value; + $data[ $key ] = $value; + } elseif ( 'billing_country' === $key || 'shipping_country' === $key ) { + $data[ $key ] = self::get_value( $key ); } } } @@ -516,4 +526,46 @@ public static function process_checkout( $data, $context, $info, &$results = nul return $order_id; } + + /** + * Gets the value either from 3rd party logic or the customer object. Sets the default values in checkout fields. + * + * @param string $input Name of the input we want to grab data for. e.g. billing_country. + * @return string The default value. + */ + public static function get_value( $input ) { + // Allow 3rd parties to short circuit the logic and return their own default value. + $value = apply_filters( 'woocommerce_checkout_get_value', null, $input ); + if ( ! is_null( $value ) ) { + return $value; + } + + /** + * For logged in customers, pull data from their account rather than the session which may contain incomplete data. + * Another reason is that WC sets shipping address to the billing address on the checkout updates unless the + * "shipToDifferentAddress" is set. + */ + $customer_object = false; + if ( is_user_logged_in() ) { + // Load customer object, but keep it cached to avoid reloading it multiple times. + if ( is_null( self::$logged_in_customer ) ) { + self::$logged_in_customer = new WC_Customer( get_current_user_id(), true ); + } + $customer_object = new WC_Customer( get_current_user_id(), true ); + } + + if ( ! $customer_object ) { + $customer_object = WC()->customer; + } + + if ( is_callable( array( $customer_object, "get_$input" ) ) ) { + $value = $customer_object->{"get_$input"}(); + } elseif ( $customer_object->meta_exists( $input ) ) { + $value = $customer_object->get_meta( $input, true ); + } + if ( '' === $value ) { + $value = null; + } + return apply_filters( 'default_checkout_' . $input, $value, $input ); + } } From 45298e482e54149c65ea5a55820dcdf59c800440 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Tue, 27 Aug 2019 14:07:52 -0400 Subject: [PATCH 56/56] CHANGELOG.md updated. --- CHANGELOG.md | 41 ++++++++++++++++++++++++++--------------- 1 file changed, 26 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b22607a8..2ae1afe4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,34 @@ # Change Log -## [v0.2.0-beta](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.2.0-beta) (2019-07-11) -[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.1.2-beta...v0.2.0-beta) +## [v0.2.1-beta](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.2.1-beta) (2019-08-27) +[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.2.0-beta...v0.2.1-beta) **Implemented enhancements:** -- Release v0.2.0 code cleanup [\#107](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/107) ([kidunot89](https://github.com/kidunot89)) -- updateItemQuantities mutation [\#106](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/106) ([kidunot89](https://github.com/kidunot89)) -- deleteOrderItems mutation [\#104](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/104) ([kidunot89](https://github.com/kidunot89)) -- Adds NO\_QL\_SESSION\_HANDLER flag [\#103](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/103) ([kidunot89](https://github.com/kidunot89)) -- Adds product category image to schema. [\#102](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/102) ([kidunot89](https://github.com/kidunot89)) -- Query products by slug and sku [\#101](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/101) ([kidunot89](https://github.com/kidunot89)) +- Hooks for mutations [\#108](https://github.com/wp-graphql/wp-graphql-woocommerce/issues/108) +- productBy query should support querying by slug [\#95](https://github.com/wp-graphql/wp-graphql-woocommerce/issues/95) +- Support update of multiple quantities in cart in a single mutation [\#94](https://github.com/wp-graphql/wp-graphql-woocommerce/issues/94) +- Other mutations [\#19](https://github.com/wp-graphql/wp-graphql-woocommerce/issues/19) +- Order mutations [\#16](https://github.com/wp-graphql/wp-graphql-woocommerce/issues/16) +- Checkout mutation bugfix/enhancements [\#132](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/132) ([kidunot89](https://github.com/kidunot89)) +- Adds "taxonomyFilter" to product connections [\#126](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/126) ([kidunot89](https://github.com/kidunot89)) +- MetaData type and queries [\#123](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/123) ([kidunot89](https://github.com/kidunot89)) +- PaymentGateway type. [\#118](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/118) ([kidunot89](https://github.com/kidunot89)) +- CI upgrade [\#115](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/115) ([kidunot89](https://github.com/kidunot89)) + +**Fixed bugs:** + +- customerRegister mutation resolves wrong object for `viewer` field [\#111](https://github.com/wp-graphql/wp-graphql-woocommerce/issues/111) +- I cant see the category thumbnail [\#93](https://github.com/wp-graphql/wp-graphql-woocommerce/issues/93) + +**Merged pull requests:** + +- Add contributor [\#131](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/131) ([ranaaterning](https://github.com/ranaaterning)) +- Bug related to resolving product connections by taxonomies fixed. [\#125](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/125) ([kidunot89](https://github.com/kidunot89)) +- PostObject hierarchy bugfix [\#124](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/124) ([kidunot89](https://github.com/kidunot89)) + +## [v0.2.0-beta](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.2.0-beta) (2019-07-11) +[Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.1.2-beta...v0.2.0-beta) **Fixed bugs:** @@ -20,13 +38,6 @@ - Customer id doesn't match user id [\#90](https://github.com/wp-graphql/wp-graphql-woocommerce/issues/90) -**Merged pull requests:** - -- checkout mutation [\#100](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/100) ([kidunot89](https://github.com/kidunot89)) -- deleteOrder mutation [\#99](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/99) ([kidunot89](https://github.com/kidunot89)) -- updateOrder mutation [\#98](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/98) ([kidunot89](https://github.com/kidunot89)) -- createOrder mutation [\#97](https://github.com/wp-graphql/wp-graphql-woocommerce/pull/97) ([kidunot89](https://github.com/kidunot89)) - ## [v0.1.2-beta](https://github.com/wp-graphql/wp-graphql-woocommerce/tree/v0.1.2-beta) (2019-06-23) [Full Changelog](https://github.com/wp-graphql/wp-graphql-woocommerce/compare/v0.1.1-beta...v0.1.2-beta)