-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
45 lines (45 loc) · 1.4 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
{
"name": "tbmatuka/editorjs-bundle",
"description": "Symfony bundle for Editor.js",
"homepage": "https://github.com/tbmatuka/EditorjsBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Tin Benjamin Matuka",
"homepage": "https://tbmatuka.com/"
}
],
"support": {
"issues": "https://github.com/tbmatuka/EditorjsBundle/issues",
"source": "https://github.com/tbmatuka/EditorjsBundle"
},
"autoload": {
"psr-4": {
"Tbmatuka\\EditorjsBundle\\": "src"
}
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"symfony/config": "^4.0|^5.0|^6.0",
"symfony/dependency-injection": "^4.0|^5.0",
"symfony/form": "^4.0|^5.0",
"symfony/framework-bundle": "^4.0|^5.0",
"symfony/http-foundation": "^4.0|^5.0",
"symfony/http-kernel": "^4.0|^5.0",
"symfony/options-resolver": "^4.0|^5.0",
"symfony/property-access": "^4.0|^5.0",
"symfony/routing": "^4.0|^5.0",
"symfony/twig-bundle": "^4.0|^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"symfony/framework-bundle": "^4.0",
"symfony/phpunit-bridge": "^4.1"
},
"scripts": {
"cs-fixer": "vendor/bin/php-cs-fixer fix -v --dry-run",
"cs-fixer-fix": "vendor/bin/php-cs-fixer fix -v"
}
}