-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.17 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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": "nodasoft/xls-templating-php",
"description": "PHP Excel Templating - Generate XLS, XLSX and PDF by template",
"keywords": ["PHP", "PDF", "Excel", "xlsx", "xls", "unoconv", "gnumeric", "spreadsheet"],
"homepage": "https://github.com/nodasoft/xls-templating-php",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "groall",
"homepage": "https://github.com/groall"
}
],
"scripts": {
"check": [
"php-cs-fixer fix --ansi --dry-run --diff",
"phpcs",
"phpunit --color=always"
],
"fix": [
"php-cs-fixer fix --ansi"
],
"versions": [
"phpcs --report-width=200 samples/ src/ tests/ --ignore=samples/Header.php --standard=PHPCompatibility --runtime-set testVersion 7.2- -n"
]
},
"require": {
"php": "^7.2||^8.0",
"phpoffice/phpspreadsheet": "1.21.*"
},
"require-dev": {
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^8.5||^9.3"
},
"autoload": {
"psr-4": {
"NodaSoft\\PhpXlsTemplating\\": "src/PhpXlsTemplating"
}
},
"autoload-dev": {
"psr-4": {
"NodaSoft\\PhpXlsTemplatingTests\\": "tests/PhpXlsTemplatingtTests"
}
}
}