-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
36 lines (36 loc) · 959 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
34
35
36
{
"name": "cocur/nqm",
"type": "library",
"description": "Named Query Manager helps you SQL organise queries in files.",
"keywords": ["database", "queery", "pdo", "sql"],
"license": "MIT",
"authors": [
{
"name": "Florian Eckerstorfer",
"email": "[email protected]",
"homepage": "http://florian.ec"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/florianeckerstorfer/pseudo"
}
],
"require": {
"php": ">=5.4"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"satooshi/php-coveralls": "dev-master",
"sami/sami": "~1.3",
"mikey179/vfsstream": "~1.2",
"jimbojsb/pseudo": "dev-master"
},
"autoload": {
"psr-4": {
"Cocur\\NQM\\": "src"
}
}
}