-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
125 lines (125 loc) · 4.53 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "setono/sylius-pickup-point-plugin",
"description": "Pickup point plugin for Sylius",
"license": "MIT",
"type": "sylius-plugin",
"keywords": [
"sylius",
"sylius-plugin"
],
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"behat/transliterator": "^1.5",
"doctrine/event-manager": "^1.2",
"doctrine/orm": "^2.7",
"friendsofsymfony/rest-bundle": "^2.8 || ^3.0",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/http-client": "^1.0",
"sylius/core": "^1.0",
"sylius/core-bundle": "^1.0",
"sylius/order": "^1.0",
"sylius/registry": "^1.0",
"sylius/resource-bundle": "^1.8",
"sylius/shipping": "^1.0",
"sylius/shipping-bundle": "^1.0",
"symfony/cache": "^5.4 || ^6.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/console": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/form": "^5.4 || ^6.0",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/intl": "^5.4 || ^6.0",
"symfony/messenger": "^5.4 || ^6.0",
"symfony/options-resolver": "^5.4 || ^6.0",
"symfony/routing": "^5.4 || ^6.0",
"symfony/security-bundle": "^5.4 || ^6.0",
"symfony/validator": "^5.4 || ^6.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"api-platform/core": "^2.7.16",
"babdev/pagerfanta-bundle": "^3.8",
"behat/behat": "^3.14",
"doctrine/doctrine-bundle": "^2.11",
"fakerphp/faker": "^1.21",
"jms/serializer-bundle": "^4.2",
"kriswallsmith/buzz": "^1.2",
"lexik/jwt-authentication-bundle": "^2.17",
"matthiasnoback/symfony-config-test": "^4.3 || ^5.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.3 || ^5.1",
"nyholm/psr7": "^1.5",
"phpspec/phpspec": "^7.3",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.6.17",
"polishsymfonycommunity/symfony-mocker-container": "^1.0.7",
"psalm/plugin-phpunit": "^0.18.4",
"psalm/plugin-symfony": "^5.0",
"setono/budbee-bundle": "^1.0",
"setono/code-quality-pack": "^2.7",
"setono/coolrunner-bundle": "^1.0",
"setono/dao-bundle": "^1.1",
"setono/gls-webservice-bundle": "^1.3",
"setono/post-nord-bundle": "^2.0@alpha",
"setono/post-nord-php-sdk": "^2.0@alpha",
"setono/sylius-behat-pack": "^0.2",
"sylius/sylius": "~1.12.13",
"symfony/debug-bundle": "^5.4 || ^6.4",
"symfony/dotenv": "^5.4 || ^6.4",
"symfony/property-info": "^5.4 || ^6.4",
"symfony/serializer": "^5.4 || ^6.4",
"symfony/web-profiler-bundle": "^5.4 || ^6.4",
"symfony/webpack-encore-bundle": "^1.17.2",
"weirdan/doctrine-psalm-plugin": "^2.8",
"willdurand/negotiation": "^3.1"
},
"suggest": {
"setono/coolrunner-bundle": "Install this bundle to use the CoolRunner provider",
"setono/dao-bundle": "Install this bundle to use the DAO provider",
"setono/gls-webservice-bundle": "Install this bundle to use the GLS provider",
"setono/post-nord-bundle": "Install this bundle to use the PostNord provider"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\SyliusPickupPointPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Setono\\SyliusPickupPointPlugin\\Tests\\": "tests/"
},
"classmap": [
"tests/Application/Kernel.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"php-http/discovery": true,
"symfony/thanks": false
},
"sort-packages": true
},
"scripts": {
"analyse": "psalm",
"behat": "php -d memory_limit=-1 vendor/bin/behat --no-interaction --format=progress",
"check-style": "ecs check",
"checks": [
"composer validate --strict",
"composer normalize --dry-run",
"@check-style",
"@analyse"
],
"fix-style": "ecs check --fix",
"fixtures": "(cd tests/Application && bin/console sylius:fixtures:load --no-interaction -e ${SYMFONY_ENV:-'dev'})",
"phpspec": "phpspec run",
"phpunit": "phpunit",
"tests": [
"@phpspec",
"@behat"
]
}
}