-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.54 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
{
"name": "vardumper/dom-orm",
"description": "DOMDocument Object Relational Mapper (ORM)",
"type": "library",
"require": {
"php": "^8.2",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-xml": "*",
"ramsey/uuid": "^4.7.6",
"ramsey/collection": "^2.0",
"symfony/serializer": "^6.4.8 || ^7.2.0",
"league/flysystem": "^3.29.1",
"symfony/yaml": "^6.4.8 || ^7.2.0",
"mnapoli/silly": "^1.9.1",
"league/config": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^10.5.20 || ^11.5.3",
"phpstan/phpstan": "^1.12.15",
"friendsofphp/php-cs-fixer": "^3.68.1",
"symplify/easy-coding-standard": "^12.5.5",
"brainmaestro/composer-git-hooks": "@dev"
},
"autoload": {
"psr-4": {
"DOM\\ORM\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"bin": [
"dom-orm"
],
"authors": [
{
"name": "Erik Pöhler",
"email": "[email protected]"
}
],
"extra": {
"hooks": {
"pre-commit": [
".githooks/pre-commit.sh"
],
"commit-msg": [
".githooks/commit-msg.sh"
],
"post-commit": [
".githooks/post-commit.sh"
]
}
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G --configuration=./phpstan.neon",
"post-install-cmd": [
"./vendor/bin/cghooks add --ignore-lock"
],
"post-update-cmd": [
"./vendor/bin/cghooks update"
]
},
"minimum-stability": "stable"
}