12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "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"
- }
- }
- }
|