-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
72 lines (72 loc) · 2.02 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
67
68
69
70
71
72
{
"name": "inviqa/spryker-debug",
"description": "Inviqa Spryker Debug Module",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Inviqa\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Orm\\": "tests/App/src/Orm/",
"Pyz\\": "tests/App/src/Pyz/",
"Inviqa\\SprykerDebug\\Tests\\": "tests/",
"Generated\\Shared\\Transfer\\": "tests/App/src/Generated/Shared/Transfer/"
}
},
"require": {
"php": "^7.4 | ^8.0",
"spryker-shop/shop-application": "^1.0",
"spryker/propel": "^3.0",
"spryker/console": "^4.0",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"spryker/rabbit-mq": "^2.0",
"symfony/var-dumper": "^4.0|^5.0",
"spryker/zed-request": "^3.8"
},
"require-dev": {
"propel/propel": "2.0.0-alpha12",
"behat/behat": "^3.5",
"spryker-sdk/phpstan-spryker": "^0.4",
"roave/behat-psr11extension": "^2.1",
"webmozart/path-util": "^2.0",
"spryker/code-sniffer": "^0.17.7",
"spryker-shop/web-profiler-widget": "^1.4",
"spryker/web-profiler": "^1.6",
"spryker/router": "^1.3",
"spryker/http": "^1.0",
"spryker/event-dispatcher": "^1.0",
"phpstan/phpdoc-parser": "^1.6",
"slevomat/coding-standard": "^7.2"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"integrate": [
"@phpcs",
"@phpstan",
"@phpunit",
"@behat"
],
"behat": "./vendor/bin/behat --colors --tags=~skip-github-actions",
"phpcs": "./vendor/bin/phpcs",
"phpunit": "./vendor/bin/phpunit",
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon src"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}