-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
39 lines (39 loc) · 864 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
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "bingo-soft/phpdocxtemplate",
"description": "PHP library which uses docx files as Twig templates",
"keywords": ["php", "docx", "report", "reporting", "template", "twig"],
"license": "MIT",
"type": "project",
"authors": [{
"name": "Bingo-Soft",
"email": "[email protected]"
}],
"config": {
"vendor-dir": "./vendor",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"ext-zip": "*",
"ext-dom": "*",
"php": "^7.4",
"endroid/qr-code": "^4.4",
"twig/twig": "^3.3"
},
"require-dev": {
"doctrine/coding-standard": "^6.0",
"squizlabs/php_codesniffer": "3.*",
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {
"PhpDocxTemplate\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "./tests"
}
}
}