forked from silvercommerce/checkout-agree-to-terms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1003 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
32
33
34
35
36
{
"name": "silvercommerce/checkout-agree-to-terms",
"description": "Requires users who purchases via the checkout process to agree to a terms and conditions checkbox",
"type": "silverstripe-vendormodule",
"homepage": "http://github.com/silvercommerce/checkout-agree-to-terms",
"keywords": [
"silverstripe",
"commerce",
"ecommerce",
"checkout",
"payments"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "ilateral",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/silvercommerce/checkout-agree-to-terms/issues"
},
"require": {
"silvercommerce/checkout": "~1.0"
},
"extra": {
"expose": [
"client"
]
},
"autoload": {
"psr-4": {
"SilverCommerce\\Checkout\\AgreeToTerms\\": "src/"
}
}
}