-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.65 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.65 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
{
"name" : "verseles/flyclone",
"description" : "PHP wrapper for rclone",
"type" : "library",
"keywords" : [
"filesystem", "filesystems", "files", "storage", "dropbox", "aws", "abstraction", "s3", "ftp", "sftp", "remote",
"webdav", "file systems", "cloud", "cloud files", "rackspace", "rclone", "sync"
],
"authors" : [
{
"name" : "Hélio",
"email" : "flyclone@helio.me"
}
],
"license" : "CC-BY-NC-SA-4.0",
"require" : {
"php" : ">=8.4",
"ext-json" : "*",
"symfony/process" : "^7",
"spatie/once" : "^3.0.1"
},
"autoload" : {
"psr-4" : {
"Verseles\\Flyclone\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"Verseles\\Flyclone\\Test\\" : "tests"
}
},
"scripts" : {
"test" : "phpunit",
"test-local" : "phpunit --testsuite offline_no_docker",
"test-offline" : "phpunit --testsuite offline",
"analyse" : "phpstan analyse --memory-limit=512M",
"format" : "pint",
"format-check" : "pint --test",
"security-check" : "security-checker security:check composer.lock",
"ci" : [
"@analyse",
"@format-check",
"@test-local"
],
"post-install-cmd" : [
"exit 0 || [ $COMPOSER_DEV_MODE -eq 0 ] || composer run security-check"
]
},
"config" : {
"process-timeout" : 0
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"require-dev" : {
"phpunit/phpunit" : "^12.0",
"enlightn/security-checker": "^1.9",
"phpstan/phpstan": "^2.1",
"laravel/pint": "^1.26"
}
}