-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 2.23 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 2.23 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
{
"name": "loevgaard/sylius-brand-plugin",
"description": "A Sylius plugin for handling brands",
"license": "MIT",
"type": "sylius-plugin",
"require": {
"php": ">=8.2",
"doctrine/collections": "^2.0",
"doctrine/orm": "^2.0 || ^3.0",
"knplabs/knp-menu": "^3.8",
"sylius/core": "^2.0",
"sylius/core-bundle": "^2.0",
"sylius/product-bundle": "^2.0",
"sylius/resource-bundle": "^1.13",
"sylius/ui-bundle": "^2.0",
"symfony/config": "^6.4 || ^7.4",
"symfony/dependency-injection": "^6.4 || ^7.4",
"symfony/event-dispatcher": "^6.4 || ^7.4",
"symfony/form": "^6.4 || ^7.4",
"symfony/http-foundation": "^6.4 || ^7.4",
"symfony/options-resolver": "^6.4 || ^7.4",
"symfony/ux-autocomplete": "^2.31",
"symfony/ux-live-component": "^2.31",
"webmozart/assert": "^1.12"
},
"require-dev": {
"payum/core": "^1.7.6",
"setono/sylius-plugin-pack": "~2.1.0",
"symfony/debug-bundle": "^6.4 || ^7.4",
"symfony/dotenv": "^6.4 || ^7.4",
"symfony/intl": "^6.4 || ^7.4",
"symfony/maker-bundle": "^1.65",
"symfony/property-info": "^6.4 || ^7.4",
"symfony/serializer": "^6.4 || ^7.4",
"symfony/web-profiler-bundle": "^6.4 || ^7.4",
"symfony/webpack-encore-bundle": "^2.4"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Loevgaard\\SyliusBrandPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Loevgaard\\SyliusBrandPlugin\\Tests\\": "tests/"
},
"classmap": [
"tests/Application/Kernel.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"php-http/discovery": false,
"phpstan/extension-installer": true,
"symfony/thanks": false
},
"sort-packages": true
},
"scripts": {
"analyse": "phpstan analyse",
"check-style": "ecs check",
"fix-style": "ecs check --fix",
"phpunit": "phpunit"
}
}