mwguerra/interactive-upgrader

A CLI tool that handles both Composer and npm dependencies for Laravel projects.

v0.0.2 2025-05-19 06:25 UTC

This package is auto-updated.

Last update: 2025-05-19 06:40:12 UTC


README

A CLI tool that handles both Composer and npm dependencies for Laravel projects.

Latest Version on Packagist Total Downloads

Installation

You can install the package via composer:

composer require mwguerra/interactive-upgrader

Usage

Once installed, you can run the command:

php artisan upgrade:interactive

This will:

  1. Check for outdated Composer and npm packages
  2. Display them in a table with available upgrade options
  3. Allow you to interactively select which packages to upgrade
  4. Handle the upgrade process, including dependency analysis

Options

--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

Examples

# 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

Features

  • 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

License

The MIT License (MIT). Please see License File for more information.