just another package manager for laravel
nothing more and nothing less
but if you want to use it you are welcome
In an ideal world we will all be the standard,
But it's also true that if there were a standard, our project wouldn't be the only one, wouldn't it?
Starting from this we can say that it is not always possible to make things according to the existing standard, or simply for the 'company' logic this is not possible
The purpose of this library is to provide a tool without forcing you to necessarily follow the rules decided at the start, if you want you can write your own logic if necessary and expect that nothing will 'break'
Also, because you can't think about what you need before you need it 😉
composer require gianfriaur/package-loader
php artisan vendor:publish --provider="Gianfriaur\PackageLoader\PackageLoaderServiceProvider"
- TODO:DOC: package in directory + json file retrieve method
- TODO:DOC: package in vendor + json file retrieve method
- If it is useful you can manage the migrations of your packages in a parallel way from those of laravel TODO:DOC: configure vault migration_strategy
You can find the full documentation at this location
I have tried to reduce loading times to reasonably low times
obtaining good results
- Load 10 packages : ~2 milliseconds
- Load 100 packages : ~10 milliseconds
- Load 1000 packages : ~400 milliseconds
you can find the stress test in this test: tests/Stress/StressTest.php
Since PackageProvider extends ServiceProvider we can wonder why it has been given the possibility
to use a strategy specifically to load translations instead of using directly $this->loadTranslationsFrom($path,$namespace);
There is a very simple answer to this legitimate question, if for each PackageProvider it is necessary
to individually register a callback to the afterResolving
and check if the 'translator' service has
been resolved and then load the translations, this as the packages increase can cause a drop in performance.
Yes it is true of just ~50 milliseconds for 100 packets
With the DefaultLocalizationStrategy
Service this is done only once leaving only the time to read the files
But hey, there is, using it costs you nothing, but you save some time in requests
In the future there will be a command that will be loaded by the strategy that will allow you in production to collapse all the translation files of all the packages into a single one so that I could further reduce the times for loading all the translation files
-
- Configuration
- New strategy
JsonConfigurationStrategyService
- New strategy
JollyConfigurationStrategyService
- New strategy
- New Features
- New kind of strategy
ViewStrategyService
- New kind of strategy
- Configuration
-
- Localization
- Production Compress Localization Command
- Configuration
- New strategy
DatabaseConfigurationStrategyService
- New strategy
- Localization
-
- Configuration
- Production Compress Configuration Command
- Configuration