This repository has been archived by the owner on May 23, 2023. It is now read-only.
forked from coderiekelt/SyliusMolliePlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 2.14 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
{
"name": "bitbag/mollie-plugin",
"type": "sylius-plugin",
"description": "Mollie payment plugin for Sylius applications.",
"license": "MIT",
"require": {
"php": "^7.3",
"sylius/sylius": "^1.8",
"symfony/messenger": "^4.4 || ^5.2",
"mollie/mollie-api-php": "^2.0",
"sylius/refund-plugin": "1.0.0-RC.9",
"sylius/admin-order-creation-plugin": "^0.11",
"ext-json": "*",
"symfony/webpack-encore-bundle": "^1.11"
},
"require-dev": {
"behat/behat": "^3.4",
"behat/mink": "^1.8",
"behat/mink-browserkit-driver": "^1.3",
"behat/mink-extension": "^2.3",
"behat/mink-selenium2-driver": "^1.4",
"friends-of-behat/page-object-extension": "^0.3",
"friends-of-behat/suite-settings-extension": "^1.0",
"friends-of-behat/symfony-extension": "^2.0",
"friends-of-behat/variadic-extension": "^1.1",
"friendsofsymfony/oauth-server-bundle": "^1.6 || >2.0.0-alpha.0 ^2.0@dev",
"lakion/mink-debug-extension": "^1.2.3",
"phpspec/phpspec": "^6.0",
"phpstan/phpstan": "0.12.29",
"phpstan/phpstan-webmozart-assert": "0.12.6",
"sensiolabs/security-checker": "^5.0",
"sylius-labs/coding-standard": "^4.0",
"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"
},
"conflict": {
"symplify/package-builder": "8.3.25"
},
"scripts": {
"analyse": [
"@composer validate --strict",
"vendor/bin/phpstan.phar analyse -c phpstan.neon -l max src/",
"vendor/bin/ecs check src/"
],
"fix": [
"vendor/bin/ecs check src/ --fix"
]
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"BitBag\\SyliusMolliePlugin\\": "src/",
"Tests\\BitBag\\SyliusMolliePlugin\\": ["tests/", "tests/Application/src"]
}
},
"autoload-dev": {
"classmap": ["tests/Application/Kernel.php"]
}
}