forked from userfrosting/fortress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 910 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
{
"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": ">=5.6.0",
"userfrosting/i18n": "~4.1.0",
"userfrosting/support": "~4.1.0",
"vlucas/valitron": "1.2.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"UserFrosting\\Fortress\\": "src"
}
}
}