Package Data | |
---|---|
Maintainer Username: | boynii |
Maintainer Contact: | sirichai.jan@ascendcorp.com (boy) |
Package Create Date: | 2019-07-03 |
Package Last Update: | 2022-08-08 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-04-14 15:03:04 |
Package Statistics | |
---|---|
Total Downloads: | 12 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 0 |
Total Forks: | 0 |
Total Open Issues: | 0 |
For repository patten design under lumen framework
composer
composer require boynii/Lumetor
add the Provider to the providers array in bootstrap/app.php
$app->register(Lumetor\Providers\LumetorProvider::class);
You can add helpers folder in app folder and add helpers.php
<?php
if ( ! function_exists('config_path'))
{
/**
* Get the configuration path.
*
* @param string $path
* @return string
*/
function config_path($path = '')
{
return app()->basePath() . '/config' . ($path ? '/' . $path : $path);
}
}
then add this to composer.json
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers/helpers.php"
]
},
then run,
composer dump-autoload
$ php artisan boynii:genfile
append .env
file
$ php boynii:copy-env
for copy migration file to dastabase/migrations/
$ php boynii:copy-migration