forked from CubiclDev/php-structure-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 780 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
{
"name": "1blankz7/php-structure-check",
"description": "Structural check of arrays for PHP 5.6+",
"keywords": ["array", "structure", "types"],
"homepage": "https://github.com/1blankz7/php-structure-check",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christian Blank",
"email": "mail@cblank.de",
"homepage": "http://cblank.de"
}
],
"require-dev": {
"phpspec/phpspec": "^3.2",
"phpunit/phpunit": "^5.6"
},
"autoload": {
"psr-4": {
"StructureCheck\\": [
"src"
],
"StructureCheck\\Test\\": [
"tests"
]
}
}
}