add composer's vendor directory
This commit is contained in:
parent
01a3860d73
commit
60b094d5fa
745 changed files with 56017 additions and 1 deletions
25
vendor/codeguy/upload/composer.json
vendored
Normal file
25
vendor/codeguy/upload/composer.json
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"name": "codeguy/upload",
|
||||
"type": "library",
|
||||
"description": "Handle file uploads with extensible validation and storage strategies",
|
||||
"keywords": ["upload", "validation", "file"],
|
||||
"homepage": "http://github.com/codeguy/Upload",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Josh Lockhart",
|
||||
"email": "info@joshlockhart.com",
|
||||
"homepage": "https://github.com/codeguy/"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=5.3.0",
|
||||
"ext-fileinfo": "*"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "3.7.*"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-0": { "Upload": "src" }
|
||||
}
|
||||
}
|
Reference in a new issue