-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.42 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.42 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
{
"name": "google-gemini-php/symfony",
"description": "Symfony Bundle for Gemini",
"keywords": ["symfony","php", "gemini", "sdk", "api", "client", "natural", "language", "processing"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Fatih AYDIN",
"email": "aydinfatih52@gmail.com"
}
],
"require": {
"php": "^8.1.0",
"google-gemini-php/client": "^2.0",
"nyholm/psr7": "^1.8.1",
"psr/http-client": "^1.0.3",
"psr/http-factory": "^1.0.2",
"symfony/config": "^5.4|^6.3|^7.0",
"symfony/dependency-injection": "^5.4|^6.3|^7.0.1",
"symfony/http-client": "^5.4|^6.3|^7.0",
"symfony/http-kernel": "^5.4|^6.3|^7.0.1"
},
"require-dev": {
"laravel/pint": "^1.13.6",
"phpstan/phpstan": "^1.10.47",
"symfony/phpunit-bridge": "^5.4|^6.3|^7.0.1"
},
"autoload": {
"psr-4": {
"Gemini\\Symfony\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gemini\\Symfony\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"php-http/discovery": false
}
},
"scripts": {
"lint": "pint -v",
"test:lint": "pint --test -v",
"test:types": "phpstan analyse --ansi",
"test:unit": "simple-phpunit --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
}
}