1. Go to this page and download the library: Download dcarbone/camel library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dcarbone / camel example snippets
use \DCarbone\Camel\Camel;
$camel = new Camel();
// Returns a \DCarbone\Camel\Hump\Where instance that is attached to $camel
$camel->where();
// Alternatively...
$where = new \DCarbone\Camel\Hump\Where();
$camel->setWhere($where);