Skip to content

Commit df5fee4

Browse files
Laravel 12.x Compatibility (#77)
1 parent d5d78b9 commit df5fee4

File tree

2 files changed

+40
-43
lines changed

2 files changed

+40
-43
lines changed

.github/workflows/run-tests.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,8 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: [8.3, 8.2, 8.1]
17-
laravel: [10.0, '11.0']
18-
exclude:
19-
- laravel: '11.0'
20-
php: 8.1
16+
php: [8.4, 8.3, 8.2]
17+
laravel: ['^11.0', '^12.0']
2118

2219
name: P${{ matrix.php }} - L${{ matrix.laravel }}
2320

composer.json

+38-38
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
11
{
2-
"name": "dyrynda/laravel-cascade-soft-deletes",
3-
"description": "Cascading deletes for Eloquent models that implement soft deletes",
4-
"type": "utility",
5-
"require": {
6-
"php": "^8.1",
7-
"illuminate/database": "^10.0 || ^11.0",
8-
"illuminate/events": "^10.0 || ^11.0"
9-
},
10-
"autoload": {
11-
"psr-4": {
12-
"Dyrynda\\Database\\Support\\": "src/"
13-
}
14-
},
15-
"autoload-dev": {
16-
"psr-4": {
17-
"Tests\\": "tests/"
18-
}
19-
},
20-
"license": "MIT",
21-
"authors": [
22-
{
23-
"name": "Michael Dyrynda",
24-
"email": "[email protected]",
25-
"homepage": "https://dyrynda.com.au"
26-
}
27-
],
28-
"minimum-stability": "dev",
29-
"prefer-stable": true,
30-
"config": {
31-
"extra": {
32-
"sort-packages": true
33-
},
34-
"allow-plugins": {
35-
"pestphp/pest-plugin": true
36-
}
2+
"name": "dyrynda/laravel-cascade-soft-deletes",
3+
"description": "Cascading deletes for Eloquent models that implement soft deletes",
4+
"type": "utility",
5+
"require": {
6+
"php": "^8.2",
7+
"illuminate/database": "^11.0 || ^12.0",
8+
"illuminate/events": "^11.0 || ^12.0"
9+
},
10+
"autoload": {
11+
"psr-4": {
12+
"Dyrynda\\Database\\Support\\": "src/"
13+
}
14+
},
15+
"autoload-dev": {
16+
"psr-4": {
17+
"Tests\\": "tests/"
18+
}
19+
},
20+
"license": "MIT",
21+
"authors": [
22+
{
23+
"name": "Michael Dyrynda",
24+
"email": "[email protected]",
25+
"homepage": "https://dyrynda.com.au"
26+
}
27+
],
28+
"minimum-stability": "dev",
29+
"prefer-stable": true,
30+
"config": {
31+
"extra": {
32+
"sort-packages": true
3733
},
38-
"require-dev": {
39-
"pestphp/pest": "^2.34",
40-
"pestphp/pest-plugin-drift": "^2.5"
34+
"allow-plugins": {
35+
"pestphp/pest-plugin": true
4136
}
37+
},
38+
"require-dev": {
39+
"pestphp/pest": "^2.34 || ^3.7",
40+
"pestphp/pest-plugin-drift": "^2.5"
41+
}
4242
}

0 commit comments

Comments
 (0)