generated from Setono/SyliusPluginSkeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
91 lines (91 loc) · 2.93 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
{
"name": "setono/sylius-tier-pricing-plugin",
"description": "Setono example plugin for Sylius.",
"license": "MIT",
"type": "sylius-plugin",
"keywords": [
"sylius",
"sylius-plugin"
],
"require": {
"php": ">=8.1",
"brick/math": "^0.11.0",
"doctrine/collections": "^1.6",
"sylius/admin-bundle": "^1.0",
"sylius/channel": "^1.0",
"sylius/channel-bundle": "^1.0",
"sylius/core": "^1.0",
"sylius/core-bundle": "^1.0",
"sylius/order": "^1.0",
"sylius/product": "^1.0",
"sylius/product-bundle": "^1.0",
"sylius/resource-bundle": "^1.6",
"symfony/config": "^5.4 || ^6.4",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/event-dispatcher": "^5.4 || ^6.4",
"symfony/form": "^5.4 || ^6.4",
"symfony/options-resolver": "^5.4 || ^6.4",
"symfony/string": "^5.4 || ^6.4",
"symfony/translation": "^5.4 || ^6.4",
"symfony/translation-contracts": "^2.5 || ^3.4",
"symfony/validator": "^5.4 || ^6.4",
"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",
"infection/infection": "^0.27.9",
"jms/serializer-bundle": "^4.2",
"lexik/jwt-authentication-bundle": "^2.17",
"matthiasnoback/symfony-dependency-injection-test": "^4.3 || ^5.0",
"phpspec/prophecy-phpunit": "^2.1",
"phpunit/phpunit": "^9.6",
"psalm/plugin-phpunit": "^0.18",
"setono/code-quality-pack": "^2.6",
"sylius/sylius": "~1.12.13",
"symfony/debug-bundle": "^5.4 || ^6.4",
"symfony/dotenv": "^5.4 || ^6.4",
"symfony/intl": "^5.4 || ^6.4",
"symfony/property-info": "^5.4 || ^6.4",
"symfony/serializer": "^5.4 || ^6.0.1",
"symfony/web-profiler-bundle": "^5.4 || ^6.4",
"symfony/webpack-encore-bundle": "^1.17",
"willdurand/negotiation": "^3.1"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\SyliusTierPricingPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Setono\\SyliusTierPricingPlugin\\Tests\\": "tests/"
},
"classmap": [
"tests/Application/Kernel.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"symfony/thanks": false
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"analyse": "psalm",
"check-style": "ecs check",
"fix-style": "ecs check --fix",
"phpunit": "phpunit"
}
}