Skip to content

Commit b87e18e

Browse files
authored
Merge pull request #35 from pelmered/master
Added support for Laravel 6.0
2 parents 1402aee + 8af7de9 commit b87e18e

File tree

2 files changed

+5
-13
lines changed

2 files changed

+5
-13
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
language: php
22

33
php:
4-
- 7.0
5-
- 7.1
4+
- 7.2
5+
- 7.3
66

77
before_script:
88
- travis_retry composer self-update
99
- travis_retry composer update --no-interaction --prefer-source
1010

1111
script:
12-
- phpunit --coverage-text --coverage-clover=coverage.clover
12+
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
1313

1414
after_script:
1515
- wget https://scrutinizer-ci.com/ocular.phar

composer.json

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,9 @@
1111
}
1212
],
1313
"require": {
14-
"php": ">=7.0",
14+
"php": "^7.1.3",
1515
"alymosul/exponent-server-sdk-php": "1.1.*",
16-
"illuminate/config": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.*",
17-
"illuminate/notifications": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.*",
18-
"illuminate/support": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.*",
19-
"illuminate/events": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.*",
20-
"illuminate/queue": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.*",
21-
"illuminate/http": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.*",
22-
"illuminate/routing": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.*",
23-
"illuminate/validation": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.*",
24-
"illuminate/auth": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.*"
16+
"laravel/framework": "^5.6 || ^6.0"
2517
},
2618
"require-dev": {
2719
"mockery/mockery": "^0.9.5",

0 commit comments

Comments
 (0)