-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 3.03 KB
/
Copy pathcomposer.json
File metadata and controls
78 lines (78 loc) · 3.03 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "sbwerewolf/xml-navigator",
"description": "XmlExtractKit for PHP: Stream large XML, extract only what matters, and get plain PHP arrays.",
"type": "library",
"license": "Apache-2.0",
"keywords": [
"xml",
"xmlreader",
"xml-to-array",
"streaming",
"xml-extraction",
"etl",
"feed-parser",
"integration"
],
"homepage": "https://github.com/SbWereWolf/xml-navigator",
"support": {
"issues": "https://github.com/SbWereWolf/xml-navigator/issues",
"source": "https://github.com/SbWereWolf/xml-navigator",
"docs": "https://github.com/SbWereWolf/xml-navigator#readme",
"chat": "https://t.me/SbWereWolf"
},
"authors": [
{
"name": "Nicholas Volkhin",
"email": "ulfnew@gmail.com"
}
],
"autoload": {
"psr-4": {
"SbWereWolf\\XmlNavigator\\": [
"src/SbWereWolf/XmlNavigator"
]
}
},
"autoload-dev": {
"psr-4": {
"SbWereWolf\\XmlNavigator\\Test\\": [
"tests/"
]
}
},
"scripts": {
"test": "php ./vendor/phpunit/phpunit/phpunit --configuration ./continuous-integration/phpunit/phpunit.xml --testdox --colors=always",
"test-coverage": "php -d xdebug.mode=coverage ./vendor/phpunit/phpunit/phpunit --configuration ./continuous-integration/phpunit/phpunit.xml --testdox --colors=always --coverage-html ./continuous-integration/autotests-coverage-report --coverage-filter ./src",
"test:coverage:infection": "php -d xdebug.mode=coverage ./vendor/phpunit/phpunit/phpunit --configuration ./continuous-integration/phpunit/phpunit.xml --coverage-filter ./src --coverage-xml continuous-integration/infection/coverage/coverage-xml --log-junit continuous-integration/infection/coverage/junit.xml",
"mutate": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/infection --configuration=infection.json5 --threads=max --show-mutations=0"
],
"mutate:changed": "vendor/bin/infection --configuration=infection.json5 --git-diff-lines --show-mutations=0",
"phpstan-check": "php ./vendor/bin/phpstan analyse -vvv --configuration continuous-integration/phpstan/phpstan.neon",
"phpstan-suppress": "php ./vendor/bin/phpstan analyse -vvv --configuration continuous-integration/phpstan/phpstan.neon --generate-baseline continuous-integration/phpstan/ignore-errors/baseline.neon",
"check-style": "php ./vendor/bin/phpcs --standard=continuous-integration/phpcs/phpcs.xml -v",
"fix-style": "php ./vendor/bin/phpcbf --standard=continuous-integration/phpcs/phpcs.xml -v"
},
"require-dev": {
"buggregator/trap": "^1.15",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^13",
"squizlabs/php_codesniffer": "^4.0",
"infection/infection": "^0.32.6"
},
"require": {
"php": ">=8.4",
"ext-xmlreader": "*",
"ext-libxml": "*",
"sbwerewolf/json-serialize-trait": "^1"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"infection/extension-installer": true
}
}
}