From 0d50df7ab002fa3eebf103345134afea6e78f4ea Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 2 Mar 2024 01:06:01 +0000 Subject: [PATCH] Bump dependencies for Laravel 11 --- composer.json | 65 ++++++++++++++++++++++++++++----------------------- 1 file changed, 36 insertions(+), 29 deletions(-) diff --git a/composer.json b/composer.json index 49505a5b..cc5b1bbe 100644 --- a/composer.json +++ b/composer.json @@ -1,32 +1,39 @@ { - "name": "baum/baum", - "type": "library", - "description": "Baum is an implementation of the Nested Set pattern for Eloquent models.", - "keywords": ["nested set", "laravel", "laravel 4", "laravel 5", "eloquent", "database"], - "license": "MIT", - "authors": [ - { - "name": "Estanislau Trepat", - "email": "estanis@etrepat.com", - "homepage": "http://etrepat.com" + "name": "baum/baum", + "type": "library", + "description": "Baum is an implementation of the Nested Set pattern for Eloquent models.", + "keywords": [ + "nested set", + "laravel", + "laravel 4", + "laravel 5", + "eloquent", + "database" + ], + "license": "MIT", + "authors": [ + { + "name": "Estanislau Trepat", + "email": "estanis@etrepat.com", + "homepage": "http://etrepat.com" + } + ], + "require": { + "php": ">=5.4.0", + "illuminate/console": "5.*|^11.0", + "illuminate/database": "5.*|^11.0", + "illuminate/events": "5.*|^11.0", + "illuminate/filesystem": "5.*|^11.0", + "illuminate/support": "5.*|^11.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.0|^10.5", + "mockery/mockery": "~0.9|^1.6", + "d11wtq/boris": "~1.0.10" + }, + "autoload": { + "psr-0": { + "Baum": "src/" + } } - ], - "require": { - "php": ">=5.4.0", - "illuminate/console": "5.*", - "illuminate/database": "5.*", - "illuminate/events": "5.*", - "illuminate/filesystem": "5.*", - "illuminate/support": "5.*" - }, - "require-dev": { - "phpunit/phpunit": "~4.0", - "mockery/mockery": "~0.9", - "d11wtq/boris": "~1.0.10" - }, - "autoload": { - "psr-0": { - "Baum": "src/" - } - } }