Skip to content

Commit 59007e2

Browse files
authored
Adds Laravel 12.x Support (#24)
* Adds Laravel 12.x Support * wip * Remove coverage
1 parent ef48d05 commit 59007e2

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/run-tests.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest]
1616
php: [8.2, 8.3, 8.4]
17-
laravel: [10.*, 11.*]
17+
laravel: [11.*, 12.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
2020
- laravel: 11.*
2121
testbench: 9.*
2222
carbon: ^2.63
23-
- laravel: 10.*
24-
testbench: 8.8.*
25-
carbon: ^2.63
23+
- laravel: 12.*
24+
testbench: 10.*
25+
carbon: ^2.63|^3.0
2626

2727
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2828

@@ -51,4 +51,4 @@ jobs:
5151
run: composer show -D
5252

5353
- name: Execute tests
54-
run: vendor/bin/pest --ci --coverage
54+
run: vendor/bin/pest --ci

composer.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@
1818
"require": {
1919
"php": "^8.2",
2020
"spatie/laravel-package-tools": "^1.14.0",
21-
"illuminate/contracts": "^10.0|^11.0"
21+
"illuminate/contracts": "^11.0|^12.0"
2222
},
2323
"require-dev": {
2424
"laravel/pint": "^1.13",
25-
"nunomaduro/collision": "^7.8|^8.0",
26-
"nunomaduro/larastan": "^2.0.1",
27-
"orchestra/testbench": "^8.8|^9.0",
28-
"pestphp/pest": "^2.20",
29-
"pestphp/pest-plugin-arch": "^2.0",
30-
"pestphp/pest-plugin-laravel": "^2.0",
25+
"nunomaduro/collision": "^8.0",
26+
"larastan/larastan": "^3.1",
27+
"orchestra/testbench": "^9.0|^10.0",
28+
"pestphp/pest": "^3.0",
29+
"pestphp/pest-plugin-arch": "^3.0",
30+
"pestphp/pest-plugin-laravel": "^3.0",
3131
"phpstan/extension-installer": "^1.1",
32-
"phpstan/phpstan-deprecation-rules": "^1.0",
33-
"phpstan/phpstan-phpunit": "^1.0"
32+
"phpstan/phpstan-deprecation-rules": "^2.0",
33+
"phpstan/phpstan-phpunit": "^2.0"
3434
},
3535
"autoload": {
3636
"psr-4": {

0 commit comments

Comments
 (0)