-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.85 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.85 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
{
"name": "graycore/magento2-cms-ai-builder",
"description": "A Magento 2 module that extends the CMS page editor with AI-powered content generation and visual preview capabilities.",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "Damien Retzinger",
"email": "damienwebdev@gmail.com"
}
],
"scripts": {
"lint": "phpcs",
"lint:fix": "phpcbf",
"test": "phpunit",
"test:unit": "phpunit --testsuite='Graycore CmsAiBuilder Unit Tests'"
},
"archive": {
"exclude": [
"/vendor",
"/docs",
"/Test",
"README.md"
]
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Graycore\\CmsAiBuilder\\": ""
},
"files": [
"registration.php"
]
},
"config": {
"allow-plugins": {
"magento/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"ext-bcmath": "8.2",
"ext-gd": "8.2"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"magento/framework": "^102.0 || ^103.0",
"magento/module-backend": "^102.0 || ^103.0",
"magento/module-cms": "^104.0 || ^105.0",
"magento/module-cms-graph-ql": "^100.4",
"magento/module-config": "^101.2",
"magento/module-store": "^101.1",
"magento/module-ui": "^101.2",
"php-jsonpatch/php-jsonpatch": "^4.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"magento/magento-coding-standard": "^38.0",
"justinrainbow/json-schema": "^6.6"
},
"repositories": [
{
"type": "composer",
"url": "https://mirror.mage-os.org/"
}
]
}