-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
36 lines (36 loc) · 1.11 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
{
"name": "aura/input",
"type": "library",
"description": "This package contains tools to describe and filter user inputs from an HTML form, including sub-forms/sub-fieldsets, fieldset collections, an interface for injecting custom filter systems, and CSRF protection. Note that this package does not include output functionality, although the \"hints\" provided by the Form object can be used with any presentation system to generate an HTML form.",
"keywords": [
"input",
"html",
"form",
"field"
],
"homepage": "http://auraphp.com/",
"license": "MIT",
"authors": [
{
"name": "Aura.Input Contributors",
"homepage": "https://github.com/auraphp/Aura.Input/contributors"
}
],
"require": {
"php": "^7.2 || ^8.0",
"aura/filter-interface":"4.x-dev"
},
"autoload": {
"psr-4": {
"Aura\\Input\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aura\\Input\\": "tests/"
}
},
"require-dev": {
"yoast/phpunit-polyfills": "~1.0"
}
}