-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
87 lines (86 loc) · 2.87 KB
/
composer.json
File metadata and controls
87 lines (86 loc) · 2.87 KB
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
{
"name": "ecoco/sylius-base-price-plugin",
"type": "sylius-plugin",
"keywords": ["sylius", "sylius-plugin", "ecoco"],
"description": "Sylius base price plugin will show product base price next to its price and in cart",
"license": "MIT",
"require": {
"ext-bcmath": "*",
"ext-intl": "*",
"ext-curl": "*",
"ext-simplexml": "*",
"ext-gd": "*",
"ext-mbstring": "*",
"ext-exif": "*",
"php": "^7.3",
"friendsofsymfony/oauth-server-bundle": "^1.6 || >2.0.0-alpha.0 ^2.0@dev",
"jordanbrauer/unit-converter": "^0.8",
"sylius/sylius": "^1.8 || ^1.9"
},
"require-dev": {
"behat/behat": "^3.8.1",
"behat/mink-selenium2-driver": "^1.4",
"dmore/behat-chrome-extension": "^1.3",
"dmore/chrome-mink-driver": "^2.7",
"friends-of-behat/mink": "^1.9",
"friends-of-behat/mink-browserkit-driver": "^1.5",
"friends-of-behat/mink-extension": "^2.5",
"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.3",
"lakion/mink-debug-extension": "^1.2.3",
"phpspec/phpspec": "^6.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "0.12.25",
"phpstan/phpstan-doctrine": "0.12.13",
"phpstan/phpstan-strict-rules": "^0.12.3",
"phpstan/phpstan-webmozart-assert": "0.12.4",
"phpunit/phpunit": "^8.5",
"sensiolabs/security-checker": "^6.0",
"sylius-labs/coding-standard": "^3.2",
"symfony/browser-kit": "^4.4|^5.0",
"symfony/debug-bundle": "^4.4|^5.0",
"symfony/dotenv": "^4.4|^5.0",
"symfony/intl": "^4.4|^5.0",
"symfony/web-profiler-bundle": "^4.4|^5.0",
"symfony/web-server-bundle": "^4.4|^5.0",
"vimeo/psalm": "3.11.4"
},
"autoload": {
"psr-4": {
"Ecocode\\SyliusBasePricePlugin\\": "src/",
"Tests\\Ecocode\\SyliusBasePricePlugin\\": "tests/"
}
},
"autoload-dev": {
"classmap": ["tests/Application/Kernel.php"]
},
"extra": {
"branch-alias": {
"dev-master": "1.8-dev"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"php bin/create_node_symlink.php"
],
"post-update-cmd": [
"php bin/create_node_symlink.php"
],
"post-create-project-cmd": [
"php bin/create_node_symlink.php"
],
"phpunit": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon -l max src/",
"psalm": "vendor/bin/psalm",
"test": [
"@psalm",
"@phpstan",
"@phpunit"
]
}
}