-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 942 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 942 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
{
"name": "andreasnij/a-timer",
"type": "library",
"description": "A simple timer to measure execution time.",
"keywords": ["timer", "timing", "benchmark"],
"homepage": "http://github.com/andreasnij/a-timer",
"license": "MIT",
"authors": [
{
"name": "Andreas Nilsson"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0 | ^11.0",
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": { "ATimer\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"ATimer\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "vendor/bin/phpcs",
"phpunit": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse",
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
]
}
}