23 lines
302 B
YAML
23 lines
302 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.3
|
|
- 5.4
|
|
- 5.5
|
|
|
|
before_install:
|
|
- composer install
|
|
- pyrus install pear/PHP_CodeSniffer
|
|
- phpenv rehash
|
|
|
|
script:
|
|
- phpcs --standard=PSR2 src/
|
|
- phpunit
|
|
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- dev@maxmind.com
|
|
on_success: change
|
|
on_failure: always
|