forked from FriendsOfCake/cakephp-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.06 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
{
"name": "josegonzalez/cakephp-upload",
"description": "CakePHP plugin to handle file uploading sans ridiculous automagic",
"type": "cakephp-plugin",
"keywords": ["cakephp", "upload", "files", "behavior", "orm"],
"homepage": "https://github.com/FriendsOfCake/cakephp-upload",
"license": "MIT",
"authors": [
{
"name": "Jose Diaz-Gonzalez",
"email": "cakephp+upload@josediazgonzalez.com"
}
],
"require": {
"cakephp/orm": "3.*",
"php": ">=5.5",
"league/flysystem": "*"
},
"require-dev": {
"cakephp/cakephp": "~3.0",
"phpunit/phpunit": "<6.0",
"league/flysystem-vfs": "*",
"cakephp/cakephp-codesniffer": "dev-master",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"Josegonzalez\\Upload\\": "src",
"Josegonzalez\\Upload\\Test\\Fixture\\": "tests\\Fixture"
}
},
"autoload-dev": {
"psr-4": {
"Josegonzalez\\Upload\\Test\\": "tests"
}
}
}