-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 1.31 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": "i-lateral/silvercommerce-simplebookings",
"description": "Module for Silverstripe 4/SilverCommerce that adds simple booking functionality",
"type": "silverstripe-vendormodule",
"homepage": "http://github.com/i-lateral/silvercommerce-simplebookings",
"keywords": ["silverstripe", "commerce", "ecommerce", "booking"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Morven Lewis-Everley",
"email": "morven@i-lateral.com"
}
],
"support": {
"issues": "http://github.com/i-lateral/silvercommerce-simplebookings/issues"
},
"require": {
"silverstripe/framework": "~4.0",
"silvercommerce/catalogue-admin": "~1.3",
"silvercommerce/orders-admin": "^1.5@dev",
"silvercommerce/checkout-special-instructions": "~1.0.0",
"sheadawson/silverstripe-dependentdropdownfield": "~2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"scripts": {
"lint": "vendor/bin/phpcs src/ tests/",
"lint-clean": "vendor/bin/phpcbf src/ tests/"
},
"autoload": {
"psr-4": {
"ilateral\\SimpleBookings\\": "src/",
"ilateral\\SimpleBookings\\Tests\\": "tests/"
}
},
"minimum-stability": "dev"
}