composer.json 506 B

1234567891011121314151617181920
  1. {
  2. "name": "asan/phpexcel",
  3. "description": "A lightweight PHP library for reading spreadsheet files",
  4. "homepage": "https://github.com/Janson-Leung/PHPExcel",
  5. "type": "library",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Janson Leung",
  10. "homepage": "https://github.com/Janson-Leung"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=7.0"
  15. },
  16. "minimum-stability": "stable",
  17. "autoload": {
  18. "psr-4": {"Asan\\PHPExcel\\": "src/"}
  19. }
  20. }