From 5dd9db7d31ebefc2bf04e81f9e5100766eba3a23 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 2 Feb 2023 06:29:08 +0000 Subject: [PATCH] Bump dependencies for Laravel 10 --- composer.json | 97 +++++++++++++++++++++++++++------------------------ 1 file changed, 52 insertions(+), 45 deletions(-) diff --git a/composer.json b/composer.json index 4aff9ee..8e0ada3 100644 --- a/composer.json +++ b/composer.json @@ -1,45 +1,52 @@ -{ - "name": "venturecraft/revisionable", - "license": "MIT", - "description": "Keep a revision history for your models without thinking, created as a package for use with Laravel", - "keywords": ["model", "laravel", "ardent", "revision", "audit", "history"], - "homepage": "http://github.com/venturecraft/revisionable", - "authors": [ - { - "name": "Chris Duell", - "email": "me@chrisduell.com" - } - ], - "support": { - "issues": "https://github.com/VentureCraft/revisionable/issues", - "source": "https://github.com/VentureCraft/revisionable" - }, - "require": { - "php": ">=5.4.0", - "illuminate/support": "~4.0|~5.0|~5.1|^6.0|^7.0|^8.0|^9.0", - "laravel/framework": "~5.4|^6.0|^7.0|^8.0|^9.0" - }, - "autoload": { - "classmap": [ - "src/migrations" - ], - "psr-0": { - "Venturecraft\\Revisionable": "src/" - } - }, - "autoload-dev": { - "psr-4": { - "Venturecraft\\Revisionable\\Tests\\": "tests/" - } - }, - "require-dev": { - "orchestra/testbench": "~3.0" - }, - "extra": { - "laravel": { - "providers": [ - "Venturecraft\\Revisionable\\RevisionableServiceProvider" - ] - } - } -} +{ + "name": "venturecraft/revisionable", + "license": "MIT", + "description": "Keep a revision history for your models without thinking, created as a package for use with Laravel", + "keywords": [ + "model", + "laravel", + "ardent", + "revision", + "audit", + "history" + ], + "homepage": "http://github.com/venturecraft/revisionable", + "authors": [ + { + "name": "Chris Duell", + "email": "me@chrisduell.com" + } + ], + "support": { + "issues": "https://github.com/VentureCraft/revisionable/issues", + "source": "https://github.com/VentureCraft/revisionable" + }, + "require": { + "php": ">=5.4.0", + "illuminate/support": "~4.0|~5.0|~5.1|^6.0|^7.0|^8.0|^9.0|^10.0", + "laravel/framework": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0" + }, + "autoload": { + "classmap": [ + "src/migrations" + ], + "psr-0": { + "Venturecraft\\Revisionable": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Venturecraft\\Revisionable\\Tests\\": "tests/" + } + }, + "require-dev": { + "orchestra/testbench": "~3.0|^8.0" + }, + "extra": { + "laravel": { + "providers": [ + "Venturecraft\\Revisionable\\RevisionableServiceProvider" + ] + } + } +}