forked from FriendsOfCake/cakephp-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.18 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
38
39
40
41
{
"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": "[email protected]"
}
],
"require": {
"cakephp/orm": "^4.0.2",
"league/flysystem": "^2.2|^3.0"
},
"require-dev": {
"cakephp/cakephp": "^4.0.2",
"phpunit/phpunit": "^8.5 || ^9.3",
"cakephp/cakephp-codesniffer": "^4.0",
"league/flysystem-memory": "^2.0|^3.0",
"mikey179/vfsstream": "^1.6.10"
},
"autoload": {
"psr-4": {
"Josegonzalez\\Upload\\": "src",
"Josegonzalez\\Upload\\Test\\Fixture\\": "tests\\Fixture"
}
},
"autoload-dev": {
"psr-4": {
"Josegonzalez\\Upload\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}