From e393bc36fa2db3b719511687aba1fffa40b24b4e Mon Sep 17 00:00:00 2001 From: Adrian Barbos <6648011+adrianbarbos@users.noreply.github.com> Date: Fri, 19 Jul 2019 20:08:24 +0300 Subject: [PATCH] This fixes #3 and added Package Auto-discovery --- composer.json | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index d7fb704..b62acb0 100644 --- a/composer.json +++ b/composer.json @@ -11,9 +11,9 @@ ], "require": { "php": ">=5.3.0", - "illuminate/support": "5.0.* || 5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.*", - "omnipay/common": "~2.0", - "business-mastery/omnipay-mobilpay": "~1.0" + "illuminate/support": "5.0.* || 5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.*", + "omnipay/common": "~3.0", + "adrianbarbos/omnipay-mobilpay": "~1.2.1" }, "autoload" : { @@ -23,5 +23,17 @@ } }, + "extra": { + "laravel": { + "providers": [ + "Adrianbarbos\\Mobilpay\\MobilpayServiceProvider" + ], + "aliases": { + "Omnipay": "Omnipay\\Omnipay", + "Mobilpay": "Adrianbarbos\\Mobilpay\\Mobilpay" + } + } + }, + "minimum-stability": "stable" }