composer.json 638 B

123456789101112131415161718192021222324
  1. {
  2. "name": "sunmoon/yii2-phpspreadsheet",
  3. "description": "Yii2处理Excel文件, 修改自moonlandsoft/yii2-phpexcel。",
  4. "type": "library",
  5. "homepage": "https://github.com/arieslee/yii2-phpspreadsheet",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Sunmoon",
  10. "email": "forphp@qq.com",
  11. "homepage": "https://blog.iw3c.com",
  12. "role": "Developer"
  13. }
  14. ],
  15. "require": {
  16. "yiisoft/yii2": "^2.0.15",
  17. "phpoffice/phpspreadsheet": "*"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "sunmoon\\phpspreadsheet\\": "src"
  22. }
  23. }
  24. }