-
Notifications
You must be signed in to change notification settings - Fork 58
/
composer.json
58 lines (58 loc) · 1.76 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
{
"name": "trsteel/ckeditor-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for easy integration of the CKEditor WYSIWYG",
"keywords": ["ckeditor", "wysiwyg", "editor"],
"license": "MIT",
"authors": [
{
"name": "Trent Steel",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "^6.0 || ^7.0",
"symfony/form": "^6.0 || ^7.0",
"twig/twig": ">=1.1,<4.0",
"ezyang/htmlpurifier": "~4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"symfony/phpunit-bridge": "^6.0 || ^7.0",
"symfony/twig-bundle": "^6.0 || ^7.0",
"symfony/asset": "^6.0 || ^7.0",
"symfony/templating": "^6.0 || ^7.0",
"symfony/yaml": "^6.0 || ^7.0",
"php-cs-fixer/shim": "^3.13",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-symfony": "^1.2",
"rector/rector": "^0.15.10"
},
"autoload": {
"psr-4": { "Trsteel\\CkeditorBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "1.11.x-dev"
}
},
"scripts": {
"lint:rector": "rector process",
"lint:php-cs-fixer": "php-cs-fixer fix -v",
"lint": [
"rector process",
"php-cs-fixer fix -v"
],
"test:php-cs-fixer": "php-cs-fixer fix -v --dry-run",
"test:phpstan": "phpstan analyse --ansi --memory-limit=-1",
"test:rector": "rector process --dry-run",
"test:phpunit": "simple-phpunit",
"test": [
"php-cs-fixer fix -v --dry-run",
"phpstan analyse --ansi --memory-limit=-1",
"rector process --dry-run",
"simple-phpunit"
]
}
}