Skip to content

Instantly share code, notes, and snippets.

@mabasic
Last active April 27, 2024 14:07
Show Gist options
  • Star 69 You must be signed in to star a gist
  • Fork 16 You must be signed in to fork a gist
  • Save mabasic/21d13eab12462e596120 to your computer and use it in GitHub Desktop.
Save mabasic/21d13eab12462e596120 to your computer and use it in GitHub Desktop.
config_path function for Lumen framework
<?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);
}
}

Instructions

Create a file called helpers.php in the app/ directory. Paste the code inside it.

Go to composer.json and add files to autoload so that it looks like this:

"autoload": {
    "psr-4": {
        "App\\": "app/"
    },
    "files": [
        "app/helpers.php"
    ]
},

Run composer dump-autoload to load the newly created helpers file.

@alekaka
Copy link

alekaka commented Feb 18, 2022

Thank you

@nicktencate
Copy link

Thanks :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment