Download the PHP package konsulting/laravel-extend-collections without Composer
On this page you can find all versions of the php package konsulting/laravel-extend-collections. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download konsulting/laravel-extend-collections
More information about konsulting/laravel-extend-collections
Files in konsulting/laravel-extend-collections
Package laravel-extend-collections
Short Description A few extensions to the Laravel Collection and Arr.
License MIT
Informations about the package laravel-extend-collections
Laravel Extend Collections
A few extensions to the Laravel Collection and Arr.
Installation
composer require konsulting/laravel-extend-collections
Using Laravel
If you are using Laravel 5.5, this package will auto-register the service provider.
However, if you have chosen not to auto-register, or are using an earlier version,
add the CollectionsServiceProvider
to your config/app.php
.
Not using Laravel
There is a simple namespaced helper function to assist with extending Collection and Arr.
Arr Extensions
fromDot
- convert an array where the keys are dot-notation indexed to a nested array
Collection extensions
dropEmpty
- drop items whose values areempty()
deep
- apply a function recursively through a collection, and through arrays/collections within itdotGet
- retrieve an item using dot-notationdotSet
- set an item using dot-notationdotHas
- check if an item exists using dot-notationdot
- convert a nested collection to dot-notation indexed collectionfromDot
- convert a dot-notation indexed collection to a nested collection
Contributing
Contributions are welcome and will be fully credited. We will accept contributions by Pull Request.
Please:
- Use the PSR-2 Coding Standard
- Add tests, if you’re not sure how, please ask.
- Document changes in behaviour, including readme.md.
Testing
We use PHPUnit
Run tests using PHPUnit: vendor/bin/phpunit