-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.02 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
40
41
42
43
44
45
{
"name": "iter8/builder",
"description": "A wrapper for the PHP Excel library to help you quickly build reports",
"keywords": ["phpspreadsheet", "reports", "excel", "spout", "silex"],
"license": "MIT",
"homepage": "https://github.com/iter8-au/builder",
"type": "library",
"authors": [
{
"name": "Dean Smith",
"email": "[email protected]",
"homepage": "https://iter8.com.au"
},
{
"name": "Dan Barrett",
"email": "[email protected]",
"homepage": "https://iter8.com.au"
}
],
"require": {
"php": ">=7.1",
"phpoffice/phpspreadsheet": "~1.2",
"box/spout": "^2.7",
"webmozart/assert": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"silex/silex": "^2.0",
"symfony/var-dumper": "^4.1"
},
"autoload": {
"psr-4": {
"Builder\\": "src/Builder"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests"
}
},
"scripts": {
"tests": "phpunit",
"coverage": "phpunit --coverage-html=./builder_coverage"
}
}