author | ymh <ymh.work@gmail.com> |
Mon, 14 Oct 2019 18:35:50 +0200 | |
changeset 11 | bf1778c34b9a |
parent 7 | cf61fcea0001 |
permissions | -rwxr-xr-x |
5 | 1 |
{ |
2 |
"name": "valendesigns/option-tree", |
|
3 |
"description": "Theme Options UI Builder for WordPress.", |
|
11 | 4 |
"version": "2.7.3", |
5 |
"type": "wordpress-plugin", |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
6 |
"homepage": "https://github.com/valendesigns/option-tree", |
11 | 7 |
"license": "GPL-2.0-or-later", |
5 | 8 |
"authors": [ |
9 |
{ |
|
10 |
"name": "Derek Herman", |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
11 |
"email": "derek@valendesigns.com", |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
12 |
"homepage": "http://valendesigns.com", |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
13 |
"role": "Developer" |
5 | 14 |
} |
15 |
], |
|
11 | 16 |
"prefer-stable" : true, |
5 | 17 |
"require": { |
11 | 18 |
"php": ">=5.3" |
19 |
}, |
|
20 |
"require-dev": { |
|
21 |
"brainmaestro/composer-git-hooks": "^2.6.0", |
|
22 |
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0", |
|
23 |
"phpcompatibility/phpcompatibility-wp": "*", |
|
24 |
"php-coveralls/php-coveralls": "^2.1", |
|
25 |
"slowprog/composer-copy-file": "0.2.1", |
|
26 |
"wp-coding-standards/wpcs": "*", |
|
27 |
"xwp/wp-dev-lib": "^1.1.0" |
|
5 | 28 |
}, |
11 | 29 |
"scripts": { |
30 |
"phpcs": [ |
|
31 |
"./vendor/bin/phpcs ${1:.} --standard=.phpcs.ruleset.xml" |
|
32 |
], |
|
33 |
"phpcbf": [ |
|
34 |
"./vendor/bin/phpcbf ${1:.} --standard=.phpcs.ruleset.xml" |
|
35 |
], |
|
36 |
"phpunit": [ |
|
37 |
"./bin/phpunit.sh xdebug_off" |
|
38 |
], |
|
39 |
"phpunit-coverage": [ |
|
40 |
"./bin/phpunit.sh xdebug_on" |
|
41 |
], |
|
42 |
"post-install-cmd": [ |
|
43 |
"./bin/install-tests.sh", |
|
44 |
"./vendor/bin/cghooks add --no-lock", |
|
45 |
"SlowProg\\CopyFile\\ScriptHandler::copy" |
|
46 |
], |
|
47 |
"post-update-cmd": [ |
|
48 |
"./bin/install-tests.sh", |
|
49 |
"./vendor/bin/cghooks update", |
|
50 |
"SlowProg\\CopyFile\\ScriptHandler::copy" |
|
51 |
], |
|
52 |
"readme": [ |
|
53 |
"./vendor/xwp/wp-dev-lib/scripts/generate-markdown-readme" |
|
54 |
] |
|
55 |
}, |
|
56 |
"extra": { |
|
57 |
"copy-file": { |
|
58 |
"tests/autoload.php": "tests/wp-tests/phpunit/wp-tests-config.php" |
|
59 |
}, |
|
60 |
"hooks": { |
|
61 |
"pre-commit": "./vendor/xwp/wp-dev-lib/scripts/pre-commit" |
|
62 |
} |
|
5 | 63 |
} |
11 | 64 |
} |