-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 991 Bytes
/
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
{
"name": "jalsoedesign/filezilla",
"type": "library",
"description": "A powerful PHP library for parsing and working with FileZilla `sitemanager.xml` files. It allows you to extract server details, manage configurations, and integrate FileZilla data into your PHP applications.",
"version": "2.0.2",
"homepage": "https://www.jalsoedesign.net",
"license": "MIT",
"authors": [
{
"name": "Andreas Jalsøe",
"email": "[email protected]",
"homepage": "https://www.jalsoedesign.net",
"role": "developer"
}
],
"scripts": {
"test": [
"php tests/ensure-fixtures-are-generated.php",
"phpunit -c phpunit.xml"
]
},
"require": {
"ext-dom": "*",
"php": ">=8.0"
},
"autoload": {
"psr-4": {
"jalsoedesign\\filezilla\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.6"
}
}