-
- Downloads
Common files
parents
No related branches found
No related tags found
Showing
- .editorconfig 22 additions, 0 deletions.editorconfig
- .gitignore 3 additions, 0 deletions.gitignore
- .gitlab-ci.yml 310 additions, 0 deletions.gitlab-ci.yml
- LICENSE 21 additions, 0 deletionsLICENSE
- apigen.neon 28 additions, 0 deletionsapigen.neon
- composer.json 33 additions, 0 deletionscomposer.json
- phpcs.xml.dist 18 additions, 0 deletionsphpcs.xml.dist
- phpunit-integration.xml 29 additions, 0 deletionsphpunit-integration.xml
- phpunit-unit.xml 22 additions, 0 deletionsphpunit-unit.xml
.editorconfig
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
LICENSE
0 → 100644
apigen.neon
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "wpdesk/wp-builder", | ||
"authors": [ | ||
{ | ||
"name": "Krzysiek", | ||
"email": "krzysiek@wpdesk.pl" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.5", | ||
"wpdesk/wp-basic-requirements": "dev-master" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "<7", | ||
"wp-coding-standards/wpcs": "^0.14.1", | ||
"squizlabs/php_codesniffer": "^3.0.2", | ||
"mockery/mockery": "*", | ||
"10up/wp_mock": "*", | ||
"wimg/php-compatibility": "^8" | ||
}, | ||
"autoload": { | ||
"psr-4": {"WPDesk\\PluginBuilder\\": "src/"} | ||
}, | ||
"autoload-dev": { | ||
}, | ||
"scripts": { | ||
"phpcs": "phpcs", | ||
"phpunit-unit": "phpunit --configuration phpunit-unit.xml --coverage-text --colors=never", | ||
"phpunit-unit-fast": "phpunit --configuration phpunit-unit.xml --no-coverage", | ||
"phpunit-integration": "phpunit --configuration phpunit-integration.xml --coverage-text --colors=never", | ||
"phpunit-integration-fast": "phpunit --configuration phpunit-integration.xml --no-coverage" | ||
} | ||
} |
phpcs.xml.dist
0 → 100644
phpunit-integration.xml
0 → 100644
phpunit-unit.xml
0 → 100644
Please register or sign in to comment