-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
executable file
·46 lines (46 loc) · 1.17 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
41
42
43
44
45
46
{
"name": "khill/php-duration",
"description": "Converts between colon formatted time, human-readable time and seconds",
"keywords": [
"duration",
"time",
"seconds",
"convert"
],
"license": "MIT",
"authors": [
{
"name": "Kevin Hill",
"email": "kevinkhill@gmail.com",
"role": "Creator"
},
{
"name": "Duration Community",
"homepage": "https://github.com/kevinkhill/php-duration/contributors"
}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"phpstan/phpstan": "^0.12.81",
"phpunit/phpunit": "~4.8|~5.0",
"satooshi/php-coveralls": "~1.0",
"symfony/yaml": "~2.0",
"symfony/config": "~2.0",
"symfony/console": "~2.0",
"symfony/stopwatch": "~2.0",
"symfony/filesystem": "~2.0",
"doctrine/instantiator": "1.0.4"
},
"autoload": {
"psr-4": {
"Khill\\Duration\\": "src/"
}
},
"scripts": {
"test": "phpunit -c phpunit.xml",
"phpstan": "vendor/bin/phpstan"
},
"minimum-stability": "stable"
}