-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 854 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 854 Bytes
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
{
"name": "syntaxphoenix/editorjs-symfony-parser-bundle",
"description": "A parser-bundle for editorjs and symfony",
"autoload": {
"psr-4": {
"SyntaxPhoenix\\EJSParserBundle\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests/ --coverage-clover=coverage.xml",
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"require": {
"ext-dom": "*",
"ext-json": "*",
"masterminds/html5": "^2.7",
"symfony/flex": "^1.12 || ^2.0",
"symfony/framework-bundle": "^5.0 || ^6.0",
"twig/twig": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}