-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
88 lines (88 loc) · 1.97 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
84
85
86
87
88
{
"name": "api-platform/doctrine-orm",
"description": "Doctrine ORM bridge",
"type": "library",
"keywords": [
"Doctrine",
"ORM"
],
"homepage": "https://api-platform.com",
"license": "MIT",
"authors": [
{
"name": "Kévin Dunglas",
"email": "[email protected]",
"homepage": "https://dunglas.fr"
},
{
"name": "API Platform Community",
"homepage": "https://api-platform.com/community/contributors"
}
],
"require": {
"php": ">=8.1",
"api-platform/doctrine-common": "*@dev || ^3.1",
"api-platform/metadata": "*@dev || ^3.1",
"api-platform/state": "*@dev || ^3.1",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/orm": "^2.17",
"symfony/property-info": "^6.4 || ^7.0"
},
"require-dev": {
"api-platform/parameter-validator": "*@dev || ^3.2",
"api-platform/symfony": "*@dev || ^3.2",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^10.0",
"ramsey/uuid": "^4.7",
"ramsey/uuid-doctrine": "^2.0",
"symfony/cache": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/phpunit-bridge": "^6.4 || ^7.0",
"symfony/serializer": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
"ApiPlatform\\Doctrine\\Orm\\": ""
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
},
"extra": {
"branch-alias": {
"dev-main": "3.2.x-dev"
},
"symfony": {
"require": "^6.4"
}
},
"repositories": [
{
"type": "path",
"url": "../../Metadata"
},
{
"type": "path",
"url": "../../State"
},
{
"type": "path",
"url": "../Common"
},
{
"type": "path",
"url": "../../Symfony"
},
{
"type": "path",
"url": "../../ParameterValidator"
}
]
}