alphavel/support

Support utilities for Alphavel Framework

Maintainers

Package info

github.com/alphavel/support

pkg:composer/alphavel/support

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.0 2025-11-26 15:47 UTC

This package is auto-updated.

Last update: 2026-03-27 01:30:31 UTC


README

Helper functions and collections

PHP Version License

✨ Features

  • 📦 Collections - 40+ methods for data manipulation
  • 🛠️ Helper functions - Utility functions
  • 🎯 Laravel-compatible - Familiar API
  • 🚀 Fast - Minimal overhead

📦 Installation

composer require alphavel/support

🚀 Quick Start

use function collect;

$collection = collect([1, 2, 3, 4, 5]);

$result = collect($users)
    ->where('active', true)
    ->sortBy('name')
    ->pluck('email')
    ->unique()
    ->toArray();

// Available methods:
// map, filter, reduce, sum, avg, max, min, count, chunk,
// groupBy, sortBy, pluck, where, first, last, random, etc.

📚 Documentation

Full documentation: https://github.com/alphavel/documentation/blob/master/packages/support/README.md

📄 License

MIT License