From c4c6a53033e481762a67588e2657fa14a8ac269e Mon Sep 17 00:00:00 2001 From: Olivier Date: Sun, 27 Aug 2017 09:13:18 +0200 Subject: [PATCH] Laravel 5.5 support --- composer.json | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index e8edad6..2ca7c71 100644 --- a/composer.json +++ b/composer.json @@ -10,9 +10,9 @@ } ], "require": { - "illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*", - "illuminate/session": "5.1.*|5.2.*|5.3.*|5.4.*", - "illuminate/events": "5.1.*|5.2.*|5.3.*|5.4.*" + "illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*", + "illuminate/session": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*", + "illuminate/events": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*" }, "require-dev": { "phpunit/phpunit": "~5.0", @@ -32,5 +32,15 @@ "suggest": { "gloudemans/notify": "Simple flash notifications for Laravel" }, - "minimum-stability": "stable" + "minimum-stability": "stable", + "extra": { + "laravel": { + "providers": [ + "Gloudemans\\Shoppingcart\\ShoppingcartServiceProvider" + ], + "aliases": { + "Cart": "Gloudemans\\Shoppingcart\\Facades\\Cart" + } + } + } }