forked from mewebstudio/Purifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·65 lines (65 loc) · 1.76 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
{
"name": "mews/purifier",
"type": "package",
"description": "Laravel 5/6/7/8/9/10 HtmlPurifier Package",
"keywords": [
"Laravel HtmlPurifier",
"Laravel Purifier",
"Laravel Security",
"HtmlPurifier",
"Purifier",
"security",
"xss"
],
"homepage": "https://github.com/mewebstudio/purifier",
"license": "MIT",
"authors": [
{
"name": "Muharrem ERİN",
"email": "[email protected]",
"homepage": "https://github.com/mewebstudio",
"role": "Developer"
}
],
"require": {
"php": "^7.2|^8.0",
"illuminate/config": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"ezyang/htmlpurifier": "^4.16.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0|^10.0",
"mockery/mockery": "^1.3.3",
"graham-campbell/testbench": "^3.2|^5.5.1|^6.1"
},
"suggest": {
"laravel/framework": "To test the Laravel bindings",
"laravel/lumen-framework": "To test the Lumen bindings"
},
"autoload": {
"psr-4": {
"Mews\\Purifier\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Mews\\Tests\\Purifier\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Mews\\Purifier\\PurifierServiceProvider"
],
"aliases": {
"Purifier": "Mews\\Purifier\\Facades\\Purifier"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}