forked from juriansluiman/Soflomo-Purifier
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.2 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 2.2 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "ginosi/purifier",
"description": "HTML Purifier integration module for Zend Framework 2 ",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"zf2",
"html",
"purify",
"purifier",
"filter"
],
"homepage": "https://github.com/ginosi/Purifier",
"authors": [
{
"name": "Jurian Sluiman",
"email": "jurian@juriansluiman.nl",
"homepage": "https://juriansluiman.nl"
},
{
"name": "Stefano Torresi",
"email": "stefano@torresi.io",
"homepage": "https://stefanotorresi.it"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"require": {
"php": ">=5.5",
"zendframework/zend-filter": "^2.5",
"ezyang/htmlpurifier": "^4.5"
},
"require-dev": {
"zendframework/zend-servicemanager": "^2.5",
"zendframework/zend-view": "^2.5",
"zendframework/zend-modulemanager": "^2.5",
"phpunit/phpunit": "^4.8",
"php-vfs/php-vfs": "^1.3",
"fabpot/php-cs-fixer": "^1.11",
"zendframework/zend-mvc": "^2.5",
"zendframework/zend-serializer": "^2.5",
"zendframework/zend-log": "^2.6",
"zendframework/zend-i18n": "^2.5",
"zendframework/zend-console": "^2.5",
"zendframework/zend-http": "^2.5"
},
"suggest": {
"zendframework/zend-servicemanager": "For creating the filter with the SM factory",
"zendframework/zend-view": "For using the purifier as view helper",
"zendframework/zend-modulemanager": "To load the filter as a module in a ZF2 application"
},
"autoload": {
"psr-4": {
"Soflomo\\Purifier\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Soflomo\\Purifier\\Test\\": "test/"
}
},
"bin": [
"bin/purifier-generate-standalone"
],
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "php-cs-fixer --version && php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v",
"test": "phpunit"
}
}