-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.19 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
{
"name": "pfinalclub/coze_sdk",
"description": "Coze AI PHP 版本的 SDK",
"license": "MIT",
"homepage": "https://github.com/pfinalclub/coze_sdk",
"keywords": [
"coze",
"AI",
"pfinal",
"PFinalClub"
] ,
"autoload": {
"psr-4": {
"CozeSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CozeSdk\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "pfinal南丞",
"email":"lampxiezi@163.com",
"homepage": "http://friday-go.cc/"
}
],
"scripts": {
"post-merge": "composer install",
"phpstan": "phpstan analyse --memory-limit=-1",
"check-style": "vendor/bin/pint --test",
"fix-style": "vendor/bin/pint",
"test": "phpunit --colors"
},
"require": {
"php": ">=8.2",
"symfony/http-client": "7.1.8.0",
"psr/simple-cache": "^3.0",
"symfony/cache": "^7.1",
"firebase/php-jwt": "^6.10",
"ext-openssl": "*",
"ext-http": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.2",
"squizlabs/php_codesniffer": "^3.10"
}
}