-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 752 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 752 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
{
"name": "akondas/php-benchmark",
"type": "project",
"description": "Benchmarks for php internals",
"license": "MIT",
"authors": [
{
"name": "Arkadiusz Kondas",
"email": "arkadiusz.kondas@gmail.com"
}
],
"require": {
"php": "^8.3"
},
"require-dev": {
"phpbench/phpbench": "^1.4",
"friendsofphp/php-cs-fixer": "^v3.68",
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
"PhpBenchmark\\": "benchmarks/"
}
},
"scripts": {
"fix-cs": "./vendor/bin/php-cs-fixer fix",
"check-cs": "./vendor/bin/php-cs-fixer fix --dry-run",
"build": [
"@check-cs"
]
}
}