-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathcomposer.json
46 lines (46 loc) · 1.19 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
40
41
42
43
44
45
46
{
"name": "sheadawson/silverstripe-zenvalidator",
"type": "silverstripe-vendormodule",
"description": "Faster, easier client and server-side form validation for SilverStripe",
"keywords": [
"silverstripe",
"parsley",
"forms",
"validation"
],
"license": "BSD License",
"authors": [{
"name": "Shea Dawson",
"email": "[email protected]"
},
{
"name": "LeKoala",
"email": "[email protected]"
}
],
"require": {
"silverstripe/framework": "^4 || ^5"
},
"require-dev": {
"silverstripe/vendor-plugin": "^1 || ^2.0",
"phpunit/phpunit": "^5.7"
},
"support": {
"issues": "https://github.com/sheadawson/silverstripe-zenvalidator/issues"
},
"extra": {
"installer-name": "zenvalidator",
"expose": [
"css",
"javascript"
]
},
"scripts": {
"lint": "phpcs code/ tests/",
"lint-clean": "phpcbf code/ tests/",
"test": "phpunit -v"
},
"homepage": "https://github.com/sheadawson/silverstripe-zenvalidator",
"minimum-stability": "dev",
"prefer-stable": true
}