-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.4 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
{
"name": "awilum/craft-benchmark",
"description": "Simple benchmark plugin with basic benchmark functionality for Craft CMS.",
"type": "craft-plugin",
"keywords": ["twig", "craft", "craft-plugin", "craftcms", "benchmark", "twig profiler", "profiler"],
"license": "MIT",
"authors": [
{
"name": "Sergey Romanenko",
"email": "[email protected]",
"homepage": "https://awilum.github.io/"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/awilum/craft-benchmark/issues?state=open",
"source": "https://github.com/awilum/craft-benchmark",
"docs": "https://github.com/awilum/craft-benchmark/master/README.md"
},
"require": {
"craftcms/cms": "^4.3.3"
},
"autoload": {
"psr-4": {
"Awilum\\CraftBenchmark\\": "src/"
},
"files": [
"src/functions.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"name": "Benchmark",
"handle": "benchmark",
"class": "Awilum\\CraftBenchmark\\Benchmark"
},
"require-dev": {
"ext-iconv": "*",
"phpstan/phpstan": "^1.8.0",
"pestphp/pest": "^1.21.1"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"pestphp/pest-plugin": true
}
}
}