composer.json 625 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "neutron/silex-filesystem-provider",
  3. "type": "library",
  4. "description": "A Silex Provider for Symfony Filesystem component",
  5. "keywords": ["silex", "filesystem", "temporary-filesystem"],
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Romain Neutron",
  10. "email": "imprec@gmail.com",
  11. "homepage": "http://www.lickmychip.com/"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.3.3",
  16. "silex/silex": ">=1.0",
  17. "symfony/filesystem": ">=2.0"
  18. },
  19. "minimum-stability": "dev",
  20. "autoload": {
  21. "psr-0": {
  22. "Neutron": "src"
  23. }
  24. }
  25. }