PHP code example of hskyzhou / repository

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

    

hskyzhou / repository example snippets


'providers' => [
    ...
    HskyZhou\Repository\ServiceProvider::class,
],

'providers' => [
    ...
	App\Providers\RepositoryServiceProvider::class,
],

php artisan make:entity Test

php artisan make:process Test

php artisan make:service Test

php artisan make:presenter Test
terminal
php artisan vendor:publish --tag=config --provider "HskyZhou\Repository\ServiceProvider"