-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
32 lines (32 loc) · 1023 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
{
"name": "fredden/magento2-module-javascript-error-reporting",
"description": "A Magento 2 module which captures JavaScript errors for later review by website administrators",
"license": "CC-BY-NC-SA-4.0",
"type": "magento2-module",
"authors": [
{
"name": "Dan Wallis",
"email": "[email protected]"
}
],
"homepage": "https://github.com/fredden/magento2-module-javascript-error-reporting",
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-pcre": "*",
"magento/framework": "^103.0.4",
"magento/module-backend": "^102.0.4",
"magento/module-config": "^101.2.4",
"magento/module-cron": "^100.4.4",
"magento/module-reports": "^100.4.4",
"magento/module-store": "^101.1.4",
"magento/module-ui": "^101.2.4"
},
"autoload": {
"psr-4": {
"Fredden\\JavaScriptErrorReporting\\": ""
},
"files": [
"registration.php"
]
}
}