| Package Data | |
|---|---|
| Maintainer Username: | WatheqAlshowaiter |
| Maintainer Contact: | omaralwi2010@gmail.com (deepseek-php) |
| Package Create Date: | 2025-01-02 |
| Package Last Update: | 2025-08-14 |
| Home Page: | |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2026-03-02 15:00:03 |
| Package Statistics | |
|---|---|
| Total Downloads: | 21,342 |
| Monthly Downloads: | 8,219 |
| Daily Downloads: | 547 |
| Total Stars: | 401 |
| Total Watchers: | 11 |
| Total Forks: | 68 |
| Total Open Issues: | 15 |
Laravel wrapper for Deepseek PHP client to seamless deepseek AI API integration with Laravel applications.
You can install the package via composer:
composer require deepseek-php/deepseek-laravel
php artisan vendor:publish --tag=deepseek
then add token to .env file
DEEPSEEK_API_KEY="your_api_key"
use DeepSeekClient;
$deepseek = app(DeepSeekClient::class);
$response = $deepseek->query('Hello deepseek, I am Laravel Framework , how are you Today ^_^ ?')->run();
print_r("deepseek API response : " . $response);
Note: In easy mode, it will take defaults for all configs Check Default Values
use DeepSeekClient;
$deepseek = app(DeepSeekClient::class);
// Another way, with customization
$response = $deepseek
->query('Hello deepseek, how are you ?', 'system')
->query('Hello deepseek, my name is PHP ', 'user')
->withModel("deepseek-chat")
->setTemperature(1.5)
->run();
print_r("deepseek API response : " . $response);
Tests will come soon
Thanks to these wonderful people for contributing to this project! 💖
Want to contribute? Check out the contributing guidelines and submit a pull request! 🚀
Please see CHANGELOG for more information on what has changed recently.
Click the button bellow or join here to be part of our growing community!
If you discover any security-related issues, please email omaralwi2010@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.