PHP code example of kodebyraaet / generators

1. Go to this page and download the library: Download kodebyraaet/generators 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/ */

    

kodebyraaet / generators example snippets

 
  +-- App  
  |   +-- Entities
  |      +-- Project
  |         +-- Contracts
  |            +-- ProjectInterface.php
  |         +-- Models
  |            +-- Project.php
  |            +-- Person.php
  |            +-- Job.php
  |         +-- Repositories
  |            +-- ProjectRepository.php
  |         +-- ProjectServiceProvider.php
  +-- database
  |   +-- migrations
  |      +-- 2015_08_19_110000_Create_Projects_table.php
  |   +-- seeds
  |      +-- ProjectTableSeeder.php