forked from Waavi/Sanitizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.1 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
{
"name": "waavi/sanitizer",
"description": "Data sanitizer and Laravel 5 form requests with input sanitation.",
"keywords": ["laravel", "sanitation", "input sanitation", "input sanitizer", "input", "transform input", "input filter"],
"license": "MIT",
"authors": [{
"name": "William Wallace San Paulo",
"email": "[email protected]"
}],
"require": {
"illuminate/support": "~5.3|~6.0|~7.0",
"illuminate/validation": "~5.3|~6.0|~7.0",
"nesbot/carbon": "~1.0|~2.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0|~7.0|~8.0"
},
"autoload": {
"psr-4": {
"Waavi\\Sanitizer\\": "src/"
}
},
"autoload-dev": {
"classmap": ["tests"]
},
"extra": {
"laravel": {
"providers": [
"Waavi\\Sanitizer\\Laravel\\SanitizerServiceProvider"
],
"aliases": {
"Sanitizer": "Waavi\\Sanitizer\\Laravel\\Facade"
}
}
},
"minimum-stability": "dev",
"scripts": {
"test": "vendor/bin/phpunit"
}
}