-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
40 lines (40 loc) · 850 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
35
36
37
38
39
40
{
"name": "asticode/php-file-manager",
"type": "library",
"description": "File manager to handle cross-datasources copy as well as simple file actions on the most common datasources",
"keywords": [
"php",
"file",
"manager",
"ftp",
"unix"
],
"homepage": "https://github.com/asticode/php-file-manager",
"license": "MIT",
"authors": [
{
"name": "Quentin RENARD",
"email": "contact@asticode.com",
"homepage": "http://asticode.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0",
"asticode/php-toolbox": "^1.2.1"
},
"autoload": {
"psr-4": {
"Asticode\\FileManager\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^4.0"
},
"scripts": {
"test": [
"php vendor/bin/phpunit"
],
"phpunit": "php vendor/bin/phpunit"
}
}