-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.02 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": "ssteele/wp-typesanity",
"description": "Sanitize input by type when using WordPress",
"keywords": ["sanitize", "input", "type", "wordpress"],
"homepage": "https://github.com/ssteele/wp-typesanity",
"time": "2018-03-25",
"license": "MIT",
"authors": [
{
"name": "Steve Steele",
"email": "[email protected]",
"homepage": "http://steve-steele.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/ssteele/wp-typesanity/issues",
"source": "https://github.com/ssteele/wp-typesanity"
},
"require-dev": {
"phpunit/phpunit": "6.*",
"10up/wp_mock": "0.3.*"
},
"autoload": {
"psr-4": {
"SteveSteele\\TypeSanity\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SteveSteele\\TypeSanityTest\\": "tests"
}
},
"minimum-stability": "stable"
}