forked from silvercommerce/contact-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.51 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
47
48
49
50
51
52
{
"name": "silvercommerce/contact-admin",
"description": "Contact management module, allowing import, export, management, grouping and tagging of contacts",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/silvercommerce/contact-admin",
"keywords": [
"silverstripe",
"admin",
"contacts",
"management"
],
"license": "BSD-3-Clause",
"authors": [{
"name": "ilateral",
"email": "[email protected]"
}],
"support": {
"issues": "https://github.com/silvercommerce/contact-admin/issues"
},
"require": {
"silverstripe/framework": "^4.0",
"colymba/gridfield-bulk-editing-tools": "^3.0",
"silverstripe/tagfield": "^2.0",
"nathancox/hasoneautocompletefield": "^2.0",
"silvercommerce/versionhistoryfield": "^1",
"i-lateral/silverstripe-modeladminplus": "^1"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"replace": {
"i-lateral/silverstripe-contacts": "self.version"
},
"extra": {
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"SilverCommerce\\ContactAdmin\\": "src/",
"SilverCommerce\\ContactAdmin\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/phpcs src/ tests/",
"lint-clean": "vendor/bin/phpcbf src/ tests/"
},
"minimum-stability": "dev",
"prefer-stable": true
}