-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
66 lines (66 loc) · 1.28 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
{
"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"
],
"authors": [
{
"name": "Fatih AYDIN",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1.0",
"php-http/discovery": "^1.19.2"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.8.1",
"guzzlehttp/psr7": "^2.6.2",
"pestphp/pest": "^2.30",
"laravel/pint": "^1.18.1",
"mockery/mockery": "^1.6.7",
"phpstan/phpstan": "^1.10"
},
"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"
]
}
}