-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
88 lines (88 loc) · 2.61 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
{
"name": "bebat/console-color",
"description": "Apply colors & styles to text for command line output",
"license": "MIT",
"type": "library",
"keywords": [
"ansi",
"cli",
"color",
"colorterm",
"command line",
"console",
"style",
"truecolor",
"tty",
"vt100"
],
"authors": [
{
"name": "Ben Batschelet",
"email": "bartleby84@gmail.com"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"bebat/verify": "~3.1.1",
"captainhook/captainhook": "~5.16.4",
"captainhook/plugin-composer": "~5.3.3",
"ergebnis/composer-normalize": "~2.33.0",
"friendsofphp/php-cs-fixer": "^3.21.1",
"maglnet/composer-require-checker": "~4.6.0",
"mockery/mockery": "~1.6.2",
"phpstan/extension-installer": "~1.3.1",
"phpstan/phpstan": "~1.10.25",
"phpstan/phpstan-deprecation-rules": "~1.1.3",
"phpstan/phpstan-mockery": "~1.1.1",
"phpstan/phpstan-phpunit": "~1.3.13",
"phpstan/phpstan-strict-rules": "~1.5.1",
"phpunit/phpunit": "~10.2.4",
"zalas/phpunit-globals": "~3.1.2"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"BeBat\\ConsoleColor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BeBat\\ConsoleColor|\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"captainhook/plugin-composer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "1.0.x-dev"
}
},
"scripts": {
"style:check": "php-cs-fixer fix -v --ansi --dry-run --diff",
"style:fix": "php-cs-fixer fix -v --ansi",
"test": [
"@style:check",
"@test:static",
"@test:phpunit"
],
"test:coverage": "phpunit --coverage-clover=coverage.xml",
"test:phpunit": "phpunit --colors=always",
"test:static": "phpstan analyze --ansi"
},
"scripts-descriptions": {
"style:check": "Check all files for code style violations.",
"style:fix": "Automatically fix code style in all files.",
"test": "Check code style, static analysis, and unit tests.",
"test:coverage": "Run unit tests and generate coverage report.",
"test:phpunit": "Run unit & functional tests.",
"test:static": "Run phpstan static analysis."
}
}