Skip to content

Commit 640b703

Browse files
Laravel 8
1 parent 9686969 commit 640b703

File tree

1 file changed

+36
-30
lines changed

1 file changed

+36
-30
lines changed

composer.json

Lines changed: 36 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,38 @@
11
{
2-
"name": "iatstuti/laravel-cascade-soft-deletes",
3-
"description": "Cascading deletes for Eloquent models that implement soft deletes",
4-
"type": "utility",
5-
"require": {
6-
"php": "^7.2.5",
7-
"illuminate/database": "^6.0|^7.0",
8-
"illuminate/events": "^6.0|^7.0"
9-
},
10-
"require-dev": {
11-
"phpunit/phpunit": "^8.0"
12-
},
13-
"autoload": {
14-
"psr-4": {
15-
"Iatstuti\\Database\\Support\\": "src/"
16-
}
17-
},
18-
"autoload-dev": {
19-
"psr-4": {
20-
"Tests\\": "tests/"
21-
}
22-
},
23-
"license": "MIT",
24-
"authors": [
25-
{
26-
"name": "Michael Dyrynda",
27-
"email": "[email protected]",
28-
"homepage": "https://dyrynda.com.au"
29-
}
30-
],
31-
"minimum-stability": "stable"
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": "^7.3",
7+
"illuminate/database": "^8.0",
8+
"illuminate/events": "^8.0"
9+
},
10+
"require-dev": {
11+
"phpunit/phpunit": "^9.3"
12+
},
13+
"autoload": {
14+
"psr-4": {
15+
"Iatstuti\\Database\\Support\\": "src/"
16+
}
17+
},
18+
"autoload-dev": {
19+
"psr-4": {
20+
"Tests\\": "tests/"
21+
}
22+
},
23+
"license": "MIT",
24+
"authors": [
25+
{
26+
"name": "Michael Dyrynda",
27+
"email": "[email protected]",
28+
"homepage": "https://dyrynda.com.au"
29+
}
30+
],
31+
"minimum-stability": "dev",
32+
"prefer-stable": true,
33+
"config": {
34+
"extra": {
35+
"sort-packages": true
36+
}
37+
}
3238
}

0 commit comments

Comments
 (0)