Skip to content

Commit

Permalink
Merge pull request #125 from felixkiss/php-8
Browse files Browse the repository at this point in the history
Add support for PHP 8
  • Loading branch information
livkiss authored Apr 4, 2021
2 parents e666db5 + 9ed911f commit 4fe108b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
11 changes: 9 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ php:
- 7.2
- 7.3
- 7.4
- 8.0

env:
- LARAVEL=5.5.*
Expand All @@ -17,8 +18,6 @@ env:

matrix:
fast_finish: true
allow_failures:
- php: 7.4
exclude:
- php: 7.1
env: LARAVEL=^6.0
Expand All @@ -28,6 +27,14 @@ matrix:
env: LARAVEL=^8.0
- php: 7.2
env: LARAVEL=^8.0
- php: 8.0
env: LARAVEL=5.5.*
- php: 8.0
env: LARAVEL=5.6.*
- php: 8.0
env: LARAVEL=5.7.*
- php: 8.0
env: LARAVEL=5.8.*

cache:
directories:
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
}
],
"require": {
"php": "^7.1.3",
"php": "^7.1.3|^8.0",
"illuminate/support": "^5.5|^6.0|^7.0|^8.0",
"illuminate/validation": "^5.5|^6.0|^7.0|^8.0"
},
"require-dev": {
"phpspec/phpspec": "^5.0|^6.0",
"bossa/phpspec2-expect": "^3.0"
"phpspec/phpspec": "^5.0|^6.0|^7.0",
"friends-of-phpspec/phpspec-expect": "^3.0|^4.0"
},
"autoload": {
"psr-0": {
Expand Down

1 comment on commit 4fe108b

@disljenko
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When this library will be updated to work with Laravel 9x, great library but prevents me to upgrade to latest Laravel my project depends on it. Thanks!

Please sign in to comment.