-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.04 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"name": "front/wp-cli-build",
"description": "Fetch specific versions of plugins/themes from wordpress.org using a build file",
"type": "wp-cli-package",
"homepage": "https://github.com/front/wp-cli-build",
"license": "MIT",
"authors": [
{
"name": "Frontkom",
"email": "hello@frontkom.com",
"homepage": "https://frontkom.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"discard-changes": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"files": [
"command.php"
]
},
"require": {
"php": "~7.4.0",
"alchemy/zippy": "0.4.4",
"phar-io/version": "^1.0",
"symfony/yaml": "3.4.4",
"wp-cli/wp-cli": "^2.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^v0.7.2",
"phpstan/phpstan": "^1.8.6",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "^8.5.2",
"squizlabs/php_codesniffer": "^3.7.1"
}
}