-
Notifications
You must be signed in to change notification settings - Fork 65
/
composer.json
executable file
·42 lines (42 loc) · 1.04 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "askedio/laravel-soft-cascade",
"description": "Laravel Cascade Soft Delete & Restore",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Will Bowman",
"homepage": "https://medium.com/@asked_io",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^10.0|^11.0",
"illuminate/container": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/events": "^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0|^11.0",
"orchestra/testbench": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Askedio\\SoftCascade\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Askedio\\Tests\\" : "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Askedio\\SoftCascade\\Providers\\GenericServiceProvider"
]
}
},
"minimum-stability": "dev"
}