-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
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
[Feature] Directives configuration file #1932
Comments
Maybe at some point I'll create an application container and you can register a proper serviceprovider for things like this, similar to how things are done in Laravel. Until then i'd say to just create a new file if you want a bunch of directives and load that file (from functions.php or whatever) or toss your directives in setup.php if you feel so inclined. |
An application container that can register ServiceProviders would be excellent. It'd be nice to be able to use the various Blade extensions as well as be able to depreciate my shitty blade-svg-sage plugin. Although I suppose it'd still require renaming |
+5000 for app container. Some of our sites have a lot of application code. We abstract as much as possible to private packages but at some point you have to wire up your dependencies and right now the amount of factory classes I have on this one project is just about killing me 😂 . An app container would be amazing and if you're open to it it's something I would be down to take a stab at. |
Huge 👍 too! |
@LeoColomb The easiest way would be to include the entire Laravel Framework. The Application container is actually in What Laravel Lumen is doing, is they cherry-picked some components out of Illuminate/Foundation and reworked them. This may be a good starting point for creating a custom Sage Application container, but it is still a lot of work. @kaisermann @Log1x I have created an extension package for Sage 9 that has built-in Blade directives plus a config file where you can add your own directives. See my GitHub repo Sage Xpress. One special directive |
There are other container options out there, such as PHP-DI. No need to go overkill with the Laravel dependencies in order to rework a couple things and wire up something like PHP-DI. |
@samrap Sage is already dependent on My intent for that repo is to extend Sage in its current state. |
Submit a feature request or bug report
What is the current behavior?
Currently there's no convenient way and place to put custom directives (the
@asset
is created at the end of theapp/setup.php
)What is the expected or desired behavior?
It would be good to have something like
config/directives.php
. See ExampleFeature Request
Please provide use cases for changing the current behavior:
It's easier and clearer to define directives in a dedicated file.
Part of my current
directives.php
:Other relevant information:
If wanted, I can make a pull request 😃
The text was updated successfully, but these errors were encountered: