Skip to content

Commit

Permalink
allow PHP 8
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Nov 4, 2020
1 parent ce85cf4 commit e3037a5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.3, 7.4]
php: [7.3, 7.4, 8.0]
laravel: [5.6.*, 5.7.*, 5.8.*, 6.*, 7.*, 8.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `laravel-schemaless-attributes` will be documented in this file

## 1.8.3 - 2020-11-04

- allow PHP 8.0

## 1.8.2 - 2020-09-14

- improve behaviour for isset() and empty()
Expand Down
4 changes: 1 addition & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@
}
],
"require": {
"php": "^7.3",
"php": "^7.3|^8.0",
"illuminate/database": "^5.6|^6.0|^7.0|^8.0",
"illuminate/support": "^5.6|^6.0|^7.0|^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"larapack/dd": "^1.0",
"orchestra/testbench": "^3.6|^4.0|^5.0|^6.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
Expand Down

0 comments on commit e3037a5

Please sign in to comment.