composer.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "guzzlehttp/uri-template",
  3. "description": "A polyfill class for uri_template of PHP",
  4. "license": "MIT",
  5. "keywords": [
  6. "guzzlehttp",
  7. "uri-template"
  8. ],
  9. "authors": [
  10. {
  11. "name": "Graham Campbell",
  12. "email": "hello@gjcampbell.co.uk",
  13. "homepage": "https://github.com/GrahamCampbell"
  14. },
  15. {
  16. "name": "Michael Dowling",
  17. "email": "mtdowling@gmail.com",
  18. "homepage": "https://github.com/mtdowling"
  19. },
  20. {
  21. "name": "George Mponos",
  22. "email": "gmponos@gmail.com",
  23. "homepage": "https://github.com/gmponos"
  24. },
  25. {
  26. "name": "Tobias Nyholm",
  27. "email": "tobias.nyholm@gmail.com",
  28. "homepage": "https://github.com/Nyholm"
  29. }
  30. ],
  31. "require": {
  32. "php": "^7.2.5 || ^8.0",
  33. "symfony/polyfill-php80": "^1.25"
  34. },
  35. "require-dev": {
  36. "bamarni/composer-bin-plugin": "^1.8.2",
  37. "phpunit/phpunit": "^8.5.52 || ^9.6.34",
  38. "uri-template/tests": "1.0.0"
  39. },
  40. "repositories": [
  41. {
  42. "type": "package",
  43. "package": {
  44. "name": "uri-template/tests",
  45. "version": "1.0.0",
  46. "dist": {
  47. "type": "zip",
  48. "url": "https://github.com/uri-templates/uritemplate-test/archive/520fdd8b0f78779d12178c357a986e0e727f4bd0.zip"
  49. }
  50. }
  51. }
  52. ],
  53. "autoload": {
  54. "psr-4": {
  55. "GuzzleHttp\\UriTemplate\\": "src"
  56. }
  57. },
  58. "autoload-dev": {
  59. "psr-4": {
  60. "GuzzleHttp\\UriTemplate\\Tests\\": "tests"
  61. }
  62. },
  63. "config": {
  64. "allow-plugins": {
  65. "bamarni/composer-bin-plugin": true
  66. },
  67. "preferred-install": "dist",
  68. "sort-packages": true
  69. },
  70. "extra": {
  71. "bamarni-bin": {
  72. "bin-links": true,
  73. "forward-command": false
  74. }
  75. }
  76. }