-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.55 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.55 KB
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
{
"name": "xbnz/google-gemini-api",
"description": "HTTP clients for accessing Google's AI models and OAuth2 service",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "A G",
"email": "fdwnct@gmail.com"
}
],
"keywords": [
"google",
"gemini",
"api",
"ai",
"aiplatform",
"experimental",
"aiplatform.googleapis.com"
],
"minimum-stability": "stable",
"require": {
"php": "^8.4",
"firebase/php-jwt": "^6.10",
"saloonphp/saloon": "3.10.1",
"illuminate/collections": "^11.7",
"nesbot/carbon": "^3.3",
"azjezz/psl": "^3.1"
},
"require-dev": {
"pestphp/pest": "^3.7",
"phpstan/phpstan": "^2.0",
"phpstan/extension-installer": "^1.4",
"laravel/pint": "^1.1",
"symfony/dotenv": "^7.0",
"symfony/var-dumper": "^7.0",
"nunomaduro/collision": "^8.1",
"colinodell/psr-testlogger": "^1.3",
"fakerphp/faker": "^1.23",
"pestphp/pest-plugin-faker": "^3.0",
"caseyamcl/guzzle_retry_middleware": "^2.9",
"php-standard-library/phpstan-extension": "^2.0"
},
"autoload": {
"psr-4": {
"XbNz\\Gemini\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XbNz\\Gemini\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
}
}