-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.13 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
{
"name": "pfilsx/postgresql-doctrine",
"type": "library",
"description": "Extended Doctrine DBAL and Doctrine migrations classes for postgresql specific features support",
"license": "MIT",
"keywords": [
"doctrine",
"doctrine-dbal",
"doctrine-migrations",
"migrations",
"postgresql",
"enum",
"php8"
],
"minimum-stability": "stable",
"authors": [
{
"name": "Pavel Filimonov",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"doctrine/dbal": "^3.5.1",
"doctrine/migrations": "^3.5.2"
},
"autoload": {
"psr-4": {
"Pfilsx\\PostgreSQLDoctrine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pfilsx\\PostgreSQLDoctrine\\Tests\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"doctrine/orm": "^2.13",
"symfony/serializer": ">=5.4",
"symfony/property-info": ">=5.4",
"phpunit/phpunit": "^10.0",
"symfony/property-access": ">=5.4"
}
}