-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.77 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.77 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
59
60
61
62
{
"name": "runroom-packages/render-event-bundle",
"description": "Add a render event before rendering templates",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"render",
"event",
"twig",
"symfony"
],
"authors": [
{
"name": "Runroom",
"email": "software@runroom.com",
"homepage": "https://www.runroom.com"
}
],
"homepage": "https://github.com/runroom/RunroomRenderEventBundle",
"require": {
"php": "^8.1",
"symfony/config": "^6.4 || ^7.1",
"symfony/dependency-injection": "^6.4 || ^7.1",
"symfony/error-handler": "^6.4 || ^7.1",
"symfony/event-dispatcher": "^6.4 || ^7.1",
"symfony/event-dispatcher-contracts": "^2.1 || ^3.0",
"symfony/http-foundation": "^6.4 || ^7.1",
"symfony/http-kernel": "^6.4 || ^7.1",
"symfony/translation": "^6.4 || ^7.1",
"symfony/validator": "^6.4 || ^7.1",
"symfony/yaml": "^6.4 || ^7.1",
"twig/twig": "^3.14"
},
"require-dev": {
"matthiasnoback/symfony-config-test": "^6.1",
"matthiasnoback/symfony-dependency-injection-test": "^6.1",
"phpunit/phpunit": "^10.5",
"psr/event-dispatcher": "^1.0"
},
"autoload": {
"psr-4": {
"Runroom\\RenderEventBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Runroom\\RenderEventBundle\\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"
}
}
}