-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 1 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": "redmatter/chrono",
"description": "Accurate, testable and consistent API for clocks and times",
"type": "library",
"require": {
"php": ">=5.4.0",
"symfony/polyfill-php70": "^1.18",
"symfony/polyfill-php73": "^1.18",
"ext-bcmath": "*"
},
"require-dev": {
"phpunit/phpunit": "^4",
"symfony/polyfill-php72": "^1.18",
"victorjonsson/markdowndocs": "^1.3"
},
"autoload": {
"classmap": [
"src/"
]
},
"autoload-dev": {
"classmap": [
"tests/",
"examples/"
]
},
"scripts": {
"phpdoc-md": [
"@php vendor/bin/phpdoc-md generate src > docs/phpdoc.md",
"@php scripts/phpdoc-md-fix-anchors.php docs/phpdoc.md"
],
"test": "phpunit"
},
"scripts-descriptions": {
"phpdoc-md": "Generate markdown from phpdoc comments",
"phpunit": "Run PHPUnit tests"
},
"license": "MIT",
"authors": [
{
"name": "Dino Korah",
"email": "[email protected]"
}
],
"minimum-stability": "stable"
}