-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
50 lines (50 loc) · 1.29 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": "wpackio/enqueue",
"description": "API to enqueue assets generated by @wpackio/scripts into your WordPress plugin or theme.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Swashata Ghosh",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"wp-coding-standards/wpcs": "^2.2",
"phpcompatibility/phpcompatibility-wp": "^2.1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5",
"spatie/phpunit-snapshot-assertions": "^1.3.1",
"phpunit/phpunit": "^7.3.0",
"brain/monkey": "^2.2.0",
"giacocorsiglia/wordpress-stubs": "^4.9.5",
"pcov/clobber": "^2.0"
},
"autoload": {
"psr-4": {
"WPackio\\": "inc"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always --testdox",
"lint": "vendor/bin/phpcs",
"changelog": "npx auto-changelog --template keepachangelog -v"
},
"archive": {
"exclude": [
"./tests",
"./.vscode",
".editorconfig",
".travis.yml",
"phpcs.xml",
"phpunit.xml"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}