-
-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathcomposer.json
More file actions
96 lines (96 loc) · 3.03 KB
/
composer.json
File metadata and controls
96 lines (96 loc) · 3.03 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "phpbench/phpbench",
"description": "PHP Benchmarking Framework",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^7.3 || ^8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-pcre": "*",
"ext-reflection": "*",
"ext-spl": "*",
"ext-tokenizer": "*",
"doctrine/annotations": "^1.13",
"phpbench/container": "^2.1",
"phpbench/dom": "~0.3.1",
"psr/log": "^1.1",
"seld/jsonlint": "^1.1",
"symfony/console": "^4.2 || ^5.0 || ^6.0",
"symfony/filesystem": "^4.2 || ^5.0 || ^6.0",
"symfony/finder": "^4.2 || ^5.0 || ^6.0",
"symfony/options-resolver": "^4.2 || ^5.0 || ^6.0",
"symfony/process": "^4.2 || ^5.0 || ^6.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"dantleech/invoke": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"jangregor/phpstan-prophecy": "^0.8.1",
"phpspec/prophecy": "^1.12",
"phpstan/phpstan": "^0.12.7",
"phpunit/phpunit": "^8.5.8 || ^9.0",
"symfony/error-handler": "^5.2 || ^6.0",
"symfony/var-dumper": "^4.0 || ^5.0 || ^6.0"
},
"scripts": {
"integrate":[
"vendor/bin/php-cs-fixer fix",
"vendor/bin/phpstan analyse -c phpstan.neon.dist",
"vendor/bin/phpunit",
"bin/phpbench run --revs=1 --iterations=2",
"bin/phpbench run --profile=examples --revs=1 --iterations=1 --report=examples",
"@docs",
"@schema"
],
"schema": [
"bin/phpbench doc:config-schema > phpbench.schema.json"
],
"docs": [
"rm -Rf docs/build",
"bin/phpbench doc:config-reference > docs/configuration.rst",
"bin/phpbench doc:service-options docs/report-generators/options generator",
"bin/phpbench doc:service-options docs/report-renderers/options renderer",
"bin/phpbench doc:service-options docs/report-components/options component",
"bin/phpbench doc:service-options docs/executors/options executor",
"make -C docs html"
]
},
"suggest": {
"ext-xdebug": "For Xdebug profiling extension."
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
},
"autoload": {
"files": [
"lib/Report/Func/functions.php"
],
"psr-4": {
"PhpBench\\": "lib/",
"PhpBench\\Extensions\\XDebug\\": "extensions/xdebug/lib/"
}
},
"autoload-dev": {
"psr-4": {
"PhpBench\\Tests\\": "tests/",
"PhpBench\\Examples\\": "examples/",
"PhpBench\\Extensions\\XDebug\\Tests\\": "extensions/xdebug/tests/"
}
},
"bin": [
"bin/phpbench"
]
}