diff --git a/.travis.yml b/.travis.yml index 43fd842..8034aa7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,5 +31,5 @@ install: composer update --prefer-source --no-interaction script: - composer check-platform-reqs - - bin/phpunit --debug - - if [ "$TRAVIS_PHP_VERSION" != "8.0" ]; then composer require "friendsofphp/php-cs-fixer:^2.16" && bin/php-cs-fixer fix --diff --dry-run -v; fi + - vendor/bin/phpunit --debug + - if [ "$TRAVIS_PHP_VERSION" != "8.0" ]; then composer require "friendsofphp/php-cs-fixer:^2.16" && vendor/bin/php-cs-fixer fix --diff --dry-run -v; fi diff --git a/composer.json b/composer.json index a3be668..83000dd 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,6 @@ "description": "DataLoaderPhp is a generic utility to be used as part of your application's data fetching layer to provide a simplified and consistent API over various remote data sources such as databases or web services via batching and caching.", "keywords": ["dataLoader", "caching", "batching"], "config" : { - "bin-dir": "bin", "sort-packages": true }, "autoload": {