americanreading/utilities

There is no license information available for the latest version (v1.3) of this package.

PHP Utilities

v1.3 2025-08-21 20:18 UTC

This package is auto-updated.

Last update: 2025-08-21 20:19:26 UTC


README

A small library of PHP utility classes.

Installation

To install this library, add it as a Composer dependency:

 {
   "require": {
      "americanreading/utilities": "^1"
   }
}

Development

Use Docker Compose to run phpunit and composer locally.

# Build images
docker compose build

# Install Composer dependencies
docker compose run --rm php composer install

# Start the services
docker compose up -d

Unit Tests

Use PHPUnit in the php service to run unit tests.

docker compose run --rm php phpunit