-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.31 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "dmstr/api-platform-utils-bundle",
"description": "Generic utilities for API Platform projects: UUID resolver, credential encryption, OpenAPI enhancements, Hydra operations, IriReferenceArray autocomplete, DB-JSON CLI tools, JWT security decorator.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"symfony",
"api-platform",
"openapi",
"hydra",
"uuid",
"doctrine",
"encryption",
"utilities"
],
"authors": [
{
"name": "diemeisterei GmbH",
"homepage": "https://diemeisterei.de"
}
],
"require": {
"php": ">=8.2",
"ext-sodium": "*",
"symfony/framework-bundle": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/config": "^7.0",
"symfony/http-kernel": "^7.0",
"symfony/event-dispatcher": "^7.0",
"symfony/uid": "^7.0",
"api-platform/core": "^3.0|^4.0",
"doctrine/orm": "^2.0|^3.0",
"psr/log": "^3.0"
},
"autoload": {
"psr-4": {
"Dmstr\\ApiPlatformUtils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dmstr\\ApiPlatformUtils\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}