-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.18 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
{
"name": "sbsedv/form-bundle",
"description": "A Symfony bundle that adds some usefull symfony/form integrations.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Daniel Burger",
"homepage": "https://github.com/danielburger1337"
}
],
"autoload": {
"psr-4": {
"SBSEDV\\Bundle\\FormBundle\\": "src/"
}
},
"require": {
"php": "^8.2",
"symfony/form": "^7.0",
"symfony/framework-bundle": "^7.0",
"symfony/security-csrf": "^7.0",
"symfony/serializer": "^7.0",
"symfony/translation": "^7.0",
"symfony/uid": "^7.0",
"symfony/validator": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.65",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-symfony": "^1.4",
"symfony/doctrine-bridge": "^7.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}