-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.37 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
{
"name": "shcherbanich/symfony-console-gpt",
"description": "Use console application through regular chat with ConsoleGpt!",
"type": "library",
"license": "MIT",
"keywords": ["console", "symfony", "symfony-console", "llms", "chatgpt", "openai", "php"],
"homepage": "https://github.com/shcherbanich/symfony-console-gpt",
"authors": [
{
"name": "Filipp Shcherbanich",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/shcherbanich/symfony-console-gpt/issues"
},
"require": {
"php": "^8.1.0",
"symfony/console": "^7.1",
"openai-php/client": "^0.10.3",
"symfony/http-client": "^7.2",
"nyholm/psr7": "^1.8",
"guzzlehttp/guzzle": "^7.9",
"symfony/process": "^7.2",
"gioni06/gpt3-tokenizer": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"dg/bypass-finals": "^1.4",
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"ConsoleGpt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/",
"Demo\\": "demo/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpcs": "vendor/bin/phpcs --standard=psr12 src tests demo --warning-severity=0 --error-severity=1",
"phpcbf": "vendor/bin/phpcbf --standard=psr12 src tests demo"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}