forked from justbetter/magento2-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·50 lines (50 loc) · 1.18 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
41
42
43
44
45
46
47
48
49
50
{
"name": "justbetter/magento2-sentry",
"description": "Magento 2 Logger for Sentry",
"type": "magento2-module",
"version": "3.7.2-p3",
"license": "MIT",
"require": {
"php": ">=8.0",
"sentry/sdk": "^4.0",
"monolog/monolog": ">=2.7.0",
"magento/framework": "*",
"nyholm/psr7": "^1.2",
"magento/module-config": "^101.2",
"blackbird/module-nonce-provider" : "^1.0.0"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo-magento-mirror.fooman.co.nz/"
}
},
"authors": [
{
"name": "Rakhal Imming",
"email": "rakhal@justbetter.nl",
"homepage": "https://justbetter.nl",
"role": "Developer"
},
{
"name": "Joseph Maxwell",
"email": "joseph@swiftotter.com",
"homepage": "https://swiftotter.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": { "JustBetter\\Sentry\\": "" },
"files": [ "registration.php" ]
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"magento/composer-dependency-version-audit-plugin": true
}
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.11.0",
"phpstan/phpstan": "^1.10"
}
}