t20n / larabelt
This package is abandoned and no longer maintained.
No replacement package was suggested.
A set of helper methods for laravel
v1.0.1
2016-10-13 23:22 UTC
Requires
- php: >=5.4.0
- illuminate/support: ^5.3
Requires (Dev)
- phpunit/phpunit: ^5.5
This package is not auto-updated.
Last update: 2024-11-01 21:01:40 UTC
README
Larabelt is a toolbelt for Laravel, a set of helper classes that I usually need for my day to day development.
I publish this hoping that someone will find it useful too. I you encounter any bug feel free to open an issue.
This package is intended to work with laravel, so some methods will not work without it.
Some classes of the package extend existing Laravel Facades such as File
and Log
. Some others extend helper classes that doesn't have a facade such as Str
or Arr
.
Install
composer require t20n/larabelt
- For the classes that extend facades replace this from the
aliases
array inconfig/app.php
of your laravel install:'DB' => T20n\Larabelt\DB::class,
'File' => T20n\Larabelt\File::class,
'Log' => T20n\Larabelt\Log::class,
'URL' => T20n\Larabelt\URL::class,
Usage
@todo