Skip to content

Commit 12cbc55

Browse files
Laravel 10.x Compatibility (#9)
Co-authored-by: Pascal Baljet <[email protected]>
1 parent 875b74d commit 12cbc55

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.github/workflows/run-tests.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.2, 8.1, 8.0]
12-
laravel: [9.*]
11+
php: [8.2, 8.1]
12+
laravel: [10.*, 9.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414
include:
15+
- laravel: 10.*
16+
testbench: 8.*
1517
- laravel: 9.*
1618
testbench: 7.*
1719

composer.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.0 || ^8.1 || ^8.2",
20-
"illuminate/support": "^9.0"
19+
"php": "^8.1 || ^8.2",
20+
"illuminate/support": "^9.0 || ^10.0"
2121
},
2222
"require-dev": {
2323
"html2text/html2text": "^4.3",
2424
"jeremykendall/php-domain-parser": "^6.0",
25-
"laravel/ui": "^3.0",
26-
"mockery/mockery": "^1.3.3",
25+
"laravel/ui": "^3.0|^4.0",
26+
"mockery/mockery": "^1.4.4",
2727
"moneyphp/money": "^3.3",
28-
"nesbot/carbon": "^2.63",
29-
"orchestra/testbench": "^7.0",
30-
"phpunit/phpunit": "^9.4",
28+
"nesbot/carbon": "^2.66",
29+
"orchestra/testbench": "^7.0 || ^8.0",
30+
"phpunit/phpunit": "^9.5",
3131
"spatie/laravel-sitemap": "^6.0",
3232
"symfony/process": "^6.0"
3333
},
@@ -56,4 +56,4 @@
5656
},
5757
"minimum-stability": "dev",
5858
"prefer-stable": true
59-
}
59+
}

0 commit comments

Comments
 (0)