summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-07-26 08:55:07 +0200
committerRemi Collet <fedora@famillecollet.com>2016-07-26 08:55:07 +0200
commit1506adcd3862f0d58f9bbf2c2a71f619314d239e (patch)
tree2705e3830ff08b84e60250ceab10f2a42f2b6926 /composer.json
parent3306cd5598623bc107df7b040516328d06b995b8 (diff)
php-udan11-sql-parser: 3.4.4
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..d3d3f17
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,34 @@
+{
+ "name": "phpmyadmin/sql-parser",
+ "description": "A validating SQL lexer and parser with a focus on MySQL dialect.",
+ "license": "GPL-2.0+",
+ "keywords": ["sql", "lexer", "parser", "analysis"],
+ "homepage": "https://github.com/phpmyadmin/sql-parser",
+ "authors": [
+ {
+ "name": "The phpMyAdmin Team",
+ "email": "developers@phpmyadmin.net",
+ "homepage": "https://www.phpmyadmin.net/team/"
+ }
+ ],
+ "support": {
+ "issues": "https://github.com/phpmyadmin/sql-parser/issues",
+ "source": "https://github.com/phpmyadmin/sql-parser"
+ },
+ "require": {
+ "php": ">=5.4.0"
+ },
+ "require-dev": {
+ "phpunit/php-code-coverage": "~2.0 || ~3.0",
+ "phpunit/phpunit": "~4.8 || ~5.1"
+ },
+ "bin": [
+ "bin/highlight-query",
+ "bin/lint-query"
+ ],
+ "autoload": {
+ "psr-4": {
+ "SqlParser\\": "src"
+ }
+ }
+}