-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 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
{
"name": "garak/doctrine-postgres-types-bundle",
"description": "Symfony bundle for Postgresql types",
"keywords": ["symfony", "bundle", "postgres", "doctrine"],
"homepage": "https://massimilianoarione.it",
"type": "symfony-bundle",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Massimiliano Arione",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 || ^8.0",
"opensoft/doctrine-postgres-types": "^1.3",
"symfony/config": "^4.4 || ^5.0",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.0"
},
"require-dev":{
"dg/bypass-finals": "^1.3",
"phpunit/phpunit": "^7.5 || ^8.5"
},
"autoload": {
"psr-4": {
"Garak\\DoctrinePostgresTypesBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Garak\\DoctrinePostgresTypesBundle\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"bin-dir": "bin"
}
}