-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 863 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
{
"name": "relisoft/uploader",
"type": "library",
"keywords": ["nette", "uploader", "session storage","single upload"],
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"description": "Nette uploader like control service",
"require": {
"php": "^7.0",
"nette/forms": "^2.4",
"nette/utils": "^2.4",
"nette/http": "^2.4"
},
"minimum-stability":"dev",
"authors": [
{
"name": "Isigar",
"homepage": "https://relisoft.cz",
"email": "info@relisoft.cz"
}
],
"autoload": {
"psr-4": {
"Relisoft\\Uploader\\": "/",
"Relisoft\\Uploader\\Storage\\": "/storage",
"Relisoft\\Uploader\\Helper\\": "/helpers",
"Relisoft\\Uploader\\DI\\": "/di",
"Relisoft\\Uploader\\Multi\\Dropzone\\": "/multi/dropzone",
"Relisoft\\Uploader\\Single\\Classic\\": "/single/classic"
}
}
}