-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 990 Bytes
/
Copy pathcomposer.json
File metadata and controls
37 lines (37 loc) · 990 Bytes
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": "corrivate/magento2-layout-bricks",
"description": "Use layout bricks in Magento, inspired by Laravel anonymous Blade components",
"type": "magento2-module",
"license": "MIT",
"version": "0.1.3",
"authors": [
{
"name": "Lau Bannenberg",
"email": "lau.bannenberg@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "~7.4.0||~8.0.0||~8.1.0||~8.2.0||~8.3.0||~8.4.0||~8.5.0",
"magento/framework": "*",
"magento/module-cms": "*"
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.32.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12"
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Corrivate\\LayoutBricks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Corrivate\\LayoutBricks\\": "tests/"
}
}
}