-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.04 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
{
"name": "GOVTNZ/aacustomshortcodes",
"description": "A drop-in replacement for shortcode parser, providing nested shortcodes",
"type": "silverstripe-vendormodule",
"homepage": "http://github.com/GOVTNZ/aacustomshortcodes",
"keywords": ["silverstripe", "shortcodes"],
"license": "MIT License",
"authors": [{
"name": "Govt.nz",
"email": "[email protected]"
}],
"require": {
"silverstripe/framework": "^4"
},
"autoload": {
"psr-4": {
"GovtNZ\\SilverStripe\\Parsers\\": "src/Parsers",
"GovtNZ\\SilverStripe\\Tests\\Parsers\\": "tests/Parsers"
}
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.4"
},
"scripts": {
"remove-uses": "php-cs-fixer fix src/ --rules=no_unused_imports",
"lint": "phpcs --extensions=php src/",
"syntax-check": "find src/",
"lint-clean": "phpcbf src/"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}