Where to export models to in Skipper18?

Hii there,
This might be a bit of a dumb question, but I’ve created a simple schema for CakePHP in Skipper18 that looks like this:
schema

Now my question is (as the title suggests), where do I export it to?
I have set the format to CakePHP but don’t know where I should make the export path point to.
I have read the documentation and googled around, but couldn’t find an answer.
I think it’s src/Model, but then there are 3 directories called Behaviour, Entity and Table.
I’m using CakePHP 3.6.

This is an example of how the generated code by Skipper18 looks like:

Users.php:

<?php
require_once 'base/base_users.php';
/**
* Users object
*
* This class has been auto-generated by ORM Designer
*/

class Users extends BaseUsers
{
}
?>

base/base_users.php:

<?php
/**
* Base Users object
*
* This class has been auto-generated by ORM Designer (http://www.skipper18.com)
*/

class BaseUsers extends AppModel
{
  public $name = 'Users';
  public $primaryKey = 'ID';
  public $_schema = 
	array (
	  'ID' => 
		array (
		  'type' => 'integer',
		  'null' => false
		),
	  'Username' => 
		array (
		  'null' => false
		),
	  'Email' => 
		array (
		  'null' => false
		),
	  'Password' => 
		array (
		  'null' => false
		)
	);
  public $hasOne = 
	array (
	  'UserDetails' => 
		array (
		  'className' => 'UserDetails',
		  'foreignKey' => 'UID'
		)
	);
}
?>

Looking at Skipper, it looks like it only supports CakePHP 2.x and not 3.x (Especially since the code you’ve shown uses CakePHP 2.x code). The code you’ve shown also doesn’t follow any of the CakePHP conventions (Remember, CakePHP is a “Convention over Configuration” framework).

You definately can still use Skipper to design your database (Just make sure that you follow the conventions). Then export the database design into SQL and use the built in CakePHP bake tool to generate the code.

I have forwarded the issue to the Skipper devs.
They said they didn’t look into CakePHP lately as there was no demand (since most people are moving to Doctorine2 lately).
However, they are going to look into it.

For now, I’ll just use the bake tool and hope I succeed with using that.