forked from greenlion/PHP-SQL-Parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.05 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
{
"name" : "greenlion/php-sql-parser",
"type" : "library",
"description" : "A pure PHP SQL (non validating) parser w/ focus on MySQL dialect of SQL",
"keywords" : [
"sql",
"parser",
"creator",
"MySQL"
],
"homepage" : "https://github.com/greenlion/PHP-SQL-Parser",
"license" : "BSD-3-Clause",
"authors" : [{
"name" : "Justin Swanhart",
"email" : "[email protected]",
"homepage" : "http://code.google.com/u/[email protected]/",
"role" : "Owner"
}, {
"name" : "André Rothe",
"email" : "[email protected]",
"homepage" : "https://www.phosco.info",
"role" : "Committer"
}
],
"support" : {
"issues" : "https://github.com/greenlion/PHP-SQL-Parser/issues",
"source" : "https://github.com/greenlion/PHP-SQL-Parser"
},
"autoload" : {
"psr-0" : {
"PHPSQLParser\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"PHPSQLParser\\Test\\" : "tests/cases/"
}
},
"require" : {
"php" : ">=5.3.2"
},
"require-dev" : {
"squizlabs/php_codesniffer" : "^2.8.1",
"phpunit/phpunit" : "^9.5.13",
"analog/analog" : "^1.0.6"
}
}