-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 1.95 KB
/
Copy pathcomposer.json
File metadata and controls
74 lines (74 loc) · 1.95 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "initphp/console",
"description": "A simple helper library for writing console/CLI applications in PHP, including a styleable ANSI table renderer (formerly initphp/cli-table).",
"type": "library",
"license": "MIT",
"keywords": [
"console",
"cli",
"command-line",
"command",
"terminal",
"ansi",
"table",
"initphp"
],
"homepage": "https://github.com/InitPHP/Console",
"support": {
"issues": "https://github.com/InitPHP/Console/issues",
"source": "https://github.com/InitPHP/Console",
"docs": "https://github.com/InitPHP/Console/tree/main/docs"
},
"authors": [
{
"name": "Muhammet ŞAFAK",
"email": "info@muhammetsafak.com.tr",
"role": "Developer",
"homepage": "https://www.muhammetsafak.com.tr"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.6 || ^10.5",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.11"
},
"suggest": {
"ext-mbstring": "Improves table column alignment for multibyte (UTF-8) cell values."
},
"autoload": {
"psr-4": {
"InitPHP\\Console\\": "src/"
},
"files": [
"src/aliases.php"
]
},
"autoload-dev": {
"psr-4": {
"Test\\InitPHP\\Console\\": "tests/"
}
},
"replace": {
"initphp/cli-table": "*"
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-text --coverage-html=build/coverage",
"cs": "phpcs",
"cs-ci": "phpcs --warning-severity=0",
"cs-fix": "phpcbf",
"stan": "phpstan analyse",
"qa": [
"@cs-ci",
"@stan",
"@test"
]
},
"minimum-stability": "stable",
"config": {
"sort-packages": true
}
}