-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
118 lines (118 loc) · 3.3 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "deepseek-php/deepseek-php-client",
"description": "deepseek PHP client is a robust and community-driven PHP client library for seamless integration with the Deepseek API, offering efficient access to advanced AI and data processing capabilities.",
"keywords": [
"deepseek",
"deepseek-php-client",
"deepseek-api",
"php-deepseek",
"deepseek-coder",
"deepseek-chat",
"deepseek-math",
"deepseek-integration",
"openai",
"sdk",
"codex",
"GPT-3",
"DALL-E",
"api",
"client",
"deepseek-sdk",
"php-sdk",
"php-ai",
"ai-for-php",
"ai-sdk",
"ai-api",
"natural",
"language",
"processing",
"deepseek-php-library",
"deepseek-client",
"natural-language-processing",
"ai-integration",
"machine-learning",
"php-machine-learning",
"php-iot",
"nlp",
"data-processing",
"deep-learning",
"deepseek-library",
"php-library",
"api-integration",
"php-api-client",
"deepseek-ai",
"php-openai-alternative",
"ai-client-library"
],
"homepage": "https://github.com/deepseek-php/deepseek-php-client",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "deepseek-php",
"email": "omaralwi2010@gmail.com",
"role": "owner"
},
{
"name": "Omar Alalwi",
"email": "omaralwi2010@gmail.com",
"role": "creator"
}
],
"version": "1.0.1",
"require": {
"php": "^8.1.0",
"php-http/discovery": "^1.20.0",
"php-http/multipart-stream-builder": "^1.4.2",
"psr/http-client": "^1.0.3",
"psr/http-client-implementation": "^1.0.1",
"psr/http-factory-implementation": "*",
"psr/http-message": "^1.1.0|^2.0.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.9.2",
"guzzlehttp/psr7": "^2.7.0",
"laravel/pint": "^1.18.1",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^7.11.0|^8.5.0",
"pestphp/pest": "^2.36.0|^3.5.0",
"pestphp/pest-plugin-arch": "^2.7|^3.0",
"pestphp/pest-plugin-type-coverage": "^2.8.7|^3.1.0",
"phpstan/phpstan": "^1.12.7",
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "^6.4.11|^7.1.5"
},
"autoload": {
"psr-4": {
"DeepseekPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DeepseekPhp\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": "pint -v",
"test:lint": "pint --test -v",
"test:types": "phpstan analyse --ansi",
"test:type-coverage": "pest --type-coverage --min=100",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:type-coverage",
"@test:unit"
]
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
}
}