-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.87 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.87 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
{
"name": "leapt/froala-editor-bundle",
"type": "symfony-bundle",
"description": "Provides a Froala editor integration for Symfony 6 & 7.",
"keywords": [ "froala", "editor", "wysiwyg" ],
"license": "MIT",
"authors": [
{
"name": "Simon Guionniere",
"email": "simon.guionniere@gmail.com"
},
{
"name": "Stefan Neculai",
"email": "stefan.neculai@gmail.com"
},
{
"name": "Jonathan Scheiber",
"homepage": "https://github.com/jmsche"
}
],
"require": {
"php": "^8.2",
"ext-zip": "*",
"symfony/asset": "^6.4 || ^7.0 || ^8.0",
"symfony/console": "^6.4 || ^7.0 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0",
"symfony/form": "^6.4 || ^7.0 || ^8.0",
"symfony/http-client": "^6.4 || ^7.0 || ^8.0",
"symfony/string": "^6.4 || ^7.0 || ^8.0",
"symfony/twig-bundle": "^6.4 || ^7.0 || ^8.0",
"twig/twig": "^3.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1.22",
"phpstan/phpstan-deprecation-rules": "^2.0.3",
"phpunit/phpunit": "^11.5.35",
"symfony/css-selector": "^6.4 || ^7.0 || ^8.0",
"symfony/dom-crawler": "^6.4 || ^7.0 || ^8.0",
"symfony/yaml": "^6.4 || ^7.0 || ^8.0",
"symplify/easy-coding-standard": "^12.5.24"
},
"scripts": {
"ci": [
"@cs:dry",
"@phpstan",
"vendor/bin/phpunit --colors=auto"
],
"cs:dry": "vendor/bin/ecs",
"cs:fix": "vendor/bin/ecs --fix",
"phpstan": "vendor/bin/phpstan analyse --ansi"
},
"autoload": {
"psr-4": {
"Leapt\\FroalaEditorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Leapt\\FroalaEditorBundle\\Tests\\": "tests/"
}
}
}