- curl -sS https://getcomposer.org/installer | php
# Create composer.json file manually, since this is a project without any non-dev dependencies yet
- php composer.phar require --dev php-parallel-lint/php-parallel-lint
- curl -sS https://getcomposer.org/installer | php
# Create composer.json file manually, since this is a project without any non-dev dependencies yet
- php composer.phar require --dev php-parallel-lint/php-parallel-lint
- - ./vendor/bin/parallel-lint --exclude vendor .
-
-# Run same tests with PHP5.6
-test_app_php56:
- image: php:5.6
- script:
- - ./vendor/bin/parallel-lint --exclude vendor .
+ - ./vendor/bin/parallel-lint --exclude vendor .
+ - ./vendor/bin/php-cs-fixer -vvv fix . --dry-run --using-cache=no --rules=@PSR2