Download the PHP package browner12/helpers without Composer
On this page you can find all versions of the php package browner12/helpers. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download browner12/helpers
More information about browner12/helpers
Files in browner12/helpers
Package helpers
Short Description generic helpers
License MIT
Homepage https://github.com/browner12/helpers
Informations about the package helpers
Helpers
This is a helpers package that provides some built in helpers, and also provides an Artisan generator to quickly create your own custom helpers.
Install
Via Composer
Setup
Add the service provider to the providers array in config/app.php
.
If you are using Laravel's automatic package discovery, you can skip this step.
Publishing
You can publish everything at once
or you can publish groups individually.
Usage
This package comes with some built in helpers that you can choose to use or not. By default all of these helpers are inactive for your application. To adjust which helpers are active and which are inactive, open config/helpers.php
and find the package_helpers
option. Add any helpers you wish to activate to this key. Check the source code to see what functions are included in each helper and what each does.
You can also create your own custom helpers for inclusion in your application. An Artisan generator helps you quickly make new helpers for your application.
Your custom helper will be placed in app/Helpers
, unless you override the default directory in your configuration.
By default, the service provider uses the glob
function to automatically require any PHP files in the 'Helpers' directory. If you prefer a mapper based approach, you may edit the custom_helpers
in the configuration file, and include the file name of any helpers in your custom directory you wish to activate. Within the new helper, define your own custom functions that will be available throughout your application.
Change log
Please see CHANGELOG for more information what has changed recently.
Testing
Contributing
Please see CONDUCT for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
- Andrew Brown
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of helpers with dependencies
illuminate/console Version ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
illuminate/contracts Version ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
illuminate/support Version ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0