LaravelPackages.net
Acme Inc.
Toggle sidebar
lifeeka/jsql

Convert Json Object to SQL.

471
2
About lifeeka/jsql

lifeeka/jsql is a Laravel package for convert json object to sql.. It currently has 2 GitHub stars and 471 downloads on Packagist. Install it with composer require lifeeka/jsql. Discover more Laravel packages by lifeeka or browse all Laravel packages to compare alternatives.

Last updated


Build Status StyleCI Scrutinizer Code Quality Code Intelligence Status Latest Stable Version Total Downloads License

JSQL

Convert Json Object to SQL.

Installation

composer require lifeeka/jsql:dev-master

Usage

<?php

    $config['host'] = '127.0.0.1';
    $config['db'] = 'test';
    $config['username'] = 'test';
    $config['password'] = 'test';
    
    $Client = new Lifeeka\JSQL\Client($config);
    $Client->loadFile('sample/sample2.json');
    $Client->migrate();
        

Tests

./vendor/bin/phpunit

Contributing

Contributions are welcome! 😍

Todos

  • Convert SQL to Json

License

This project is licensed under the MIT License

Comments