composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "guzzlehttp/uri-template",
  3. "type": "library",
  4. "description": "A polyfill class for uri_template of PHP",
  5. "keywords": [
  6. "guzzlehttp",
  7. "uri-template"
  8. ],
  9. "homepage": "https://github.com/guzzlehttp/uri-template",
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "George Mponos",
  14. "email": "gmponos@gmail.com",
  15. "homepage": "https://github.com/gmponos",
  16. "role": "Developer"
  17. }
  18. ],
  19. "repositories": [
  20. {
  21. "type": "package",
  22. "package": {
  23. "name": "uri-template/tests",
  24. "version": "1.0.0",
  25. "dist": {
  26. "url": "https://github.com/uri-templates/uritemplate-test/archive/520fdd8b0f78779d12178c357a986e0e727f4bd0.zip",
  27. "type": "zip"
  28. }
  29. }
  30. }
  31. ],
  32. "require": {
  33. "php" : "^7.2.5 || ^8.0",
  34. "symfony/polyfill-php80": "^1.17"
  35. },
  36. "require-dev": {
  37. "phpunit/phpunit" : "^8.5.19 || ^9.5.8",
  38. "uri-template/tests": "1.0.0"
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "GuzzleHttp\\UriTemplate\\": "src"
  43. }
  44. },
  45. "autoload-dev": {
  46. "psr-4": {
  47. "GuzzleHttp\\UriTemplate\\Tests\\": "tests"
  48. }
  49. },
  50. "extra": {
  51. "branch-alias": {
  52. "dev-master": "1.0-dev"
  53. }
  54. },
  55. "config": {
  56. "preferred-install": "dist",
  57. "sort-packages": true
  58. }
  59. }