forked from api-platform/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.74 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.74 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
{
"name": "api-platform/playground",
"description": "API Platform wasm playground",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"ApiPlatform\\Playground\\": "src/"
}
},
"authors": [
{
"name": "soyuka",
"email": "[email protected]"
}
],
"require": {
"api-platform/symfony": "^3.4 || ^4.0",
"api-platform/doctrine-orm": "^3.4 || ^4.0",
"symfony/expression-language": "^7.0",
"nelmio/cors-bundle": "^2.2",
"phpstan/phpdoc-parser": "^1.15",
"symfony/framework-bundle": "^7.0",
"symfony/property-access": "^7.0",
"symfony/property-info": "^7.0",
"symfony/runtime": "^7.0",
"symfony/security-bundle": "^7.0",
"symfony/type-info": "^7.3-dev",
"symfony/serializer": "^7.0",
"symfony/validator": "^7.0",
"symfony/yaml": "^7.0",
"doctrine/orm": "^2.14",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/doctrine-bundle": "^2.9",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"zenstruck/foundry": "^1.31",
"symfony/http-client": "^7.0",
"symfony/browser-kit": "^7.0",
"justinrainbow/json-schema": "^5.2"
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
},
"require-dev": {
"phpunit/phpunit": "^10"
},
"extra": {
"thanks": {
"name": "api-platform/api-platform",
"url": "https://github.com/api-platform/api-platform"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/symfony/type-info"
}
]
}