PHPackages                             springfieldclinic/laravel-admanager-plus-sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. springfieldclinic/laravel-admanager-plus-sdk

ActiveLibrary[API Development](/categories/api)

springfieldclinic/laravel-admanager-plus-sdk
============================================

A Laravel package that integrates the ADManager Plus REST API as an SDK

010PHPCI passing

Since Aug 4Pushed 9mo agoCompare

[ Source](https://github.com/SpringfieldClinic/laravel-admanager-plus-sdk)[ Packagist](https://packagist.org/packages/springfieldclinic/laravel-admanager-plus-sdk)[ RSS](/packages/springfieldclinic-laravel-admanager-plus-sdk/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

A Laravel package that integrates the ADManager Plus REST API as an SDK
=======================================================================

[](#a-laravel-package-that-integrates-the-admanager-plus-rest-api-as-an-sdk)

[![Latest Version on Packagist](https://camo.githubusercontent.com/4899a051aa004334aa6d07f8312e2ac4a07af49ba8713aa8fd65c162dd250ee0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f737072696e676669656c64636c696e69632f6c61726176656c2d61646d616e616765722d706c75732d73646b2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/springfieldclinic/laravel-admanager-plus-sdk)[![GitHub Tests Action Status](https://camo.githubusercontent.com/49fee364088e1ff9082e56da1991564a403825f14e8a557251923f71c26690c3/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f737072696e676669656c64636c696e69632f6c61726176656c2d61646d616e616765722d706c75732d73646b2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/springfieldclinic/laravel-admanager-plus-sdk/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/3e6a195a8fcdfd60866ed38dabee5c33ccaf91ce780af8150442bde4391c1717/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f737072696e676669656c64636c696e69632f6c61726176656c2d61646d616e616765722d706c75732d73646b2f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/springfieldclinic/laravel-admanager-plus-sdk/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/4e40f26f9c37f7148aabf8929f8c6d658b6cf5e2fcf337314b76b1fd7765d8f8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f737072696e676669656c64636c696e69632f6c61726176656c2d61646d616e616765722d706c75732d73646b2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/springfieldclinic/laravel-admanager-plus-sdk)

Use this package to integrate ADManager Plus REST API into your Laravel application.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require springfieldclinic/laravel-admanager-plus-sdk
```

You can publish the config file with:

```
php artisan vendor:publish --tag="laravel-admanager-plus-sdk-config"
```

This is the contents of the published config file:

```
return [
    /*
    |--------------------------------------------------------------------------
    | Base API URL
    |--------------------------------------------------------------------------
    | The full base URL to your ADManager Plus REST API (e.g.
    | http://hostname:8080/RestAPI). Leave null to set via ENV.
    */
    'BASE_API_URL' => env('ADMANAGER_BASE_API_URL', null),

    /*
    |--------------------------------------------------------------------------
    | Active Directory Domain Name
    |--------------------------------------------------------------------------
    | The domain that ADManager Plus will target by default.
    */
    'domainName' => env('ADMANAGER_DOMAIN_NAME', null),

    /*
    |--------------------------------------------------------------------------
    | Authorization Token
    |--------------------------------------------------------------------------
    | A valid AuthToken generated in ADManager Plus (Delegation → Technician Authtokens).
    */
    'AuthToken' => env('ADMANAGER_AUTH_TOKEN', null),

    /*|--------------------------------------------------------------------------
    | Product Name
    |--------------------------------------------------------------------------
    | The product name to use in the API requests. Defaults to 'RESTAPI'.
    | This can be useful for identifying the source of API requests in audit/logs.
    */
    'PRODUCT_NAME' => env('ADMANAGER_PRODUCT_NAME', 'RESTAPI'),
];
```

Set the following in `.env`:

```
ADMANAGER_PLUS_BASE_API_URL=http://your-admanager-plus-host
ADMANAGER_PLUS_DOMAIN_NAME=your.domain.com
ADMANAGER_PLUS_AUTH_TOKEN=your_auth_token
ADMANAGER_PLUS_PRODUCT_NAME=name_of_your_application_for_audit_purposes

```

Usage
-----

[](#usage)

```
use LaravelAdmanagerPlusSdk\Http\Clients\ADManagerPlusConnector;

$connector = new ADManagerPlusConnector();
$users = $connector->users()->search(searchText: 'john');

dump($users);
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Christopher Graham](https://github.com/97906213+sc-chgraham)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance41

Moderate activity, may be stable

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity14

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/531b358ebe0249bec75546ca4a38fe6acb933713602814e01eca0c0ca2a63717?d=identicon)[sc-chgraham](/maintainers/sc-chgraham)

---

Top Contributors

[![sc-chgraham](https://avatars.githubusercontent.com/u/97906213?v=4)](https://github.com/sc-chgraham "sc-chgraham (13 commits)")

### Embed Badge

![Health badge](/badges/springfieldclinic-laravel-admanager-plus-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/springfieldclinic-laravel-admanager-plus-sdk/health.svg)](https://phpackages.com/packages/springfieldclinic-laravel-admanager-plus-sdk)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
