#Query Query, the easy to use MySQL query builder.
Install with Composer
I you have not installed Composer yet, follow the instructions on Composer website.
To install Query package with Composer, simply add the requirement to your composer.json file:
{
"require" : {
"tunnela/query" : "dev-master"
}
}
If this is the first time you use Composer, change to your PHP application directory and run the following command:
$ php composer.phar install
and require autoloader somewhere at the start of your PHP application:
require 'vendor/autoload.php';
If this is is not the first time you use Composer, you probably already knew that you should run:
$ php composer.phar update
- Basic usage instructions
- Tests