aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/twig/twig/.travis.yml
blob: 8569a3952adfc1f7925e99efea81d48c4a97d233 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: php

php:
  - 5.2
  - 5.3
  - 5.4
  - 5.5

env:
  - TWIG_EXT=no
  - TWIG_EXT=yes

before_script:
  - if [ "$TWIG_EXT" == "yes" ]; then sh -c "cd ext/twig && phpize && ./configure --enable-twig && make && sudo make install"; fi
  - if [ "$TWIG_EXT" == "yes" ]; then echo "extension=twig.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`; fi