-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 823 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 823 Bytes
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
{
"name": "badoo/liveprof-ui",
"type": "library",
"description": "An aggregator and web interface for Live Profiler",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Badoo Development"
}
],
"require": {
"php": ">=7.0",
"symfony/dependency-injection": "~3.0|~4.0",
"symfony/config": "~3.0|~4.0",
"symfony/yaml": "~3.0|~4.0",
"symfony/console": "~3.0|~4.0",
"doctrine/dbal": "~2.0",
"psr/log": "~1.0",
"ext-json": "*",
"ext-zlib": "*"
},
"require-dev": {
"phpunit/phpunit": "~9.5.4",
"phpstan/phpstan": "~0.12.88",
"vimeo/psalm": "~4.7.2"
},
"autoload": {
"psr-4": {
"Badoo\\LiveProfilerUI\\": "src/Badoo/LiveProfilerUI"}
},
"autoload-dev": {
"psr-4": {"unit\\Badoo\\": "tests/unit/Badoo"}
}
}