Skip to content

Commit

Permalink
Added support for Laravel 7.0 (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
frasmage authored Mar 7, 2020
1 parent 2456af4 commit 078beb6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ before_script:
- composer update --prefer-dist --prefer-stable $PREFER_LOWEST
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- php vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- php vendor/bin/php-coveralls -v
cache:
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
"require": {
"php": ">=7.2.0",
"ext-fileinfo": "*",
"illuminate/support": "^5.6|^6.0",
"illuminate/filesystem": "^5.6|^6.0",
"illuminate/database": "^5.6|^6.0",
"illuminate/support": "^5.6|^6.0|^7.0",
"illuminate/filesystem": "^5.6|^6.0|^7.0",
"illuminate/database": "^5.6|^6.0|^7.0",
"league/flysystem": "~1.0.23",
"psr/http-message": "^1.0"
},
"require-dev": {
"orchestra/testbench": "^3.3|^4.0",
"phpunit/phpunit": "^8.0",
"orchestra/testbench": "^3.3|^4.0|^5.0",
"phpunit/phpunit": "^8.0|^9.0",
"vlucas/phpdotenv": "^3.3",
"league/flysystem-aws-s3-v3" : "~1.0.23",
"guzzlehttp/guzzle": "^6.3",
Expand Down

0 comments on commit 078beb6

Please sign in to comment.