2015. április 24., péntek

Uninstall Laravel package

  1. Remove declaration from composer.json (in “require” section)

  2. Remove Service Provider from “app/config/app.php” (reference in “providers” array)

  3. Remove any Class Aliases from “app/config/app.php”

  4. Remove any references to the package from your code :-)

  5. Run “composer update”

  6. Manually delete the published files

http://stackoverflow.com/questions/23126562/how-to-remove-a-package-from-laravel-using-composer



Uninstall Laravel package