1
0
mirror of https://github.com/Intervention/image.git synced 2025-01-17 20:28:21 +01:00
intervention_image/provides.json
Maksim Surguy 65fd7f7ec8 Created package installer JSON config file
Ryan Tablada has developed a package installer for Laravel 4 :
https://github.com/rtablada/package-installer

Video : http://www.youtube.com/watch?v=JTnIbIIQAcA

Adding a provides.json file to a package will make it super easy to install this package from Laravel 4 command line by calling :
php artisan package:install intervention/image
2013-06-09 15:57:20 -06:00

12 lines
178 B
JSON

{
"providers": [
"Intervention\Image\ImageServiceProvider"
],
"aliases": [
{
"alias": "Image",
"facade": "Intervention\Image\Facades\Image"
}
]
}