-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
50 lines (50 loc) · 1.48 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
{
"name": "kms/froala-editor-bundle",
"type": "symfony-bundle",
"description": "Provides a Froala editor integration for Symfony 4 & 5.",
"keywords": [ "froala", "editor", "wysiwyg" ],
"license": "MIT",
"authors": [
{
"name": "Simon Guionniere",
"email": "[email protected]"
},
{
"name": "Stefan Neculai",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8.0",
"ext-zip": "*",
"doctrine/inflector": "^1.4|^2.0",
"symfony/asset": "^4.4|^5.0",
"symfony/console": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/form": "^4.4|^5.0",
"symfony/http-client": "^4.4|^5.0",
"symfony/twig-bundle": "^4.4|^5.0",
"twig/twig": "^1.1|^2.0|^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16.7",
"phpstan/phpstan": "^0.12.56",
"symfony/phpunit-bridge": "^4.4|^5.0",
"symfony/yaml": "^4.4|^5.0"
},
"scripts": {
"cs:dry": "php-cs-fixer fix --diff --diff-format=udiff --dry-run --no-interaction --ansi",
"cs:fix": "php-cs-fixer fix --ansi",
"phpstan": "vendor/bin/phpstan analyse --ansi"
},
"autoload": {
"psr-4": {
"KMS\\FroalaEditorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KMS\\FroalaEditorBundle\\Tests\\": "tests/"
}
}
}