generated from silverstripe/silverstripe-module
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 1.32 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
{
"name": "silverstripe/userguide",
"description": "Module to add a User Guide tab to a SilverStripe app.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"CMS",
"userguide"
],
"license": "BSD-3-Clause",
"require": {
"silverstripe/cms": "^4",
"silverstripe/admin": "^1.0",
"league/commonmark": "^2.2",
"ext-dom": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0",
"jdolba/silverstripe-coding-standards": "^0.1.1"
},
"autoload": {
"psr-4": {
"SilverStripe\\UserGuide\\": "src/",
"SilverStripe\\UserGuide\\Tests\\": "tests/"
}
},
"extra": {
"expose": [
"client/dist"
]
},
"scripts": {
"silverstripe-standards": [
"@phpcs"
],
"phpcs": "phpcs src tests --standard=vendor/jdolba/silverstripe-coding-standards/definitions/php/phpcs-ss4.xml --extensions=php --encoding=utf-8",
"phpcbf": "phpcbf src tests --standard=vendor/jdolba/silverstripe-coding-standards/definitions/php/phpcs-ss4.xml --extensions=php --encoding=utf-8",
"phpcs-fix": "@phpcbf"
},
"minimum-stability": "dev",
"prefer-stable": true
}