-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
125 lines (125 loc) · 3.35 KB
/
composer.json
File metadata and controls
125 lines (125 loc) · 3.35 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "mindwave/mindwave",
"description": "Production AI utilities for Laravel: auto-fit prompts, streaming, tracing, and context discovery.",
"keywords": [
"mindwave",
"laravel",
"ai",
"llm",
"openai",
"streaming",
"opentelemetry",
"tracing",
"tntsearch"
],
"homepage": "https://github.com/helgesverre/mindwave",
"license": "MIT",
"authors": [
{
"role": "Developer",
"name": "Helge Sverre",
"email": "helge.sverre@gmail.com",
"homepage": "https://helgesver.re"
}
],
"require": {
"php": "^8.2|^8.3|^8.4",
"ext-zip": "*",
"brandembassy/file-type-detector": "^2.3",
"guzzlehttp/guzzle": "^7.5",
"helgesverre/mistral": "^2.0",
"helgesverre/telefonkatalog": "^1.0",
"hkulekci/qdrant": "^0.4.1",
"illuminate/contracts": "^11.0",
"laravel/prompts": "^0.3",
"mozex/anthropic-php": "^1.0",
"open-telemetry/sdk": "^1.0",
"open-telemetry/exporter-otlp": "^1.0",
"openai-php/client": "^0.10",
"probots-io/pinecone-php": "^1.1.0",
"smalot/pdfparser": "^2.5",
"spatie/laravel-package-tools": "^1.14.0",
"spatie/regex": "^3.1",
"symfony/dom-crawler": "^6.2|^7.0",
"teamtnt/laravel-scout-tntsearch-driver": "^13.0|^14.0",
"teamtnt/tntsearch": "^3.0",
"timkley/weaviate-php": "^0.10.0",
"yethee/tiktoken": "^0.5"
},
"require-dev": {
"larastan/larastan": "^3.7",
"laravel/pint": "^1.18",
"laravel/telescope": "^5.15",
"nunomaduro/collision": "^8.0",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-arch": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpro/grumphp": "^2.18",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"Mindwave\\Mindwave\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mindwave\\Mindwave\\Tests\\": "tests/"
},
"files": [
"tests/utils.php"
]
},
"scripts": {
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
"test": "vendor/bin/pest",
"test:parallel": "vendor/bin/pest --parallel",
"test:coverage": "vendor/bin/pest --coverage --min=80",
"test:coverage-html": "vendor/bin/pest --coverage-html build/coverage",
"analyse": "vendor/bin/phpstan analyse",
"analyse:baseline": "vendor/bin/phpstan analyse --generate-baseline",
"analyse:clear": "vendor/bin/phpstan clear-result-cache",
"format": "vendor/bin/pint",
"format:check": "vendor/bin/pint --test",
"format:dirty": "vendor/bin/pint --dirty",
"check": [
"@format:check",
"@analyse",
"@test"
],
"ci": [
"@check",
"@test:coverage"
],
"fix": [
"@format",
"@test"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": false,
"phpstan/extension-installer": true,
"tbachert/spi": true,
"phpro/grumphp": true
}
},
"extra": {
"laravel": {
"providers": [
"Mindwave\\Mindwave\\MindwaveServiceProvider"
],
"aliases": {
"Mindwave": "Mindwave\\Mindwave\\Facades\\Mindwave"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}