Skip to content

Commit

Permalink
Laravel 7 Support (#706)
Browse files Browse the repository at this point in the history
* Laravel 7 Support

* use local phpunit to run test

* removed .phpunit.result.cache
  • Loading branch information
mcamara authored Mar 5, 2020
1 parent 3e5b2d5 commit 13a5171
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ before_script:
- composer self-update
- composer install --prefer-dist --no-interaction

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

matrix:
fast_finish: true
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
],
"require": {
"php": ">=7.1.0",
"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"
"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"
},
"require-dev": {
"orchestra/testbench-browser-kit": "~3.4|~3.8|~4.0",
"phpunit/phpunit": "6.0.*|8.0.*"
"phpunit/phpunit": "6.0.*|^8.0"
},
"suggest": {
"ext-intl": "*"
Expand Down

0 comments on commit 13a5171

Please sign in to comment.