Skip to content

Commit 13a5171

Browse files
authored
Laravel 7 Support (#706)
* Laravel 7 Support * use local phpunit to run test * removed .phpunit.result.cache
1 parent 3e5b2d5 commit 13a5171

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ before_script:
1414
- composer self-update
1515
- composer install --prefer-dist --no-interaction
1616

17-
script: phpunit -d memory_limit=1024M
17+
script: ./vendor/bin/phpunit -d memory_limit=1024M
1818

1919
matrix:
2020
fast_finish: true

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
],
1414
"require": {
1515
"php": ">=7.1.0",
16-
"laravel/framework": "~5.2.0||~5.3.0||~5.4.0||~5.5.0||~5.6.0||~5.7.0||~5.8.0||^6.0"
16+
"laravel/framework": "~5.2.0||~5.3.0||~5.4.0||~5.5.0||~5.6.0||~5.7.0||~5.8.0||^6.0||^7.0"
1717
},
1818
"require-dev": {
1919
"orchestra/testbench-browser-kit": "~3.4|~3.8|~4.0",
20-
"phpunit/phpunit": "6.0.*|8.0.*"
20+
"phpunit/phpunit": "6.0.*|^8.0"
2121
},
2222
"suggest": {
2323
"ext-intl": "*"

0 commit comments

Comments
 (0)