Parcourir la source

Drop the php-cs-fixer business on Travis.

That's what StyleCI is for.
Justin Hileman il y a 9 ans
Parent
commit
41edfcb9e2
1 fichiers modifiés avec 3 ajouts et 7 suppressions
  1. 3 7
      .travis.yml

+ 3 - 7
.travis.yml

@@ -1,12 +1,5 @@
 language: php
 
-install:
-  - curl http://get.sensiolabs.org/php-cs-fixer.phar -o php-cs-fixer.phar
-
-script:
-  - phpunit
-  - if [[ `php -r "echo version_compare(PHP_VERSION, '5.3.6', '>=') && !defined('HHVM_VERSION');"` ]]; then php php-cs-fixer.phar --diff --dry-run -vv fix; fi
-
 php:
   - 5.2
   - 5.3
@@ -16,4 +9,7 @@ php:
   - 7.0
   - hhvm
 
+script:
+  - phpunit
+
 sudo: false