generated from farzai/package-skeleton-php
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.71 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
67
68
69
70
{
"name": "farzai/viola",
"description": "Viola CLI is a command line tool for asking questions with ChatGPT.",
"keywords": [
"farzai",
"viola-cli",
"viola",
"chat-gpt",
"chatgpt",
"openai",
"gpt3",
"gpt-3",
"gpt",
"ai",
"bot"
],
"homepage": "https://github.com/farzai/viola-php",
"license": "MIT",
"authors": [
{
"name": "parsilver",
"email": "parkorn@farzai.com"
}
],
"require": {
"php": "^8.1",
"doctrine/dbal": "^3.6",
"farzai/transport": "^1.2.0",
"symfony/console": "^5.4.21|^6.2.10",
"symfony/process": "^6.4|^7.1"
},
"require-dev": {
"laravel/pint": "^1.2",
"mockery/mockery": "^1.6",
"pestphp/pest": "^1.20",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"spatie/ray": "^1.28"
},
"bin": [
"bin/viola"
],
"autoload": {
"psr-4": {
"Farzai\\Viola\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Farzai\\Viola\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint",
"analyse": "vendor/bin/phpstan analyse"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}