composer.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "guzzlehttp/uri-template",
  3. "description": "A polyfill class for uri_template of PHP",
  4. "keywords": [
  5. "guzzlehttp",
  6. "uri-template"
  7. ],
  8. "license": "MIT",
  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. "repositories": [
  32. {
  33. "type": "package",
  34. "package": {
  35. "name": "uri-template/tests",
  36. "version": "1.0.0",
  37. "dist": {
  38. "url": "https://github.com/uri-templates/uritemplate-test/archive/520fdd8b0f78779d12178c357a986e0e727f4bd0.zip",
  39. "type": "zip"
  40. }
  41. }
  42. }
  43. ],
  44. "require": {
  45. "php" : "^7.2.5 || ^8.0",
  46. "symfony/polyfill-php80": "^1.24"
  47. },
  48. "require-dev": {
  49. "bamarni/composer-bin-plugin": "^1.8.2",
  50. "phpunit/phpunit" : "^8.5.36 || ^9.6.15",
  51. "uri-template/tests": "1.0.0"
  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. "extra": {
  64. "bamarni-bin": {
  65. "bin-links": true,
  66. "forward-command": false
  67. }
  68. },
  69. "config": {
  70. "allow-plugins": {
  71. "bamarni/composer-bin-plugin": true
  72. },
  73. "preferred-install": "dist",
  74. "sort-packages": true
  75. }
  76. }