-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.36 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"name": "liquidrazor/dto-api-bundle",
"description": "A DTO-first Symfony bundle for building boring JSON APIs with streaming responses and autogenerated OpenAPI documentation.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Noramarth",
"email": "noramarth@aom.ro"
},
{
"name": "Petru Szemereczki",
"email": "petru.szemereczki@proton.me"
}
],
"require": {
"php": ">=8.3",
"ext-json": "*",
"symfony/dependency-injection": "^7 || ^8",
"symfony/config": "^7 || ^8",
"symfony/http-kernel": "^7 || ^8",
"symfony/serializer": "^7 || ^8",
"symfony/property-access": "^7 || ^8",
"symfony/options-resolver": "^7 || ^8",
"symfony/validator": "^7 || ^8",
"monolog/monolog": "^3"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"symfony/browser-kit": "^7 || ^8",
"symfony/css-selector": "^7 || ^8",
"symfony/twig-bundle": "^7 || ^8",
"symfony/twig-bridge": "^7 || ^8",
"symfony/web-profiler-bundle": "^7 || ^8"
},
"autoload": {
"psr-4": {
"LiquidRazor\\DtoApiBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LiquidRazor\\DtoApiBundle\\Tests\\": "tests/"
}
},
"extra": {
"symfony": {
"bundle": "LiquidRazor\\DtoApiBundle\\DtoApiBundle"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}