-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
46 lines (46 loc) · 1.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
{
"name": "alkhwlani/xss-middleware",
"description": "A Laravel 5.5+ Middleware to filter user inputs from XSS and iframes and other embed elements.",
"keywords": ["laravel", "framework", "security", "xss", "Security", "Laravel Security", "Laravel-Security", "middleware", "filter input"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Salah Alkhwlani",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable":true,
"require": {
"graham-campbell/security": "^11.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^8.0",
"illuminate/support": "^10.0",
"laravel/legacy-factories": "^1.3"
},
"autoload": {
"psr-4": {
"Alkhwlani\\XssMiddleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Alkhwlani\\XssMiddleware\\Tests\\":"tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Alkhwlani\\XssMiddleware\\ServiceProvider"
]
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
}
}