-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
executable file
·30 lines (30 loc) · 1005 Bytes
/
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
{
"name": "mpratt/relativetime",
"type": "library",
"description": "A library that calculates the time difference between two dates and returns the result in words (Example: 5 minutes ago or 5 Minutes left). The library supports other languages aswell like Spanish and German.",
"keywords": ["time","time-ago", "ago", "future", "interval", "date", "relative"],
"homepage": "https://github.com/mpratt/RelativeTime",
"license": "MIT",
"authors": [
{
"name": "Michael Pratt",
"email": "pratt@hablarmierda.net",
"homepage": "http://www.michael-pratt.com",
"role": "Author/Developer"
}
],
"require": {
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpstan/phpstan": "^1.4"
},
"autoload": {
"psr-0": {"RelativeTime": "Lib/"}
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse Lib --level=4 --no-progress"
}
}