-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.95 KB
/
Copy pathcomposer.json
File metadata and controls
88 lines (88 loc) · 2.95 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
{
"name": "setono/sylius-redirect-plugin",
"description": "Sylius plugin for managing redirects",
"license": "MIT",
"type": "sylius-plugin",
"keywords": [
"redirect",
"setono",
"sylius",
"sylius-plugin"
],
"require": {
"php": ">=8.2",
"doctrine/collections": "^2.2",
"doctrine/persistence": "^1.3 || ^2.1 || ^3.0 || ^4.0",
"league/uri": "^6.0 || ^7.5",
"league/uri-components": "^2.3 || ^7.5",
"ocramius/doctrine-batch-utils": "^2.4",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"setono/composite-compiler-pass": "^1.2",
"setono/doctrine-orm-trait": "^1.2",
"sylius/channel": "^2.0",
"sylius/channel-bundle": "^2.0",
"sylius/core-bundle": "^2.0",
"sylius/product": "^2.0",
"sylius/resource-bundle": "^1.12",
"sylius/taxonomy": "^2.0",
"sylius/ui-bundle": "^2.0",
"symfony/config": "^6.4 || ^7.1",
"symfony/console": "^6.4 || ^7.1",
"symfony/dependency-injection": "^6.4 || ^7.1",
"symfony/event-dispatcher": "^6.4 || ^7.1",
"symfony/form": "^6.4 || ^7.1",
"symfony/http-foundation": "^6.4 || ^7.1",
"symfony/http-kernel": "^6.4 || ^7.1",
"symfony/routing": "^6.4 || ^7.1",
"symfony/validator": "^6.4 || ^7.1",
"twig/twig": "^3.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"api-platform/core": "^4.0.3",
"dama/doctrine-test-bundle": "^8.6",
"lexik/jwt-authentication-bundle": "^3.1",
"php-http/message-factory": "^1.1",
"setono/sylius-plugin": "^2.1",
"sylius/sylius": "~2.2.5",
"symfony/debug-bundle": "^6.4 || ^7.1",
"symfony/dotenv": "^6.4 || ^7.1",
"symfony/intl": "^6.4 || ^7.1",
"symfony/web-profiler-bundle": "^6.4 || ^7.1",
"symfony/webpack-encore-bundle": "^2.2"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\SyliusRedirectPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Setono\\SyliusRedirectPlugin\\": "tests/"
},
"classmap": [
"tests/Application/Kernel.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"ocramius/package-versions": true,
"php-http/discovery": true,
"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 --testsuite unit,functional",
"phpunit:functional": "phpunit --testsuite functional",
"phpunit:unit": "phpunit --testsuite unit"
}
}