mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-01 16:33:07 +05:30
bf55ce1f73
Conflicts: .travis.yml CHANGELOG.md composer.json examples/relational/Storage/AccessTokenStorage.php examples/relational/api.php src/AbstractServer.php src/AuthorizationServer.php src/Entity/AuthCodeEntity.php src/Exception/InvalidGrantException.php src/Exception/InvalidRequestException.php src/Exception/InvalidScopeException.php src/Exception/OAuthException.php src/Exception/ServerErrorException.php src/Exception/UnsupportedGrantTypeException.php src/Exception/UnsupportedResponseTypeException.php src/Grant/AuthCodeGrant.php src/Grant/RefreshTokenGrant.php src/ResourceServer.php src/Storage/AccessTokenInterface.php src/Storage/AuthCodeInterface.php src/Storage/ClientInterface.php src/Storage/RefreshTokenInterface.php src/Storage/ScopeInterface.php src/Storage/SessionInterface.php src/TokenType/Bearer.php src/TokenType/MAC.php tests/unit/Grant/RefreshTokenGrantTest.php tests/unit/TokenType/MacTest.php
24 lines
250 B
YAML
24 lines
250 B
YAML
language: php
|
|
|
|
sudo: false
|
|
|
|
cache:
|
|
directories:
|
|
- vendor
|
|
|
|
php:
|
|
- 5.5.9
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
- hhvm
|
|
|
|
install:
|
|
- travis_retry composer install --no-interaction --prefer-source
|
|
|
|
script:
|
|
- vendor/bin/phpunit
|
|
|
|
branches:
|
|
only:
|
|
- master |