forked from ExpDev07/laravel-cashier-stripe-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 834 Bytes
/
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
{
"name": "expdev07/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",
"illuminate/support": "^8.17|^9.0|^10.0"
},
"license": "MIT",
"authors": [
{
"name": "ExpDev07",
"email": "mariusrich2@gmail.com"
}
],
"autoload": {
"psr-4": {
"ExpDev07\\CashierConnect\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"ExpDev07\\CashierConnect\\CashierConnectServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}