diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-11-18 12:11:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-11-18 22:53:48 +0300 |
commit | 05ea79929aa099d25b543f4a86db721f5f7e700e (patch) | |
tree | ea79ae74ce0aef63f5503a5c4f4258e622be354a /tools/php-sqllint/composer.json | |
parent | 61e6b22b12cb66bd3bb6bc1268228ea7d5e2519b (diff) | |
download | hercules-05ea79929aa099d25b543f4a86db721f5f7e700e.tar.gz hercules-05ea79929aa099d25b543f4a86db721f5f7e700e.tar.bz2 hercules-05ea79929aa099d25b543f4a86db721f5f7e700e.tar.xz hercules-05ea79929aa099d25b543f4a86db721f5f7e700e.zip |
Add phpsqllint for check sql queries
Diffstat (limited to 'tools/php-sqllint/composer.json')
-rw-r--r-- | tools/php-sqllint/composer.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/php-sqllint/composer.json b/tools/php-sqllint/composer.json new file mode 100644 index 000000000..bde2da14d --- /dev/null +++ b/tools/php-sqllint/composer.json @@ -0,0 +1,22 @@ +{ + "name": "cweiske/php-sqllint", + "description": "Command line tool to validate (syntax check) SQL files", + "type": "project", + "bin": ["bin/php-sqllint"], + "require": { + "phpmyadmin/sql-parser": "^4.1.1", + "pear/console_commandline": "^1.2" + }, + "homepage": "http://cweiske.de/php-sqllint.htm", + "license": "AGPL-3.0", + "authors": [ + { + "name": "Christian Weiske", + "email": "cweiske@cweiske.de", + "homepage": "http://cweiske.de/" + } + ], + "support": { + "issues": "https://github.com/cweiske/php-sqllint/issues" + } +} |