Skip to content

Commit

Permalink
Laravel 10.x Compatibility (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
joelbutcher authored Feb 1, 2023
2 parents 22e57c2 + f3a2df9 commit a765682
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,14 @@ jobs:
fail-fast: true
matrix:
php: [7.3, 7.4, 8.0, 8.1]
laravel: [6.0, 7.0, 8.0, 9.0]
laravel: [6.0, 7.0, 8.0, 9.0, 10.0]
exclude:
- php: 7.3
laravel: 10.0
- php: 7.4
laravel: 10.0
- php: 8.0
laravel: 10.0
- php: 7.3
laravel: 9
- php: 7.4
Expand Down
14 changes: 8 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"name": "joelbutcher/laravel-archivable",
"description": "An archivable trait package for Laravel Eloquent models",
"keywords": ["laravel", "laravel-archivable"],
"keywords": [
"laravel",
"laravel-archivable"
],
"license": "MIT",
"homepage": "https://github.com/joelbutcher/laravel-archivable",
"type": "library",
Expand All @@ -17,12 +20,12 @@
],
"require": {
"php": "^7.3|^8.0",
"illuminate/support": "^7.0|^8.0|^9.0",
"illuminate/database": "^7.0|^8.0|^9.0"
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
"illuminate/database": "^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"illuminate/pagination": "^7.0|^8.0|^9.0",
"orchestra/testbench": "^6.3|^7.0",
"illuminate/pagination": "^7.0|^8.0|^9.0|^10.0",
"orchestra/testbench": "^6.3|^7.0|^8.0",
"phpunit/phpunit": "^8.4|^9.1"
},
"autoload": {
Expand All @@ -38,7 +41,6 @@
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"

},
"config": {
"sort-packages": true
Expand Down

0 comments on commit a765682

Please sign in to comment.