-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (83 loc) · 2.93 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
{
"name": "elaberino/symfony-style-verbose",
"type": "library",
"description": "Add methods to SymfonyStyle to only create output when verbosity flags are set",
"keywords": ["symfony style", "verbose", "symfony console", "symfony cli", "symfony command line", "symfony terminal"],
"require": {
"php": ">=7.4",
"symfony/console": "^5.4|^6.0"
},
"license": "MIT",
"authors": [
{
"name": "Thomas"
}
],
"require-dev": {
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.14.5",
"symplify/rule-doc-generator": "^11.1",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.2",
"phpstan/extension-installer": "^1.2",
"symplify/easy-coding-standard": "^11.1"
},
"autoload": {
"psr-4": {
"Elaberino\\SymfonyStyleVerbose\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Elaberino\\SymfonyStyleVerbose\\Tests\\": "tests",
"Elaberino\\SymfonyStyleVerbose\\Utils\\Rector\\": "utils/rector/src",
"Elaberino\\SymfonyStyleVerbose\\Utils\\Rector\\Tests\\": "utils/rector/tests"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"ssv:phpmd-general": "phpmd src ansi phpmd.xml",
"ssv:phpmd-utils": "phpmd utils ansi phpmd.xml",
"ssv:phpmd-tests": "phpmd tests ansi phpmd.xml",
"ssv:phpmd": [
"@ssv:phpmd-general",
"@ssv:phpmd-utils",
"@ssv:phpmd-tests"
],
"ssv:ecs": "vendor/bin/ecs check",
"ssv:ecs:fix": "vendor/bin/ecs check --fix",
"ssv:phpstan-general": "phpstan analyse -c phpstan.neon --no-progress",
"ssv:phpstan-tests": "phpstan analyse -c phpstan-tests.neon --no-progress",
"ssv:phpstan": [
"@ssv:phpstan-general",
"@ssv:phpstan-tests"
],
"ssv:rector-general": "vendor/bin/rector process --dry-run",
"ssv:rector-general:fix": "vendor/bin/rector process",
"ssv:rector-tests": "vendor/bin/rector process --config=rector-tests.php --dry-run",
"ssv:rector-tests:fix": "vendor/bin/rector process --config=rector-tests.php",
"ssv:rector": [
"@ssv:rector-general --no-progress-bar",
"@ssv:rector-tests --no-progress-bar"
],
"ssv:rector:debug": [
"@ssv:rector-general -vvv --debug",
"@ssv:rector-tests -vvv --debug"
],
"ssv:rector:fix": [
"@ssv:rector-general:fix",
"@ssv:rector-tests:fix"
],
"ssv:tests": "vendor/bin/phpunit tests",
"ssv:tests-utils": "vendor/bin/phpunit utils",
"ssv:tests:full": [
"vendor/bin/phpunit tests --testdox -vvv",
"vendor/bin/phpunit utils --testdox -vvv"
],
"ssv:security": "symfony check:security"
}
}