Skip to content

Instantly share code, notes, and snippets.

@wfurphy
Forked from mabasic/helpers.php
Last active April 9, 2017 09:10
Show Gist options
  • Save wfurphy/5ef2c2f576feb2d7475093f8b1d00757 to your computer and use it in GitHub Desktop.
Save wfurphy/5ef2c2f576feb2d7475093f8b1d00757 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() . DIRECTORY_SEPARATOR . 'config' . ( $path ? DIRECTORY_SEPARATOR . $path : $path );
}
}

Instructions

Create a file called helpers.php in the app/Support/ 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/Support/helpers.php"
    ]
},

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

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