forked from VasekPurchart/Tracy-Blue-Screen-Bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.2 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
{
"name": "cdn77/tracy-blue-screen-bundle",
"description": "This bundle lets you use the Tracy's debug screen in combination with the the default profiler in your Symfony application.",
"keywords": ["tracy", "bluescreen", "error", "debug", "debugger", "exceptions", "bundle"],
"license": "MIT",
"require": {
"php": "^8.2",
"symfony/config": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0",
"tracy/tracy": "^2.8"
},
"require-dev": {
"cdn77/coding-standard": "^7.0",
"matthiasnoback/symfony-dependency-injection-test": "^6.0",
"mikey179/vfsstream": "^1.6.11",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^11.4"
},
"autoload": {
"psr-4": {
"Cdn77\\TracyBlueScreenBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cdn77\\TracyBlueScreenBundle\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
}
}