-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.97 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.97 KB
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
{
"name": "sdo/seafile-php-sdk",
"description": "This is a PHP package for accessing Seafile Web API",
"homepage": "https://github.com/Schmidt-DevOps/seafile-php-sdk",
"license": "MIT",
"authors": [
{
"name": "René Schmidt",
"email": "rene+_sfphpsdk@sdo.sh",
"homepage": "https://sdo.sh",
"role": "Developer"
}
],
"keywords": [
"seafile",
"php",
"sdk",
"collaboration",
"cloud",
"storage",
"encrypted"
],
"require": {
"php": ">=8.3",
"guzzlehttp/guzzle": "~7.7",
"marcusball/case-helper": "~0.2",
"ext-json": "*",
"sdo/bitmask": "~1.0"
},
"require-dev": {
"monolog/monolog": " ~2.9",
"phpunit/phpunit": "~9.6",
"squizlabs/php_codesniffer": "~3.7",
"phpunit/php-timer": "~5.0",
"fzaninotto/faker": "~1.5",
"phpstan/phpstan": "^1.11",
"rector/rector": "^1.2",
"phpmd/phpmd": "^2.15.0",
"friendsofphp/php-cs-fixer": "^3.74"
},
"type": "library",
"autoload": {
"psr-4": {
"Seafile\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Seafile\\Client\\Tests\\Functional\\": "test/functional",
"Seafile\\Client\\Tests\\Unit\\": "test/unit"
}
},
"scripts": {
"create-phpmd-baseline": "./vendor/bin/phpmd -v --cache . text phpmd.xml --generate-baseline",
"php-cs-fixer": "./vendor/bin/php-cs-fixer fix -vvv --dry-run --diff --show-progress none --format=junit",
"php-cs-fixer-no-dry-run": "./vendor/bin/php-cs-fixer fix -vvv --diff",
"phpmd": "./vendor/bin/phpmd -v --cache . text phpmd.xml",
"phpstan": "./vendor/bin/phpstan analyse --memory-limit 2G --configuration phpstan.neon src test",
"phpunit": "./vendor/bin/phpunit --log-junit ./build/logs/junit.xml test",
"rector": "./vendor/bin/rector --dry-run --no-ansi --no-progress-bar",
"rector-no-dry-run": "./vendor/bin/rector --no-ansi --no-progress-bar",
"tests_prepare": "./bin/prepare_tests.sh",
"tests_run": "./bin/run_tests.sh"
}
}