forked from adrianbarbos/mobilpay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (36 loc) · 1.01 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "adrianbarbos/mobilpay",
"description": "Laravel 5 mobilpay wrapper around omnipay with omnipay-mobilpay driver",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "adrianbarbos",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"illuminate/support": "5.0.* || 5.1.* || 5.2.* || 5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || 6.*",
"omnipay/common": "~3.0",
"adrianbarbos/omnipay-mobilpay": "~1.2.1"
},
"autoload" : {
"psr-4": {
"App\\": "app/",
"Adrianbarbos\\Mobilpay\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Adrianbarbos\\Mobilpay\\MobilpayServiceProvider"
],
"aliases": {
"Omnipay": "Omnipay\\Omnipay",
"Mobilpay": "Adrianbarbos\\Mobilpay\\Mobilpay"
}
}
},
"minimum-stability": "stable"
}