composer.json 484 B

1234567891011121314151617181920
  1. {
  2. "name": "chamilo/pclzip",
  3. "type": "library",
  4. "description": "A PHP library that offers compression and extraction functions for Zip formatted archives",
  5. "keywords": ["php", "zip"],
  6. "homepage": "https://github.com/chamilo/pclzip",
  7. "license": ["LGPL-2.1"],
  8. "authors": [
  9. {
  10. "name": "Vincent Blavet"
  11. }
  12. ],
  13. "replace": {
  14. "pclzip/pclzip": "^2.8"
  15. },
  16. "autoload": {
  17. "classmap": ["pclzip.lib.php"]
  18. }
  19. }