-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Michael Dyrynda <[email protected]>
- Loading branch information
1 parent
6dc274b
commit a857578
Showing
3 changed files
with
38 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
{ | ||
"name": "dyrynda/laravel-cascade-soft-deletes", | ||
"description": "Cascading deletes for Eloquent models that implement soft deletes", | ||
"type": "utility", | ||
"require": { | ||
"php": "^7.3|^8.0", | ||
"illuminate/database": "^8.12|^9.0", | ||
"illuminate/events": "^8.12|^9.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.3" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Dyrynda\\Database\\Support\\": "src/" | ||
"name": "dyrynda/laravel-cascade-soft-deletes", | ||
"description": "Cascading deletes for Eloquent models that implement soft deletes", | ||
"type": "utility", | ||
"require": { | ||
"php": "^8.1", | ||
"illuminate/database": "^10.0", | ||
"illuminate/events": "^10.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.6 || ^10.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Dyrynda\\Database\\Support\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\": "tests/" | ||
} | ||
}, | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Michael Dyrynda", | ||
"email": "[email protected]", | ||
"homepage": "https://dyrynda.com.au" | ||
} | ||
], | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"config": { | ||
"extra": { | ||
"sort-packages": true | ||
} | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\": "tests/" | ||
} | ||
}, | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Michael Dyrynda", | ||
"email": "[email protected]", | ||
"homepage": "https://dyrynda.com.au" | ||
} | ||
], | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"config": { | ||
"extra": { | ||
"sort-packages": true | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters