-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.66 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
{
"name": "valantic-spryker-eco/sentry",
"type": "library",
"description": "Sentry integration as a Spryker monitoring implementation",
"homepage": "https://www.valantic.com",
"license": "proprietary",
"require": {
"php": ">=7.3",
"sentry/sdk": "^3.2",
"spryker/kernel": "^3.61",
"spryker/monitoring": "^2.3"
},
"require-dev": {
"codeception/module-asserts": "^1.3.0",
"codeception/stub": "^3.6.1",
"phpstan/phpstan": "^1.0.0",
"spryker/code-sniffer": "^0.17.1",
"spryker/testify": "^3.40.0"
},
"autoload": {
"psr-4": {
"ValanticSpryker\\": "src/ValanticSpryker/"
}
},
"autoload-dev": {
"psr-4": {
"ValanticSprykerTest\\": "tests/ValanticSprykerTest/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": [
"vendor/bin/codecept build",
"vendor/bin/codecept run"
],
"stan": "phpstan analyse",
"cs-check": "phpcs -p -s --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/ tests/",
"cs-fix": "phpcbf -p --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/ tests/"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": false
}
},
"authors": [
{
"name": "Valantic",
"homepage": "https://www.valantic.com"
}
],
"keywords": [
"spryker",
"sentry"
],
"include-path": [
"src/"
]
}