forked from burzum/cakephp-html-purifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 807 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
34
{
"name": "burzum/cakephp-html-purifier",
"type": "cakephp-plugin",
"description": "HtmlPurifier plugin for CakePHP",
"keywords": ["html", "sanitize", "purifier", "validation", "tidy", "markup"],
"homepage": "http://github.com/burzum/cakephp-html-purifier",
"license": "MIT",
"authors": [
{
"name": "Florian Krämer",
"homepage": "http://florian-kraemer.net"
}
],
"minimum-stability": "stable",
"require": {
"cakephp/cakephp": "3.*",
"ezyang/htmlpurifier": "*"
},
"require-dev": {
"phpunit/phpunit": "5.*"
},
"autoload": {
"psr-4": {
"Burzum\\HtmlPurifier\\": "src",
"Burzum\\HtmlPurifier\\Test\\Fixture\\": "tests\\Fixture"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "/vendor/cakephp/cakephp/tests",
"Burzum\\HtmlPurifier\\Test\\": "tests"
}
}
}