-
- Downloads
init
parents
No related branches found
No related tags found
Showing
- .gitignore 5 additions, 0 deletions.gitignore
- .gitlab-ci.yml 74 additions, 0 deletions.gitlab-ci.yml
- composer.json 33 additions, 0 deletionscomposer.json
- phpunit-integration.xml 29 additions, 0 deletionsphpunit-integration.xml
- phpunit-unit.xml 21 additions, 0 deletionsphpunit-unit.xml
- tests/integration/bootstrap.php 29 additions, 0 deletionstests/integration/bootstrap.php
- tests/unit/bootstrap.php 6 additions, 0 deletionstests/unit/bootstrap.php
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "wpdesk/wp-logs", | |||
"authors": [ | |||
{ | |||
"name": "Krzysiek", | |||
"email": "krzysiek@wpdesk.pl" | |||
} | |||
], | |||
"require": { | |||
"php": ">=5.6", | |||
"psr/log": "^1.0.1" | |||
}, | |||
"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\\Logs\\": "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" | |||
} | |||
} |
phpunit-integration.xml
0 → 100644
phpunit-unit.xml
0 → 100644
tests/integration/bootstrap.php
0 → 100644
tests/unit/bootstrap.php
0 → 100644
Please register or sign in to comment