composer.json 758 B

12345678910111213141516171819202122232425262728293031323334353637
  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. Alternative ZipArchive. It does not require php-zip extension.",
  4. "type": "library",
  5. "keywords": [
  6. "zip",
  7. "archive",
  8. "extract",
  9. "winzip"
  10. ],
  11. "require-dev": {
  12. "phpunit/phpunit": "4.8"
  13. },
  14. "license": "MIT",
  15. "authors": [
  16. {
  17. "name": "Ne-Lexa",
  18. "email": "alexey@nelexa.ru",
  19. "role": "Developer"
  20. }
  21. ],
  22. "minimum-stability": "stable",
  23. "require": {
  24. "php-64bit": "^5.4 || ^7.0",
  25. "ext-mbstring": "*"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "": "src/"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "": "tests/"
  35. }
  36. }
  37. }