-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 991 Bytes
/
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
{
"name": "ppi/datasource",
"description": "The PPI DataSource Library. This allows you to easily create connections for the top database libraries in PHP.",
"homepage": "https://github.com/ppi/datasource",
"license": "MIT",
"keywords": ["php", "framework", "ppi", "skeletonapp", "datasource", "doctrine", "mongodb", "mysql", "laravel", "zend"],
"authors": [
{
"name": "Paul Dragoonis",
"email": "[email protected]"
},
{
"name": "Community contributions",
"homepage": "https://github.com/ppi/datasource/contributors"
}
],
"support": {
"irc": "irc://irc.freenode.org/ppi",
"issues": "https://github.com/ppi/datasource/issues"
},
"require": {
"doctrine/dbal": "2.5.*@dev"
},
"autoload": {
"psr-4": {
"PPI\\DataSource\\": "src/",
"PPI\\DataSource\\Tests\\": "tests"
}
},
"minimum-stability": "dev"
}