-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
54 lines (54 loc) · 1.42 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
{
"name": "stevegrunwell/time-constants",
"description": "A series of constants designed to make it easier to express time in PHP applications",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Steve Grunwell",
"email": "[email protected]",
"homepage": "https://stevegrunwell.com"
}
],
"support": {
"issues": "https://github.com/stevegrunwell/time-constants/issues",
"source": "https://github.com/stevegrunwell/time-constants"
},
"require": {
"php": "^7.0 | ^8.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^11.3",
"squizlabs/php_codesniffer": "^3.10"
},
"autoload": {
"files": ["src/Constants.php"]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.3"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"archive": {
"exclude": [
".*",
"Makefile",
"phpcs.xml.dist",
"phpunit.xml.dist",
"tests"
]
}
}