-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 1.52 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"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://php-ago.github.io/",
"keywords": [
"time ago",
"library",
"html"
],
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Serhii Cho",
"email": "serhiicho@protonmail.com",
"homepage": "https://serhii.io",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Serhii\\Ago\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Serhii\\Tests\\": "tests"
}
},
"require": {
"php": "^7.1|^8.0",
"nesbot/carbon": "^3.2.4"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"symfony/var-dumper": "^4.2",
"arokettu/private-access": "^3.0.0",
"phpstan/phpstan": "^1.10.57",
"squizlabs/php_codesniffer": "^3.7.2",
"laravel/pint": "dev-main"
},
"scripts": {
"stan": "phpstan analyse",
"cs": "phpcs src resources --colors -p",
"test": "phpunit --colors tests",
"pint": "pint --test",
"check": [
"@cs",
"@stan",
"@test",
"@pint"
]
},
"support": {
"issues": "https://github.com/php-ago/ago/issues"
}
}