forked from api-platform/core
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 2.78 KB
/
Copy pathcomposer.json
File metadata and controls
96 lines (96 loc) · 2.78 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
{
"name": "api-platform/state",
"description": "API Platform State component ",
"type": "library",
"keywords": [
"REST",
"GraphQL",
"API",
"JSON-LD",
"Hydra",
"JSONAPI",
"OpenAPI",
"HAL",
"Swagger"
],
"homepage": "https://api-platform.com",
"license": "MIT",
"authors": [
{
"name": "Kévin Dunglas",
"email": "kevin@dunglas.fr",
"homepage": "https://dunglas.fr"
},
{
"name": "API Platform Community",
"homepage": "https://api-platform.com/community/contributors"
}
],
"require": {
"php": ">=8.2",
"api-platform/metadata": "^4.4@alpha",
"psr/container": "^1.0 || ^2.0",
"symfony/http-kernel": "^7.4 || ^8.0",
"symfony/serializer": "^7.4 || ^8.0",
"symfony/translation-contracts": "^3.0",
"symfony/deprecation-contracts": "^3.1"
},
"require-dev": {
"api-platform/serializer": "^4.4@alpha",
"api-platform/validator": "^4.4@alpha",
"phpunit/phpunit": "^11.5 || ^12.2",
"symfony/http-foundation": "^7.4 || ^8.0",
"symfony/object-mapper": "^7.4 || ^8.0",
"symfony/type-info": "^7.4 || ^8.0",
"symfony/web-link": "^7.4 || ^8.0",
"willdurand/negotiation": "^3.1"
},
"conflict": {
"symfony/object-mapper": "<7.3.4"
},
"autoload": {
"psr-4": {
"ApiPlatform\\State\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-main": "4.4.x-dev",
"dev-4.2": "4.2.x-dev",
"dev-3.4": "3.4.x-dev",
"dev-4.1": "4.1.x-dev"
},
"symfony": {
"require": "^7.4 || ^8.0"
},
"thanks": {
"name": "api-platform/api-platform",
"url": "https://github.com/api-platform/api-platform"
}
},
"suggest": {
"symfony/web-link": "To support adding web links to the response headers.",
"symfony/http-foundation": "To use our HTTP providers and processor.",
"willdurand/negotiation": "To use the API Platform content negoatiation provider.",
"api-platform/serializer": "To use API Platform serializer.",
"api-platform/validator": "To use API Platform validation."
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"minimum-stability": "beta",
"prefer-stable": true
}