forked from acardona-ucf/base-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 1.39 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
{
"name": "ucf-sdes-it/base-theme",
"description": "Rev2015 Bootstrap to WordPress theme conversion prototype.",
"require": {
"anahkiasen/underscore-php": "^2.0"
},
"license": "MIT",
"require-dev": {
"phpunit/phpunit": "^4.8",
"phpunit/php-code-coverage": "^2.2",
"squizlabs/php_codesniffer": "^2.3",
"fabpot/php-cs-fixer": "^1.10",
"wp-coding-standards/wpcs": "^0.8"
},
"scripts": {
"test": "phpunit -v -c ./tests/phpunit.xml --coverage-html ./tests/cov ./tests/SDES_Static_Tests.php",
"test:simple": "phpunit -v -c .\\tests\\phpunit.xml .\\tests\\SDES_Static_Tests.php",
"phplint": "php -d display_errors=1 -l",
"csfix": "php-cs-fixer fix",
"csfixer": "php-cs-fixer",
"phpcs:wp-install": "phpcs --config-set installed_paths %cd%\\vendor\\wp-coding-standards\\wpcs",
"phpcs": ["@phpcs:wp-install", "phpcs -p --ignore=vendor --standard=.\\tests\\ucfsdes_wordpress_ruleset.xml"],
"phpcs-": "phpcs --ignore=vendor",
"phpcs:sum": "phpcs --report=summary --ignore=vendor .",
"phpcbf": ["phpcbf --no-patch --standard=.\\tests\\ucfsdes_wordpress_ruleset.xml", "@phpcs"],
"phpcbf-": "phpcbf --no-patch --standard=.\\tests\\ucfsdes_wordpress_ruleset.xml",
"phpcbf--": "phpcbf",
"phpdoc": "phpdoc -t ./docs --ignore vendor/*,tests/* --progressbar",
"phpdoc:all": "phpdoc -d . -t ./docs --ignore vendor/*,tests/* --progressbar",
"some-php-script": "php .\\json_escaped\\path\\to\\the\\file.php"
}
}