-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "setono/easyadmin-editorjs-bundle",
"description": "Use EditorJS in your EasyAdmin project",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Joachim Løvgaard",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"easycorp/easyadmin-bundle": "^4.0",
"setono/editorjs-bundle": "^1.0",
"setono/editorjs-php": "^1.0",
"setono/html-element": "^1.0@alpha",
"symfony/config": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/filesystem": "^6.0",
"symfony/form": "^6.0",
"symfony/http-foundation": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/mime": "^6.0",
"symfony/routing": "^6.0",
"symfony/string": "^6.0",
"twig/twig": "^3.7",
"webmozart/assert": "^1.11"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^4.3.1",
"nyholm/symfony-bundle-test": "^2.0",
"phpspec/prophecy-phpunit": "^2.0.2",
"phpunit/phpunit": "^9.6.10",
"psalm/plugin-phpunit": "^0.18.4",
"psalm/plugin-symfony": "^5.0.3",
"setono/code-quality-pack": "^2.4"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\EasyadminEditorjsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Setono\\EasyadminEditorjsBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"php-http/discovery": true
},
"sort-packages": true
},
"scripts": {
"analyse": "psalm",
"check-style": "ecs check",
"fix-style": "ecs check --fix",
"phpspec": "phpspec run",
"phpunit": "phpunit"
}
}