forked from cognesy/instructor-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.8 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": "cognesy/instructor-php",
"description": "Structured data extraction in PHP, powered by LLMs",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Cognesy\\Instructor\\": "src/"
},
"files": [
"config/autowire.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Examples\\": "examples/",
"Cognesy\\InstructorHub\\": "src-hub/",
"Cognesy\\Experimental\\": "experimental/"
},
"files": [
"config/hub.php"
]
},
"authors": [
{
"name": "Dariusz Debowczyk",
"email": "[email protected]"
}
],
"require-dev": {
"pestphp/pest": "^2.34",
"symfony/var-dumper": "^7.0",
"mockery/mockery": "^1.6",
"toolkit/cli-utils": "^2.0",
"cebe/markdown": "^1.2"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"require": {
"php": "^8.2",
"symfony/validator": "^7.0",
"symfony/serializer": "^7.0",
"symfony/property-info": "^7.0",
"symfony/http-client": "^7.0",
"nyholm/psr7": "^1.8",
"symfony/property-access": "^7.0",
"ramsey/uuid": "^4.7",
"vlucas/phpdotenv": "^5.6",
"guzzlehttp/guzzle": "^7.8",
"saloonphp/saloon": "^3.8",
"saloonphp/cache-plugin": "^3.0",
"league/flysystem": "^3.0",
"psr/container": "^2.0",
"symfony/yaml": "^7.0",
"phpdocumentor/reflection-docblock": "^5.4",
"symfony/type-info": "^7.1",
"phpstan/phpdoc-parser": "^1.29",
"psr/log": "^3.0",
"monolog/monolog": "^3.6"
}
}