generated from Setono/SyliusPluginSkeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
105 lines (105 loc) · 3.46 KB
/
composer.json
File metadata and controls
105 lines (105 loc) · 3.46 KB
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
{
"name": "setono/sylius-review-plugin",
"description": "Send review requests to your customers",
"license": "MIT",
"type": "sylius-plugin",
"keywords": [
"sylius",
"sylius-plugin"
],
"require": {
"php": ">=8.1",
"doctrine/collections": "^1.8",
"doctrine/orm": "^2.20",
"doctrine/persistence": "^2.0 || ^3.0",
"knplabs/knp-menu": "^3.8",
"ocramius/doctrine-batch-utils": "^2.4",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"setono/composite-compiler-pass": "^1.1",
"setono/doctrine-orm-trait": "^1.2",
"sylius/channel": "^1.0",
"sylius/core": "^1.13",
"sylius/core-bundle": "^1.0",
"sylius/mailer-bundle": "^1.8 || ^2.0",
"sylius/order": "^1.0",
"sylius/resource-bundle": "^1.6",
"sylius/review": "^1.0",
"sylius/ui-bundle": "^1.0",
"symfony/cache-contracts": "^2.5",
"symfony/config": "^6.4",
"symfony/console": "^6.4",
"symfony/dependency-injection": "^6.4",
"symfony/event-dispatcher": "^6.4",
"symfony/form": "^6.4",
"symfony/framework-bundle": "^6.4",
"symfony/http-foundation": "^6.4",
"symfony/options-resolver": "^6.4",
"symfony/string": "^6.4",
"symfony/translation-contracts": "^2.5",
"symfony/validator": "^6.4",
"symfony/workflow": "^6.4",
"twig/twig": "^3.23",
"webmozart/assert": "^1.11"
},
"require-dev": {
"api-platform/core": "^2.7.16",
"babdev/pagerfanta-bundle": "^3.8",
"behat/behat": "^3.14",
"dama/doctrine-test-bundle": "^8.2",
"doctrine/data-fixtures": "^1.7",
"doctrine/dbal": "^3.10.4",
"doctrine/doctrine-bundle": "^2.11",
"jms/serializer-bundle": "^4.2",
"lexik/jwt-authentication-bundle": "^2.17",
"setono/sylius-plugin-pack": "~1.14.2",
"shipmonk/composer-dependency-analyser": "^1.6",
"sylius-labs/polyfill-symfony-security": "^1.1.2",
"sylius/fixtures-bundle": "^1.9",
"symfony/browser-kit": "^6.4",
"symfony/css-selector": "^6.4",
"symfony/debug-bundle": "^6.4",
"symfony/dotenv": "^6.4",
"symfony/intl": "^6.4",
"symfony/property-info": "^6.4",
"symfony/serializer": "^6.4",
"symfony/web-profiler-bundle": "^6.4",
"symfony/webpack-encore-bundle": "^1.17.2",
"synolia/sylius-mail-tester-plugin": "^2.4",
"willdurand/negotiation": "^3.1"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\SyliusReviewPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Setono\\SyliusReviewPlugin\\Tests\\": "tests/"
},
"classmap": [
"tests/Application/Kernel.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"symfony/thanks": false
},
"audit": {
"block-insecure": false
},
"sort-packages": true
},
"scripts": {
"analyse": "phpstan analyse",
"check-style": "ecs check",
"fix-style": "ecs check --fix",
"phpunit": "phpunit",
"rector": "rector process"
}
}