-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.21 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
{
"name": "wubinworks/module-injecthead",
"description": "A Magento 2 module that injects scripts and css to HTML <head> element. Users can choose which page they want to inject by specifying conditions including URI pattern. This module makes use of magento cache and browser local storage to achieve best performance.",
"type": "magento2-module",
"license": "OSL-3.0",
"version": "1.0.0",
"authors": [
{
"name": "Wubinworks",
"email": "wubinworks[at]outlook.com",
"homepage": "https://github.com/wubinworks/HeadContent",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.3",
"composer/semver": "*",
"magento/framework": "*",
"magento/magento2-base": "~2.4.1",
"magento/module-backend": "*",
"magento/module-cms": "*",
"magento/module-config": "*",
"magento/module-customer": "*",
"magento/module-security": "*",
"magento/module-store": "*",
"magento/module-theme": "*",
"magento/module-translation": "*",
"magento/module-ui": "*",
"magento/module-webapi": "*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Wubinworks\\InjectHead\\": ""
}
}
}