composer.json 479 B

12345678910111213141516171819202122
  1. {
  2. "name": "neutron/temporary-filesystem",
  3. "description": "Symfony filesystem extension to handle temporary files",
  4. "require": {
  5. "symfony/filesystem" : "~2.0"
  6. },
  7. "require-dev": {
  8. "phpunit/phpunit" : "~3.7"
  9. },
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "Romain Neutron",
  14. "email": "imprec@gmail.com"
  15. }
  16. ],
  17. "autoload": {
  18. "psr-0": {
  19. "Neutron": "src"
  20. }
  21. }
  22. }