-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
27 lines (27 loc) · 967 Bytes
/
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
{
"name": "anourvalar/office",
"description": "Generate documents from existing Excel & Word templates | Export tables to Excel (Grids)",
"keywords": [
"excel", "xls", "xlsx", "template", "view", "document", "contract", "report", "generate", "engine", "fill",
"markers", "replacers", "placeholder", "templater", "pdf", "ods", "grid", "export", "generator", "anourvalar",
"variables", "word", "doc", "docx", "table"
],
"homepage": "https://github.com/AnourValar/office",
"license": "MIT",
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.26",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^5.17"
},
"autoload": {
"psr-4": {"AnourValar\\Office\\": "src/"}
},
"autoload-dev": {
"psr-4": {"AnourValar\\Office\\Tests\\": "tests/"}
}
}