-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathcomposer.json
38 lines (38 loc) · 1.14 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
{
"name": "nelmio/js-logger-bundle",
"description": "Adds logging of JS errors in your Symfony application",
"keywords": ["js", "javascript", "logging", "log"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Nelmio",
"homepage": "http://nelm.io"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/nelmio/NelmioJsLoggerBundle/contributors"
}
],
"require": {
"php": ">=7.2.5",
"ext-json": "*",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/config": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/http-foundation": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4 || ^5.3 || ^6.0 || ^7.0",
"symfony/routing": "^4.4 || ^5.3 || ^6.0 || ^7.0"
},
"require-dev": {
"twig/twig": "^1.40 || ^2.10 || ^3.0"
},
"autoload": {
"psr-4": { "Nelmio\\JsLoggerBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}