-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.44 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
{
"name": "vdhicts/time",
"description": "Time value-object with parser and collection and helpers for duration, rounding and ranges. Makes working with times easy.",
"homepage": "https://github.com/vdhicts/time",
"license": "MIT",
"authors": [
{
"name": "D. van der Heiden",
"email": "info@vdhicts.nl",
"homepage": "http://www.vdhicts.nl",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Vdhicts\\Time\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vdhicts\\Time\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1"
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10.5",
"rector/rector": "^1.2",
"symplify/easy-coding-standard": "^12.0"
},
"scripts": {
"test": [
"@analyze",
"@test:no-coverage",
"@lint:check"
],
"test:coverage": "vendor/bin/phpunit",
"test:no-coverage": "vendor/bin/phpunit --no-coverage",
"analyse": "vendor/bin/phpstan analyse",
"lint:check": "vendor/bin/ecs",
"lint:fix": "vendor/bin/ecs --fix",
"rector:check": "@rector:fix --dry-run",
"rector:fix": "@php vendor/bin/rector process"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}