2017 © Pedro Peláez
 

library helpers

generic helpers

image

browner12/helpers

generic helpers

  • Friday, February 9, 2018
  • by browner12
  • Repository
  • 8 Watchers
  • 155 Stars
  • 41,271 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 28 Forks
  • 0 Open issues
  • 13 Versions
  • 16 % Grown

The README.md

Helpers

Latest Version on Packagist ![Software License][ico-license] Build Status ![Coverage Status][ico-scrutinizer] Quality Score ![Total Downloads][ico-downloads], (*1)

This is a helpers package that provides some built in helpers, and also provides an Artisan generator to quickly create your own custom helpers., (*2)

Install

Via Composer, (*3)

``` bash $ composer require browner12/helpers, (*4)


## Setup Add the service provider to the providers array in `config/app.php`. ``` php 'providers' => [ browner12\helpers\HelperServiceProvider::class, ];

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

Publishing

You can publish everything at once, (*6)

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


or you can publish groups individually. ``` php php artisan vendor:publish --provider="browner12\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., (*8)

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

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


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

Testing

bash $ composer test, (*12)

Contributing

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

Security

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

Credits

License

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

The Versions