summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2017-01-23 13:38:19 +0100
committerRemi Collet <fedora@famillecollet.com>2017-01-23 13:38:19 +0100
commite20a8b3b37f02df6630f6671a90fd0afb0a99af8 (patch)
tree8cee834988ba3e69f856aeec5b031a36c46b5894 /composer.json
php-phpmyadmin-sql-parser: 4.0.0, New package
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json40
1 files changed, 40 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..e03da1b
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,40 @@
+{
+ "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.3.0",
+ "ext-mbstring": "*"
+ },
+ "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": {
+ "PhpMyAdmin\\SqlParser\\": "src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "PhpMyAdmin\\SqlParser\\Tests\\": "tests"
+ }
+ }
+}