-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
70 lines (70 loc) · 1.79 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "pauci/datetime",
"description": "Enhanced DateTime, DateTimeImmutable and DateInterval objects",
"type": "library",
"keywords": [
"datetime",
"dateinterval",
"immutable",
"microsecond",
"iso8601",
"json"
],
"homepage": "https://github.com/pauci/datetime",
"license": "MIT",
"authors": [
{
"name": "Pavol Kirschbaum",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/pauci/datetime/issues"
},
"require": {
"php": "^8.0 || ^8.1 || ^8.2",
"ext-json": "*",
"psr/clock": "^1.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
},
"suggest": {
"pauci/datetime-doctrine": "Allows the use of pauci/datetime value objects as Doctrine field types."
},
"autoload": {
"psr-4": {
"Pauci\\DateTime\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pauci\\DateTime\\Test\\": "tests/src/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"check": [
"@lint",
"@cs-check",
"@stan",
"@test"
],
"lint": "parallel-lint src tests",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"stan": "phpstan analyse --no-progress",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover clover.xml"
}
}