-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
37 lines (37 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
{
"name": "phuxtil/flysystem-ssh-shell",
"description": "SSH/Shell adapter for league/flysystem",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8",
"league/flysystem": "^1",
"symfony/process": "^4|^5",
"phuxtil/find": "^3",
"phuxtil/stat": "^3"
},
"require-dev": {
"ext-posix": "*",
"symfony/var-dumper": "^5",
"phpunit/phpunit": "^9",
"popo/generator": "^5"
},
"autoload": {
"psr-4": {
"Phuxtil\\Flysystem\\SshShell\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TestsPhuxtilFlysystemSshShell\\": "tests/"
}
},
"scripts": {
"popo": "vendor/bin/popo generate -s popo/flysystem-ssh-shell.popo.yml",
"test": "vendor/bin/phpunit --no-coverage --testdox --group acceptance",
"test-c": "vendor/bin/phpunit --coverage-html tests/logs/coverage/ --group acceptance",
"stan": "vendor/bin/phpstan analyze src --level 5"
}
}