-
Notifications
You must be signed in to change notification settings - Fork 182
/
composer.json
64 lines (64 loc) · 1.59 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
55
56
57
58
59
60
61
62
63
64
{
"name": "valendesigns/option-tree",
"description": "Theme Options UI Builder for WordPress.",
"version": "2.7.3",
"type": "wordpress-plugin",
"homepage": "https://github.com/valendesigns/option-tree",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Derek Herman",
"email": "[email protected]",
"homepage": "http://valendesigns.com",
"role": "Developer"
}
],
"prefer-stable" : true,
"require": {
"php": ">=5.3"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "^2.6.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"phpcompatibility/phpcompatibility-wp": "*",
"php-coveralls/php-coveralls": "^2.1",
"slowprog/composer-copy-file": "0.2.1",
"wp-coding-standards/wpcs": "*",
"xwp/wp-dev-lib": "^1.1.0"
},
"scripts": {
"phpcs": [
"./vendor/bin/phpcs ${1:.} --standard=.phpcs.ruleset.xml"
],
"phpcbf": [
"./vendor/bin/phpcbf ${1:.} --standard=.phpcs.ruleset.xml"
],
"phpunit": [
"./bin/phpunit.sh xdebug_off"
],
"phpunit-coverage": [
"./bin/phpunit.sh xdebug_on"
],
"post-install-cmd": [
"./bin/install-tests.sh",
"./vendor/bin/cghooks add --no-lock",
"SlowProg\\CopyFile\\ScriptHandler::copy"
],
"post-update-cmd": [
"./bin/install-tests.sh",
"./vendor/bin/cghooks update",
"SlowProg\\CopyFile\\ScriptHandler::copy"
],
"readme": [
"./vendor/xwp/wp-dev-lib/scripts/generate-markdown-readme"
]
},
"extra": {
"copy-file": {
"tests/autoload.php": "tests/wp-tests/phpunit/wp-tests-config.php"
},
"hooks": {
"pre-commit": "./vendor/xwp/wp-dev-lib/scripts/pre-commit"
}
}
}