forked from veewee/xml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.44 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "veewee/xml",
"description": "Sane XML usage",
"type": "library",
"require": {
"php": "^8.0",
"ext-dom": "*",
"ext-libxml": "*",
"ext-xml": "*",
"ext-xsl": "*",
"ext-xmlreader": "*",
"azjezz/psl": "^1.0",
"webmozart/assert": "^1.9",
"thecodingmachine/safe": "^1.3"
},
"require-dev": {
"veewee/composer-run-parallel": "^0.1.0",
"symfony/finder": "^5.2"
},
"license": "MIT",
"authors": [
{
"name": "Toon Verwerft",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"VeeWee\\Xml\\": "src/Xml"
},
"files": [
"src/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"VeeWee\\Xml\\Tests\\": "tests/Xml"
}
},
"scripts": {
"autoload": [
"echo '' > src/bootstrap.php",
"@php build/bootstrap.php"
],
"psalm": "./tools/psalm.phar --no-cache",
"tests": "./tools/phpunit.phar",
"coverage": "@php ./tools/full-coverage-check.php .phpunit.cache/clover/clover.xml",
"infection": [
"Composer\\Config::disableProcessTimeout",
"./tools/infection.phar"
],
"ci": [
"@autoload",
"@parallel psalm tests",
"@parallel coverage infection"
]
}
}