From 2e92fc67de96608854f88a1548078f5b3ee6bc96 Mon Sep 17 00:00:00 2001 From: alexandergziresis <73916173+alexandergziresis@users.noreply.github.com> Date: Thu, 6 Jun 2024 20:06:53 -0400 Subject: [PATCH 1/2] Update composer.json Support Laravel 11 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 4bd9207..d2838ed 100644 --- a/composer.json +++ b/composer.json @@ -11,9 +11,9 @@ ], "require": { "php": ">=7.3", - "illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0", - "illuminate/validation": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0", - "illuminate/translation": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0" + "illuminate/support": "^11.0", + "illuminate/validation": "^11.0", + "illuminate/translation": "^11.0" }, "require-dev": { "mockery/mockery": "^1.4.2", From f849c334a8400fb1d599af7fc6b8d4e618d6bb2f Mon Sep 17 00:00:00 2001 From: alexandergziresis <73916173+alexandergziresis@users.noreply.github.com> Date: Mon, 10 Mar 2025 17:03:19 -0400 Subject: [PATCH 2/2] Update composer.json laravel 12 support --- composer.json | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index d2838ed..d2ccfe5 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,7 @@ { "name": "darryldecode/cart", - "description": "Laravel 5 Shopping cart", + "version": "1.2.0", + "description": "Laravel Shopping cart", "keywords": ["laravel", "shopping cart", "cart"], "license": "MIT", "authors": [ @@ -10,15 +11,18 @@ } ], "require": { - "php": ">=7.3", - "illuminate/support": "^11.0", - "illuminate/validation": "^11.0", - "illuminate/translation": "^11.0" + "php": ">=8.2", + "illuminate/support": "^10.0|^11.0|^12.0", + "illuminate/auth": "^10.0|^11.0|^12.0", + "illuminate/container": "^10.0|^11.0|^12.0", + "illuminate/database": "^10.0|^11.0|^12.0", + "illuminate/validation": "^10.0|^11.0|^12.0" }, "require-dev": { - "mockery/mockery": "^1.4.2", - "phpunit/phpunit": "^9.0", - "symfony/var-dumper": "5.1.5.*@dev" + "mockery/mockery": "^1.6", + "laravel/pint": "^1.21", + "pestphp/pest": "^3.0", + "larapack/dd": "dev-master" }, "autoload": { "psr-4": {