-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 935 Bytes
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 935 Bytes
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
{
"name": "awais/cascade-soft-deletes",
"type": "library",
"description": "The Laravel library to apply soft delete on all relations via one soft delete",
"keywords": ["framework", "laravel","soft-delete","cascade"],
"license": "proprietary",
"require": {
"php": "^8.0",
"illuminate/support": "^6.9|^7.0|^8.0|^9.0",
"illuminate/database": "^6.9|^7.0|^8.0|^9.0"
},
"authors": [
{
"name": "Awais Ejaz",
"email": "awaisijaz@gmail.com"
}
],
"autoload": {
"psr-4": {
"Awais\\CascadeSoftDeletes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
}
},
"extra": {
"laravel": {
"providers": [
"Awais\\CascadeSoftDeletes\\Providers\\SoftDeleteServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}