-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 2.21 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
{
"name": "spryker-eco/unzer-api",
"type": "library",
"description": "UnzerApi module",
"license": "MIT",
"require": {
"php": ">=7.4",
"psr/http-message": "^1.0.1",
"spryker/guzzle": "^2.2.0",
"spryker/kernel": "^3.30.0",
"spryker/symfony": "^3.0.0",
"spryker/transfer": "^3.25.0",
"spryker/util-encoding": "^2.0.0"
},
"require-dev": {
"codeception/module-asserts": "^1.3.0",
"phpstan/phpstan": "^1.2.0",
"spryker/application": "^3.0.0",
"spryker/code-sniffer": "*",
"spryker/error-handler": "*",
"spryker/log": "*",
"spryker/monolog": "*",
"spryker/propel": "*",
"spryker/propel-orm": "*",
"spryker/queue": "*",
"spryker/testify": "*"
},
"autoload": {
"psr-4": {
"SprykerEco\\": "src/SprykerEco/"
}
},
"autoload-dev": {
"psr-4": {
"SprykerEcoTest\\": "tests/SprykerEcoTest/",
"Config\\Module\\": "vendor/spryker/config/tests/_support/Module",
"Propel\\Module\\": "vendor/spryker/propel/tests/_support/Module",
"Transfer\\Module\\": "vendor/spryker/transfer/tests/_support/Module"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs-check": "phpcs -p -s --standard=vendor/spryker/code-sniffer/SprykerStrict/ruleset.xml src/ tests/",
"cs-fix": "phpcbf -p --standard=vendor/spryker/code-sniffer/SprykerStrict/ruleset.xml src/ tests/",
"stan": "vendor/bin/phpstan analyse",
"test": "vendor/bin/codecept run",
"lowest": "validate-prefer-lowest",
"lowest-setup": "composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction && cp composer.json composer.backup && composer require --dev dereuromark/composer-prefer-lowest && mv composer.backup composer.json"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"process-timeout": 600,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}