benefits-me/php-api-auth

Package to authenticate against Benefits.me API

Maintainers

Package info

github.com/Benefits-me/php-api-auth

pkg:composer/benefits-me/php-api-auth

Statistics

Installs: 1 019

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.0.6 2026-03-13 09:30 UTC

This package is auto-updated.

Last update: 2026-03-13 09:34:43 UTC


README

Installation

Require Package

composer require benefits-me/php-api-auth

Publish provider and configuration

php artisan vendor:publish --provider="BenefitsMe\ApiAuth\Provider\AuthServiceProvider"

Project Structure

/
├── config/                  # Configuration files (e.g. api-auth.php)
├── src/                     # Library source code
│   ├── Enums/               # Enum types
│   ├── Exceptions/          # Custom exception classes
│   ├── Provider/            # Service providers (e.g. AuthServiceProvider)
│   └── Services/            # Service classes (e.g. AuthService)
├── tests/                   # PEST unit and feature tests
│   ├── Feature/             # Feature tests
│   ├── Unit/                # Unit tests
│   ├── Pest.php             # PEST bootstrap file
│   └── TestCase.php         # Base test class
├── vendor/                  # Composer dependencies (auto-generated)
├── composer.json            # Composer configuration file
├── composer.lock            # Composer lock file
├── phpunit.xml              # PHPUnit configuration
├── README.md                # Project documentation
└── LICENSE                  # License file