-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
104 lines (104 loc) · 3.33 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "cognesy/instructor-php",
"description": "Structured data extraction in PHP, powered by LLMs",
"keywords": ["llm", "language models", "inference", "ai", "genai", "openai", "anthropic", "cohere", "ollama", "structured output", "semantic processing", "automation", "data processing", "data extraction"],
"type": "library",
"license": "MIT",
"bin": [
"bin/instructor"
],
"autoload": {
"psr-4": {
"Cognesy\\Instructor\\": "src/",
"Cognesy\\InstructorHub\\": "src-hub/",
"Cognesy\\Setup\\": "src-setup/",
"Cognesy\\Tell\\": "src-tell/"
},
"files": [
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Examples\\": "examples/",
"Cognesy\\Evals\\": "evals/",
"Cognesy\\Experimental\\": "experimental/"
},
"files": [
"tests/Examples/Call/test_functions.php"
]
},
"authors": [
{
"name": "Dariusz Debowczyk",
"email": "[email protected]"
}
],
"require-dev": {
"ext-curl": "*",
"ext-dom": "*",
"cebe/markdown": "^1.2",
"duzun/hquery": "^3.1",
"eftec/bladeone": "^4.16",
"gioni06/gpt3-tokenizer": "^1.2",
"guzzlehttp/psr7": "^2.7",
"illuminate/database": "^11.10",
"illuminate/http": "^11.37",
"league/html-to-markdown": "^5.1",
"mockery/mockery": "^1.6",
"nyholm/psr7": "^1.8",
"pestphp/pest": "^2.34",
"php-http/discovery": "^1.20",
"phpstan/phpstan": "^1.11",
"psr/http-factory-implementation": "*",
"psy/psysh": "@stable",
"spatie/browsershot": "^4.1",
"symfony/browser-kit": "^7.1",
"symfony/console": "^7.1",
"symfony/css-selector": "^7.1",
"symfony/dom-crawler": "^7.1",
"symfony/http-client": "^7.1",
"symfony/psr-http-message-bridge": "^7.1",
"symfony/var-dumper": "^6.4 || ^7.0",
"toolkit/cli-utils": "^2.0",
"twig/twig": "^3.0",
"vimeo/psalm": "dev-master",
"webuni/front-matter": "^2.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
},
"sort-packages": true
},
"require": {
"php": "^8.2",
"ext-fileinfo": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"ext-xmlreader": "*",
"adbario/php-dot-notation": "^3.3",
"aimeos/map": "^3.8",
"guzzlehttp/guzzle": "^7.8",
"phpdocumentor/reflection-docblock": "^5.4",
"phpstan/phpdoc-parser": "^1.29",
"psr/event-dispatcher": "^1.0",
"psr/log": "^3.0",
"symfony/filesystem": "^7.1",
"symfony/intl": "^7.1",
"symfony/property-access": "^6.4 || ^7.0",
"symfony/property-info": "^6.4 || ^7.0",
"symfony/serializer": "^6.4 || ^7.0",
"symfony/type-info": "^7.1",
"symfony/validator": "^6.4 || ^7.0",
"symfony/yaml": "^7.1",
"vlucas/phpdotenv": "^5.6"
},
"scripts": {
"tests": "@php vendor/bin/pest",
"phpstan": "@php vendor/bin/phpstan -c phpstan.neon",
"psalm": "@php vendor/bin/psalm",
"instructor": "php ./bin/instructor"
}
}