mahmud / laravel-utilities
Bunch of Laravel utilities those are not included to the core of the framework
2.0.0
2020-03-09 17:55 UTC
Requires
Requires (Dev)
- mockery/mockery: ^1.1
- orchestra/testbench: ~5
- phpunit/phpunit: ^8.0
- sempro/phpunit-pretty-print: ^1.0
This package is auto-updated.
Last update: 2024-10-29 22:29:03 UTC
README
Version Compatibility
Installation
Via Composer
$ composer require mahmud/laravel-utilities ^2.0.0
Usage
ASCII validation rule
use Illuminate\Support\Facades\Validator; $validator = Validator::make(['foo' => 'বার'], ['foo' => new Ascii()]); $validator->fails() // true
Hash Check validation rule
use Illuminate\Support\Facades\Validator; $hashedPassword = bcrypt('123456'); $validator = Validator::make(['password' => '123456'], ['password' => 'hash_check:' . $hashedPassword]); $validator->passes() // true
number
function
number($number, $decimal = 2) echo number(7.236) // 7.24 echo number(3.14159, 4) // 3.1416 echo (3.14159, 0) // 3.0
Change log
Please see the changelog for more information on what has changed recently.
Testing
$ vendor/bin/phpunit
Contributing
Please see contributing.md for details and a todolist.
Security
If you discover any security related issues, please email author email instead of using the issue tracker.
License
license. Please see the license file for more information.