-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
45 lines (44 loc) · 1.11 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
{
"name": "pomm-project/pomm-bundle",
"type": "symfony-bundle",
"description": "The Symfony2 bundle for Pomm2",
"keywords": ["orm", "postgresql", "database", "symfony", "pomm"],
"homepage": "http://www.pomm-project.org",
"license": "MIT",
"authors": [
{
"name": "Nicolas JOSEPH",
"email": "nicolas.joseph@homecomputing.fr"
},
{
"name": "Grégoire HUBERT",
"email": "hubert.greg@gmail.com"
}
],
"require": {
"php": ">=7.1",
"jdorn/sql-formatter": "~1.2",
"pomm-project/model-manager": "~2.0",
"pomm-project/cli": "~2.0",
"pomm-project/pomm-symfony-bridge": "~2.5|~3.0",
"symfony/framework-bundle": "^3.4|^4.3|^5.0"
},
"require-dev": {
"symfony/console": "^3.4|^4.3|^5.0",
"squizlabs/php_codesniffer": "~2.7"
},
"suggest": {
"symfony/web-profiler-bundle": "Display queries log",
"sensio/distribution-bundle": "To use the entity param converter"
},
"autoload": {
"psr-4": {
"PommProject\\PommBundle\\": "sources/lib/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}