-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·99 lines (99 loc) · 2.38 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
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
93
94
95
96
97
98
99
{
"name": "inspirum/xml-symfony",
"description": "Symfony bundle for inspirum/xml library",
"keywords": [
"xml",
"xml-reader",
"xml-parser",
"xml-splitter",
"xml-writer",
"xml-builder",
"xml-to-array",
"symfony",
"bundle"
],
"homepage": "https://github.com/inspirum/xml-php-symfony",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tomáš Novotný",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"inspirum/xml": "^3.0",
"symfony/dependency-injection": "^6.1 || ^7.0",
"symfony/http-kernel": "^6.1 || ^7.0"
},
"require-dev": {
"inspirum/coding-standard": "^1.5",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5",
"shipmonk/composer-dependency-analyser": "^1.5",
"squizlabs/php_codesniffer": "^3.9",
"symfony/config": "^6.1 || ^7.0",
"symfony/filesystem": "^6.1 || ^7.0",
"symfony/yaml": "^6.1 || ^7.0"
},
"autoload": {
"psr-4": {
"Inspirum\\XML\\Integration\\Symfony\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Inspirum\\XML\\Integration\\Symfony\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test": [
"@style:phpcs",
"@test:unit",
"@style:phpstan",
"@check:dependency"
],
"test:test": [
"@test:unit"
],
"test:unit": [
"@phpunit --testsuite=Unit"
],
"test:coverage": [
"@phpunit --coverage-text --coverage-html=var/phpunit/coverage"
],
"test:unit:coverage": [
"@phpunit --testsuite=Unit --coverage-text --coverage-html=var/phpunit/coverage"
],
"style:phpcs": [
"@phpcs"
],
"style:phpstan": [
"@phpstan -l 9"
],
"style:check": [
"@style:phpcs",
"@style:phpstan"
],
"style:fix": [
"@phpcbf src tests"
],
"check:dependency": [
"@composer-dependency-analyser"
],
"phpunit": "./vendor/bin/phpunit",
"phpcs": "./vendor/bin/phpcs -p -s --extensions=php --colors --report-width=140",
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon",
"phpcbf": "./vendor/bin/phpcbf -p --extensions=php",
"composer-dependency-analyser": "./vendor/bin/composer-dependency-analyser"
}
}