PHP code example of campaigningbureau / cf-repository-generator
1. Go to this page and download the library: Download campaigningbureau/cf-repository-generator 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/ */
campaigningbureau / cf-repository-generator example snippets
/*
* Package Service Providers...
*/
CampaigningBureau\CfRepositoryGenerator\CfRepositoryGeneratorServiceProvider::class,
return [
'paths' => [
'contracts' => 'Repositories/Contracts/',
'repositories' => 'Repositories/',
'caching-repositories' => 'Repositories/Caching/',
'models' => 'Models/',
'factories' => 'Factories/',
'fake-data' => 'FakeData/',
],
];
bash
$ php artisan vendor:publish --provider="CampaigningBureau\CfRepositoryGenerator\CfRepositoryGeneratorServiceProvider"