-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
45 lines (45 loc) · 1.17 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
{
"name": "aura/filter",
"type": "library",
"description": "Filters to validate and sanitize objects and arrays.",
"keywords": [
"filter",
"validate",
"sanitize",
"validator",
"validation"
],
"homepage": "https://github.com/auraphp/Aura.Filter",
"license": "MIT",
"authors": [
{
"name": "Aura.Filter Contributors",
"homepage": "https://github.com/auraphp/Aura.Filter/contributors"
}
],
"require": {
"php": "^7.2 || ^8.0",
"psr/http-message": "^1.0.0",
"aura/filter-interface":"4.x-dev"
},
"autoload": {
"psr-4": {
"Aura\\Filter\\": "src/"
},
"files": ["utf8_to_iso8859_1.php"]
},
"suggest": {
"ext-iconv": "To support UTF-8 in string-length filters.",
"ext-intl": "To support IDNs in email filters.",
"ext-mbstring": "To support UTF-8 in string-length filters."
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.0.0",
"guzzlehttp/psr7": "^1.0 || ^2.0"
},
"autoload-dev": {
"psr-4": {
"Aura\\Filter\\": "tests/"
}
}
}