-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.09 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
45
46
47
{
"name": "lazzard/ftp-bridge",
"description": "Allows free communication with FTP servers according to RFC959 specification and others related RFC extensions",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"ftp-protocol",
"ftp",
"low-level",
"rfc-959"
],
"authors": [
{
"name": "El Amrani Chakir",
"email": "[email protected]"
},
{
"name": "Lazzard Contributors",
"homepage": "https://github.com/orgs/lazzard/people"
}
],
"require": {
"php": "^5.3 || ^7.0 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"mikey179/vfsstream": "^1.6",
"dg/bypass-finals": "^1.3"
},
"prefer-stable" : true,
"autoload": {
"psr-4": {
"Lazzard\\FtpBridge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lazzard\\FtpBridge\\Tests\\Unit\\": "tests/Unit/"
}
},
"config": {
"platform": {
"php": "7.4"
}
}
}