-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.74 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "graywings/array_capture",
"description": "ArrayCapture is a library that allows you to capture the array-like and access it as an object.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Taira Terashima",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"platform": {
"php": "8.2",
"ext-ast": "8.2",
"ext-ctype": "8.2",
"ext-iconv": "8.2",
"ext-json": "8.2",
"ext-mbstring": "8.2",
"ext-simplexml": "8.2",
"ext-xml": "8.2"
}
},
"require": {
"graywings/exceptions": "^0.1.1"
},
"require-dev": {
"vimeo/psalm": "^5.15",
"phan/phan": "^5.4",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.3"
},
"autoload": {
"psr-4": {
"Graywings\\ArrayCapture\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Graywings\\ArrayCapture\\Tests\\Units\\": "tests/units",
"Graywings\\ArrayCapture\\Tests\\Features\\": "tests/features"
}
},
"scripts": {
"build": [
"@lint",
"@test"
],
"test": [
"@test:units",
"@test:features"
],
"test:units": "phpunit --testsuite units",
"test:features": "phpunit --testsuite features",
"test:coverage": "phpunit --testsuite units --coverage-html=build/coverage",
"lint": [
"@lint:phan",
"@lint:phpstan",
"@lint:psalm"
],
"lint:phan": "phan",
"lint:phpstan": "phpstan",
"lint:psalm": "psalm"
}
}