-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1.06 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
33
34
35
36
37
38
39
{
"name": "paxal/stats-table",
"description": "Helper to handle stats table with multiple formatter",
"homepage": "https://github.com/paxal/stats-table",
"type": "library",
"license": "MIT",
"keywords": ["PHP", "stats", "statistics", "excel", "csv", "json", "xls"],
"authors": [
{
"name": "iGraal",
"homepage": "https://www.igraal.com/"
},
{
"name": "Cyril Pascal",
"homepage": "https://github.com/paxal"
}
],
"autoload": {
"psr-4": {"IgraalOSL\\StatsTable\\": "lib/IgraalOSL/StatsTable"}
},
"suggest": {
"phpoffice/phpspreadsheet": "Allow to export to Excel file. req phpoffice/phpspreadsheet:^1.0"
},
"conflict": {
"igraal/stats-table": "*"
},
"require-dev": {
"ext-json": "*",
"phpoffice/phpspreadsheet": "^1.9.0",
"phpunit/phpunit": "^8.2",
"twig/twig": "^1.0|^2.0|^3.0"
},
"require": {
"php": "^7.2|^8.0"
},
"config": {
"sort-packages": true
}
}