-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
54 lines (54 loc) · 1.18 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "cubicl/php-structure-check",
"description": "Structural check of arrays for PHP 7.4+",
"keywords": [
"array",
"structure",
"types"
],
"homepage": "https://github.com/cubicldev/php-structure-check",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christian Blank",
"email": "[email protected]",
"homepage": "https://cubicl.de"
}
],
"scripts": {
"check": [
"@analyze",
"@tests",
"@tests-spec",
"@cs-check"
],
"tests": "phpunit tests",
"analyze": "phpstan analyse --level max",
"tests-spec": "phpspec run --no-interaction",
"cs-check": "phpcs --parallel=50",
"cs-fix": "phpcbf"
},
"require-dev": {
"phpspec/phpspec": "^6.2",
"phpunit/phpunit": "^9.4",
"phpstan/phpstan": "^0.12.51",
"phpstan/phpstan-deprecation-rules": "^0.12.4",
"phpstan/phpstan-phpunit": "^0.12.16",
"squizlabs/php_codesniffer": "^3.5.5"
},
"autoload": {
"psr-4": {
"Cubicl\\StructureCheck\\": [
"src"
],
"Cubicl\\StructureCheck\\Test\\": [
"tests"
]
}
},
"require": {
"ext-json": "*",
"php": "^7.4|^8.0"
}
}