PHPackages                             lanos/deepseek-client - 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. lanos/deepseek-client

ActiveLibrary[API Development](/categories/api)

lanos/deepseek-client
=====================

PHP client for DeepSeek API with Laravel support

v1.0.2(1y ago)244MITPHPPHP ^8.1

Since Dec 27Pushed 1y ago1 watchersCompare

[ Source](https://github.com/l4nos/PHP-DeepSeek-API-Client)[ Packagist](https://packagist.org/packages/lanos/deepseek-client)[ RSS](/packages/lanos-deepseek-client/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (4)Versions (4)Used By (0)

DeepSeek API Client for PHP
===========================

[](#deepseek-api-client-for-php)

A PHP client for the DeepSeek API with Laravel support.

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

[](#installation)

Install via Composer:

```
composer require lanos/deepseek-client
```

For Laravel applications, the package will automatically register the service provider and facade.

Configuration
-------------

[](#configuration)

Add your DeepSeek API key to your `.env` file:

```
DEEPSEEK_API_KEY=your_api_key_here
```

Publish the configuration file (optional):

```
php artisan vendor:publish --tag=config
```

Usage
-----

[](#usage)

### Laravel

[](#laravel)

You can use the facade:

```
use Lanos\DeepSeek\Facades\DeepSeek;

$response = DeepSeek::sendRequest('POST', 'endpoint', ['data' => 'value']);
```

Or use dependency injection:

```
use Lanos\DeepSeek\Interfaces\DeepSeekClientInterface;

class YourController
{
    public function __construct(
        private DeepSeekClientInterface $deepSeekClient
    ) {}

    public function yourMethod()
    {
        $response = $this->deepSeekClient->sendRequest('POST', 'endpoint', ['data' => 'value']);
    }
}
```

### Standalone Usage

[](#standalone-usage)

```
use Lanos\DeepSeek\DeepSeekClient;
use GuzzleHttp\Client;

$client = new DeepSeekClient(new Client(), 'your_api_key');
$response = $client->sendRequest('POST', 'endpoint', ['data' => 'value']);
```

Testing
-------

[](#testing)

Run the tests with:

```
composer test
```

License
-------

[](#license)

MIT

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance42

Moderate activity, may be stable

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Every ~14 days

Total

3

Last Release

478d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/06c9e88990d6fc4ceeca54935392f46b9cec2ded8c4a858100b05f0a4d8e4e69?d=identicon)[l4nos](/maintainers/l4nos)

---

Top Contributors

[![rl-carno](https://avatars.githubusercontent.com/u/132678025?v=4)](https://github.com/rl-carno "rl-carno (2 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/lanos-deepseek-client/health.svg)

```
[![Health](https://phpackages.com/badges/lanos-deepseek-client/health.svg)](https://phpackages.com/packages/lanos-deepseek-client)
```

###  Alternatives

[skagarwal/google-places-api

Google Places Api

1913.0M8](/packages/skagarwal-google-places-api)[dcblogdev/laravel-microsoft-graph

A Laravel Microsoft Graph API (Office365) package

168285.5k1](/packages/dcblogdev-laravel-microsoft-graph)[vluzrmos/slack-api

Wrapper for Slack.com WEB API.

102589.1k3](/packages/vluzrmos-slack-api)[smodav/mpesa

M-Pesa API implementation

16363.7k1](/packages/smodav-mpesa)[jasara/php-amzn-selling-partner-api

A fluent interface for Amazon's Selling Partner API in PHP

1344.8k1](/packages/jasara-php-amzn-selling-partner-api)[grantholle/powerschool-api

A Laravel package to make interacting with PowerSchool less painful.

1715.6k1](/packages/grantholle-powerschool-api)

PHPackages © 2026

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