Import MySQL database backup files easily with MySQL Import
Run:
$ git clone https://github.com/thamaraiselvam/mysql-import.git
$ cd mysql-import
$ composer install
This will setup the library dependencies for you.
To run tests, run
$ composer phpunit
To ensure your code is following the coding style, run
$ composer phpcs
Using composer include the repository by typing the following into a terminal
composer require thamaraiselvam/mysql-import
Include the composer autoloader, import the Import namespace.
<?php
require('vendor/autoload.php');
use Thamaraiselvam\MysqlImport\Import;
$filename = 'database.sql';
$username = 'root';
$password = '';
$database = 'sampleproject';
$host = 'localhost';
new Import($filename, $username, $password, $database, $host);