-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
33 lines (33 loc) · 884 Bytes
/
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
{
"name": "tgalopin/html-sanitizer-bundle",
"description": "Symfony Bundle for https://github.com/tgalopin/html-sanitizer",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Titouan Galopin",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"HtmlSanitizer\\Bundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\HtmlSanitizer\\Bundle\\": "tests"
}
},
"require": {
"php": ">=7.1",
"symfony/framework-bundle": "^3.4|^4.0|^5.0|^6.0",
"tgalopin/html-sanitizer": "^1.1"
},
"require-dev": {
"symfony/form": "^4.1|^5.0|^6.0",
"symfony/phpunit-bridge": "^4.4",
"symfony/twig-bundle": "^4.1|^5.0|^6.0",
"symfony/var-dumper": "^4.1|^5.0|^6.0"
}
}