composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "symfony/psr-http-message-bridge",
  3. "type": "symfony-bridge",
  4. "description": "PSR HTTP message bridge",
  5. "keywords": ["http", "psr-7", "psr-17", "http-message"],
  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": "^7.1",
  20. "psr/http-message": "^1.0",
  21. "symfony/http-foundation": "^4.4 || ^5.0"
  22. },
  23. "require-dev": {
  24. "symfony/phpunit-bridge": "^4.4 || ^5.0",
  25. "nyholm/psr7": "^1.1",
  26. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  27. },
  28. "suggest": {
  29. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  30. },
  31. "autoload": {
  32. "psr-4": { "Symfony\\Bridge\\PsrHttpMessage\\": "" },
  33. "exclude-from-classmap": [
  34. "/Tests/"
  35. ]
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "1.3-dev"
  40. }
  41. }
  42. }