-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.47 KB
/
composer.json
File metadata and controls
81 lines (81 loc) · 2.47 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
{
"name": "helios-ag/fm-summernote-bundle",
"description": "Summernote bundle, adds Summernote WYSIWYG editor to your Symfony project",
"keywords": ["summernote", "WYSIWYG", "editor", "symfony"],
"type": "symfony-bundle",
"homepage": "https://github.com/helios-ag/FMSummernoteBundle",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Al Ganiev",
"email": "helios.ag@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/helios-ag/FMSummernoteBundle/contributors"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"symfony/phpunit-bridge": "^8.0.3",
"matthiasnoback/symfony-config-test": "^6.1",
"matthiasnoback/symfony-dependency-injection-test": "^6.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/extension-installer": "^1.3",
"rector/rector": "^1.0",
"vimeo/psalm": "^5.22",
"symfony/var-dumper": "^6.4 || ^7.0"
},
"suggest": {
"helios-ag/fm-elfinder-bundle": "Elfinder bundle, file manager",
"helios-ag/fm-rfm-bundle": "Richfilemanager bundle, file manager"
},
"autoload": {
"psr-4": {
"FM\\SummernoteBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FM\\SummernoteBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true
},
"sort-packages": true,
"platform": {
"php": "8.1.0"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"symfony": {
"allow-contrib": true
}
},
"scripts": {
"test": "phpunit",
"test:coverage": "XDEBUG_MODE=coverage phpunit --coverage-html=var/coverage",
"phpstan": "phpstan analyse",
"psalm": "psalm",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix"
}
}