forked from FriendsOfShopware/shopware-sentry-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 858 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
{
"name": "frosh/sentry-bundle",
"type": "library",
"description": "Integrates the Sentry SDK into Shopware",
"keywords": ["shopware", "sentry", "error", "monitoring"],
"homepage": "https://friendsofshopware.com",
"license": "MIT",
"require": {
"sentry/sentry-symfony": "^4.0 || ^5.0",
"shopware/core": "~6.5.0 || ~6.6.0"
},
"autoload": {
"psr-4": {
"Frosh\\SentryBundle\\": "src/"
}
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/extension-installer": "^1.3",
"friendsofphp/php-cs-fixer": "^3.51"
},
"config": {
"allow-plugins": {
"php-http/discovery": false,
"symfony/runtime": false,
"phpstan/extension-installer": true
}
}
}