forked from Soflomo/Purifier
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 864 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
35
36
37
{
"name": "soflomo/purifier",
"description": "HTML Purifier as filter and view helper for Zend Framework 2 ",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"zf2",
"html",
"purify",
"purifier",
"filter"
],
"homepage": "https://github.com/Soflomo/Purifier",
"authors": [
{
"name": "Jurian Sluiman",
"email": "jurian@soflomo.com",
"homepage": "http://soflomo.com"
}
],
"require": {
"php": ">=5.3.3.",
"zendframework/zendframework": "2.*",
"ezyang/htmlpurifier": ">=4.5.0"
},
"autoload": {
"psr-0": {
"Soflomo\\Purifier": "src/"
},
"classmap": [
"./Module.php"
]
},
"bin": [
"bin/purifier-generate-standalone"
]
}