composer.json 538 B

123456789101112131415161718192021222324
  1. {
  2. "name": "neutron/temporary-filesystem",
  3. "description": "Symfony filesystem extension to handle temporary files",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "Romain Neutron",
  8. "email": "imprec@gmail.com"
  9. }
  10. ],
  11. "require": {
  12. "php": "^5.6 || ^7.0",
  13. "symfony/filesystem": "^2.3 || ^3.0 || ^4.0 || ^5.0"
  14. },
  15. "require-dev": {
  16. "symfony/phpunit-bridge": "^5.0.4"
  17. },
  18. "autoload": {
  19. "psr-0": {
  20. "Neutron": "src"
  21. }
  22. }
  23. }