-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 1 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
{
"name": "i-lateral/silvercommerce-stripe-subscriptions",
"description": "Simple subscriptions via Stripe for SilverCommerce",
"type": "silverstripe-vendormodule",
"homepage": "http://github.com/i-lateral/silvercommerce-stripe-subscriptions",
"keywords": [
"silverstripe",
"ecommerce",
"subscriptions"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Morven Lewis-Everley",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/i-lateral/silvercommerce-stripe-subscriptions/issues"
},
"require": {
"silverstripe/framework": "^4.3",
"silvercommerce/catalogue-admin": "^1.3",
"silvercommerce/discounts": "^2.0",
"stripe/stripe-php": "^7.13"
},
"autoload": {
"psr-4": {
"ilateral\\SilverCommerce\\StripeSubscriptions\\": "src/"
}
},
"extra": {
"expose": [
"client/dist"
]
}
}