composer.json 850 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "dcat/easy-excel",
  3. "description": "使用简单实用的语义化接口快速读写Excel文件",
  4. "type": "library",
  5. "keywords": [
  6. "box spout",
  7. "read",
  8. "easy excel",
  9. "csv",
  10. "xlsx",
  11. "ods",
  12. "office",
  13. "excel",
  14. "spreadsheet",
  15. "stream"
  16. ],
  17. "license": "MIT",
  18. "homepage": "https://github.com/jqhph/easy-excel",
  19. "authors": [
  20. {
  21. "name": "jqh",
  22. "email": "841324345@qq.com"
  23. }
  24. ],
  25. "require": {
  26. "php": ">=7.1.0",
  27. "box/spout": "~3",
  28. "league/flysystem": "~1|~2|~3"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": "~7|~8.0",
  32. "friendsofphp/php-cs-fixer": "^2"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "Dcat\\EasyExcel\\": "src/"
  37. }
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "Tests\\": "tests/"
  42. },
  43. "classmap": [
  44. "tests/TestCase.php"
  45. ]
  46. }
  47. }