composer.json 893 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "mikey179/vfsStream",
  3. "type": "library",
  4. "homepage": "http://vfs.bovigo.org/",
  5. "description": "Virtual file system to mock the real file system in unit tests.",
  6. "license": "BSD-3-Clause",
  7. "authors": [
  8. {
  9. "name": "Frank Kleine",
  10. "homepage": "http://frankkleine.de/",
  11. "role": "Developer"
  12. }
  13. ],
  14. "support": {
  15. "issues": "https://github.com/mikey179/vfsStream/issues",
  16. "source": "https://github.com/mikey179/vfsStream/tree/master",
  17. "wiki": "https://github.com/mikey179/vfsStream/wiki"
  18. },
  19. "require": {
  20. "php": ">=5.3.0"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "~4.5"
  24. },
  25. "autoload": {
  26. "psr-0": { "org\\bovigo\\vfs\\": "src/main/php" }
  27. },
  28. "extra": {
  29. "branch-alias": {
  30. "dev-master": "1.6.x-dev"
  31. }
  32. }
  33. }