-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
32 lines (32 loc) · 945 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
{
"name": "incoming/incoming",
"description": "Transform loose and complex input into consistent, strongly-typed data structures",
"type": "library",
"keywords": ["hydrate", "marshall", "unmarshall", "inflate", "deserialize"],
"homepage": "https://github.com/Rican7/incoming",
"license": "MIT",
"authors": [
{
"name": "Trevor Suarez",
"email": "[email protected]",
"role": "Creator/Developer"
}
],
"support": {
"issues": "https://github.com/Rican7/incoming/issues",
"source": "https://github.com/Rican7/incoming"
},
"require": {
"php": ">=7.0.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"squizlabs/php_codesniffer": "^3.2"
},
"autoload": {
"psr-4": {"Incoming\\": "src/Incoming/"}
},
"autoload-dev": {
"psr-4": {"Incoming\\Test\\": "tests/Incoming/Test/"}
}
}