forked from pomm-project/Foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 961 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 961 Bytes
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
{
"name": "pomm-project/foundation",
"type": "library",
"description": "Pomm connection manager for Postgresql",
"keywords": ["framework", "postgresql", "database", "pomm"],
"homepage": "http://www.pomm-project.org",
"license": "MIT",
"authors": [ { "name": "Grégoire HUBERT", "email": "hubert.greg@gmail.com", "homepage": "http://www.coolkeums.org" } ],
"require": {
"php": ">=5.5.9",
"ext-pgsql": "*",
"psr/log": "~1.0"
},
"require-dev": {
"atoum/atoum" : "^2.8 || ^3.0",
"squizlabs/php_codesniffer": "~2.8"
},
"autoload": {
"psr-4": {
"PommProject\\Foundation\\": "sources/lib"
}
},
"autoload-dev": {
"psr-4": {
"PommProject\\Foundation\\Test\\": "sources/tests"
}
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}