georgechitechi/upgrader

A tool to upgrade CodeIgniter 3 projects to CodeIgniter 4

dev-main 2025-03-05 18:58 UTC

This package is auto-updated.

Last update: 2025-04-05 19:16:13 UTC


README

This package helps you upgrade your CodeIgniter 3 projects to CodeIgniter 4. It handles the migration of your project structure, namespaces, and various CodeIgniter-specific components.

Installation

Install the package in your CodeIgniter 3 project:

composer require georgechitechi/upgrader

Usage

Simply run the upgrade command from your CI3 project directory:

vendor/bin/ci-upgrade

The upgrader will:

  1. Use your current directory as the source
  2. Create a backup of your entire project
  3. Download the latest CI4 and set it up
  4. Migrate all your code to CI4 format
  5. Place the upgraded project in a new directory
vendor/bin/ci-upgrade upgrade

If you want to upgrade a different CI3 project, you can specify the path:

vendor/bin/ci-upgrade upgrade --path=/path/to/other/ci3/project

What Gets Upgraded

The upgrader handles the following aspects of the migration:

  1. Project Structure

    • Downloads latest CI4 installation
    • Creates proper directory structure
    • Creates a backup of your original project
  2. Controllers

    • Adds namespaces
    • Updates class extensions
    • Updates method visibility
    • Converts CI3 syntax to CI4
  3. Models

    • Adds namespaces
    • Updates class extensions
    • Updates method visibility
    • Adds CI4 model properties
  4. Views

    • Migrates to the new location
    • Updates echo syntax
    • Updates form helper syntax
    • Updates URL helper syntax
  5. Configuration

    • Converts config arrays to classes
    • Updates config file structure
    • Migrates database configuration
    • Sets up environment file
  6. Routes

    • Updates routing syntax
    • Migrates to the new routing system
  7. Helpers and Libraries

    • Adds namespaces
    • Updates file locations
    • Updates syntax to CI4 standards
  8. Composer Configuration

    • Creates/updates composer.json
    • Sets up autoloading
    • Preserves existing dependencies

After Upgrade

Your upgraded project will be in a new directory next to your current project. The original project will remain untouched, and a backup will be created with the suffix _backup_YYYY-MM-DD_HH-ii-ss.

Important Notes

  1. Always commit your changes before running the upgrader
  2. Review the upgraded code manually to ensure everything works as expected
  3. Some manual adjustments might be needed after the upgrade
  4. Test your application thoroughly after the upgrade

Manual Steps After Upgrade

  1. Review and update any third-party libraries
  2. Update any custom helpers or libraries that might need adjustments
  3. Test all forms and file uploads
  4. Update any custom database queries
  5. Review and update any session handling
  6. Test all AJAX calls and responses

Known Limitations

  • Custom libraries might need manual adjustment
  • Complex routing configurations might need review
  • Database queries might need updates for compatibility
  • Session handling might need manual updates
  • Custom hooks will need manual migration

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Author

George Chitechi

License

MIT License