-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathcomposer.json
57 lines (57 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
{
"name": "tilleuls/sylius-click-n-collect-plugin",
"type": "sylius-plugin",
"keywords": ["sylius", "sylius-plugin", "click-and-collect", "pickup", "shipping", "covid-19"],
"description": "Click and Collect plugin for Sylius, to sell and deliver securely during the COVID-19 pandemic.",
"license": "AGPL-3.0-or-later",
"require": {
"php": ">=8.0",
"simshaun/recurr": "^5.0",
"sylius/calendar": "^0.4.0",
"sylius/mailer-bundle": "^2.0",
"sylius/sylius": "^1.11",
"symfony/lock": "^5.4 || ^6.0",
"symfony/webpack-encore-bundle": "^1.16"
},
"require-dev": {
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.0",
"phpstan/phpstan-doctrine": "^0.12.0",
"phpstan/phpstan-strict-rules": "^0.12.0",
"phpstan/phpstan-webmozart-assert": "^0.12.0",
"phpunit/phpunit": "^9.0",
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
"sylius-labs/coding-standard": "^4.0",
"symfony/browser-kit": "^5.4 || ^6.0",
"symfony/css-selector": "^6.1",
"symfony/debug-bundle": "^5.4 || ^6.0",
"symfony/dotenv": "^5.4 || ^6.0",
"symfony/error-handler": "^6.1",
"symfony/intl": "^5.4 || ^6.0",
"symfony/panther": "^2.0",
"symfony/web-profiler-bundle": "^5.4 || ^6.0"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"CoopTilleuls\\SyliusClickNCollectPlugin\\": "src/",
"Tests\\CoopTilleuls\\SyliusClickNCollectPlugin\\": "tests/"
}
},
"autoload-dev": {
"classmap": ["tests/Application/Kernel.php"]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"symfony/thanks": true
}
},
"conflict": {
"doctrine/inflector": "^1.4"
}
}