-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.65 KB
/
Copy pathcomposer.json
File metadata and controls
88 lines (88 loc) · 2.65 KB
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
85
86
87
88
{
"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",
"homepage": "https://github.com/Ehyiah/ux-quill",
"support": {
"issues": "https://github.com/Ehyiah/ux-quill/issues",
"source": "https://github.com/Ehyiah/ux-quill"
},
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Matthieu Gostiaux",
"role": "Author",
"email": "rei_eva@hotmail.com"
}
],
"require": {
"php": ">=8.1.0",
"symfony/stimulus-bundle": "^2.9.1|^3.0",
"symfony/twig-bundle": "^6.1|^7.0|^8.0",
"symfony/form": "^6.1|^7.0|^8.0",
"symfony/translation": "^6.1|^7.0|^8.0",
"symfony/ux-twig-component": "^2.13|^3.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1.17",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.1",
"phpdocumentor/reflection-docblock": "<5.2|>=6",
"symfony/browser-kit": "^6.1|^7.0|^8.0",
"symfony/framework-bundle": "^6.1|^7.0|^8.0",
"symfony/asset-mapper": "^6.3|^7.0|^8.0",
"easycorp/easyadmin-bundle": "^4.7|^5.0",
"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
}
}
}