forked from opsway/doctrine-dbal-postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.04 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
{
"name": "opsway/doctrine-dbal-postgresql",
"description": "Extensions for support Postgres in Doctrine DBAL & DQL",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Alexandr Vronskiy",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"doctrine/dbal": "^3.2",
"doctrine/orm": "^2.10"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"opsway/psr12-strict-coding-standard": "^0.7.0",
"phpspec/prophecy-phpunit": "^2.0",
"symfony/cache": "^4.4 || ^5.4 || ^6.0",
"doctrine/annotations": "^1.13",
"lctrs/psalm-psr-container-plugin": "^1.6",
"psalm/plugin-phpunit": "^0.16.1",
"vimeo/psalm": "^4.22",
"weirdan/doctrine-psalm-plugin": "^2.0"
},
"autoload": {
"psr-4": {
"OpsWay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpsWay\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf"
}
}