-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.57 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.57 KB
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
{
"name": "flow-php/symfony-postgresql-bundle",
"type": "symfony-bundle",
"description": "Flow PHP - Symfony PostgreSQL Bundle",
"keywords": [
"flow-php",
"symfony",
"postgresql",
"bundle"
],
"homepage": "https://github.com/flow-php/flow",
"license": "MIT",
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"flow-php/filesystem": "self.version",
"flow-php/postgresql": "self.version",
"symfony/config": "^6.4 || ^7.4 || ^8.0",
"symfony/console": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"twig/twig": "^3.0"
},
"require-dev": {
"flow-php/phpunit-postgresql-bridge": "self.version",
"flow-php/symfony-postgresql-messenger-bridge": "self.version",
"symfony/framework-bundle": "^6.4 || ^7.4 || ^8.0",
"symfony/messenger": "^6.4 || ^7.4 || ^8.0"
},
"suggest": {
"flow-php/phpunit-postgresql-bridge": "For PHPUnit PostgreSQL transaction rollback support in tests",
"flow-php/symfony-postgresql-messenger-bridge": "For Symfony Messenger PostgreSQL transport support"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Flow\\": [
"src/Flow"
]
}
},
"autoload-dev": {
"psr-4": {
"Flow\\": "tests/Flow"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}