forked from Setono/SyliusFeedPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
104 lines (104 loc) · 3.63 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": ">=7.4",
"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",
"league/flysystem-bundle": "^1.1",
"liip/imagine-bundle": "^2.4",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.1",
"setono/doctrine-orm-batcher": "^0.6",
"setono/doctrine-orm-batcher-bundle": "^0.3.1",
"spatie/enum": "^3.7",
"sylius/resource-bundle": "^1.6",
"symfony/config": "^4.4 || ^5.4",
"symfony/console": "^4.4 || ^5.4",
"symfony/dependency-injection": "^4.4 || ^5.4",
"symfony/event-dispatcher": "^4.4 || ^5.4",
"symfony/event-dispatcher-contracts": "^1.1 || ^2.2",
"symfony/form": "^4.4 || ^5.4",
"symfony/http-foundation": "^4.4 || ^5.4.7",
"symfony/http-kernel": "^4.4 || ^5.4",
"symfony/messenger": "^4.4 || ^5.4",
"symfony/mime": "^4.4 || ^5.4",
"symfony/options-resolver": "^4.4 || ^5.4",
"symfony/routing": "^4.4 || ^5.4",
"symfony/serializer": "^4.4 || ^5.4",
"symfony/translation-contracts": "^1.1 || ^2.3",
"symfony/uid": "^5.4",
"symfony/validator": "^4.4 || ^5.4",
"symfony/workflow": "^4.4 || ^5.4",
"twig/twig": "^2.14",
"webmozart/assert": "^1.1"
},
"require-dev": {
"api-platform/core": "^2.6",
"friendsofsymfony/oauth-server-bundle": ">2.0.0-alpha.0 ^2.0@dev",
"lexik/jwt-authentication-bundle": "^2.15",
"phpspec/phpspec": "^7.2",
"phpunit/phpunit": "^9.5",
"polishsymfonycommunity/symfony-mocker-container": "^1.0",
"psalm/plugin-phpunit": "^0.16",
"psalm/plugin-symfony": "^3.0",
"roave/security-advisories": "dev-latest",
"setono/code-quality-pack": "^2.2",
"setono/sylius-behat-pack": "^0.2",
"sylius/admin-api-bundle": "^1.11",
"sylius/sylius": "~1.10.14",
"symfony/debug-bundle": "^4.4 || ^5.4",
"symfony/dotenv": "^4.4 || ^5.4",
"symfony/intl": "^4.4 || ^5.4",
"symfony/web-profiler-bundle": "^4.4 || ^5.4",
"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"
]
}
}