-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
31 lines (31 loc) · 917 Bytes
/
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
{
"name": "pfilsx/postgresql-doctrine-bundle",
"description": "This Symfony bundle provides extended Doctrine DBAL and Doctrine migrations classes for postgresql specific features support",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Pavel Filimonov",
"email": "pfilsx@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"symfony/framework-bundle": "^6.2",
"doctrine/dbal": "^3.5",
"doctrine/migrations": "^3.5",
"doctrine/doctrine-bundle": "^2.8",
"pfilsx/postgresql-doctrine": "^1.2"
},
"require-dev": {
"doctrine/orm": "^2.13",
"friendsofphp/php-cs-fixer": "^3.13",
"symfony/serializer": ">=5.4"
},
"autoload": {
"psr-4": {
"Pfilsx\\PostgreSQLDoctrineBundle\\": "src/"
}
}
}