-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
32 lines (32 loc) · 928 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
{
"name": "chrisshick/cakephp3-html-purifier",
"type": "cakephp-plugin",
"description": "This is a CakePHP3 Purifier Plugin Behavior that cleanses data before it is marshalled into the entity.",
"keywords": ["cakephp", "cakephp3", "plugin", "htmlpurifier", "purifier", "fields", "entities"],
"homepage": "https://github.com/chrisShick/CakePHP3-HtmlPurifier",
"require": {
"php": ">=5.4.0",
"ezyang/htmlpurifier": "*"
},
"require-dev": {
"cakephp/cakephp": "3.1.*",
"phpunit/phpunit": "4.1.*"
},
"license": "MIT",
"authors": [
{
"name": "Chris Hickingbottom",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ChrisShick\\CakePHP3HtmlPurifier\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ChrisShick\\CakePHP3HtmlPurifier\\Test\\": "tests"
}
}
}