-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 838 Bytes
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 838 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "wikimedia/arc-lamp",
"description": "Flame graphs and log processing for PHP stack traces.",
"keywords": [
"sampling",
"profiling",
"performance",
"flamegraph",
"excimer"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Ori Livneh",
"email": "ori@wikimedia.org"
},
{
"name": "Timo Tijhof",
"email": "krinkle@fastmail.com"
}
],
"autoload": {
"files": [
"ArcLamp.php"
]
},
"require": {
"php": ">=7.4.0",
"ext-redis": "*"
},
"require-dev": {
"mediawiki/minus-x": "1.1.3",
"php-parallel-lint/php-console-highlighter": "1.0.0",
"php-parallel-lint/php-parallel-lint": "1.4.0"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"minus-x check ."
],
"fix": [
"minus-x fix ."
]
},
"config": {
"platform": {
"ext-redis": "3.1.1"
}
}
}