There are 4 types of associations(relationships) we can define in CakePHP
class PostsTable extends Table {
    public function initialize(array $config) {
        // table initialization code should be here
        $this->belongsTo('Authors', [
            'className' => 'Authors',
 ...