composer.json 614 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "rize/uri-template",
  3. "type": "library",
  4. "description": "PHP URI Template (RFC 6570) supports both expansion & extraction",
  5. "keywords": ["URI", "Template", "RFC 6570"],
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Marut K",
  10. "homepage": "http://twitter.com/rezigned"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.3.0"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "~4.8.36"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "Rize\\": "src/Rize"
  22. }
  23. },
  24. "scripts": {
  25. "test": "vendor/bin/phpunit test/"
  26. }
  27. }