-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1.45 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
{
"name": "basster/lazy-response-bundle",
"description": "A library to support so-called lazy symfony controller responses.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ole Rößner",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.0"
},
"autoload": {
"psr-4": {
"Basster\\LazyResponseBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Basster\\LazyResponseBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"symfony/http-foundation": "^5.0.7",
"symfony/serializer": "^5.2",
"twig/twig": "^2.11 || ^3.0.0",
"symfony/routing": "^5.2",
"symfony/event-dispatcher": "^5.2",
"symfony/http-kernel": "^5.1.5",
"friendsofphp/php-cs-fixer": "^2.18",
"vimeo/psalm": "^4.6",
"phpunit/phpunit": "^9.5",
"phpspec/prophecy-phpunit": "^2.0",
"symfony/property-access": "^5.2"
},
"suggest": {
"symfony/event-dispatcher": "Required when using any of the event handlers.",
"symfony/serializer": "Required when using the \\Basster\\LazyResponseBundle\\Response\\JsonSerializeResponse",
"twig/twig": "Required when using the \\Basster\\LazyResponseBundle\\Response\\TwigResponse",
"symfony/routing": "Required when using the \\Basster\\LazyResponseBundle\\Response\\RedirectResponse"
},
"scripts":{
"fix": "php-cs-fixer fix --config .php_cs.dist.php",
"psalm": "psalm"
}
}