forked from php-ago/ago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 916 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": "serhii/ago",
"description": "Converts given date into a nice readable format. Supports russian and english. Example will be '1 hour ago', '2 days ago', '1 second ago', 'Online' and so.",
"homepage": "https://github.com/SerhiiCho/ago",
"keywords": ["time ago", "library", "html"],
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Serhii Cho",
"email": "[email protected]",
"homepage": "https://serhii.tk",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Serhii\\Ago\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Serhii\\Tests\\": "tests"
}
},
"require": {
"php": "^7.1"
},
"require-dev": {
"nesbot/carbon": "^2.2",
"phpunit/phpunit": "^7.5"
}
}