composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "league/url",
  3. "type": "library",
  4. "description" : "League/url is a lightweight PHP Url manipulating library",
  5. "keywords": ["php", "url", "parse_url"],
  6. "license": "MIT",
  7. "homepage" : "http://url.thephpleague.com",
  8. "authors": [
  9. {
  10. "name" : "Ignace Nyamagana Butera",
  11. "email" : "nyamsprod@gmail.com",
  12. "homepage" : "https://github.com/nyamsprod/",
  13. "role" : "Developer"
  14. }
  15. ],
  16. "support": {
  17. "forum": "https://groups.google.com/forum/#!forum/thephpleague",
  18. "issues": "https://github.com/thephpleague/url/issues"
  19. },
  20. "require": {
  21. "php" : ">=5.3.0",
  22. "ext-mbstring" : "*",
  23. "true/punycode": "^2.0"
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit" : "^4.0"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "League\\Url\\": "src"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "League\\Url\\Test\\": "tests"
  36. }
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "3.3-dev"
  41. }
  42. }
  43. }