forked from davidyell/CakePHP-Proffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1001 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
{
"name": "davidyell/proffer",
"description": "An upload plugin for CakePHP 3",
"type": "cakephp-plugin",
"keywords": ["cakephp", "cakephp3", "upload", "file", "image", "orm"],
"homepage": "https://github.com/davidyell/CakePHP3-Proffer",
"license": "MIT",
"authors": [
{
"name": "David Yell",
"email": "neon1024@gmail.com"
}
],
"support": {
"irc": "irc://irc.freenode.org/cakephp",
"issues": "https://github.com/davidyell/CakePHP3-Proffer/issues",
"source": "https://github.com/davidyell/CakePHP3-Proffer"
},
"require": {
"php": ">=5.6",
"cakephp/orm": "3.*",
"intervention/image": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"cakephp/cakephp": "~3.0",
"cakephp/cakephp-codesniffer": "^2.0"
},
"autoload": {
"psr-4": {
"Proffer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Proffer\\Tests\\": "tests/TestCase",
"Proffer\\Tests\\Fixture\\": "tests/Fixture",
"Proffer\\Tests\\Stubs\\": "tests/Stubs"
}
}
}