-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 786 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 786 Bytes
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
{
"name": "zjkal/time-helper",
"description": "一个简单快捷的PHP日期时间助手类库。 a smart PHP datetime helper library.",
"keywords": ["php", "datetime", "helper", "time", "date", "zjkal"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "zjkal",
"email": "zjkal@qq.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0"
},
"autoload": {
"psr-4": {
"zjkal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"zjkal\\tests\\": "tests/"
}
}
}