forked from monsieurbiz/SyliusSettingsPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.51 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
{
"name": "monsieurbiz/sylius-settings-plugin",
"type": "sylius-plugin",
"keywords": ["sylius", "sylius-plugin", "settings", "monsieurbiz"],
"description": "Add a settings panel to your Sylius.",
"license": "MIT",
"require": {
"php": "~7.4 || ~8.0",
"ext-mbstring": "*",
"ext-json": "*",
"sylius/sylius": "~1.8.0 || ~1.9.0 || ~1.10.0"
},
"require-dev": {
"phpspec/phpspec": "^6.1",
"sensiolabs/security-checker": "^6.0",
"sylius-labs/coding-standard": "^3.1",
"symfony/browser-kit": "^4.4",
"symfony/debug-bundle": "^4.4",
"symfony/dotenv": "^4.4",
"symfony/intl": "^4.4",
"symfony/web-profiler-bundle": "^4.4",
"symfony/web-server-bundle": "^4.4",
"lchrusciel/api-test-case": "^3.0 || ^5.0",
"friendsofphp/php-cs-fixer": "^2.16.1",
"friendsofsymfony/oauth-server-bundle": "^1.6 || >2.0.0-alpha.0 ^2.0@dev",
"phpstan/phpstan": "^0.12.84"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"MonsieurBiz\\SyliusSettingsPlugin\\": "src/"
}
},
"autoload-dev": {
"classmap": ["tests/Application/src/Kernel.php"],
"psr-4": {
"App\\": "tests/Application/src/"
}
},
"scripts": {
"phpcs": "php-cs-fixer fix --using-cache=false"
},
"extra": {
"symfony": {
"require": "^4.4"
},
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}