-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.15 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
{
"name": "artarts36/shell-command",
"description": "OOP ShellCommand",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "ArtARTs36",
"email": "temicska99@mail.ru"
}
],
"require": {
"php": "^7.3 || 8.*",
"ext-mbstring": "*",
"artarts36/str": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "3.*",
"artarts36/php-cs-fixer-good-fixers": "^0.1.2",
"phpstan/phpstan": "^1.4"
},
"autoload": {
"psr-4": {
"ArtARTs36\\ShellCommand\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ArtARTs36\\ShellCommand\\Tests\\": "tests/"
}
},
"scripts": {
"lint": [
"php-cs-fixer fix --dry-run --verbose --diff --ansi"
],
"test": [
"./vendor/bin/phpunit -v --coverage-text --colors=always --configuration phpunit.xml"
],
"stat-analyse": [
"./vendor/bin/phpstan analyse -l 5 src"
]
},
"suggest": {
"artarts36/shell-command-ssh-executor": "*"
}
}