forked from nicolassing/NicolassingQuillBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 877 Bytes
/
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
{
"name": "nicolassing/quill-bundle",
"type": "symfony-bundle",
"description": "A Symfony bundle that integrates Quill as a drop-in replacement for textarea Symfony form.",
"keywords": ["symfony","quill","rte"],
"license": "MIT",
"authors": [
{
"name": "Nicolas Assing",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"symfony/form": "^4.0",
"symfony/framework-bundle": "^4.0",
"symfony/templating": "^4.0",
"symfony/twig-bundle": "^4.0",
"symfony/validator": "^4.0",
"twig/twig": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.2",
"phpunit/phpunit": "^6.5",
"symfony/phpunit-bridge": "^4.0",
"symfony/yaml": "^4.0"
},
"autoload": {
"psr-4": {
"Nicolassing\\QuillBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
}
}