1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "name": "dcat/easy-excel",
- "description": "使用简单实用的语义化接口快速读写Excel文件",
- "type": "library",
- "keywords": [
- "box spout",
- "read",
- "easy excel",
- "csv",
- "xlsx",
- "ods",
- "office",
- "excel",
- "spreadsheet",
- "stream"
- ],
- "license": "MIT",
- "homepage": "https://github.com/jqhph/easy-excel",
- "authors": [
- {
- "name": "jqh",
- "email": "841324345@qq.com"
- }
- ],
- "require": {
- "php": ">=7.1.0",
- "box/spout": "~3",
- "league/flysystem": "~1|~2|~3"
- },
- "require-dev": {
- "phpunit/phpunit": "~7|~8.0",
- "friendsofphp/php-cs-fixer": "^2"
- },
- "autoload": {
- "psr-4": {
- "Dcat\\EasyExcel\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Tests\\": "tests/"
- },
- "classmap": [
- "tests/TestCase.php"
- ]
- }
- }
|