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 today

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

29

—

LowBetter than 57% of packages

Maintenance39

Infrequent updates — may be unmaintained

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

525d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/31861108?v=4)[Rob](/maintainers/l4nos)[@l4nos](https://github.com/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

[craftcms/cms

Craft CMS

3.6k3.6M3.1k](/packages/craftcms-cms)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M46](/packages/tencentcloud-tencentcloud-sdk-php)[spatie/laravel-export

Create a static site bundle from a Laravel app

674146.0k6](/packages/spatie-laravel-export)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5021.9k](/packages/simplestats-io-laravel-client)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)[jasara/php-amzn-selling-partner-api

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

1348.7k1](/packages/jasara-php-amzn-selling-partner-api)

PHPackages © 2026

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