-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
composer.json
104 lines (104 loc) · 3.67 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "setono/sylius-feed-plugin",
"description": "Plugin to generate feeds within the Sylius ecommerce platform",
"license": "MIT",
"type": "symfony-bundle",
"require": {
"php": ">=8.1",
"ext-json": "*",
"doctrine/collections": "^1.6",
"doctrine/orm": "^2.7",
"doctrine/persistence": "^1.3 || ^2.0",
"knplabs/knp-menu": "^3.1",
"league/flysystem": "^1.1 || ^2.1",
"league/flysystem-bundle": "^1.1 || ^2.4",
"liip/imagine-bundle": "^2.4",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"setono/doctrine-orm-batcher": "^0.6",
"setono/doctrine-orm-batcher-bundle": "^0.3.4",
"setono/symfony-main-request-trait": "^1.0",
"spatie/enum": "^3.7",
"sylius/resource-bundle": "^1.6",
"symfony/config": "^5.4 || ^6.3",
"symfony/console": "^5.4 || ^6.3",
"symfony/dependency-injection": "^5.4 || ^6.3",
"symfony/event-dispatcher": "^5.4 || ^6.3",
"symfony/event-dispatcher-contracts": "^1.1 || ^2.2 || ^3.0",
"symfony/form": "^5.4 || ^6.3",
"symfony/http-foundation": "^5.4.7 || ^6.3",
"symfony/http-kernel": "^5.4 || ^6.3",
"symfony/messenger": "^5.4 || ^6.3",
"symfony/mime": "^5.4 || ^6.3",
"symfony/options-resolver": "^5.4 || ^6.3",
"symfony/routing": "^5.4 || ^6.3",
"symfony/serializer": "^5.4 || ^6.3",
"symfony/translation-contracts": "^1.1 || ^2.3 || ^3.0",
"symfony/uid": "^5.4 || ^6.3",
"symfony/validator": "^5.4 || ^6.3",
"symfony/workflow": "^5.4 || ^6.3",
"twig/twig": "^2.14 || ^3.0",
"webmozart/assert": "^1.1"
},
"require-dev": {
"api-platform/core": "^2.6",
"lexik/jwt-authentication-bundle": "^2.15",
"php-http/message-factory": "^1.1",
"phpspec/phpspec": "^7.2",
"phpunit/phpunit": "^9.5",
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
"psalm/plugin-phpunit": "^0.18",
"psalm/plugin-symfony": "^5.0",
"setono/code-quality-pack": "^2.4",
"setono/sylius-behat-pack": "^0.2",
"sylius/sylius": "^1.11",
"symfony/debug-bundle": "^5.4 || ^6.3",
"symfony/dotenv": "^5.4 || ^6.3",
"symfony/intl": "^5.4 || ^6.3",
"symfony/web-profiler-bundle": "^5.4 || ^6.3",
"symfony/webpack-encore-bundle": "^1.17",
"weirdan/doctrine-psalm-plugin": "^2.2"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\SyliusFeedPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Setono\\SyliusFeedPlugin\\": "tests/"
},
"classmap": [
"tests/Application/Kernel.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"symfony/thanks": false
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"analyse": [
"@ensure-test-container-exists",
"psalm"
],
"check-style": "ecs check",
"ensure-test-container-exists": "[[ -f tests/Application/var/cache/test/ApplicationTests_Setono_SyliusFeedPlugin_Application_KernelTestDebugContainer.xml ]] || tests/Application/bin/console cache:warmup --env=test",
"fix-style": "ecs check --fix",
"phpspec": "phpspec run",
"phpunit": "phpunit",
"test": [
"@phpunit",
"@phpspec"
]
}
}