-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.3 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
{
"name": "marble/entity-manager",
"description": "An ORM-less entity lifecycle manager for PHP.",
"keywords": [
"entity",
"entity manager",
"unit of work",
"repository",
"orm"
],
"homepage": "https://github.com/marble-php/entity-manager",
"license": "MIT",
"authors": [
{
"name": "Mark van den Berg",
"email": "[email protected]",
"role": "Lead developer"
}
],
"require": {
"php": "^8.1",
"doctrine/instantiator": "^1.4",
"ocramius/generated-hydrator": "^4.2",
"sebastian/comparator": "^4.0",
"sebastian/exporter": "^4.0",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^9.5",
"symfony/uid": "^5.3",
"vimeo/psalm": "^4.16"
},
"suggest": {
"symfony/uid": "If you want to use the provided ULID implementation of the Identifier interface."
},
"autoload": {
"psr-4": {
"Marble\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Marble\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}