-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
37 lines (37 loc) · 1001 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
{
"name" : "genkgo/xsl",
"description": "XSL 2.0 Transpiler in PHP",
"require" : {
"php" : " ~8.2.0 || ~8.3.0",
"ext-json" : "*",
"ext-libxml" : "*",
"ext-xsl" : "*",
"ext-dom" : "*",
"ext-intl" : "*",
"psr/simple-cache": "^3.0"
},
"require-dev" : {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload" : {
"psr-4" : {
"Genkgo\\Xsl\\" : ["src"]
}
},
"autoload-dev" : {
"psr-4" : {
"Genkgo\\Xsl\\" : ["test"]
}
},
"scripts": {
"test": [
"./vendor/bin/phpunit -c phpunit.xml",
"./vendor/bin/phpstan analyse -l 5 src",
"./vendor/bin/phpstan analyse -l 7 test",
"./vendor/bin/php-cs-fixer fix --dry-run --verbose --config .php-cs-fixer.dist.php ./src ./test"
]
}
}