-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.16 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.16 KB
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
43
44
45
46
47
{
"name": "dyrynda/laravel-cascade-soft-deletes",
"description": "Cascading deletes for Eloquent models that implement soft deletes",
"type": "utility",
"require": {
"php": "^8.3",
"illuminate/database": "^11.0 || ^12.0 || ^13.0",
"illuminate/events": "^11.0 || ^12.0 || ^13.0"
},
"autoload": {
"psr-4": {
"Dyrynda\\Database\\Support\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Michael Dyrynda",
"email": "michael@dyrynda.com.au",
"homepage": "https://dyrynda.com.au"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"extra": {
"sort-packages": true
},
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"require-dev": {
"pestphp/pest": "^4.4.2",
"laravel/pint": "^1.29"
},
"scripts": {
"check-style": "vendor/bin/pint --test",
"fix-style": "vendor/bin/pint",
"test": "vendor/bin/pest"
}
}