composer.json 788 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "nelexa/zip",
  3. "description": "Zip files CRUD. Open, create, update, extract and get info tool. Support read and write encrypted archives. Support ZIP64 ext and zip align. Alternative ZipArchive. It does not require php-zip extension.",
  4. "type": "library",
  5. "keywords": [
  6. "zip",
  7. "archive",
  8. "extract",
  9. "winzip",
  10. "zipalign"
  11. ],
  12. "require-dev": {
  13. "phpunit/phpunit": "4.8"
  14. },
  15. "license": "MIT",
  16. "authors": [
  17. {
  18. "name": "Ne-Lexa",
  19. "email": "alexey@nelexa.ru",
  20. "role": "Developer"
  21. }
  22. ],
  23. "minimum-stability": "stable",
  24. "require": {
  25. "php-64bit": "^5.4 || ^7.0",
  26. "ext-mbstring": "*"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "": "src/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "": "tests/"
  36. }
  37. }
  38. }