A description of what the package is and what it does.
Requires PHP ^8.3
You can install the package via composer:
composer require codelabmw/package-name
Instructions on how the package should and can be used including code examples.
<?php
declare(strict_types=1);
namespace Codelabmw\Package;
final class Example
{
/**
* Creates Example instance.
*/
public function __construct(private readonly Package $package)
{
$package->doSomething();
}
}
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.