-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.13 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.13 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
{
"name": "byte5/ai-entry-embeddings",
"description": "Statamic addon for generating AI vector embeddings from entry content.",
"license": "GPL-3.0-or-later",
"type": "statamic-addon",
"autoload": {
"psr-4": {
"Byte5\\AiEntryEmbeddings\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Byte5\\AiEntryEmbeddings\\Tests\\": "tests"
}
},
"authors": [
{
"name": "byte5 GmbH",
"email": "info@byte5.de"
}
],
"require": {
"php": "^8.3",
"statamic/cms": "^6.0",
"laravel/ai": "^0.3.0"
},
"require-dev": {
"orchestra/testbench": "^10.0 || ^11.0",
"driftingly/rector-laravel": "^2.2",
"rector/rector": "^2.3",
"larastan/larastan": "^3.9",
"laravel/pint": "^1.29"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
},
"extra": {
"statamic": {
"name": "AI Entry Embeddings",
"description": "Entry vector embedding generation"
},
"laravel": {
"providers": [
"Byte5\\AiEntryEmbeddings\\ServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}