-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
94 lines (94 loc) · 2.42 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "phalcon/cli-options-parser",
"type": "library",
"description": "Command line arguments/options parser.",
"keywords": [
"argparse",
"cli",
"command-line",
"command",
"line",
"option",
"optparse",
"parser",
"terminal",
"getopt"
],
"homepage": "https://phalconphp.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Phalcon Team",
"email": "team@phalconphp.com",
"homepage": "https://phalconphp.com/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/cli-options-parser/graphs/contributors"
}
],
"require": {
"php": ">=8.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
},
"autoload": {
"psr-4": {
"Phalcon\\Cop\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phalcon\\Cop\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"support": {
"issues": "https://github.com/phalcon/cli-options-parser/issues",
"discord": "https://phalcon.io/discord/",
"source": "https://github.com/phalcon/cli-options-parser"
},
"archive": {
"exclude": [
"/build",
"/tests",
"phpcs.xml.dist",
"phpunit.xml.dist"
]
},
"require-dev": {
"pds/skeleton": "^1.0",
"phpstan/phpstan": "^1.10 || ^2.0",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.7"
},
"scripts": {
"analyze": [
"phpstan analyse -l max ./src"
],
"cs": [
"phpcs --standard=psr12 --extensions=php --ignore=vendor ./src"
],
"cs-fix": [
"phpcbf --standard=psr12 --extensions=php --ignore=vendor ./src"
],
"test": [
"phpunit --configuration phpunit.xml.dist"
],
"test-coverage": [
"phpunit --configuration phpunit.xml.dist --coverage-clover ./build/coverage.xml"
],
"test-coverage-html": [
"phpunit --configuration phpunit.xml.dist --coverage-html ./build/coverage"
]
}
}