PHPackages                             anahkiasen/isaac-mod-manager - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [CLI &amp; Console](/categories/cli)
4. /
5. anahkiasen/isaac-mod-manager

AbandonedArchivedLibrary[CLI &amp; Console](/categories/cli)

anahkiasen/isaac-mod-manager
============================

IMM is a cross-plateform CLI-tool to manage your Workshop mods for Binding of Isaac

0.3.0(9y ago)293[4 issues](https://github.com/Anahkiasen/isaac-mod-manager/issues)MITPHPPHP &gt;=7.0

Since Mar 8Pushed 9y agoCompare

[ Source](https://github.com/Anahkiasen/isaac-mod-manager)[ Packagist](https://packagist.org/packages/anahkiasen/isaac-mod-manager)[ RSS](/packages/anahkiasen-isaac-mod-manager/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (6)Dependencies (16)Versions (7)Used By (0)

Isaac Mod Manager (IMM)
=======================

[](#isaac-mod-manager-imm)

[![Build Status](https://camo.githubusercontent.com/eae97248620c06c483013b08e18bd15654feb43eccc83ab32112b44e1a058921/687474703a2f2f696d672e736869656c64732e696f2f7472617669732f416e61686b696173656e2f69736161632d6d6f642d6d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/Anahkiasen/isaac-mod-manager) [![Latest Stable Version](https://camo.githubusercontent.com/66348ce8ac4ad62303c498590d68f945c20435984117ca6028b414c460b3a7dc/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f616e61686b696173656e2f69736161632d6d6f642d6d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/anahkiasen/isaac-mod-manager) [![Total Downloads](https://camo.githubusercontent.com/4267c0cecf2fc943b47d802b9af8d716d83e95b238616e874cb7649b5040dd1a/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f616e61686b696173656e2f69736161632d6d6f642d6d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/anahkiasen/isaac-mod-manager) [![Scrutinizer Quality Score](https://camo.githubusercontent.com/57d0011a64217c0d55d1364a59a944ebbb8e96369abbe694a80971f31d18b60e/687474703a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f616e61686b696173656e2f69736161632d6d6f642d6d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/anahkiasen/isaac-mod-manager/) [![Code Coverage](https://camo.githubusercontent.com/549cb21e0da68eb1000cac421d36ac3c39cd3fc408a4c5016f8918b45997a0bf/687474703a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f616e61686b696173656e2f69736161632d6d6f642d6d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/anahkiasen/isaac-mod-manager/)

[![](https://camo.githubusercontent.com/b56329a8a2ae0e09cea32db82c3606b7e013e5035c0bd4875eb798129023db37/687474703a2f2f692e696d6775722e636f6d2f4b654d76366b632e706e67)](https://camo.githubusercontent.com/b56329a8a2ae0e09cea32db82c3606b7e013e5035c0bd4875eb798129023db37/687474703a2f2f692e696d6775722e636f6d2f4b654d76366b632e706e67)

IMM is a cross-plateform CLI-tool to manage your Workshop mods for Binding of Isaac.

What it does is manually install the mods in the `resources/` folder of the game, allowing you to play without achievements being disabled. This allows you to always have your mods up to date and with your latest subscriptions without having to copy and overwrite files by hand every time.

**This does not affect your Workshop mods in any way**

Installation
------------

[](#installation)

### Prerequisites

[](#prerequisites)

IMM requires a terminal and PHP 7+ in order to work. To check if you have PHP, open your terminal of choice (Powershell per example on Windows or Terminal elsewhere) and run `php --version`. If nothing is returned or a version inferior to 7 is returned you'll need to install it, otherwise you're good. To install PHP:

- If you're on Mac you're good
- On Linux use your package manager of choice (aptitude, yum, etc.).
- On Windows you can install it through [Chocolatey](https://chocolatey.org/install) via `choco install php`.

### Through Composer

[](#through-composer)

#### Stable version

[](#stable-version)

IMM can be installed through [Composer](https://getcomposer.org/) (this requires the OpenSSL extension\[1\]):

```
$ composer global require anahkiasen/isaac-mod-manager
```

#### Development version

[](#development-version)

You can also install the beta version like this:

```
$ composer global require "anahkiasen/isaac-mod-manager:1.0.x@dev"
```

To switch back to the stable version, simply run the "Stable version" install command right above.

### Via the PHAR archive

[](#via-the-phar-archive)

Alternatively you can use the PHAR archive, which you can download in the [Releases](https://github.com/Anahkiasen/isaac-mod-manager/releases) page.

Once downloaded, go in your terminal to where the file was downloaded, and you use it as such (per example):

```
$ php imm.phar mods:install
```

Usage
-----

[](#usage)

You can run `imm` to see a list of possible commands and their description.

- To install your mods simply run `imm mods:install`, and to uninstall them but keep Isaac unpacked run `imm mods:uninstall`.
- You can install or uninstall one or more specific mods by specifiying their Steam ID: `imm mods:install 123456789 123456789`.
- You can also find mods by using a part of their name (case insensitive) `imm mods:install chud mei 123456789`
- Finally you can restore your copy of Isaac to its packed (non-modded) state by running `imm restore`.

Building
--------

[](#building)

To compress the app into a `imm.phar` archive run:

```
$ composer build
```

Testing
-------

[](#testing)

To run the test suite, run the following:

```
$ composer test
```

Roadmap
-------

[](#roadmap)

You can find the currently planned features in the [Milestones](https://github.com/Anahkiasen/isaac-mod-manager/milestones) page.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Anahkiasen](https://github.com/Anahkiasen)
- [All Contributors](https://github.com/anahkiasen/isaac-mod-manager/contributors)

License
-------

[](#license)

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

\[1\]: You can install it by uncommenting the first line containing `openssl` in `C:/tools/php71/php.ini`

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~3 days

Total

6

Last Release

3381d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/aa3be3e9e416053f11f2296a5fb36f24e45bc70fa293b309d54c2829ded5f373?d=identicon)[Anahkiasen](/maintainers/Anahkiasen)

---

Top Contributors

[![Anahkiasen](https://avatars.githubusercontent.com/u/1321596?v=4)](https://github.com/Anahkiasen "Anahkiasen (188 commits)")

---

Tags

isaacmodsmodsisaac

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/anahkiasen-isaac-mod-manager/health.svg)

```
[![Health](https://phpackages.com/badges/anahkiasen-isaac-mod-manager/health.svg)](https://phpackages.com/packages/anahkiasen-isaac-mod-manager)
```

###  Alternatives

[laravel/framework

The Laravel Framework.

34.8k532.1M19.4k](/packages/laravel-framework)[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.6k38.2k](/packages/matomo-matomo)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M196](/packages/sulu-sulu)[tempest/framework

The PHP framework that gets out of your way.

2.2k31.1k12](/packages/tempest-framework)[illuminate/console

The Illuminate Console package.

13045.3M6.2k](/packages/illuminate-console)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

585.4M519](/packages/shopware-core)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
