composer.json 721 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "matthiasmullie/path-converter",
  3. "type": "library",
  4. "description": "Relative path converter",
  5. "keywords": ["relative", "path", "converter", "paths"],
  6. "homepage": "http://github.com/matthiasmullie/path-converter",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Matthias Mullie",
  11. "homepage": "http://www.mullie.eu",
  12. "email": "pathconverter@mullie.eu",
  13. "role": "Developer"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=5.3.0",
  18. "ext-pcre": "*"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "~4.8"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "MatthiasMullie\\PathConverter\\": "src/"
  26. }
  27. }
  28. }