forked from FriendsOfSylius/SyliusImportExportPlugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
89 lines (89 loc) · 3.22 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
{
"name": "friendsofsylius/sylius-import-export-plugin",
"type": "sylius-plugin",
"description": "import / export plugin for Sylius.",
"license": "MIT",
"require": {
"php": "^7.3",
"sylius/sylius": "~1.8.0 || ~1.9.0 || ~1.10.0",
"portphp/portphp": "^1.2",
"symfony/stopwatch": "^4.4 || ^5.2",
"queue-interop/queue-interop": "^0.6.2 || ^0.7 || ^0.8"
},
"suggest": {
"portphp/spreadsheet": "To support importing Excel and LibreOffice Calc files, use version ^1.1",
"portphp/csv": "To support importing csv files, use version ^1.1",
"enqueue/enqueue-bundle" : "To help defining message queuing services",
"enqueue/redis" : "To support message queuing via redis",
"enqueue/sqs" : "To support message queuing via sqs"
},
"require-dev": {
"behat/behat": "^3.6.1",
"behat/mink": "^1.8",
"friendsofsymfony/oauth-server-bundle": "^1.6 || >2.0.0-alpha.0 ^2.0@dev",
"friends-of-behat/mink-browserkit-driver": "^1.4",
"friends-of-behat/mink-extension": "^2.4",
"behat/mink-selenium2-driver": "^1.3",
"enqueue/redis": "^0.8.23",
"friends-of-behat/page-object-extension": "^0.3",
"friends-of-behat/suite-settings-extension": "^1.0",
"friends-of-behat/symfony-extension": "^2.2",
"friends-of-behat/variadic-extension": "^1.1",
"lakion/mink-debug-extension": "^1.2.3",
"phpspec/phpspec": "^7.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "0.12.82",
"phpstan/phpstan-doctrine": "0.12.33",
"phpstan/phpstan-strict-rules": "^0.12.0",
"phpstan/phpstan-webmozart-assert": "0.12.12",
"phpunit/phpunit": "^9.5",
"sensiolabs/security-checker": "^6.0",
"sylius-labs/coding-standard": "^3.2",
"symfony/browser-kit": "^4.4 || ^5.2",
"symfony/debug-bundle": "^4.4 || ^5.2",
"symfony/dotenv": "^4.4 || ^5.2",
"symfony/intl": "^4.4 || ^5.2",
"symfony/web-profiler-bundle": "^4.4 || ^5.2",
"symfony/web-server-bundle": "^4.4 || ^5.2",
"portphp/csv": "^1.1.0",
"portphp/spreadsheet": "^1.0.0-alpha",
"predis/predis": "^1.1"
},
"conflict": {
"symfony/symfony": "4.1.8",
"symfony/browser-kit": "4.1.8",
"symfony/dependency-injection": "4.1.8",
"symfony/dom-crawler": "4.1.8",
"symfony/routing": "4.1.8",
"sonata-project/core-bundle": ">=3.12 <3.13.4"
},
"prefer-stable": true,
"minimum-stability": "alpha",
"autoload": {
"psr-4": {
"FriendsOfSylius\\SyliusImportExportPlugin\\": "src/",
"Tests\\FriendsOfSylius\\SyliusImportExportPlugin\\": "tests/"
}
},
"autoload-dev": {
"classmap": ["tests/Application/Kernel.php"]
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"scripts": {
"analyse": [
"bin/phpstan analyse -c phpstan.neon -l max src/",
"bin/ecs check src/ spec/ tests/Behat/"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.5-dev"
},
"symfony": {
"require": "^5.2"
}
}
}