-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.15 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
{
"name": "sbsedv/response-bundle",
"description": "A Symfony bundle that makes HTTP response creation simple.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Daniel Burger",
"homepage": "https://github.com/danielburger1337"
}
],
"autoload": {
"psr-4": {
"SBSEDV\\Bundle\\ResponseBundle\\": "src/"
}
},
"require": {
"php": "^8.2",
"symfony/framework-bundle": "^6.1 || ^7.0",
"symfony/http-client": "^6.1 || ^7.0",
"symfony/serializer": "^6.1 || ^7.0",
"symfony/translation": "^6.1 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-symfony": "^1.1",
"sbsedv/form-bundle": "^1.7",
"symfony/validator": "^6.1 || ^7.0"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}