forked from l4nos/laravel-cashier-stripe-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.15 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": "lanos/laravel-cashier-stripe-connect",
"description": "Adds Stripe Connect functionality to Laravel's main billing package, Cashier.",
"keywords": ["laravel", "stripe", "stripe-connect", "billing"],
"type": "library",
"require": {
"laravel/cashier": "^12.6|^13.4|^v14.6.0",
"illuminate/console": "^8.37|^9.0",
"illuminate/contracts": "^8.37|^9.0",
"illuminate/database": "^8.37|^9.0",
"illuminate/http": "^8.37|^9.0",
"illuminate/log": "^8.37|^9.0",
"illuminate/notifications": "^8.37|^9.0",
"illuminate/routing": "^8.37|^9.0",
"illuminate/support": "^8.37|^9.0",
"illuminate/view": "^8.37|^9.0"
},
"license": "MIT",
"authors": [
{
"name": "Robert Lane",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Lanos\\CashierConnect\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Lanos\\CashierConnect\\CashierConnectServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}