We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Offer a better way for defining path groups and relative paths.
So, maybe allow $app->addPath('config', '{base}/config') and even if the base path changes or is redefined, the config path will still be valid.
$app->addPath('config', '{base}/config')
The text was updated successfully, but these errors were encountered:
In addition, Paths should also be managed in a separate class and with an interface. Might even make a new repo for the paths.
Sorry, something went wrong.
Maybe define paths like
$app->addPath('config', 'base', '/config') // or $app->addPath('config', ['base', '/config'])
No branches or pull requests
Offer a better way for defining path groups and relative paths.
So, maybe allow
$app->addPath('config', '{base}/config')
and even if the base path changes or is redefined, the config path will still be valid.The text was updated successfully, but these errors were encountered: