Skip to content

Commit a765682

Browse files
authored
Laravel 10.x Compatibility (#14)
2 parents 22e57c2 + f3a2df9 commit a765682

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,14 @@ jobs:
1414
fail-fast: true
1515
matrix:
1616
php: [7.3, 7.4, 8.0, 8.1]
17-
laravel: [6.0, 7.0, 8.0, 9.0]
17+
laravel: [6.0, 7.0, 8.0, 9.0, 10.0]
1818
exclude:
19+
- php: 7.3
20+
laravel: 10.0
21+
- php: 7.4
22+
laravel: 10.0
23+
- php: 8.0
24+
laravel: 10.0
1925
- php: 7.3
2026
laravel: 9
2127
- php: 7.4

composer.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"name": "joelbutcher/laravel-archivable",
33
"description": "An archivable trait package for Laravel Eloquent models",
4-
"keywords": ["laravel", "laravel-archivable"],
4+
"keywords": [
5+
"laravel",
6+
"laravel-archivable"
7+
],
58
"license": "MIT",
69
"homepage": "https://github.com/joelbutcher/laravel-archivable",
710
"type": "library",
@@ -17,12 +20,12 @@
1720
],
1821
"require": {
1922
"php": "^7.3|^8.0",
20-
"illuminate/support": "^7.0|^8.0|^9.0",
21-
"illuminate/database": "^7.0|^8.0|^9.0"
23+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
24+
"illuminate/database": "^7.0|^8.0|^9.0|^10.0"
2225
},
2326
"require-dev": {
24-
"illuminate/pagination": "^7.0|^8.0|^9.0",
25-
"orchestra/testbench": "^6.3|^7.0",
27+
"illuminate/pagination": "^7.0|^8.0|^9.0|^10.0",
28+
"orchestra/testbench": "^6.3|^7.0|^8.0",
2629
"phpunit/phpunit": "^8.4|^9.1"
2730
},
2831
"autoload": {
@@ -38,7 +41,6 @@
3841
"scripts": {
3942
"test": "vendor/bin/phpunit --colors=always",
4043
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
41-
4244
},
4345
"config": {
4446
"sort-packages": true

0 commit comments

Comments
 (0)