.travis.yml 363B

123456789101112131415
  1. language: php
  2. php:
  3. - 5.2
  4. - 5.3
  5. - 5.4
  6. env:
  7. - TWIG_EXT=no
  8. - TWIG_EXT=yes
  9. before_script:
  10. - if [ "$TWIG_EXT" == "yes" ]; then sh -c "cd ext/twig && phpize && ./configure --enable-twig && make && sudo make install"; fi
  11. - if [ "$TWIG_EXT" == "yes" ]; then echo "extension=twig.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`; fi