spkm/clear-pass

Integrate with the ClearPass Guest API using SaloonPHP

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/spkm/clear-pass

v1.0.3 2025-03-04 14:20 UTC

This package is auto-updated.

Last update: 2025-10-04 15:30:23 UTC


README

Banner

A PHP package for managing Guest WiFi users on Aruba ClearPass.

Installation and usage

This package requires PHP 8.3 & Laravel 11.0 or higher. See the tests/ folder for documentation.

Basic Installation

You can install this package via composer using:

composer require spkm/clear-pass

Publish the config file with:

php artisan vendor:publish --provider="spkm\ClearPass\ClearPassServiceProvider"

Usage

use spkm\ClearPass\Facades\ClearPass;
use spkm\ClearPass\Requests\GetGuestUsersRequest;

$paginator = ClearPass::paginate(new GetGuestUsersRequest());

foreach ($paginator as $response) {
    $response->json();
}

Security

If you discover any security related issues, please email hello@spkmitchell.co.uk instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.