Skip to content

Commit

Permalink
Merge pull request #342 from tortuetorche/next
Browse files Browse the repository at this point in the history
PHP 8.0 support 🚀 and Laravel 6, 7 and 8 support
  • Loading branch information
PatrickRose authored Dec 1, 2020
2 parents 899f572 + 5e418f2 commit b9bb145
Show file tree
Hide file tree
Showing 8 changed files with 2,609 additions and 754 deletions.
11 changes: 5 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
language: php

sudo: false

php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
- 8.0snapshot

before_install:
- composer update
- travis_retry composer self-update
- travis_retry composer update --no-interaction --prefer-dist

script:
- vendor/bin/phpspec run
Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@
}
],
"require": {
"php": ">=5.6.0",
"laravelcollective/html": "^5.4.2",
"illuminate/support": "~5",
"illuminate/config": "~5",
"illuminate/routing": "~5",
"php": ">=7.2.0",
"laravelcollective/html": "^6.2.0",
"illuminate/support": "^6.0||^7.0||^8.0",
"illuminate/config": "^6.0||^7.0||^8.0",
"illuminate/routing": "^6.0||^7.0||^8.0",
"twbs/bootstrap": "~3"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpspec/phpspec": "~2",
"akeneo/phpspec-skip-example-extension": "~1.1",
"squizlabs/php_codesniffer": "~2.3"
"mockery/mockery": "~1.3.3||^1.4.2",
"phpspec/phpspec": "^6.3|^7.0",
"graham-campbell/phpspec-skip-example-extension": "^5.1",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit b9bb145

Please sign in to comment.