2017 © Pedro Peláez
 

library lumen-helpers

generic helpers for Lumen

image

neverbehave/lumen-helpers

generic helpers for Lumen

  • Saturday, January 6, 2018
  • by NeverBehave
  • Repository
  • 1 Watchers
  • 0 Stars
  • 22 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 28 Forks
  • 0 Open issues
  • 13 Versions
  • 83 % Grown

The README.md

Helpers

This is a helpers package that provides some built in helpers, and also provides an Artisan generator (while lumen somehow won't provided in default?) to quickly create your own custom helpers., (*1)

Install

Via Composer, (*2)

``` bash $ composer require neverbehave/helpers, (*3)


## Setup Add the service provider to the providers array in `bootstrap/app.php`. ``` php $app->register(neverbehave\helpers\HelperServiceProvider::class);

If you are using Laravel's automatic package discovery, you can skip this step., (*4)

Publishing

You can publish everything at once, (*5)

``` php php artisan vendor:publish --provider="neverbehave\helpers\HelperServiceProvider", (*6)


or you can publish groups individually. ``` php php artisan vendor:publish --provider="neverbehave\helpers\HelperServiceProvider" --tag="config"

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., (*7)

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., (*8)

``` sh php artisan make:helper MyHelper, (*9)


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. ``` php if (!function_exists('hello')) { /** * say hello * * @param string $name * @return string */ function hello($name) { return 'Hello ' . $name . '!'; } }

Change log

Please see CHANGELOG for more information what has changed recently., (*10)

Testing

bash $ composer test, (*11)

Contributing

Please see CONTRIBUTING and CONDUCT for details., (*12)

Security

If you discover any security related issues, please email browner12@gmail.com instead of using the issue tracker., (*13)

Credits

License

The MIT License (MIT). Please see License File for more information., (*14)

The Versions

06/01 2018

dev-master

9999999-dev https://github.com/NeverBehave/lumen-helpers

generic helpers for Lumen

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar NeverBehave

helpers lumen neverbehave

06/01 2018
06/01 2018