-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
46 lines (46 loc) · 1.17 KB
/
composer.json
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
{
"name": "medialounge/magento2-storyblok-integration",
"description": "Magento 2 extension to integrate Storyblok visual editor",
"type": "magento2-module",
"version": "2.1.0",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Javier Villanueva",
"email": "javier@medialounge.co.uk"
}
],
"keywords": [
"magento2",
"magento2-module",
"magento2-extension",
"storyblok"
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"MediaLounge\\Storyblok\\": ""
}
},
"require": {
"php": "^8.0.0",
"magento/framework": "^103.0",
"magento/module-page-cache": "100.4.*",
"magento/module-sitemap": "100.4.*",
"storyblok/php-client": "^1.5",
"storyblok/richtext-resolver": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0.0",
"squizlabs/php_codesniffer": "^3.5",
"magento/magento-coding-standard": "^6.0"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
]
}