-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
45 lines (45 loc) · 1.13 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
40
41
42
43
44
45
{
"name": "ptuchik/billing",
"description": "Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions",
"keywords": [
"ptuchik",
"laravel",
"billing",
"purchase",
"subscriptions",
"currencies",
"coupons",
"discounts",
"plans"
],
"license": "MIT",
"type": "library",
"require": {
"illuminate/support": "^5.5|^5.6|^5.7|^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"ptuchik/core-utilities": "^1.0",
"league/omnipay": "^3.0",
"ptuchik/braintree": "1.1.6",
"torann/currency": "^1.0",
"ucraft-com/detection": "^1.2"
},
"autoload": {
"psr-4": {
"Ptuchik\\Billing\\": "src/"
}
},
"authors": [
{
"name": "Avik Aghajanyan",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"Ptuchik\\Billing\\Providers\\BillingServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}