-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 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
54
55
56
57
{
"name": "makinacorpus/profiling",
"description": "Lightweight and flexible profiling toolbox, using the high resolution timer.",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Makina Corpus",
"homepage": "https://makina-corpus.com/"
},
{
"name": "Pierre RINEAU",
"email" : "[email protected]"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"require": {
"php": ">= 8.1",
"psr/log": "^2.0|^3.0"
},
"require-dev": {
"makinacorpus/query-builder": "^1.6.1",
"nyholm/psr7": "^1.8",
"phpbench/phpbench": "^1.2",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.2",
"sentry/sentry": "^3.8",
"symfony/config": "^6.0|^7.0",
"symfony/dependency-injection": "^6.0|^7.0",
"symfony/http-client": "^6.0|^7.0",
"symfony/http-kernel": "^6.0|^7.0",
"symfony/security-core": "^6.0|^7.0",
"symfony/stopwatch": "^6.0|^7.0",
"symfony/yaml": "^6.0|^7.0"
},
"autoload": {
"psr-4": {
"MakinaCorpus\\Profiling\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MakinaCorpus\\Profiling\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}