-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.7 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
54
55
56
57
58
59
60
{
"name": "odandb/xhprof-bundle",
"description": "This bundle add additional XHProf menu item in symfony debug toolbar & makes things easier to handle XHProf profiling",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"symfony",
"bundle",
"xhprof",
"profiling",
"debug",
"tideways",
"xhgui"
],
"authors": [
{
"name": "Mathieu Girard",
"email": "[email protected]"
},
{
"name": "OD&B",
"homepage": "https://www.odandb.com/"
}
],
"require": {
"php": ">=7.4",
"perftools/php-profiler": "^1.1",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11.0",
"symfony/browser-kit": "^5.4 || ^6.4 || ^7.0",
"symfony/yaml": "^5.4 || ^6.4 || ^7.0"
},
"suggest": {
"perftools/xhgui": "To view the profiling results in a web interface"
},
"autoload": {
"psr-4": {
"Odandb\\XhprofBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Odandb\\XhprofBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-clover=coverage-report.xml"
}
}