-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.6 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.6 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
54
55
56
57
58
{
"name": "runroom-packages/form-handler-bundle",
"description": "Alternative way to handle forms in Symfony",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"form",
"handler",
"symfony"
],
"authors": [
{
"name": "Runroom",
"email": "software@runroom.com",
"homepage": "https://www.runroom.com"
}
],
"homepage": "https://github.com/runroom/RunroomFormHandlerBundle",
"require": {
"php": "^8.1",
"symfony/config": "^6.4 || ^7.1",
"symfony/dependency-injection": "^6.4 || ^7.1",
"symfony/event-dispatcher": "^6.4 || ^7.1",
"symfony/form": "^6.4 || ^7.1",
"symfony/http-foundation": "^6.4 || ^7.1",
"symfony/http-kernel": "^6.4 || ^7.1"
},
"require-dev": {
"matthiasnoback/symfony-config-test": "^6.1",
"matthiasnoback/symfony-dependency-injection-test": "^6.1",
"phpunit/phpunit": "^10.5",
"runroom-packages/render-event-bundle": "^0.22"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Runroom\\FormHandlerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Runroom\\FormHandlerBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.22-dev"
}
}
}