-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.68 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
{
"name": "turbine-kreuzberg/spryker-sentry",
"type": "library",
"license": "MIT",
"description": "Enable Sentry.io in your Spryker Shop easily with this Package/SDK",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Jorge Murta",
"email": "jorge.murta@turbinekreuzberg.com"
},
{
"name": "Flávio Rosa",
"email": "flavio.rosa@turbinekreuzberg.com"
}
],
"autoload": {
"psr-4": {
"TurbineKreuzberg\\": "src/TurbineKreuzberg/"
}
},
"autoload-dev": {
"psr-4": {
"TurbineTest\\": "tests/TurbineTest/",
"Generated\\": "src/Generated/"
}
},
"require": {
"php": ">=7.3",
"sentry/sdk": "^3.1",
"spryker/kernel": "^3",
"spryker/monitoring": "^2"
},
"require-dev": {
"codeception/module-asserts": "^1.3",
"fond-of-codeception/spryker": "^1.2",
"spryker/code-sniffer": "^0.16.0",
"spryker/container": "*",
"spryker/testify": "*"
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"scripts": {
"test": "codecept run",
"cs-check": "phpcs -p -s --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/TurbineKreuzberg/ tests/",
"cs-fix": "phpcbf -p --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/TurbineKreuzberg/ tests/"
}
}