Often installing a package would pull a bunch of other dependencies into the system. But they won’t get removed by default when you remove the original package you installed. In Debian world there is “apt-get autoremove” Actually Yum has a config option to turn on auto removal! Just add […]
Monthly Archives: December 2014
Take WayGenerator (https://github.com/JeffreyWay/Laravel-4-Generators) for example the installation instruction teaches us to install by adding "require-dev": { "way/generators": "~2.0" } into composer.json. and add 'Way\Generators\GeneratorsServiceProvider' into app/config/app.php ‘providers’ array However, if you do composer install –no-dev (install without require-dev packages) or when you deploy to PaaS platform like heroku. […]
composer require-dev and laravel provider registration problem
bash: for i in `gem list –no-versions`; do gem uninstall -aIx $i; done