-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.04 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 2.04 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "dgame/php-time",
"type": "library",
"description": "php time conversion",
"keywords": [
"Date",
"Time",
"Timer",
"Clock",
"Time conversion"
],
"homepage": "https://github.com/php-time",
"license": "MIT",
"authors": [
{
"name": "Randy Schütt",
"email": "rswhite4@gmail.com",
"role": "lead"
}
],
"require": {
"php": "8.0",
"thecodingmachine/safe": "^1.3"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.4",
"ergebnis/phpstan-rules": "^0.15",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^9.4",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "dev-master",
"spaceemotion/php-coding-standard": "dev-master",
"spaze/phpstan-disallowed-calls": "^1.5",
"symplify/easy-coding-standard": "^9.3",
"thecodingmachine/phpstan-safe-rule": "^1.0",
"thecodingmachine/phpstan-strict-rules": "^0.12"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.0"
},
"preferred-install": "dist",
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Dgame\\Time\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Dgame\\Time\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"coverage": "phpunit --coverage-clover=coverage",
"lint": "phpcstd --continue",
"lint:fix": "phpcstd --fix --continue",
"lint:fix-style": "ecs --fix",
"lint:static": "phpstan",
"lint:style": "ecs",
"test": "phpunit --exclude-group timer"
}
}