37 lines
839 B
JSON
37 lines
839 B
JSON
{
|
|
"name": "league/tactician-logger",
|
|
"description": "Adds PSR-3 logging support to the Tactician command bus",
|
|
"keywords": [
|
|
"tactician",
|
|
"log",
|
|
"logging"
|
|
],
|
|
"homepage": "https://github.com/thephpleague/tactician-logger",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Ross Tuck"
|
|
}
|
|
],
|
|
"require": {
|
|
"php" : ">=5.5.0",
|
|
"psr/log": "~1.0",
|
|
"league/tactician": "^1.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit" : "4.*",
|
|
"mockery/mockery": "^0.9",
|
|
"squizlabs/php_codesniffer": "~2.3"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"League\\Tactician\\Logger\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"League\\Tactician\\Logger\\Tests\\": "tests"
|
|
}
|
|
}
|
|
}
|