GeoIP2-php/.travis.yml

28 lines
488 B
YAML
Raw Normal View History

2013-05-07 16:38:19 +00:00
language: php
php:
- 5.3
- 5.4
- 5.5
before_install:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev --no-interaction
- pyrus install pear/PHP_CodeSniffer
- phpenv rehash
script:
- mkdir -p build/logs
- phpcs --standard=PSR2 src/
- php vendor/bin/phpunit -c phpunit.xml.dist
2013-05-07 16:38:19 +00:00
2013-05-20 19:42:18 +00:00
after_script:
- php vendor/bin/coveralls
2013-05-07 16:38:19 +00:00
notifications:
email:
recipients:
- dev@maxmind.com
on_success: change
on_failure: always