-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·37 lines (37 loc) · 936 Bytes
/
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
{
"name": "ambienz/custom-page-builder",
"version": "1.0.0",
"description": "Provides Page Builder features and customizations",
"type": "magento2-module",
"license": [
"MIT"
],
"authors": [
{
"name": "Denis Almeida",
"email": "denisalmeida@me.com",
"homepage": "https://denisalmeida.com",
"role": "Developer"
},
{
"name": "Ambienz",
"email": "contato@ambienz.com.br",
"homepage": "https://ambienz.com.br",
"role": "Development Company"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.1",
"magento/framework": ">=100",
"magento/module-page-builder": ">=1"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Ambienz\\CustomPageBuilder\\": ""
}
}
}