PHPackages                             digitonic/dealmaker-api - 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. digitonic/dealmaker-api

ActiveLibrary[API Development](/categories/api)

digitonic/dealmaker-api
=======================

A Laravel package for the DealMaker API

1.0.1(1y ago)081[1 PRs](https://github.com/digitonic/dealmaker-api/pulls)MITPHPPHP ^8.2

Since Mar 18Pushed 1y agoCompare

[ Source](https://github.com/digitonic/dealmaker-api)[ Packagist](https://packagist.org/packages/digitonic/dealmaker-api)[ Docs](https://github.com/digitonic/dealmaker-api)[ RSS](/packages/digitonic-dealmaker-api/feed)WikiDiscussions develop Synced 1mo ago

READMEChangelog (5)Dependencies (14)Versions (7)Used By (0)

DealMaker API
=============

[](#dealmaker-api)

[![Latest Version on Packagist](https://camo.githubusercontent.com/34fa49c4ed534fbcc38f96c6a5811d4ee4bb728b0343735a8db84f4d2e575bc6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f64696769746f6e69632f6465616c6d616b65722d6170692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/digitonic/dealmaker-api)[![GitHub Tests Action Status](https://camo.githubusercontent.com/ade79f2d58078c75830094b9c6a81a3941562894bca616bbdbdce020580d4f8c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f64696769746f6e69632f6465616c6d616b65722d6170692f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/digitonic/dealmaker-api/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/e9427e56c9d48192f20c181d2a781c0f9787cda33e5183525c97c0adfb5d2ef2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f64696769746f6e69632f6465616c6d616b65722d6170692f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/digitonic/dealmaker-api/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/a0200780ec8805d928955c940fc52e75fd1a79aa108c7740e793023bbb850cdd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f64696769746f6e69632f6465616c6d616b65722d6170692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/digitonic/dealmaker-api)

**WARNING: This is not a complete package and is not ready for use. This is a work in progress and only contains a few read only endpoints**

A Laravel wrapper of the DealMaker API

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

[](#installation)

You can install the package via composer:

```
composer require digitonic/dealmaker-api
```

You can publish the config file with:

```
php artisan vendor:publish --tag="dealmaker-api-config"
```

This is the contents of the published config file:

```
return [
    /**
     * The Client ID displayed when you created the OAuth application in the portal
     * This is typically called the "Public Key" in the portal
     */
    'client_id' => env('DEALMAKER_CLIENT_ID', ''),

    /**
     * The Client Secret displayed when you created the OAuth application in the portal
     * This is typically called the "Secret Key" in the portal
     */
    'client_secret' => env('DEALMAKER_CLIENT_SECRET', ''),

    /**
     * The scope is established when you created the OAuth application
     * This is typically called the "Scopes" in the portal
     */
    'scopes' => env('DEALMAKER_SCOPES', ''),

        /**
     * The DealMaker Deal ID for the current investment landing page
     */
    'deal_id' => env('DEALMAKER_DEAL_ID', ''),
];
```

Usage
-----

[](#usage)

```
$auth = new DealMakerApiAuth();
$token = $auth->getAccessToken();
$dealmakerApi = new Digitonic\DealmakerApi\DealmakerApi($token);
$deals = new Digitonic\DealmakerApi\Requests\Deal\ListDeals();

$response = $dealmakerApi->send($deals);
```

Testing
-------

[](#testing)

```
composer test
```

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)

- [Steven Richardson](https://github.com/richdynamix)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

29

—

LowBetter than 59% of packages

Maintenance32

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 60% 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.

###  Release Activity

Cadence

Every ~18 days

Total

5

Last Release

717d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1104549?v=4)[Steven Richardson](/maintainers/richdynamix)[@richdynamix](https://github.com/richdynamix)

---

Top Contributors

[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (1 commits)")[![richdynamix](https://avatars.githubusercontent.com/u/1104549?v=4)](https://github.com/richdynamix "richdynamix (1 commits)")

---

Tags

laraveldigitonicdealmaker-api

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/digitonic-dealmaker-api/health.svg)

```
[![Health](https://phpackages.com/badges/digitonic-dealmaker-api/health.svg)](https://phpackages.com/packages/digitonic-dealmaker-api)
```

###  Alternatives

[mll-lab/laravel-graphiql

Easily integrate GraphiQL into your Laravel project

683.2M9](/packages/mll-lab-laravel-graphiql)[simplestats-io/laravel-client

Client for SimpleStats!

4515.5k](/packages/simplestats-io-laravel-client)[scalar/laravel

Render your OpenAPI-based API reference

6183.9k2](/packages/scalar-laravel)[ryangjchandler/bearer

Minimalistic token-based authentication for Laravel API endpoints.

8129.8k](/packages/ryangjchandler-bearer)[codebar-ag/laravel-docuware

DocuWare integration with Laravel

1221.1k](/packages/codebar-ag-laravel-docuware)[combindma/laravel-facebook-pixel

Meta pixel integration for Laravel

4956.9k](/packages/combindma-laravel-facebook-pixel)

PHPackages © 2026

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