forked from stevegrunwell/time-constants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.03 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
{
"name": "repat/date-constants",
"description": "A series of constants designed to make it easier to express dates in PHP applications",
"type": "library",
"license": "MIT",
"version": "2.0.1",
"authors": [
{
"name": "Repat",
"email": "[email protected]",
"homepage": "https://repat.de"
},
{
"name": "Steve Grunwell",
"email": "[email protected]",
"homepage": "https://stevegrunwell.com"
}
],
"support": {
"issues": "https://github.com/repat/date-constants/issues",
"source": "https://github.com/repat/date-constants"
},
"require": {},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"phpunit/phpunit": "^6.0"
},
"autoload": {
"files": ["constants.php"]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.2"
}
}
}