forked from bcgov/bcgov-wordpress-block-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 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
51
52
53
54
{
"name": "bcgov-theme/bcgov-wordpress-block-theme",
"version": "1.1.2",
"type": "wordpress-theme",
"repositories": [
{
"type": "composer",
"url": "https://apps.itsm.gov.bc.ca/satis"
}
],
"require-dev": {
"bcgov/wordpress-scripts": "@dev"
},
"autoload": {
"psr-4": {
"Bcgov\\Theme\\Block\\": [
"src",
"inc"
]
}
},
"autoload-dev": {
"psr-4": {
"Bcgov\\Theme\\Block\\Tests\\": "Tests/"
}
},
"scripts": {
"production": [
"npm run format",
"npm run build:production",
"Bcgov\\Script\\Checklists::postProductionChecks"
],
"checklist": [
"Bcgov\\Script\\Checklists::postProductionChecks"
],
"phpcs": [
"Bcgov\\Script\\Standards::phpcs"
],
"phpcbf": [
"Bcgov\\Script\\Standards::phpcbf"
],
"test": [
"Bcgov\\Script\\Tests::phpunit"
],
"coverage": [
"./vendor/bin/phpunit --coverage-html ./coverage/php/"
]
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}