composer.json 473 B

12345678910111213141516
  1. {
  2. "name": "phpdocumentor/fileset",
  3. "description": "Fileset component for collecting a set of files given directories and file paths",
  4. "keywords": ["phpdoc", "files", "fileset"],
  5. "homepage": "http://www.phpdoc.org",
  6. "license": "MIT",
  7. "autoload": { "psr-0":{ "phpDocumentor": ["src/", "tests/unit/"] } },
  8. "require": {
  9. "php": ">=5.3.3",
  10. "symfony/finder": "~2.1"
  11. },
  12. "require-dev": {
  13. "phpunit/phpunit": "~3.7"
  14. }
  15. }