composer.json 839 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "league/tactician-logger",
  3. "description": "Adds PSR-3 logging support to the Tactician command bus",
  4. "keywords": [
  5. "tactician",
  6. "log",
  7. "logging"
  8. ],
  9. "homepage": "https://github.com/thephpleague/tactician-logger",
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "Ross Tuck"
  14. }
  15. ],
  16. "require": {
  17. "php" : ">=5.5.0",
  18. "psr/log": "~1.0",
  19. "league/tactician": "^1.0"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit" : "4.*",
  23. "mockery/mockery": "^0.9",
  24. "squizlabs/php_codesniffer": "~2.3"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "League\\Tactician\\Logger\\": "src"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "League\\Tactician\\Logger\\Tests\\": "tests"
  34. }
  35. }
  36. }