-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
113 lines (113 loc) · 3.84 KB
/
Copy pathcomposer.json
File metadata and controls
113 lines (113 loc) · 3.84 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "vardumper/dom-orm",
"description": "DOMDocument Object Relational Mapper (ORM)",
"license": "MIT",
"support": {
"docs": "https://vardumper.github.io/dom-orm/",
"source": "https://github.com/vardumper/dom-orm",
"issues": "https://github.com/vardumper/dom-orm/issues",
"security": "https://github.com/vardumper/dom-orm/security/dependabot"
},
"type": "library",
"require": {
"php": ">=8.3 <8.6",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-xml": "*",
"ramsey/uuid": "^4.9.2",
"ramsey/collection": "^2.1.1",
"symfony/serializer": "^5.4 || ^6.4 || ^7.4 || ^8.0.8",
"league/flysystem": "^2.0|^3.0",
"symfony/yaml": "^5.4 || ^6.4 || ^7.4 || ^8.0.8",
"mnapoli/silly": "^1.9.1",
"league/config": "^1.2",
"czproject/git-php": "^4.6"
},
"require-dev": {
"pestphp/pest": "^4.6.2",
"phpunit/phpunit": "^12.5.22",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.95.1",
"symplify/easy-coding-standard": "^12.6.2",
"brainmaestro/composer-git-hooks": "@dev",
"rector/swiss-knife": "^2.3.5",
"phpmd/phpmd": "^2.15",
"fakerphp/faker": "^1.24.1"
},
"autoload": {
"psr-4": {
"DOM\\ORM\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"bin": [
"dom-orm"
],
"authors": [
{
"name": "Erik Pöhler",
"email": "info@erikpoehler.com"
}
],
"extra": {
"hooks": {
"pre-commit": [
".githooks/pre-commit.sh"
],
"commit-msg": [
".githooks/commit-msg.sh"
]
}
},
"scripts": {
"test": "XDEBUG_MODE=off vendor/bin/pest --exclude-group=benchmark",
"test:coverage": "composer run test:coverage:unit && composer run test:coverage:integration",
"test:coverage:unit": "XDEBUG_MODE=coverage vendor/bin/pest tests/Unit --exclude-group=external-bin --coverage-clover=clover.unit.xml",
"test:coverage:integration": "XDEBUG_MODE=coverage vendor/bin/pest tests/Integration --coverage-clover=clover.integration.xml",
"test:coverage:html": "composer run test:coverage:html:unit && composer run test:coverage:html:integration",
"test:coverage:html:unit": "XDEBUG_MODE=coverage vendor/bin/pest tests/Unit --exclude-group=external-bin --coverage-html=coverage-report-unit",
"test:coverage:html:integration": "XDEBUG_MODE=coverage vendor/bin/pest tests/Integration --coverage-html=coverage-report-integration",
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --no-ansi --fix",
"phpstan": "phpstan --memory-limit=1G",
"phpmd": "@php -d memory_limit=1G -d error_reporting='E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED' vendor/bin/phpmd ./src text phpmd.xml",
"post-install-cmd": "@git-hooks-init",
"post-update-cmd": "@git-hooks-update",
"swiss-knife-check-conflicts": "vendor/bin/swiss-knife check-conflicts ./src",
"swiss-knife-check-commented-code": "vendor/bin/swiss-knife check-commented-code ./src --line-limit 4",
"swiss-knife-find-multi-classes": "vendor/bin/swiss-knife find-multi-classes ./src",
"swiss-knife-finalize-classes": "vendor/bin/swiss-knife finalize-classes ./src",
"swiss-knife-privatize-constants": "vendor/bin/swiss-knife privatize-constants ./src",
"git-hooks-init": "vendor/bin/cghooks add --ignore-lock",
"git-hooks-update": "vendor/bin/cghooks update"
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/vardumper"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/vardumper"
},
{
"type": "custom",
"url": "https://www.patreon.com/vardumper"
}
]
}