forked from nedac-sorbo/SyliusMinimumOrderValuePlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (64 loc) · 2.32 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
{
"name": "nedac/sylius-minimum-order-value-plugin",
"type": "sylius-plugin",
"keywords": ["sylius", "sylius-plugin", "minimum", "order", "value"],
"description": "With this Sylius plugin a minimum order value can be set for each channel.",
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "[email protected]:4c0n/MinkDebugExtension.git"
}
],
"require": {
"php": "^7.4",
"sylius/sylius": ">=1.6.8 <1.7.0 || >=1.7.5 <1.9.0"
},
"require-dev": {
"behat/behat": "^3.7",
"behat/mink": "^1.7@dev",
"behat/mink-browserkit-driver": "^1.3",
"behat/mink-extension": "^2.2",
"behat/mink-selenium2-driver": "^1.4",
"friends-of-behat/page-object-extension": "^0.3",
"friends-of-behat/suite-settings-extension": "^1.0",
"friends-of-behat/symfony-extension": "^2.1",
"friends-of-behat/variadic-extension": "^1.3",
"lakion/mink-debug-extension": "dev-feature/decouple-listener-from-driver-implementations as 1.2.3",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-doctrine": "^0.12",
"phpstan/phpstan-webmozart-assert": "^0.12",
"phpunit/phpunit": "^8.5",
"sensiolabs/security-checker": "^5.0",
"symfony/browser-kit": "^4.4",
"symfony/debug-bundle": "^4.4|^5.0",
"symfony/dotenv": "^4.4|^5.0",
"symfony/intl": "^4.4|^5.0",
"symfony/web-profiler-bundle": "^4.4|^5.0",
"symfony/web-server-bundle": "^4.4|^5.0",
"squizlabs/php_codesniffer": "^3.5",
"mockery/mockery": "^1.4",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"matthiasnoback/symfony-config-test": "^4.1",
"symfony/webpack-encore-bundle": "^1.7",
"sylius/bootstrap-theme": "dev-master#b576acbef7ed82e684b500486344aa1d8df44e6a || ^0.1.2"
},
"conflict": {
"doctrine/inflector": "^1.4.0"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Nedac\\SyliusMinimumOrderValuePlugin\\": "src/",
"Tests\\Nedac\\SyliusMinimumOrderValuePlugin\\": "tests/"
}
},
"autoload-dev": {
"classmap": ["tests/Application/Kernel.php"]
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}