forked from jimmiw/php-time-ago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 906 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
31
32
33
34
{
"name": "technodelight/php-time-ago",
"description": "Simple module which displays the date in a \"time ago\" format",
"keywords": ["time ago", "distance of time", "time ago in words"],
"homepage": "https://github.com/technodelight/php-time-ago",
"license": "MIT",
"authors": [
{
"name": "Zsolt Gál",
"homepage": "https://github.com/technodelight",
"role": "Developer"
},
{
"name": "Jimmi Westerberg",
"homepage": "http://www.westsworld.dk",
"role": "Author"
}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"phpspec/phpspec": "^2.3"
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.1.0-dev"
}
},
"autoload": {"psr-0": {"Technodelight": "src"}}
}