-
Notifications
You must be signed in to change notification settings - Fork 70
/
composer.json
executable file
·66 lines (66 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "justbetter/magento2-sentry",
"description": "Magento 2 Logger for Sentry",
"type": "magento2-module",
"version": "3.8.0",
"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"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo-magento-mirror.fooman.co.nz/"
}
},
"authors": [
{
"name": "Indy Koning",
"email": "[email protected]",
"homepage": "https://justbetter.nl",
"role": "Developer"
},
{
"name": "Rakhal Imming",
"email": "[email protected]",
"homepage": "https://justbetter.nl",
"role": "Developer"
},
{
"name": "Joseph Maxwell",
"email": "[email protected]",
"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,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --memory-limit='1G'",
"phpcs": "vendor/bin/phpcs --colors --standard=vendor/magento/magento-coding-standard/Magento2 --exclude=Generic.Files.LineLength --report=full,summary,gitblame --extensions=php,phtml --ignore=./vendor ./",
"phpcbf": "vendor/bin/phpcbf --colors --standard=vendor/magento/magento-coding-standard/Magento2 --exclude=Generic.Files.LineLength --extensions=php,phtml --ignore=./vendor ./ || exit 0",
"codestyle": [
"@phpcbf",
"@phpcs"
]
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.32.0",
"magento/magento-coding-standard": "^34",
"phpstan/phpstan": "^1.12"
}
}