A CLI tool that handles both Composer and npm dependencies for Laravel projects.
You can install the package via composer:
composer require mwguerra/interactive-upgrader
Once installed, you can run the command:
php artisan upgrade:interactive
This will:
- Check for outdated Composer and npm packages
- Display them in a table with available upgrade options
- Allow you to interactively select which packages to upgrade
- Handle the upgrade process, including dependency analysis
--latest Only consider "latest" (major) upgrades
--dev Only consider "dev" (unstable) upgrades
--ignore= Skip specific packages (comma-separated type:package pairs)
--ignore-major Don't show any major bumps in the table
--ignore-dev Don't show the "Dev" column or dev‐upgrades; drop packages with no actionable updates
--show Only show the table without asking for any input and exit
# See everything updatable
php artisan upgrade:interactive
# Only show major jumps
php artisan upgrade:interactive --latest
# Skip Predis and Tailwind from the table
php artisan upgrade:interactive --ignore=composer:predis/predis,npm:tailwindcss
# Hide all major bumps (even if --latest is given)
php artisan upgrade:interactive --ignore-major
# Don't show any dev‐builds, and drop packages already fully up‐to-date
php artisan upgrade:interactive --ignore-dev
# Only show the table without asking for any input
php artisan upgrade:interactive --show
- Handles both Composer and npm dependencies in a single command
- Interactive table-driven interface
- Analyzes dependencies to suggest related packages that might need to be updated
- Creates backups before making changes
- Supports various upgrade strategies (minor, major, dev)
- Color-coded version display (red for major bumps, green for minor)
- Warns about major version upgrades and allows falling back to safer options
- Provides option to only display outdated packages without making changes
The MIT License (MIT). Please see License File for more information.