1. Go to this page and download the library: Download conceptte/testcrm 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/ */
public static function create(): RouteList
{
$group = new RouteList();
$minicrm = (new RouteList('MiniCRM'))->add(CustomersRouteFactory::create());
$api = (new RouteList('MiniCRMAPI'))->add(ApiRouteFactory::create());
$group
->add($minicrm)
->add($api);
return $group;
}
bash
php vendor/conceptte/minicrm/database/schema.php
#basically it: mysql < vendor/conceptte/minicrm/database/schema.sql
php vendor/conceptte/minicrm/database/seed.php # optional - adds test data
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.