composer.json 476 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "nelexa/zip",
  3. "description": "Zip create, modify and extract tool. Alternative ZipArchive.",
  4. "type": "library",
  5. "require-dev": {
  6. "phpunit/phpunit": "4.8"
  7. },
  8. "license": "MIT",
  9. "authors": [
  10. {
  11. "name": "Ne-Lexa",
  12. "email": "alexey@nelexa.ru"
  13. }
  14. ],
  15. "minimum-stability": "stable",
  16. "require": {
  17. "php": ">=5.3",
  18. "nelexa/buffer": "^1.0"
  19. },
  20. "autoload": {
  21. "psr-4": {
  22. "Nelexa\\Zip\\": "src/Nelexa/Zip"
  23. }
  24. }
  25. }