-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
32 lines (32 loc) · 1.05 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "lysice/laravel-xlswriter",
"description": "an excel export tool for laravel based on php-xlswriter",
"license": "MIT",
"authors": [
{
"name": "lysice",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Lysice\\XlsWriter\\": "src/",
"Lysice\\XlsWriter\\Traits\\" : "traits/",
"Lysice\\XlsWriter\\Exceptions\\" : "Exceptions/",
"Lysice\\XlsWriter\\Commands\\" : "commands/",
"Lysice\\XlsWriter\\Facade\\" : "Facades/",
"Lysice\\XlsWriter\\Interfaces\\" : "Interfaces/",
"Lysice\\XlsWriter\\FileSystem\\" : "src/FileSystem",
"Lysice\\XlsWriter\\Structure\\" : "src/Structure",
"Lysice\\XlsWriter\\Supports\\Chart\\" : "src/Supports/Chart",
"Lysice\\XlsWriter\\Supports\\Format\\" : "src/Supports/Format"
},
"files": [
"src/helpers.php"
]
},
"require": {
"php": ">=7.0"
},
"minimum-stability": "stable"
}