composer.json 782 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "monolog/monolog",
  3. "description": "Logging for PHP 5.3",
  4. "keywords": ["log","logging"],
  5. "homepage": "http://github.com/Seldaek/monolog",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Jordi Boggiano",
  11. "email": "j.boggiano@seld.be",
  12. "homepage": "http://seld.be"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.3.0"
  17. },
  18. "repositories": [
  19. {
  20. "type": "vcs",
  21. "url": "https://github.com/mlehner/gelf-php"
  22. },
  23. {
  24. "type": "vcs",
  25. "url": "https://github.com/msabramo/gelf-php-1"
  26. },
  27. {
  28. "type": "vcs",
  29. "url": "https://github.com/msabramo/gelf-php"
  30. }
  31. ],
  32. "suggest": {
  33. "mlehner/gelf-php": "dev-add-composer-support"
  34. },
  35. "autoload": {
  36. "psr-0": {"Monolog": "src/"}
  37. }
  38. }