forked from eugene-petrov/snippets_magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 992 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
{
"name": "snippets/magento2",
"description": "Snippets for magento2",
"keywords": ["magento2","snippets","examples"],
"homepage": "https://github.com/EugenPetrov/snippets_magento2",
"authors": [
{
"name": "Eugene Petrov",
"email": "https://github.com/EugenPetrov/snippets_magento2"
}
],
"require": {
"php": ">=7.0",
"magento/framework": "*"
},
"autoload": {
"files": [
"src/Snippet/FirstModule/registration.php",
"src/Snippet/SecondModule/registration.php",
"src/Snippet/Controller/registration.php",
"src/Snippet/Plugin/registration.php",
"src/Snippet/Observer/registration.php",
"src/Snippet/ConfigurationFile/registration.php",
"src/Snippet/Render/registration.php",
"src/Snippet/Layout/registration.php"
],
"psr-4": {
"Snippet\\": "src/Snippet"
}
}
}