-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.51 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
{
"name": "sourceability/portal",
"description": "A CLI, PHP Library and Symfony Bundle that helps getting structured data out from GPT.",
"keywords": ["php", "OpenAI", "GPT", "json-schema", "symfony", "structured"],
"license": "MIT",
"type": "library",
"require": {
"ext-json": "*",
"composer-runtime-api": "*",
"guzzlehttp/promises": "^1.5",
"nyholm/psr7": "^1.5",
"php-http/cache-plugin": "^1.0",
"php-http/logger-plugin": "^1.0",
"sourceability/openai-client": "^0.3.4",
"symfony/cache": "^6.0",
"symfony/console": "^6.0",
"symfony/http-client": "^6.0"
},
"require-dev": {
"api-platform/core": "^3.0",
"ergebnis/composer-normalize": "^2.30",
"php-http/vcr-plugin": "^1.2",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.0",
"rector/rector": "^0.15.21",
"symfony/config": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/framework-bundle": "^6.0",
"symfony/http-kernel": "^6.0",
"symplify/easy-coding-standard": "^11.2"
},
"autoload": {
"psr-4": {
"Sourceability\\Portal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sourceability\\Portal\\Tests\\": "tests/"
}
},
"bin": [
"bin/portal"
],
"config": {
"allow-plugins": {
"php-http/discovery": true,
"ergebnis/composer-normalize": true
}
}
}