americanreading / utilities
There is no license information available for the latest version (v1.1) of this package.
PHP Utilities
v1.1
2023-02-14 20:15 UTC
Requires
- ext-pdo: *
Requires (Dev)
- phpunit/phpunit: ^9
This package is auto-updated.
Last update: 2025-03-15 00:30:23 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