Drupal investigation

composer.json 784B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "webmozart/path-util",
  3. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "Bernhard Schussek",
  8. "email": "bschussek@gmail.com"
  9. }
  10. ],
  11. "require": {
  12. "php": ">=5.3.3",
  13. "webmozart/assert": "~1.0"
  14. },
  15. "require-dev": {
  16. "phpunit/phpunit": "^4.6",
  17. "sebastian/version": "^1.0.1"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "Webmozart\\PathUtil\\": "src/"
  22. }
  23. },
  24. "autoload-dev": {
  25. "psr-4": {
  26. "Webmozart\\PathUtil\\Tests\\": "tests/"
  27. }
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "2.3-dev"
  32. }
  33. }
  34. }