-
Notifications
You must be signed in to change notification settings - Fork 56
/
composer.json
41 lines (41 loc) · 1.22 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
{
"name": "exercise/htmlpurifier-bundle",
"type": "symfony-bundle",
"description": "HTMLPurifier integration for your Symfony project",
"keywords": ["htmlpurifier", "html", "purifier", "symfony"],
"homepage": "https://github.com/Exercise/HTMLPurifierBundle",
"license": "MIT",
"authors": [
{
"name": "contributors",
"homepage": "https://github.com/Exercise/HTMLPurifierBundle/contributors"
}
],
"require": {
"php": "^8.1",
"ezyang/htmlpurifier": "~4.14",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"symfony/form": "^5.4 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^7.0.1",
"twig/twig": "^2.4.4 || ^3.0"
},
"autoload": {
"psr-4": { "Exercise\\HTMLPurifierBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Exercise\\HTMLPurifierBundle\\Tests\\": "tests/" }
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
},
"minimum-stability": "dev"
}