No Description

composer.json 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "symfony/debug",
  3. "type": "library",
  4. "description": "Symfony Debug Component",
  5. "keywords": [],
  6. "homepage": "http://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "http://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.3.3",
  20. "psr/log": "~1.0"
  21. },
  22. "conflict": {
  23. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  24. },
  25. "require-dev": {
  26. "symfony/class-loader": "~2.2",
  27. "symfony/http-kernel": "~2.3.24|~2.5.9|~2.6,>=2.6.2",
  28. "symfony/http-foundation": "~2.1"
  29. },
  30. "suggest": {
  31. "symfony/http-foundation": "",
  32. "symfony/http-kernel": ""
  33. },
  34. "autoload": {
  35. "psr-0": { "Symfony\\Component\\Debug\\": "" }
  36. },
  37. "target-dir": "Symfony/Component/Debug",
  38. "minimum-stability": "dev",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.6-dev"
  42. }
  43. }
  44. }