-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcomposer.json
40 lines (40 loc) · 1.21 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
{
"name": "shadz3rg/php-stamp",
"description": "The XSL-way templating library for MS Office Word DOCX documents.",
"homepage": "https://github.com/shadz3rg/php-stamp",
"type": "library",
"keywords": ["docx", "template", "word"],
"license": "MIT",
"require": {
"php": "^7.4",
"ext-json": "*",
"ext-xsl": "*",
"ext-zip": "*",
"ext-dom": "*",
"shadz3rg/lexer": "^1.0"
},
"authors": [
{
"name": "Oleg Aleksandrovich",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"PHPStamp\\": "src/PHPStamp",
"PHPStamp\\Tests\\": "tests/"
}
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"ekino/phpstan-banned-code": "^1.0",
"friendsofphp/php-cs-fixer": "^3.22",
"phpunit/phpunit": "^9.6"
},
"scripts": {
"codequality": "phpstan analyse -c phpstan.neon --level=max && php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --dry-run",
"cq": "@codequality",
"cs": "php-cs-fixer fix --config=.php-cs-fixer.dist.php -v",
"test": "phpunit --testsuite=Unit --coverage-html=coverage"
}
}