Skip to content

Commit 3692afb

Browse files
Merge pull request #185 from TheDragonCode/andrey-helldar-patch-1
Added Laravel 12 support
2 parents 48326f9 + 6e1a992 commit 3692afb

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.github/workflows/phpunit.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [ "8.2", "8.3" ]
13-
laravel: [ "10.0", "11.0" ]
12+
php: [ "8.2", "8.3", "8.4" ]
13+
laravel: [ "10.0", "11.0", "12.0" ]
14+
exclude:
15+
- laravel: "10.0"
16+
php: "8.4"
1417

1518
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}
1619

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,18 @@
4242
"composer-runtime-api": "^2.2",
4343
"dragon-code/simple-dto": "^2.5.1",
4444
"dragon-code/support": "^6.6",
45-
"illuminate/console": "^10.0 || ^11.0",
46-
"illuminate/container": "^10.0 || ^11.0",
47-
"illuminate/database": "^10.0 || ^11.0",
48-
"illuminate/support": "^10.0 || ^11.0",
45+
"illuminate/console": "^10.0 || ^11.0 || ^12.0",
46+
"illuminate/container": "^10.0 || ^11.0 || ^12.0",
47+
"illuminate/database": "^10.0 || ^11.0 || ^12.0",
48+
"illuminate/support": "^10.0 || ^11.0 || ^12.0",
4949
"laravel/prompts": ">=0.1",
5050
"symfony/console": "^6.0 || ^7.0"
5151
},
5252
"require-dev": {
5353
"mockery/mockery": "^1.3.1",
5454
"nesbot/carbon": "^2.62.1 || ^3.0",
55-
"orchestra/testbench": "^8.0 || ^9.0",
56-
"phpunit/phpunit": "^10.0",
55+
"orchestra/testbench": "^8.0 || ^9.0 || ^10.0",
56+
"phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
5757
"ramsey/uuid": "^4.0"
5858
},
5959
"conflict": {
@@ -94,4 +94,4 @@
9494
]
9595
}
9696
}
97-
}
97+
}

0 commit comments

Comments
 (0)