forked from next-sentence/SyliusRichEditorPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.54 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
{
"name": "monsieurbiz/sylius-rich-editor-plugin",
"type": "sylius-plugin",
"keywords": ["monsieurbiz", "sylius", "sylius-plugin", "monofony"],
"description": "A Rich Editor plugin for Sylius.",
"license": "MIT",
"require": {
"php": "~7.4|~8.0",
"ext-json": "*",
"ext-intl": "*",
"sylius/ui-bundle": "^1.8"
},
"require-dev": {
"behat/behat": "^3.6.1",
"behat/mink-selenium2-driver": "^1.4",
"dmore/behat-chrome-extension": "^1.3",
"dmore/chrome-mink-driver": "^2.7",
"doctrine/data-fixtures": "^1.4",
"ergebnis/composer-normalize": "^2.5",
"friends-of-behat/mink": "^1.8",
"friends-of-behat/mink-browserkit-driver": "^1.4",
"friends-of-behat/mink-extension": "^2.4",
"friends-of-behat/page-object-extension": "^0.3",
"friends-of-behat/symfony-extension": "^2.1",
"friends-of-behat/variadic-extension": "^1.3",
"hwi/oauth-bundle": "^1.1",
"lchrusciel/api-test-case": "^5.0",
"matthiasnoback/symfony-config-test": "^4.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "^1.4",
"pamil/prophecy-common": "^0.1",
"phpspec/phpspec": "^6.1",
"phpstan/phpstan": "^0.12.57",
"phpstan/phpstan-doctrine": "^0.12.19",
"phpstan/phpstan-webmozart-assert": "^0.12.7",
"phpunit/phpunit": "^8.5",
"psalm/plugin-mockery": "^0.3",
"psr/event-dispatcher": "^1.0",
"sylius-labs/coding-standard": "^3.1",
"sylius/sylius": "^1.8",
"symfony/browser-kit": "^4.4",
"symfony/debug-bundle": "^4.4",
"symfony/dotenv": "^4.4",
"symfony/flex": "^1.7",
"symfony/web-profiler-bundle": "^4.4"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"MonsieurBiz\\SyliusRichEditorPlugin\\": "src/"
}
},
"autoload-dev": {
"classmap": ["tests/Application/src/Kernel.php"],
"psr-4": {
"App\\": "tests/Application/src/",
"Tests\\MonsieurBiz\\SyliusRichEditorPlugin\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"phpcs": "php-cs-fixer fix --using-cache=false"
},
"extra": {
"symfony": {
"require": "^4.4"
},
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}