forked from userfrosting/fortress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 981 Bytes
/
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
{
"name": "userfrosting/fortress",
"type": "library",
"description": "A PHP library for whitelisting, validating, and canonicalizing HTTP request data against a JSON Schema",
"keywords": ["userfrosting", "transformation", "validation", "whitelisting"],
"homepage": "https://github.com/userfrosting/fortress",
"license" : "MIT",
"authors" : [
{
"name": "Alexander Weissman",
"homepage": "https://alexanderweissman.com"
}
],
"require": {
"ezyang/htmlpurifier": "^4.7.0",
"php": ">=7.1",
"userfrosting/i18n": "~4.4.0",
"vlucas/valitron": "^1.2.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"UserFrosting\\Fortress\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"UserFrosting\\Fortress\\Tests\\": "tests"
}
}
}