-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
50 lines (50 loc) · 1.28 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
48
49
50
{
"name": "wsw/simple-upload",
"description": "Simple upload system",
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"keywords": [
"Update",
"Simple",
"Integration",
"AWS",
"AWS-S3",
"Azure",
"Dropbox",
"Ftp",
"Filesystem",
"Wsw",
"Whera"
],
"authors": [
{
"name": "Ronaldo M. Rodrigues",
"email": "ronaldo@whera.com.br"
}
],
"autoload": {
"psr-4": {
"WSW\\SimpleUpload\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WSW\\SimpleUpload\\": "tests/"
}
},
"require": {
"league/flysystem": "^1.0"
},
"require-dev": {
"rdehnhardt/var-dumper": "^1.1",
"phpunit/phpunit": "~5.7",
"fzaninotto/faker": "~1.4",
"squizlabs/php_codesniffer": "^2.3"
},
"scripts": {
"test": "vendor/bin/phpunit",
"check-style": "vendor/bin/phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src/",
"fix-style": "vendor/bin/phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src/"
}
}