fix coding style: true is lower case
[phpmyadmin.git] / .travis.yml
blob0a69dd8393a65c64eb88e86afac3cf9febeb0568
1 language: php
2 php:
3   - "5.5"
4   - "5.4"
5   - "5.3"
6 before_install:
7   - sudo apt-get update -qq
8   - sudo apt-get install -qq ant
9 before_script:
10   - git clone git://github.com/zenovich/runkit.git && cd runkit && phpize && ./configure && make && make install && cd ..
11   - echo "extension=runkit.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
12   - echo "runkit.internal_override=1" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
13   - curl -s http://getcomposer.org/installer | php
14   - php composer.phar install --dev --no-interaction
15 script:
16   - ./scripts/generate-mo --quiet
17   - ant phpunit lint
18 after_script:
19   - php vendor/bin/coveralls -v