Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Laravel 10.x Compatibility #64

Merged
merged 3 commits into from
Feb 16, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Bump dependencies for Laravel 10
  • Loading branch information
laravel-shift committed Feb 3, 2023
commit d99bf8377b2a0d2e228643b691f4c442611fdf77
70 changes: 35 additions & 35 deletions composer.json
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": "^7.3|^8.0",
"illuminate/database": "^8.12|^9.0|^10.0",
"illuminate/events": "^8.12|^9.0|^10.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3"
},
"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
}
}
},
"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
}
}
}