-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
29 lines (29 loc) · 993 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
{
"name" : "noahheck/e_pdostatement"
, "description" : "Drop in replacement for default PDOStatement class allowing devs to view an interpolated version of a parameterized query"
, "keywords" : ["pdo", "debug", "debugger", "PDOStatement", "query", "sql", "drop-in", "replacement"]
, "homepage" : "https://github.com/noahheck/E_PDOStatement"
, "license" : "Apache-2.0"
, "authors" : [
{
"name" : "Noah Heck"
, "role" : "Developer/Project Manager"
, "email" : "[email protected]"
, "homepage" : "https://github.com/noahheck"
}
]
, "require" : {
"php" : ">=5.1.0",
"psr/log" : "^1.0"
}
, "require-dev" : {
"phpunit/phpunit" : "4.8.*"
, "phpunit/php-invoker" : "*"
, "phpunit/dbunit" : "*"
}
, "autoload" : {
"psr-4" : {
"EPDOStatement\\" : "src"
}
}
}