forked from unclecheese/silverstripe-display-logic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.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
38
39
{
"name": "unclecheese/display-logic",
"replace": {
"silverstripe/display-logic": "*"
},
"description": "Allows assignment of conditions for display and hide of specific form fields based on client side behavior.",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "display", "logic", "forms", "cms"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Uncle Cheese",
"email": "[email protected]"
}
],
"require":
{
"silverstripe/framework": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"silverstripe/behat-extension": "^3@dev",
"silverstripe/serve": "^2",
"se/selenium-server-standalone": "2.41.0"
},
"extra": {
"installer-name": "display-logic",
"expose": [
"client"
]
},
"autoload": {
"psr-4": {
"UncleCheese\\DisplayLogic\\": "src/",
"UncleCheese\\DisplayLogic\\Tests\\": "tests/php/",
"UncleCheese\\DisplayLogic\\Tests\\Behaviour\\": "tests/behat/src/"
}
}
}