-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 2.4 KB
/
Copy pathcomposer.json
File metadata and controls
72 lines (72 loc) · 2.4 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
{
"name": "angeo/module-llms-txt",
"description": "Magento 2 module for AI Engine Optimization (AEO). Generates spec-compliant llms.txt and llms-full.txt per llmstxt.org standard, plus streaming JSONL for vector indexing. Multi-store, multi-website, CLI, cron, async admin UI, Page Builder-aware sanitization, customer-group pricing, atomic writes, ETag/Cache-Control, .md mirrors.",
"type": "magento2-module",
"version": "3.2.0",
"keywords": [
"magento2",
"magento-module",
"angeo",
"aeo",
"llms.txt",
"llms-full.txt",
"ai-commerce",
"ai-search",
"chatgpt",
"claude",
"gemini",
"perplexity",
"page-builder"
],
"homepage": "https://angeo.dev/",
"support": {
"email": "support@angeo.dev",
"issues": "https://github.com/angeo-dev/module-llms-txt/issues",
"source": "https://github.com/angeo-dev/module-llms-txt"
},
"authors": [
{
"name": "Ievgenii Gryshkun",
"email": "info@angeo.dev",
"homepage": "https://angeo.dev/",
"role": "Maintainer"
}
],
"license": "MIT",
"require": {
"php": "~8.1.0||~8.2.0||~8.3.0||~8.4.0||~8.5.0",
"ext-json": "*",
"ext-mbstring": "*",
"magento/framework": ">=102.0",
"magento/module-store": ">=101.0",
"magento/module-catalog": ">=104.0",
"magento/module-cms": ">=104.0",
"magento/module-backend": ">=102.0",
"magento/module-config": ">=101.2",
"magento/module-url-rewrite": ">=102.0",
"magento/module-catalog-url-rewrite": ">=100.4",
"magento/module-catalog-inventory": ">=100.4"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"magento/magento-coding-standard": "^32.0",
"phpstan/phpstan": "^1.10"
},
"suggest": {
"magento/module-page-builder": "Enable to opt-in or opt-out of Page Builder content elements per content-type during sanitization",
"magento/module-shared-catalog": "Adobe Commerce: integrate B2B shared catalogs so llms.txt only exposes the allowed catalog"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Angeo\\LlmsTxt\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Angeo\\LlmsTxt\\Test\\": "Test/"
}
}
}