-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.55 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.55 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
{
"name": "gotipath/storage",
"description": "Gotipath Storage is a file storage library for PHP. It provides one interface to interact with FTP/SFTP. When you use this package, you're protected from vendor lock-in, That mean you can connect to any FTP/SFTP storage. Also it's comes with base URL option to connect Gotipath CDN.",
"version": "1.0",
"keywords": [
"gotipath",
"storage",
"gotipath CDN",
"Gotipath object storage",
"Gotipath FTP storage"
],
"homepage": "https://github.com/gotipath/storage",
"license": "MIT",
"authors": [
{
"name": "Sohel Mia",
"email": "sohelcse1999@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^7.3",
"league/flysystem": "^2.3",
"league/flysystem-sftp": "^2.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.3",
"vimeo/psalm": "^4.8"
},
"autoload": {
"psr-4": {
"Gotipath\\Storage\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gotipath\\Storage\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}