-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
92 lines (90 loc) · 2.65 KB
/
Copy pathcomposer.json
File metadata and controls
92 lines (90 loc) · 2.65 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "donatorsky/php-xml-template-reader",
"description": "The PHP XML Reader where you show how to read the XML, and it does the rest for you.",
"homepage": "https://github.com/donatorsky/php-xml-template-reader",
"license": "MIT",
"authors": [
{
"name": "Maciej Kudas",
"email": "maciejkudas@gmail.com",
"role": "Developer"
}
],
"keywords": [
"xml",
"xml reader",
"xml template reader",
"xml parser",
"xml parsing"
],
"require": {
"php": "^7.4|^8.0",
"ext-libxml": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"beberlei/assert": "^3.3",
"symfony/event-dispatcher": "^5.2",
"thecodingmachine/safe": "^1.3"
},
"suggest": {
"symfony/event-dispatcher": "To use Symfony's evend dispatcher"
},
"require-dev": {
"fakerphp/faker": "^1.14",
"friendsofphp/php-cs-fixer": "^3.0",
"infection/infection": "^0.22.1",
"jangregor/phpstan-prophecy": "^0.8.1",
"jetbrains/phpstorm-attributes": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^0.12.85",
"phpstan/phpstan-phpunit": "^0.12.18",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest",
"symfony/stopwatch": "^5.2",
"symfony/var-dumper": "^5.2"
},
"autoload": {
"psr-4": {
"Donatorsky\\XmlTemplate\\Reader\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Donatorsky\\XmlTemplate\\Reader\\Tests\\": "tests"
}
},
"scripts": {
"lint:cs:check-all": [
"php-cs-fixer fix --dry-run --diff --ansi --verbose"
],
"lint:cs:fix": [
"php-cs-fixer fix --ansi --verbose"
],
"lint:stan:analyse": [
"phpstan analyse -l max src --memory-limit=256M --ansi --verbose",
"phpstan analyse -l 6 tests -c phpstan.tests.neon --memory-limit=256M --ansi --verbose"
],
"lint": [
"@lint:cs:fix",
"@lint:stan:analyse"
],
"tests:unit": [
"phpunit --colors=auto"
],
"tests:mutation": [
"infection --threads=8 --log-verbosity=default"
],
"tests:mutation:ci": [
"infection --min-msi=95 --min-covered-msi=95 --threads=8 --log-verbosity=none"
],
"test": [
"@tests:unit",
"@tests:mutation"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}