forked from noahheck/E_PDOStatement
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.18 KB
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 1.18 KB
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
{
"name" : "xsuchy09/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/xsuchy09/E_PDOStatement",
"license" : "Apache-2.0",
"authors" : [
{
"name" : "Noah Heck",
"role" : "Developer/Project Manager",
"email" : "myesain84@gmail.com",
"homepage" : "https://github.com/noahheck"
},
{
"name" : "Ing. Petr Suchy",
"email" : "suchy@wamos.cz",
"homepage" : "https://www.wamos.cz/",
"role" : "Developer (fork)"
}
],
"require" : {
"php" : ">=7.2.0",
"ext-pdo" : "*"
},
"require-dev" : {
"phpunit/phpunit" : "4.8.*"
, "phpunit/php-invoker" : "*"
, "phpunit/dbunit" : "*"
},
"autoload" : {
"psr-4" : {
"EPDOStatement\\" : "src"
}
}
}