We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0eee7d commit cd7f2eaCopy full SHA for cd7f2ea
.travis.yml
@@ -6,6 +6,9 @@ php:
6
- 5.4
7
8
before_script:
9
- - ./test/travis.sh
+ - sh -c 'if [ $(php -r "echo PHP_MINOR_VERSION;") -le 4 ]; then echo "extension = apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
10
+ - git submodule update --init --recursive
11
-script: php -dshort_open_tag=Off -dmagic_quotes_gpc=Off data/bin/symfony symfony:test --trace
12
+script:
13
+ - php data/bin/check_configuration.php
14
+ - php -dshort_open_tag=Off -dmagic_quotes_gpc=Off data/bin/symfony symfony:test --trace
test/travis.sh
0 commit comments