PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Marco Cesarato   Light PHP SQL Parser Class   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Light PHP SQL Parser Class
Parse SQL to get query type, tables, field values
Author: By
Last change: Composer autoload
Update composer.json
Date: 3 years ago
Size: 775 bytes
 

Contents

Class file image Download
{ "name": "marcocesarato/sqlparser", "description": " This class can parse SQL to get query type, tables, field values, etc.. It takes an string with a SQL statements and parses it to extract its different components. Currently the class can extract the SQL query method, the names of the tables involved in the query and the field values that are passed as parameters. This parser is pretty light respect phpsqlparser or others php sql parser.", "type": "library", "license": "GPL-3.0-or-later", "minimum-stability": "stable", "authors": [ { "name": "Marco Cesarato", "email": "cesarato.developer@gmail.com" } ], "autoload": { "psr-4": { "marcocesarato\\sqlparser\\": "src" } }, "require": { "php": ">=4.0.0" } }