forked from l4nos/laravel-cashier-stripe-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.26 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
{
"name": "ngl5000/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": {
"php" : "^7.4|^8.1|^8.2|^8.3|^8.4",
"laravel/cashier": "^12.6|^13.4|^v14.6.0|^v15.3.0",
"illuminate/console": "^9.0|^10.0|^11.0",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"illuminate/database": "^9.0|^10.0|^11.0",
"illuminate/http": "^9.0|^10.0|^11.0",
"illuminate/log": "^9.0|^10.0|^11.0",
"illuminate/notifications": "^9.0|^10.0|^11.0",
"illuminate/routing": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"illuminate/view": "^9.0|^10.0|^11.0"
},
"license": "MIT",
"authors": [
{
"name": "Numerous",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Ngl5000\\CashierConnect\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Ngl5000\\CashierConnect\\CashierConnectServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}