-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
44 lines (44 loc) · 1.12 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
{
"name": "pauci/datetime-doctrine",
"description": "Allow the use of pauci/datetime DateTime as Doctrine field type.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pavol Kirschbaum",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 | ^8.0",
"pauci/datetime": "^0.3.6"
},
"require-dev": {
"doctrine/orm": "^2.8",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^0.12.58",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {"Pauci\\DateTime\\Doctrine\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Pauci\\DateTime\\Doctrine\\Test\\": "tests/src/"}
},
"config": {
"sort-packages": true
},
"scripts": {
"check": [
"@lint",
"@cs-check",
"@stan"
],
"lint": "parallel-lint src",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"stan": "phpstan analyse --no-progress",
"test": "phpunit"
}
}