-
- Downloads
Merge branch 'feature/add-simple-logger-factory' into 'master'
feat: add SimpleLoggerFactory See merge request !16
Branches
Tags
Pipeline #7311 failed
Stage: prepare-vendor
Stage: prepare-node
Stage: tools
Stage: tests
Stage: smoke-tests
Stage: deploy
Showing
- .editorconfig 54 additions, 0 deletions.editorconfig
- .gitignore 2 additions, 1 deletion.gitignore
- CHANGELOG.md 10 additions, 3 deletionsCHANGELOG.md
- composer.json 12 additions, 8 deletionscomposer.json
- phpcs.xml.dist 48 additions, 0 deletionsphpcs.xml.dist
- src/Settings.php 18 additions, 0 deletionssrc/Settings.php
- src/SimpleLoggerFactory.php 63 additions, 0 deletionssrc/SimpleLoggerFactory.php
.editorconfig
0 → 100644
... | ... | @@ -6,24 +6,28 @@ |
"email": "krzysiek@wpdesk.pl" | ||
} | ||
], | ||
"config": { | ||
"platform": { | ||
"php": "7.0.19" | ||
}, | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
}, | ||
"require": { | ||
"php": ">=5.6", | ||
"psr/log": "^1.0.1", | ||
"php": ">=7.0|^8", | ||
"psr/log": "^1", | ||
"monolog/monolog": "^1.23", | ||
"wpdesk/wp-notice": "^3.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5", | ||
"wp-coding-standards/wpcs": "^0.14.1", | ||
"squizlabs/php_codesniffer": "^3.0.2", | ||
"wimg/php-compatibility": "^8" | ||
"wpdesk/wp-code-sniffer": "^1.2.3" | ||
}, | ||
"autoload": { | ||
"classmap": ["src/deprecated"], | ||
"psr-4": {"WPDesk\\Logger\\": "src/"} | ||
}, | ||
"autoload-dev": { | ||
}, | ||
"scripts": { | ||
"phpunit-unit": "phpunit --configuration phpunit-unit.xml --coverage-text --colors=never", | ||
"phpunit-unit-fast": "phpunit --configuration phpunit-unit.xml --no-coverage", | ||
... | ... |
phpcs.xml.dist
0 → 100644
src/Settings.php
0 → 100644
src/SimpleLoggerFactory.php
0 → 100644
Please register or sign in to comment