-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
83 lines (83 loc) · 2.18 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
{
"name": "nucleos/doctrine-extensions",
"description": "Useful doctrine event hooks.",
"license": "MIT",
"type": "library",
"keywords": [
"doctrine",
"hooks",
"symfony",
"symfony-bridge",
"confirmable",
"deletable",
"lifecycle",
"sortable"
],
"authors": [
{
"name": "Christian Gripp",
"email": "[email protected]"
}
],
"homepage": "https://nucleos.rocks",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/core23"
},
{
"type": "opencollective",
"url": "https://opencollective.com/core23"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/core23"
},
{
"type": "other",
"url": "https://donate.core23.de"
}
],
"require": {
"php": "^8.1",
"doctrine/common": "^2.12 || ^3.0",
"doctrine/dbal": "^3.8 || ^4.0",
"doctrine/event-manager": "^1.0 || ^2.0",
"doctrine/orm": "^2.18 || ^3.0",
"doctrine/persistence": "^1.3 || ^2.0 || ^3.0",
"symfony/property-access": "^6.4 || ^7.0",
"symfony/uid": "^6.4 || ^7.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.5",
"doctrine/doctrine-migrations-bundle": "^3.2",
"ergebnis/composer-normalize": "^2.0.1",
"symfony/browser-kit": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/expression-language": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0"
},
"conflict": {
"doctrine/doctrine-bundle": "<2.5",
"symfony/framework-bundle": "<6.4"
},
"suggest": {
"symfony/framework-bundle": "If you want to use symfony"
},
"autoload": {
"psr-4": {
"Nucleos\\Doctrine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nucleos\\Doctrine\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
}
}