-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.08 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
{
"name": "rimi-itk/remote-commands",
"description": "Run Drupal and Symfony cli commands via ssh",
"license": "MIT",
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-posix": "*",
"psr/log": "^1.1",
"symfony/console": "^5.4",
"symfony/options-resolver": "^5.4",
"symfony/process": "^5.4"
},
"bin": [
"bin/remote-command",
"bin/remote-drupal-drush",
"bin/remote-symfony-console"
],
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3"
},
"scripts": {
"coding-standards-check/php-cs-fixer": [
"php-cs-fixer fix --dry-run"
],
"coding-standards-check": [
"@coding-standards-check/php-cs-fixer"
],
"coding-standards-apply/php-cs-fixer": [
"php-cs-fixer fix"
],
"coding-standards-apply": [
"@coding-standards-apply/php-cs-fixer"
]
},
"config": {
"sort-packages": true
}
}