forked from laravel/cashier-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 2.21 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "unicorn/lumen-cashier",
"description": "Lumen fork of Laravel Cashier (Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services).",
"keywords": ["laravel", "stripe", "billing", "lumen"],
"license": "MIT",
"support": {
"issues": "https://github.com/UnicornGlobal/lumen-cashier/issues",
"source": "https://github.com/UnicornGlobal/lumen-cashier"
},
"authors": [
{
"name": "Taylor Otwell",
"email": "taylorotwell@gmail.com"
},
{
"name": "UnicornGlobal",
"email": "admin@unicorn.global"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"dompdf/dompdf": "^0.8.0",
"illuminate/contracts": "^6.0|^7.0",
"illuminate/database": "^6.0|^7.0",
"illuminate/http": "^6.0|^7.0",
"illuminate/log": "^6.0|^7.0",
"illuminate/notifications": "^6.0|^7.0",
"illuminate/routing": "^6.0|^7.0",
"illuminate/support": "^6.0|^7.0",
"illuminate/view": "^6.0|^7.0",
"moneyphp/money": "^3.2",
"nesbot/carbon": "^2.0",
"ramsey/uuid": "^3.7",
"stripe/stripe-php": "^7.0",
"symfony/http-kernel": "^4.3",
"symfony/intl": "^4.3"
},
"require-dev": {
"illuminate/auth": "^6.3",
"mockery/mockery": "^1.0",
"phpunit/php-invoker": "^2.0",
"phpunit/phpunit": "^7.5|^8.0",
"unicorn/lumen-testbench": "dev-master",
"unicorn/lumen-testing": "dev-master"
},
"suggest": {
"ext-intl": "Allows for more locales besides the default \"en\" when formatting money values."
},
"autoload": {
"psr-4": {
"Lumen\\Cashier\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lumen\\Cashier\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "11.0-dev"
},
"laravel": {
"providers": [
"Lumen\\Cashier\\CashierServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}