forked from juriansluiman/Soflomo-Purifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 2.26 KB
/
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
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
78
{
"name": "soflomo/purifier",
"description": "HTML Purifier integration module for Zend Framework 3",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"zf2",
"html",
"purify",
"purifier",
"filter"
],
"homepage": "https://github.com/juriansluiman/Soflomo-Purifier",
"authors": [
{
"name": "Jurian Sluiman",
"email": "[email protected]",
"homepage": "https://juriansluiman.nl"
},
{
"name": "Stefano Torresi",
"email": "[email protected]",
"homepage": "https://stefanotorresi.it"
}
],
"extra": {
"branch-alias": {
"dev-master": "2.x-dev",
"dev-1.x": "1.x-dev"
}
},
"require": {
"php": ">=5.6",
"zendframework/zend-filter": "^2.7.1",
"ezyang/htmlpurifier": "^4.5"
},
"require-dev": {
"zendframework/zend-servicemanager": "^3.0.1",
"zendframework/zend-view": "^2.8.1",
"phpunit/phpunit": "^4.8",
"php-vfs/php-vfs": "^1.3",
"zendframework/zend-mvc": "^3.0.1",
"zendframework/zend-inputfilter": "^2.7.3",
"zendframework/zend-serializer": "^2.8.0",
"zendframework/zend-log": "^2.9.1",
"zendframework/zend-i18n": "^2.7.3",
"zendframework/zend-console": "^2.6.0",
"zendframework/zend-http": "^2.5",
"friendsofphp/php-cs-fixer": "^2.0"
},
"suggest": {
"zendframework/zend-modulemanager": "To load the module in a ZF application",
"zendframework/zend-servicemanager": "To use the provided DI configuration and factories",
"zendframework/zend-view": "To use the purifier as ZF view helper"
},
"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"
}
}