forked from Setono/SyliusRedirectPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2.16 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
{
"name": "setono/sylius-redirect-plugin",
"type": "sylius-plugin",
"description": "Sylius plugin for managing redirects",
"keywords": [
"redirect",
"setono",
"sylius",
"sylius-plugin"
],
"license": "MIT",
"require": {
"php": ">=7.4",
"doctrine/collections": "^1.6",
"doctrine/orm": "^2.7",
"doctrine/persistence": "^1.3 || ^2.1",
"sylius/resource-bundle": "^1.6",
"symfony/config": "^4.4 || ^5.0",
"symfony/console": "^4.4 || ^5.0",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/event-dispatcher": "^4.4 || ^5.0",
"symfony/form": "^4.4 || ^5.0",
"symfony/http-foundation": "^4.4 || ^5.0.7",
"symfony/http-kernel": "^4.4 || ^5.1.5",
"symfony/routing": "^4.4 || ^5.0",
"symfony/validator": "^4.4 || ^5.0",
"thecodingmachine/safe": "^1.0",
"webmozart/assert": "^1.9"
},
"require-dev": {
"phpspec/phpspec": "^6.1",
"phpunit/phpunit": "^8.5",
"roave/security-advisories": "dev-master",
"setono/code-quality-pack": "^1.5.2",
"setono/sylius-behat-pack": "^0.1",
"sylius/sylius": "~1.7.0",
"symfony/debug-bundle": "^5.1",
"symfony/dotenv": "^5.2",
"symfony/intl": "^4.4 || ^5.0",
"symfony/web-profiler-bundle": "^5.0"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"autoload": {
"psr-4": {
"Setono\\SyliusRedirectPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Setono\\SyliusRedirectPlugin\\": "tests/"
},
"classmap": [
"tests/Application/Kernel.php"
]
},
"prefer-stable": true,
"scripts": {
"analyse": "phpstan analyse -c phpstan.neon -l max src/",
"check-style": "ecs check src/ spec/",
"fix-style": "ecs check --fix src/ spec/",
"phpspec": "phpspec run",
"phpunit": "phpunit",
"test": [
"@phpspec",
"@phpunit"
]
}
}