forked from spryker-shop/company-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 3.04 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
73
74
75
76
{
"name": "spryker-shop/company-page",
"type": "library",
"description": "CompanyPage module",
"license": "proprietary",
"require": {
"php": ">=8.2",
"spryker-shop/checkout-page-extension": "^1.0.0",
"spryker-shop/customer-page-extension": "^1.5.0",
"spryker-shop/shop-application": "^1.0.0",
"spryker-shop/shop-application-extension": "^1.0.0",
"spryker-shop/shop-ui": "^1.84.0",
"spryker/application": "^3.8.0",
"spryker/business-on-behalf": "^1.1.0",
"spryker/company": "^1.0.0",
"spryker/company-business-unit": "^2.11.0",
"spryker/company-role": "^1.9.0",
"spryker/company-unit-address": "^1.4.0",
"spryker/company-user": "^2.19.0",
"spryker/container": "^1.4.0",
"spryker/customer": "^7.4.0",
"spryker/glossary-storage": "^1.0.0",
"spryker/kernel": "^3.52.0",
"spryker/locale": "^3.0.0 || ^4.0.0",
"spryker/messenger": "^3.1.0",
"spryker/permission": "^1.0.0",
"spryker/permission-extension": "^1.2.0",
"spryker/router": "^1.6.0",
"spryker/store": "^1.4.0",
"spryker/symfony": "^3.5.0",
"spryker/transfer": "^3.25.0"
},
"require-dev": {
"spryker-shop/company-user-invitation-page": "*",
"spryker-shop/customer-page": "*",
"spryker/code-sniffer": "*",
"spryker/silex": "*",
"spryker/testify": "*"
},
"suggest": {
"spryker-shop/company-user-invitation-page": "If you want to import new invitations from file: ^2.1.0",
"spryker-shop/customer-page": "If you wat to use CompanyUserPreAuthUserCheckPlugin: ^2.34.0",
"spryker-shop/merchant-relation-request-widget": "Add the module if you want to use MerchantRelationRequestMenuItemWidget.",
"spryker-shop/merchant-relationship-widget": "If you want to use MerchantRelationshipMenuItemWidget: ^1.0.0",
"spryker/company-business-unit-sales-connector": "If you want to use CompanyBusinessUnitOrderSearchFormExpanderPlugin, CompanyBusinessUnitOrderSearchFormHandlerPlugin: ^1.0.0",
"spryker/company-sales-connector": "If you want to use CompanyBusinessUnitOrderSearchFormExpanderPlugin, CompanyBusinessUnitOrderSearchFormHandlerPlugin: ^1.0.0",
"spryker/silex": "*"
},
"autoload": {
"psr-4": {
"SprykerShop\\": "src/SprykerShop/"
}
},
"autoload-dev": {
"psr-4": {
"SprykerShopTest\\": "tests/SprykerShopTest/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"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/"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}