-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (49 loc) · 1.28 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
55
56
57
58
{
"name": "hill-valley/fluxcap",
"type": "library",
"license": "MIT",
"description": "Set of date-time related immutable classes",
"keywords": ["datetime", "date", "time", "iso8601"],
"authors": [
{
"name": "Gregor Harlan",
"homepage": "https://github.com/gharlan"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"ext-intl": "*",
"friendsofphp/php-cs-fixer": "^3.49",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^5.21"
},
"suggest": {
"ext-intl": "For international date-time formatting via the provided formatIntl() methods"
},
"autoload": {
"psr-4": { "HillValley\\Fluxcap\\": "src" }
},
"autoload-dev": {
"psr-4": { "HillValley\\Fluxcap\\Tests\\": "tests" }
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"scripts": {
"cs": "php-cs-fixer fix -v",
"phpunit": "phpunit",
"phpunit-coverage": "phpunit --coverage-text",
"phpunit-coverage-html": "phpunit --coverage-html .build/coverage-html",
"psalm": "psalm",
"check": [
"@cs",
"@psalm",
"@phpunit"
]
}
}