-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·59 lines (59 loc) · 1.69 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·59 lines (59 loc) · 1.69 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
{
"name": "wernerdweight/doctrine-xinclude-xml-driver-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle providing XInclude support for XML mapping of Doctrine.",
"keywords": [
"doctrine",
"xinclude",
"xml",
"driver",
"bundle"
],
"homepage": "https://github.com/wernerdweight/DoctrineXIncludeXmlDriverBundle",
"license": "MIT",
"authors": [
{
"name": "Werner Dweight Solutions",
"email": "info@wds.blue"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "^4.0|^5.0|^6.0",
"symfony/orm-pack": "^1.0|^2.0",
"thecodingmachine/safe": "^2.4"
},
"require-dev": {
"wernerdweight/cs": "^3.0",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"symfony/phpunit-bridge": "^4.3|^5.0|^6.0"
},
"autoload": {
"psr-4": {
"WernerDweight\\DoctrineXIncludeXmlDriverBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WernerDweight\\DoctrineXIncludeXmlDriverBundle\\Tests\\": "tests"
}
},
"scripts": {
"fix": "ecs check ./src/ ./tests/ --config ecs.php --fix",
"phpstan": "phpstan analyse ./src/ ./tests/ --level max",
"phpmd": "phpmd ./src/ text vendor/wernerdweight/cs/phpmd.xml",
"ecs": "ecs check ./src/ ./tests/ --config ecs.php",
"phpunit": "phpunit"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^4.3|^5.0|^6.0"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}