From 216c95d01214a0320bff6c57b7521d1317564689 Mon Sep 17 00:00:00 2001 From: LucaApplicom <106394886+LucaApplicom@users.noreply.github.com> Date: Mon, 21 Aug 2023 16:18:12 +0200 Subject: [PATCH] Bump dependencies for Laravel 10 --- composer.json | 94 +++++++++++++++++++++++++-------------------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/composer.json b/composer.json index 31dcbd7..0a29583 100644 --- a/composer.json +++ b/composer.json @@ -1,51 +1,51 @@ { - "name": "patricktalmadge/bootstrapper", - "description": "Twitter Bootstrap markup generator", - "license": "MIT", - "keywords": [ - "bootstrap", - "laravel" - ], - "authors": [ - { - "name": "Patrick Talmadge", - "email": "ptalmadge@gmail.com" + "name": "patricktalmadge/bootstrapper", + "description": "Twitter Bootstrap markup generator", + "license": "MIT", + "keywords": [ + "bootstrap", + "laravel" + ], + "authors": [ + { + "name": "Patrick Talmadge", + "email": "ptalmadge@gmail.com" + }, + { + "name": "Maxime Fabre", + "email": "ehtnam6@gmail.com" + }, + { + "name": "Patrick Rose", + "email": "pjr0911025@gmail.com" + } + ], + "require": { + "php": ">=7.2.0", + "laravelcollective/html": "^6.2.0", + "illuminate/support": "^6.0||^7.0||^8.0||^9.0||^10.0", + "illuminate/config": "^6.0||^7.0||^8.0||^9.0||^10.0", + "illuminate/routing": "^6.0||^7.0||^8.0||^9.0||^10.0", + "twbs/bootstrap": "~3" }, - { - "name": "Maxime Fabre", - "email": "ehtnam6@gmail.com" + "require-dev": { + "mockery/mockery": "~1.3.3||^1.4.2", + "phpspec/phpspec": "^6.3|^7.0", + "graham-campbell/phpspec-skip-example-extension": "^5.1", + "squizlabs/php_codesniffer": "^3.5" }, - { - "name": "Patrick Rose", - "email": "pjr0911025@gmail.com" - } - ], - "require": { - "php": ">=7.2.0", - "laravelcollective/html": "^6.2.0", - "illuminate/support": "^6.0||^7.0||^8.0", - "illuminate/config": "^6.0||^7.0||^8.0", - "illuminate/routing": "^6.0||^7.0||^8.0", - "twbs/bootstrap": "~3" - }, - "require-dev": { - "mockery/mockery": "~1.3.3||^1.4.2", - "phpspec/phpspec": "^6.3|^7.0", - "graham-campbell/phpspec-skip-example-extension": "^5.1", - "squizlabs/php_codesniffer": "^3.5" - }, - "autoload": { - "psr-4": { - "Bootstrapper\\": "src\\Bootstrapper", - "DummyClasses\\": "tests\\DummyClasses" - } - }, - "extra": { - "laravel": { - "providers": [ - "Bootstrapper\\BootstrapperL5ServiceProvider" - ] - } - }, - "minimum-stability": "stable" + "autoload": { + "psr-4": { + "Bootstrapper\\": "src\\Bootstrapper", + "DummyClasses\\": "tests\\DummyClasses" + } + }, + "extra": { + "laravel": { + "providers": [ + "Bootstrapper\\BootstrapperL5ServiceProvider" + ] + } + }, + "minimum-stability": "stable" }