forked from davidyell/CakePHP-Proffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 882 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
{
"name": "davidyell/proffer",
"description": "An upload plugin for CakePHP 3",
"type": "cakephp-plugin",
"keywords": ["cakephp", "cakephp3", "upload", "file", "image"],
"homepage": "https://github.com/davidyell/CakePHP3-Proffer",
"license": "MIT",
"authors": [
{
"name": "David Yell",
"email": "[email protected]"
}
],
"support": {
"irc": "irc://irc.freenode.org/cakephp",
"issues": "https://github.com/davidyell/CakePHP3-Proffer/issues",
"source": "https://github.com/davidyell/CakePHP3-Proffer"
},
"require": {
"imagine/imagine": "0.6.2"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"Proffer\\": "src",
"Proffer\\Tests\\": "tests/TestCase",
"Proffer\\Tests\\Fixture\\": "tests/Fixture",
"Proffer\\Tests\\Stubs\\": "tests/Stubs"
}
},
"extra": {
"installer-name": "Proffer"
}
}