-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.52 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
46
47
48
49
50
51
52
53
{
"name": "szczyglis/extended-dump-bundle",
"description": "An extension that enhances the debugging capabilities of Symfony 4, 5, and 6 frameworks.",
"homepage": "https://github.com/szczyglis-dev/extended-dump-bundle",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"symfony",
"framework",
"bundle",
"extension",
"debug",
"debugging",
"debugger",
"customize",
"dump",
"xdump"
],
"autoload": {
"psr-4": {
"Szczyglis\\ExtendedDumpBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Szczyglis\\ExtendedDumpBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "szczyglis",
"email": "szczyglis@protonmail.com",
"homepage": "https://szczyglis.dev"
}
],
"require": {
"php": "^7.2.5|^8.0",
"doctrine/orm": "^2.11",
"doctrine/doctrine-bundle": "^2.5",
"symfony/config": "^4.4|^5.0|^6.0",
"symfony/debug-bundle": "^4.4|^5.0|^6.0",
"symfony/dependency-injection": "^4.4|^5.0|^6.0",
"symfony/event-dispatcher": "^4.4|^5.0|^6.0",
"symfony/http-foundation": "^4.4|^5.0|^6.0",
"symfony/http-kernel": "^4.4|^5.0|^6.0",
"symfony/security-bundle": "^4.4|^5.0|^6.0",
"symfony/twig-bundle": "^4.4|^5.0|^6.0",
"symfony/yaml": "^4.4|^5.0|^6.0"
},
"require-dev": {
"symfony/var-dumper": "^4.4|^5.0|^6.0"
}
}