forked from sheadawson/silverstripe-dependentdropdownfield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.15 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": "sheadawson/silverstripe-dependentdropdownfield",
"type": "silverstripe-vendormodule",
"description": "A silverstripe dropdown field that has it's options populated via ajax, based on the value of the field it depends on",
"license": "BSD-3-Clause",
"keywords": [
"silverstripe",
"dropdown"
],
"homepage": "https://github.com/sheadawson/silverstripe-dependentdropdownfield",
"support": {
"issues": "https://github.com/sheadawson/silverstripe-dependentdropdownfield/issues"
},
"require": {
"php": ">=5.6",
"silverstripe/vendor-plugin": "^1.0",
"silverstripe/framework": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"Sheadawson\\DependentDropdown\\": "src/",
"Sheadawson\\DependentDropdown\\Tests\\": "tests/"
}
},
"extra": {
"installer-name": "dependentdropdownfield",
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"expose": [
"client"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}