-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
62 lines (62 loc) · 1.83 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
{
"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": "[email protected]"
},
{
"name": "Stefan Neculai",
"email": "[email protected]"
},
{
"name": "Jonathan Scheiber",
"homepage": "https://github.com/jmsche"
}
],
"require": {
"php": "^8.2",
"ext-zip": "*",
"symfony/asset": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/form": "^6.4 || ^7.0",
"symfony/http-client": "^6.4 || ^7.0",
"symfony/string": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0",
"twig/twig": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64.0",
"phpstan/phpstan": "^1.12.5",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"phpunit/phpunit": "^9.6.16",
"symfony/css-selector": "^6.4 || ^7.0",
"symfony/dom-crawler": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0"
},
"scripts": {
"ci": [
"@cs:dry",
"@phpstan",
"vendor/bin/phpunit --colors=auto"
],
"cs:dry": "php-cs-fixer fix --diff --dry-run --no-interaction --ansi",
"cs:fix": "php-cs-fixer fix --ansi",
"phpstan": "vendor/bin/phpstan analyse --ansi"
},
"autoload": {
"psr-4": {
"Leapt\\FroalaEditorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Leapt\\FroalaEditorBundle\\Tests\\": "tests/"
}
}
}