Skip to content

Commit 3c85a7b

Browse files
authored
Add support for Laravel 7 (#218)
1 parent a656c26 commit 3c85a7b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ before_script:
1616
- composer self-update
1717
- composer install
1818

19-
script: phpunit
19+
script: ./vendor/bin/phpunit
2020

2121
jobs:
2222
include:

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"keywords": ["laravel", "dynamodb", "aws"],
55
"require": {
66
"aws/aws-sdk-php": "^3.0.0",
7-
"illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0",
8-
"illuminate/database": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0"
7+
"illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0",
8+
"illuminate/database": "5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0"
99
},
1010
"license": "MIT",
1111
"authors": [
@@ -20,7 +20,7 @@
2020
}
2121
},
2222
"require-dev": {
23-
"orchestra/testbench": "~3.0"
23+
"orchestra/testbench": "~3.0 || ~5.0"
2424
},
2525
"scripts": {
2626
"test": "phpunit",

0 commit comments

Comments
 (0)