composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "symfony/web-profiler-bundle",
  3. "type": "symfony-bundle",
  4. "description": "Provides a development tool that gives detailed information about the execution of any request",
  5. "keywords": [],
  6. "homepage": "https://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": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.2.5",
  20. "symfony/config": "^4.4|^5.0",
  21. "symfony/framework-bundle": "^5.1",
  22. "symfony/http-kernel": "^5.2",
  23. "symfony/routing": "^4.4|^5.0",
  24. "symfony/twig-bundle": "^4.4|^5.0",
  25. "twig/twig": "^2.13|^3.0.4"
  26. },
  27. "require-dev": {
  28. "symfony/browser-kit": "^4.4|^5.0",
  29. "symfony/console": "^4.4|^5.0",
  30. "symfony/css-selector": "^4.4|^5.0",
  31. "symfony/stopwatch": "^4.4|^5.0"
  32. },
  33. "conflict": {
  34. "symfony/form": "<4.4",
  35. "symfony/messenger": "<4.4",
  36. "symfony/dependency-injection": "<5.2"
  37. },
  38. "autoload": {
  39. "psr-4": { "Symfony\\Bundle\\WebProfilerBundle\\": "" },
  40. "exclude-from-classmap": [
  41. "/Tests/"
  42. ]
  43. },
  44. "minimum-stability": "dev"
  45. }