mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-01 16:33:07 +05:30
79f15f3855
Conflicts: .gitignore .travis.yml README.md composer.json phpunit.xml sql/mysql.sql src/League/OAuth2/Server/Grant/RefreshToken.php src/League/OAuth2/Server/Resource.php src/League/OAuth2/Server/Storage/SessionInterface.php src/League/OAuth2/Server/Util/Request.php src/Util/KeyAlgorithm/DefaultAlgorithm.php tests/resource/ResourceServerTest.php tests/util/RedirectUriTest.php tests/util/RequestTest.php tests/util/SecureKeyTest.php
30 lines
482 B
YAML
30 lines
482 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- hhvm
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm
|
|
|
|
cache:
|
|
directories:
|
|
- vendor
|
|
|
|
before_script:
|
|
- composer self-update
|
|
- composer require satooshi/php-coveralls:dev-master --no-update --dev
|
|
- composer install
|
|
- cd examples/relational && composer install --prefer-dist
|
|
- php config/init.php
|
|
- php -S localhost:8000 &
|
|
- sleep 3
|
|
- cd ../..
|
|
|
|
script:
|
|
- mkdir -p build/logs
|
|
- phpunit --coverage-text
|