-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.4 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.4 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
{
"name": "kick-in/exception-handler-bundle",
"description": "This bundles integrates an simple Exception Handler in your Symfony Application, which is capable of mailing the exact problem.",
"keywords": ["symfony", "exception handler"],
"type": "symfony-bundle",
"homepage": "https://github.com/kick-in/exception-handler-bundle",
"license": "MIT",
"authors": [
{
"name": "Wendo Beuker",
"email": "wendo@kick-in.nl"
},
{
"name": "Bob van de Vijver",
"email": "bob@kick-in.nl"
}
],
"require": {
"php": ">=7.3",
"symfony/filesystem": "~4.4|~5.4|~6.4|~7.4",
"symfony/dependency-injection": "~4.4|~5.4|~6.4|~7.4",
"symfony/security-core": "~4.4|~5.4|~6.4|~7.4",
"symfony/config": "~4.4|~5.4|~6.4|~7.4",
"symfony/event-dispatcher": "~4.4|~5.4|~6.4|~7.4",
"symfony/http-foundation": "~4.4|~5.4|~6.4|~7.4",
"symfony/http-kernel": "~4.4|~5.4|~6.4|~7.4",
"symfony/twig-bundle": "~4.4|~5.4|~6.4|~7.4"
},
"require-dev": {
"symfony/mailer": "~4.4|~5.4|~6.4|~7.4",
"symfony/swiftmailer-bundle": ">=2.6.0"
},
"suggest": {
"symfony/mailer": "When you want to use the Symfony Mailer, install this bundle",
"symfony/swiftmailer-bundle": "When you want to use Swiftmailer, install this bundle"
},
"conflict": {
"twig/twig": "<2.7.0"
},
"autoload": {
"psr-4": {
"Kickin\\ExceptionHandlerBundle\\": ""
}
}
}