forked from austinsmorris/doctrine-dbal-datetimeutc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
90 lines (90 loc) · 2.02 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "shapecode/doctrine-dbal-datetimeutc",
"description": "A custom Doctine DBAL type to use PHP DateTime objects set to the UTC timezone.",
"keywords": [
"Doctrine",
"DBAL",
"DateTime",
"datetime",
"UTC"
],
"authors": [
{
"name": "Austin Morris",
"email": "[email protected]"
},
{
"name": "Nikita Loges",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^8.2",
"doctrine/dbal": "^4.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.9",
"maglnet/composer-require-checker": "^4.10",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.5",
"icanhazstring/composer-unused": "^0.8"
},
"replace": {
"austinsmorris/doctrine-dbal-datetimeutc": "self.version"
},
"autoload": {
"psr-4": {
"Shapecode\\Doctrine\\DBAL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shapecode\\Doctrine\\DBAL\\Tests\\": "tests/"
}
},
"scripts": {
"check": [
"@crc",
"@unused",
"@cs-check",
"@phpstan",
"@phpunit"
],
"unused": "vendor/bin/composer-unused",
"crc": "./vendor/bin/composer-require-checker --config-file=./composer-require-checker.json",
"phpstan": "phpstan analyse --ansi",
"phpunit": "phpunit --colors=always",
"cs-check": "phpcs -s",
"cs-fix": "phpcbf"
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"funding": [
{
"type": "github",
"url": "http://github.com/sponsors/nicklog"
},
{
"type": "paypal",
"url": "http://paypal.me/nloges"
},
{
"type": "liberapay",
"url": "https://liberapay.com/nicklog"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}