-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.49 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 1.49 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "google-gemini-php/client",
"description": "Gemini API is a supercharged PHP API client that allows you to interact with the Gemini API",
"license": "MIT",
"keywords": [
"php",
"gemini",
"gemini-pro",
"sdk",
"client",
"natural",
"language",
"processing",
"NLP",
"banana",
"google"
],
"authors": [
{
"name": "Fatih AYDIN",
"email": "aydinfatih52@gmail.com"
}
],
"require": {
"php": "^8.1.0",
"php-http/discovery": "^1.19.2",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.8.1",
"guzzlehttp/psr7": "^2.6.2",
"pestphp/pest": "^2.32.3",
"laravel/pint": "^1.18.1",
"mockery/mockery": "^1.6.7",
"phpstan/phpstan": "^2.1.32"
},
"suggest": {
"ext-fileinfo": "Reads upload file size and mime type if not provided"
},
"autoload": {
"psr-4": {
"Gemini\\": "src/"
},
"files": [
"src/Gemini.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true,
"pestphp/pest-plugin": true
}
},
"scripts": {
"lint": "pint -v",
"test:lint": "pint --test -v",
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
}
}