-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 2.06 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (61 loc) · 2.06 KB
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
{
"name": "timdev/array-undot",
"description": "A utility to normalize arrays with dotted-string keys. ['a.b' => 'c'] ==> ['a' => ['b' => 'c']]",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tim Lieberman",
"email": "dev@timdev.com"
}
],
"require": {
"php": "~8.0.0 || ~8.1.0"
},
"require-dev": {
"laminas/laminas-config-aggregator": "^1.5",
"timdev/devtools": "^0.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"TimDev\\ArrayUndot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TimDev\\Test\\ArrayUndot\\": "tests/"
}
},
"scripts": {
"analyze": "psalm",
"coverage": "XDEBUG_MODE=coverage phpunit --coverage-text --colors=always",
"coverage:html": "XDEBUG_MODE=coverage phpunit --coverage-html build/coverage",
"cs": "phpcs",
"cs:fix": "phpcbf",
"dev": "@dev:qa",
"dev:analyze": "psalm",
"dev:coverage": "XDEBUG_MODE=coverage phpunit --coverage-text --colors=always",
"dev:coverage:html": "XDEBUG_MODE=coverage phpunit --coverage-html build/coverage && echo '\\nCoverage Report: build/coverage/index.html'",
"dev:cs": "phpcs",
"dev:cs:fix": "phpcbf",
"dev:qa": [
"@dev:analyze",
"@dev:test",
"@dev:cs"
],
"dev:test": "phpunit --testdox --color=always",
"test": "phpunit --testdox --color=always"
},
"scripts-descriptions": {
"dev": "Shortcut for dev:qa.",
"dev:analyze": "Run static analysis with psalm.",
"dev:coverage": "Report unit test coverage with output in the terminal.",
"dev:coverage:html": "Generate unit test coverage report.",
"dev:cs": "Run code style checks.",
"dev:cs:fix": "Fix code style violations.",
"dev:qa": "Run all quality checks (tests, static analysis, and coding standard).",
"dev:test": "Run unit tests."
}
}