-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
107 lines (107 loc) · 3.87 KB
/
Copy pathcomposer.json
File metadata and controls
107 lines (107 loc) · 3.87 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
{
"name": "angeo/module-aeo-audit",
"description": "Magento 2 AEO (AI Engine Optimization) audit — scores your store across 15 technical signals for AI search and agentic commerce: robots.txt AI-bot policy, llms.txt, llms.jsonl, JSON-LD (Product, Organization, FAQ), merchant return + shipping policies, sitemap.xml, UCP profile, AI product feed, Open Graph, canonical + hreflang, JSON-LD quality, .well-known endpoint matrix and Core Web Vitals via CrUX. Includes a Score Trend dashboard, admin UI, cron scheduling, dynamic fix commands and a dependency-injected extension point for custom checkers.", "type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "Ievgenii Gryshkun",
"email": "info@angeo.dev",
"homepage": "https://angeo.dev"
}
],
"support": {
"issues": "https://github.com/angeo-dev/module-aeo-audit/issues",
"source": "https://github.com/angeo-dev/module-aeo-audit"
},
"keywords": [
"magento2",
"magento 2 module",
"aeo",
"aeo audit",
"ai engine optimization",
"ai visibility",
"chatgpt",
"chatgpt shopping",
"gemini",
"perplexity",
"claude",
"llms.txt",
"llms.jsonl",
"robots.txt",
"structured data",
"schema markup",
"json-ld",
"ai search",
"ucp",
"agentic commerce",
"core web vitals",
"merchant return policy",
"offer shipping details",
"angeo"
],
"homepage": "https://angeo.dev",
"require": {
"php": "~8.2.0||~8.3.0||~8.4.0||~8.5.0",
"magento/framework": "^103.0",
"magento/module-store": "^101.1",
"magento/module-catalog": "^104.0",
"magento/module-cms": "^104.0",
"magento/module-backend": "^102.0",
"magento/module-ui": "^101.2",
"magento/module-config": "^101.2"
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.30 || ^0.40",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0",
"magento/magento-coding-standard": "*",
"phpstan/phpstan": "^1.10 || ^2.0",
"phpunit/phpunit": "^10.5 || ^11.0 || ^12.0",
"squizlabs/php_codesniffer": "^3.6"
},
"suggest": {
"angeo/module-robots-txt-aeo": "Fix robots.txt AI bot access",
"angeo/module-llms-txt": "Generate llms.txt and llms.jsonl",
"angeo/module-rich-data": "Product, Organization, FAQ JSON-LD and merchant policies",
"angeo/module-openai-product-feed": "ACP product feed for ChatGPT Shopping",
"angeo/module-openai-product-feed-api": "REST API endpoints for ACP feed",
"angeo/module-ucp": "Universal Commerce Protocol profile (/.well-known/ucp) for Google AI Mode / Gemini",
"angeo/module-aeo-brand-visibility": "Live AI visibility check across ChatGPT, Claude, Perplexity, Gemini"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Angeo\\AeoAudit\\": ""
},
"exclude-from-classmap": [
"Test/"
]
},
"autoload-dev": {
"psr-4": {
"Angeo\\AeoAudit\\Test\\": "Test/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"magento/composer-dependency-version-audit-plugin": true,
"magento/composer-root-update-plugin": true,
"magento/inventory-composer-installer": true,
"magento/magento-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"lint": "phpcs",
"lint:fix": "phpcbf",
"analyse": "phpstan analyse",
"test": "phpunit --testsuite Unit",
"check": [
"@lint",
"@analyse",
"@test"
]
}
}