├── .php-cs-fixer.dist.php ├── LICENSE ├── composer.json ├── config └── collection-macros.php └── src ├── CollectionMacrosServiceProvider.php └── Macros ├── Decrement.php ├── Increment.php ├── Krsort.php ├── Ksort.php └── Recursive.php /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebeetlept/laravel-collection-macros/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebeetlept/laravel-collection-macros/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebeetlept/laravel-collection-macros/HEAD/composer.json -------------------------------------------------------------------------------- /config/collection-macros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebeetlept/laravel-collection-macros/HEAD/config/collection-macros.php -------------------------------------------------------------------------------- /src/CollectionMacrosServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebeetlept/laravel-collection-macros/HEAD/src/CollectionMacrosServiceProvider.php -------------------------------------------------------------------------------- /src/Macros/Decrement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebeetlept/laravel-collection-macros/HEAD/src/Macros/Decrement.php -------------------------------------------------------------------------------- /src/Macros/Increment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebeetlept/laravel-collection-macros/HEAD/src/Macros/Increment.php -------------------------------------------------------------------------------- /src/Macros/Krsort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebeetlept/laravel-collection-macros/HEAD/src/Macros/Krsort.php -------------------------------------------------------------------------------- /src/Macros/Ksort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebeetlept/laravel-collection-macros/HEAD/src/Macros/Ksort.php -------------------------------------------------------------------------------- /src/Macros/Recursive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebeetlept/laravel-collection-macros/HEAD/src/Macros/Recursive.php --------------------------------------------------------------------------------