From b6e3729ae452560d49135fc04d1c57ca48a420cd Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 2 Mar 2024 06:11:10 +0000 Subject: [PATCH] Bump dependencies for Laravel 11 --- composer.json | 87 +++++++++++++++++++++++++++------------------------ 1 file changed, 46 insertions(+), 41 deletions(-) diff --git a/composer.json b/composer.json index 37e14b9..d6485f6 100644 --- a/composer.json +++ b/composer.json @@ -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": "ddzobov@gmail.com" - } - ], - "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 -} \ No newline at end of file + "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": "ddzobov@gmail.com" + } + ], + "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 +}