1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-31 09:31:53 +02:00

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
This commit is contained in:
Maksim Surguy
2013-06-09 15:57:20 -06:00
parent 6783515d00
commit 65fd7f7ec8

11
provides.json Normal file
View File

@@ -0,0 +1,11 @@
{
"providers": [
"Intervention\Image\ImageServiceProvider"
],
"aliases": [
{
"alias": "Image",
"facade": "Intervention\Image\Facades\Image"
}
]
}