-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 1.04 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
{
"name": "ayesh/php-timer",
"description": "High-resolution and monotonic stop-watch for all your needs. Supports timer start, pause, resume, stop, read, and minimal conversion.",
"type": "library",
"license": "MIT",
"keywords": ["timer", "stopwatch", "time", "performance", "benchmark"],
"homepage": "https://github.com/ayesh/php-timer",
"authors": [
{
"name": "Ayesh Karunaratne",
"email": "[email protected]",
"homepage": "https://ayesh.me",
"role": "Author"
}
],
"require": {
"php": "^7.3 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"symfony/phpunit-bridge": "^4.0"
},
"autoload": {
"psr-4": {
"Ayesh\\PHP_Timer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ayesh\\PHP_Timer\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/Ayesh/php-timer/issues",
"source": "https://github.com/Ayesh/php-timer"
}
}