Skip to content

Commit 1054b2f

Browse files
feat: parser-bundle
1 parent e3063a0 commit 1054b2f

23 files changed

+3295
-726
lines changed

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
11
.phpunit.result.cache
22
/vendor/
33
/.idea/
4+
5+
###> phpunit/phpunit ###
6+
/phpunit.xml
7+
.phpunit.result.cache
8+
###< phpunit/phpunit ###
9+
10+
###> symfony/framework-bundle ###
11+
/.env.local
12+
/.env.local.php
13+
/.env.*.local
14+
/config/secrets/prod/prod.decrypt.private.php
15+
/public/bundles/
16+
/var/
17+
/vendor/
18+
###< symfony/framework-bundle ###

composer.json

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
{
2-
"name": "durlecode/editorjs-simple-html-parser",
3-
"description": "A simple Json to Html parser for EditorJS library",
2+
"name": "syntaxphoenix/editorjs-symfony-parser-bundle",
3+
"description": "A parser-bundle for editorjs and symfony",
44
"minimum-stability": "dev",
55
"autoload": {
66
"psr-4": {
7-
"Durlecode\\EJSParser\\": "src/"
8-
}
9-
},
10-
"autoload-dev": {
11-
"psr-4": {
12-
"Durlecode\\EJSParser\\Tests\\": "tests/"
7+
"SyntaxPhoenix\\EJSParserBundle\\": "src/"
138
}
149
},
1510
"scripts": {
16-
"test": "vendor/bin/phpunit tests/ --coverage-clover=coverage.xml"
11+
"test": "vendor/bin/phpunit tests/ --coverage-clover=coverage.xml",
12+
"auto-scripts": {
13+
"cache:clear": "symfony-cmd",
14+
"assets:install %PUBLIC_DIR%": "symfony-cmd"
15+
}
1716
},
1817
"require": {
1918
"php": ">=7.3",
2019
"ext-dom": "*",
2120
"ext-json": "*",
22-
"masterminds/html5": "^2.7@dev"
21+
"masterminds/html5": "^2.7@dev",
22+
"symfony/flex": "1.12.x-dev",
23+
"symfony/framework-bundle": "5.x-dev",
24+
"symfony/twig-bundle": "5.x-dev"
2325
},
2426
"require-dev": {
2527
"phpunit/phpunit": "^8"

0 commit comments

Comments
 (0)