-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
50 lines (50 loc) · 1.26 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
{
"name": "platformcoop/pcc-framework",
"type": "wordpress-plugin",
"description": "Utilities, custom post types and blocks for the Platform Cooperativism Consortium website.",
"keywords": [
"wordpress",
"plugin",
"custom post types",
"blocks"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "OCAD University",
"homepage": "https://ocadu.ca"
}
],
"require": {
"php": ">=7.1",
"cmb2/cmb2": "^2.6",
"commerceguys/addressing": "^1.0",
"composer/installers": "^1.7",
"davidgorges/human-name-parser": "^1.0",
"johnbillion/extended-cpts": "^4.2"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "^3.5.4"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"installer-paths": {
"vendor/cmb2/cmb2/": [
"cmb2/cmb2"
]
}
},
"scripts": {
"lint": "vendor/bin/phpcs . --extensions=php --standard=phpcs.xml.dist --ignore=build,node_modules,tests,vendor,wordpress",
"lint-fix": "vendor/bin/phpcbf . --extensions=php --standard=phpcs.xml.dist --ignore=build,node_modules,tests,vendor,wordpress",
"test": [
"vendor/bin/phpunit",
"@lint"
]
}
}