-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1021 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
41
42
43
44
45
46
47
48
49
50
{
"name" : "mkrecek234/atk4-multiupload",
"type" : "library",
"description" : "Upload field based on dropdown for uploading multiple files.",
"keywords" : [
"atk4",
"agile",
"agile ui",
"data",
"framework"
],
"homepage" : "https://github.com/mkrecek234/multiupload",
"license" : "MIT",
"minimum-stability" : "dev",
"prefer-stable" : true,
"authors" : [{
"name" : "Michael Krecek",
"email" : "[email protected]",
"homepage" : "http://www.krecek.net"
}
],
"repositories" : [{
"type" : "vcs",
"url" : "https://github.com/mkrecek234/filestore"
}
],
"require" : {
"atk4/ui" : "*",
"php" : ">=7.0.0",
"atk4/filestore" : "~3",
"atk4/data" : "~3"
},
"require-dev" : {
"behat/behat" : "^3.4",
"behat/mink-extension" : "^2.2",
"fzaninotto/faker" : "*",
"behat/mink-zombie-driver" : "^1.4",
"phpunit/phpcov" : "^3.0"
},
"autoload" : {
"psr-4" : {
"Atk4\\Multiupload\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"atk4\\audit\\tests\\" : "tests/"
}
}
}