-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.4 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.4 KB
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
46
47
48
49
{
"name": "deathnerd/php-wtforms",
"description": "A PHP rewrite of the fantastic Python library WTForms",
"type": "library",
"version": "0.5.2",
"license": "GPL-2.0",
"authors": [
{
"name": "Wes Gilleland",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"WTForms\\": "src/",
"WTForms\\CSRF\\": "src/csrf/",
"WTForms\\CSRF\\Session\\": "src/csrf/session/",
"WTForms\\CSRF\\Core\\": "src/csrf/core/",
"WTForms\\Exceptions\\": "src/exceptions/",
"WTForms\\Fields\\": "src/fields/",
"WTForms\\Fields\\Core\\": "src/fields/core/",
"WTForms\\Fields\\HTML5\\": "src/fields/html5/",
"WTForms\\Fields\\Simple\\": "src/fields/simple/",
"WTForms\\Widgets\\": "src/widgets/",
"WTForms\\Widgets\\Core\\": "src/widgets/core/",
"WTForms\\Widgets\\HTML5\\": "src/widgets/html5/",
"WTForms\\Validators\\": "src/validators/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"WTForms\\Tests\\": "tests/",
"WTForms\\Tests\\Common\\": "tests/common/",
"WTForms\\Tests\\CSRF\\": "tests/csrf/",
"WTForms\\Tests\\Fields\\": "tests/fields/",
"WTForms\\Tests\\SupportingClasses\\": "tests/supporting_classes/"
}
},
"require": {
"php": ">=5.5",
"nesbot/carbon": ">=1.18 <2.0.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
}
}