forked from BennyC/xttribute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.03 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
{
"name": "xttribute/xttribute",
"description": "XML to DTO, nicely!",
"license": ["MIT"],
"require": {
"php": ">=8.1",
"ext-dom": "*"
},
"require-dev": {
"ext-simplexml": "*",
"pestphp/pest": "^1.21",
"squizlabs/php_codesniffer": "^3.7",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpbench/phpbench": "^1.2"
},
"autoload-dev": {
"psr-4": {
"Fixtures\\": "tests/Fixtures"
}
},
"autoload": {
"psr-4": {
"Xttribute\\Xttribute\\": "src/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage vendor/bin/pest --ci --coverage --min=90",
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml src tests",
"lint": "vendor/bin/parallel-lint --exclude .git --exclude vendor .",
"bench": "vendor/bin/phpbench run --iterations=10 --warmup=5 --report=aggregate tests/Benchmarks"
}
}