-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
39 lines (38 loc) · 1007 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
{
"name": "xety/cake3-upload",
"type": "cakephp-plugin",
"description": "Cake3 plugin to upload files.",
"keywords": ["cakephp", "cake3", "plugin", "upload", "file", "orm"],
"homepage": "https://github.com/Xety/Cake3-Upload",
"license": "MIT",
"support":{
"source":"https://github.com/Xety/Cake3-Upload",
"issues":"https://github.com/Xety/Cake3-Upload/issues"
},
"authors": [
{
"name": "Xety",
"email": "zoro.fmt@gmail.com",
"homepage": "https://github.com/Xety"
}
],
"require": {
"php": ">=5.4.16",
"cakephp/orm": "3.*"
},
"require-dev": {
"cakephp/cakephp": "~3.0",
"phpunit/phpunit": "*",
"cakephp/cakephp-codesniffer": "dev-master"
},
"autoload": {
"psr-4": {
"Xety\\Cake3Upload\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Xety\\Cake3Upload\\Test\\": "tests"
}
}
}