-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
84 lines (84 loc) · 2.45 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"type": "symfony-bundle",
"name": "ehyiah/ux-quill",
"description": "Symfony UX Bundle to use Quill JS wysiwyg text editor with full and easy customisation",
"keywords": [
"symfony-ux",
"symfony ux",
"symfony form",
"symfony wysiwyg",
"symfony quill",
"symfony ux bundle",
"quilljs",
"quill",
"wysiwyg",
"easyadmin",
"easyadmin wysiwyg"
],
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Matthieu Gostiaux",
"role": "Author",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1.0",
"symfony/stimulus-bundle": "^2.9.1",
"twig/extra-bundle": "^2.12|^3.0",
"symfony/twig-bundle": "^6.1|^7.0",
"symfony/form": "^6.1|^7.0",
"symfony/html-sanitizer": "^6.1|^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.1",
"symfony/browser-kit": "^6.1|^7.0",
"symfony/framework-bundle": "^6.1|^7.0",
"symfony/asset-mapper": "^6.3|^7.0",
"easycorp/easyadmin-bundle": "^4.7",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/extension-installer": "^1.3",
"friendsoftwig/twigcs": "^6.4",
"dg/bypass-finals": "^1.6"
},
"autoload": {
"psr-4": {
"Ehyiah\\QuillJsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ehyiah\\QuillJsBundle\\Tests\\": "tests/"
}
},
"extra": {
"thanks": {
"name": "symfony/ux",
"url": "https://github.com/symfony/ux"
}
},
"scripts": {
"phpcsfixer": "./vendor/bin/php-cs-fixer fix",
"phpcsfixer-lint": "./vendor/bin/php-cs-fixer fix --dry-run --diff",
"twig-cs-lint": "./vendor/bin/twigcs ./src/templates/",
"phpstan": "./vendor/bin/phpstan --memory-limit=1G analyse",
"rector": "./vendor/bin/rector process --dry-run",
"rector-nocache": "./vendor/bin/rector process --dry-run --clear-cache",
"rector-no-dry": "./vendor/bin/rector process",
"ci": [
"@phpcsfixer-lint",
"@phpstan",
"@twig-cs-lint"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}