-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 926 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
32
33
{
"name": "ppi/datasource-module",
"description": "PPI module to pull in the ppi/datasource component",
"keywords": ["ppi", "datasource", "framework", "mysql", "mongodb", "doctrine", "laravel", "zend", "fuelphp"],
"homepage": "https://github.com/ppi/ppi-datasource-module",
"license": "MIT",
"authors": [
{
"name": "Paul Dragoonis",
"email": "[email protected]"
}
],
"support": {
"irc": "irc://irc.freenode.org/ppi",
"issues": "https://github.com/ppi/ppi-datasource-module/issues"
},
"require": {
"ppi/datasource": "^1.0"
},
"require-dev":{
"phpunit/phpunit": "3.7.*"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"PPI\\DataSourceModule\\": "src/",
"PPI\\DataSourceModule\\Tests\\": "tests/"
}
},
"minimum-stability": "dev"
}