-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 886 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 886 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
{
"name": "hyperized/benchmark",
"description": "A small PHP Benchmark project",
"keywords": [
"benchmark",
"mysql",
"disk",
"modules",
"php"
],
"license": "MIT",
"authors": [
{
"name": "Gerben Geijteman",
"email": "gerben@hyperized.net"
}
],
"require": {
"php": ">=8.4",
"roave/security-advisories": "dev-master",
"symfony/config": "^7.0",
"symfony/yaml": "^8.0",
"php-di/php-di": "^7.0",
"adbario/php-dot-notation": "^3.0",
"ext-mysqli": "*"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"Hyperized\\Benchmark\\": "src/"
}
},
"scripts": {
"analyse": "phpstan analyse",
"cs-fix": "php-cs-fixer fix --allow-risky=yes",
"cs-check": "php-cs-fixer fix --dry-run --diff --allow-risky=yes"
}
}