Skip to content

Commit

Permalink
Merge pull request #20 from laravel-shift/l11-compatibility
Browse files Browse the repository at this point in the history
Laravel 11.x Compatibility
  • Loading branch information
ddzobov authored Jul 15, 2024
2 parents e420159 + b6e3729 commit 38b2438
Showing 1 changed file with 46 additions and 41 deletions.
87 changes: 46 additions & 41 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,47 @@
{
"name": "ddzobov/laravel-pivot-softdeletes",
"description": "Make your Eloquent models pivots be able to soft deleted in Laravel/Lumen",
"keywords": ["softdelete", "pivot", "laravel", "lumen"],
"homepage": "https://github.com/ddzobov/laravel-pivot-softdeletes",
"type": "package",
"license": "MIT",
"support": {
"issues": "https://github.com/ddzobov/laravel-pivot-softdeletes/issues",
"source": "https://github.com/ddzobov/laravel-pivot-softdeletes"
},
"authors": [
{
"name": "Daniil Zobov",
"email": "[email protected]"
}
],
"require": {
"illuminate/database": ">=5.8 <11.0"
},
"require-dev": {
"laravel/framework": ">=5.8 <11.0",
"mockery/mockery": "^1.4.4",
"orchestra/testbench-core": "^7.1",
"phpunit/phpunit": "^9.5.8"
},
"autoload": {
"psr-4": {
"DDZobov\\PivotSoftDeletes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DDZobov\\PivotSoftDeletes\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}
"name": "ddzobov/laravel-pivot-softdeletes",
"description": "Make your Eloquent models pivots be able to soft deleted in Laravel/Lumen",
"keywords": [
"softdelete",
"pivot",
"laravel",
"lumen"
],
"homepage": "https://github.com/ddzobov/laravel-pivot-softdeletes",
"type": "package",
"license": "MIT",
"support": {
"issues": "https://github.com/ddzobov/laravel-pivot-softdeletes/issues",
"source": "https://github.com/ddzobov/laravel-pivot-softdeletes"
},
"authors": [
{
"name": "Daniil Zobov",
"email": "[email protected]"
}
],
"require": {
"illuminate/database": ">=5.8 <11.0|^11.0"
},
"require-dev": {
"laravel/framework": ">=5.8 <11.0|^11.0",
"mockery/mockery": "^1.4.4",
"orchestra/testbench-core": "^7.1|^8.22",
"phpunit/phpunit": "^9.5.8|^10.5"
},
"autoload": {
"psr-4": {
"DDZobov\\PivotSoftDeletes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DDZobov\\PivotSoftDeletes\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit 38b2438

Please sign in to comment.