composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "nyholm/psr7",
  3. "description": "A fast PHP7 implementation of PSR-7",
  4. "license": "MIT",
  5. "keywords": ["psr-7", "psr-17"],
  6. "homepage": "https://tnyholm.se",
  7. "authors": [
  8. {
  9. "name": "Tobias Nyholm",
  10. "email": "tobias.nyholm@gmail.com"
  11. },
  12. {
  13. "name": "Martijn van der Ven",
  14. "email": "martijn@vanderven.se"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=7.2",
  19. "psr/http-message": "^1.1 || ^2.0",
  20. "psr/http-factory": "^1.0"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  24. "php-http/message-factory": "^1.0",
  25. "php-http/psr7-integration-tests": "^1.0",
  26. "http-interop/http-factory-tests": "^0.9",
  27. "symfony/error-handler": "^4.4"
  28. },
  29. "provide": {
  30. "php-http/message-factory-implementation": "1.0",
  31. "psr/http-message-implementation": "1.0",
  32. "psr/http-factory-implementation": "1.0"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "Nyholm\\Psr7\\": "src/"
  37. }
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "Tests\\Nyholm\\Psr7\\": "tests/"
  42. }
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "1.8-dev"
  47. }
  48. }
  49. }