Classes and utils for Auth
- Feature 1
- Feature 2
- Feature 3
- PHP 8.3 or higher
- Composer
Install via Composer:
composer require zestic/auth-libraryRemove Example Code: Run composer remove-example to remove the Calculator example and get a clean slate.
<?php
use Zestic\Auth\YourClass;
// Basic usage example
$instance = new YourClass();
$result = $instance->doSomething();// Example 1: Basic functionality
$example = new YourClass();
$result = $example->method();// Example 2: Advanced functionality
$example = new YourClass([
'option1' => 'value1',
'option2' => 'value2',
]);For complete API documentation, see docs/ or visit your-docs-site.com.
Run the test suite:
composer testRun tests with coverage:
composer test:coverageThis project uses several tools to maintain code quality:
# Run all quality checks
composer quality
# Fix code style issues
composer cs-fix
# Run static analysis
composer phpstanPlease see CONTRIBUTING.md for details on how to contribute to this project.
If you discover any security-related issues, please see SECURITY.md for information on how to report them.
Please see CHANGELOG.md for more information on what has changed recently.
This project is licensed under the Apache License 2.0. Please see LICENSE for more information.