-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.69 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
{
"name": "rotexsoft/callable-execution-timer",
"description": "A simple PHP library for tracking the total amount of time a callable (e.g. function / method) takes to execute (it can also return the result of executing the callable, if desired).",
"license": "BSD-3-Clause",
"keywords": [ "callable", "callables", "callback", "callbacks", "function", "functions", "method", "methods", "profiler", "profiling", "benchmark", "benchmarks", "benchmarking", "execution", "time", "execution time", "performance", "measurement", "performance measurement"],
"homepage": "https://github.com/rotexsoft/function-execution-timer",
"authors": [
{
"name": "Rotimi Adegbamigbe",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"php-coveralls/php-coveralls": "^2.0",
"rector/rector": "^1.0.0",
"vimeo/psalm": "^5.4"
},
"autoload": {
"classmap": [ "src/" ]
},
"autoload-dev": {
"classmap": ["src/", "tests/"],
"files": ["tests/objects/functions.php"]
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit --coverage-text"
],
"rector-clear": "vendor/bin/rector --clear-cache",
"rector": "vendor/bin/rector process src --dry-run -vvv",
"psalm-clear-cache": "vendor/bin/psalm --clear-global-cache && vendor/bin/psalm --clear-cache",
"psalm": "composer psalm-clear-cache && vendor/bin/psalm --threads=1",
"qa": "composer test && composer rector && composer psalm"
}
}