A collection of useful PHP utility classes to simplify common tasks and enhance application development.

Maintainers

👁 amasiye

Package info

github.com/assegaiphp/util

pkg:composer/assegaiphp/util

Statistics

Installs: 376

Dependents: 4

Suggesters: 0

Stars: 0

Open Issues: 0

0.9.1 2026-04-26 02:13 UTC

Requires

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 9d50d5492578d68053981c506704b9a88deab1d2

  • Andrew Masiye <amasiye313.woop@gmail.com>

This package is auto-updated.

Last update: 2026-06-26 03:23:26 UTC


README

👁 Assegai Logo

👁 Latest release
👁 Tests
👁 PHP 8.4+
👁 License
👁 Status active

A progressive PHP framework for building effecient and scalable server-side applications.

Description

The Assegai Util package is a PHP package that provides a collection of utility classes to simplify common tasks and enhance application development. It includes various utility classes that can be used to perform common tasks, such as working with arrays, strings, dates, and more.

Installation

The recommended way to install assegaiphp/util is through Composer. Run the following command in your terminal:

composer require assegaiphp/util

Usage

Once you have installed assegaiphp/util, you can start using its utility classes by simply importing them into your PHP code. For example, to use the ArrayUtil class, you would add the following line at the top of your PHP file:

use Assegai\Util\ArrayUtil;

$numericArray = [1, 2, 3, 4, 5];

if (ArrayUtil::contains($numericArray, 3)) {
 echo 'The array contains the value 3.';
} else {
 echo 'The array does not contain the value 3.';
}

You can then call any of the static methods of the ArrayUtil class to perform various array-related tasks.

Contribution workflow

For commit and pull request conventions in this repo, see:

Contributing

Contributions are welcome! If you find a bug or would like to request a new feature, please open an issue on the GitHub repository. If you would like to contribute code, please fork the repository and submit a pull request.

License

assegaiphp/util is licensed under the MIT License. See the LICENSE file for more information.