composer.json 373 B

123456789101112131415161718192021
  1. {
  2. "name": "jianyan74/php-excel",
  3. "description": "php excel 导入导出",
  4. "keywords": ["excel", "csv", "xlsx", "xls", "html", "jianyan74"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "jianyan74"
  9. }
  10. ],
  11. "type": "extension",
  12. "require": {
  13. "php": ">=7.0",
  14. "phpoffice/phpspreadsheet": "^1.3"
  15. },
  16. "autoload": {
  17. "psr-4": {
  18. "jianyan\\excel\\": "./src"
  19. }
  20. }
  21. }