-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Composer.json Update for PSR-4 autoload & require
- Loading branch information
1 parent
d640899
commit b5db74d
Showing
1 changed file
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,25 @@ | ||
{ | ||
"name": "tarunmangukiya/laravel-image-resizer", | ||
"description": "Laravel 5 Package for Image uploading, auto-resizing and retriving library.", | ||
"type": "stand-alone", | ||
"require": { | ||
"php": ">=5.4.0", | ||
"intervention/image": "^2.3" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "4.*", | ||
"phpspec/phpspec": "2.1.x" | ||
}, | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Tarun Mangukiya", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "stable" | ||
"autoload": { | ||
"psr-4": { | ||
"TarunMangukiya\\ImageResizer\\": "src/" | ||
} | ||
}, | ||
"minimum-stability": "dev" | ||
} |