PHPackages                             ideologix/dlm-wp-updater - 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. [API Development](/categories/api)
4. /
5. ideologix/dlm-wp-updater

ActiveLibrary[API Development](/categories/api)

ideologix/dlm-wp-updater
========================

PHP WordPress updater for your plugins and themes that utilizes the Digital License Manager PRO REST APIs

1.4.1(2mo ago)51.8k2GPL-2.0-or-laterPHPPHP &gt;=5.3

Since Oct 9Pushed 2mo ago2 watchersCompare

[ Source](https://github.com/digital-license-manager/dlm-wp-updater)[ Packagist](https://packagist.org/packages/ideologix/dlm-wp-updater)[ RSS](/packages/ideologix-dlm-wp-updater/feed)WikiDiscussions main Synced yesterday

READMEChangelog (10)DependenciesVersions (16)Used By (0)

Digital License Manager WordPress Updater
=========================================

[](#digital-license-manager-wordpress-updater)

Updater package for WordPress that utilizes the Digital License Manager PRO [REST API](https://docs.codeverve.com/digital-license-manager/rest-api/) for update checks and update downloads. It can be integrated in every plugin that you want to provide updates through [Digital License Manager PRO](https://codeverve.com/product/digital-license-manager-pro/).

Requirements
------------

[](#requirements)

1. WordPress 4.0+
2. Digital License Manager PRO (on your plugin update server site)

Configuration
-------------

[](#configuration)

1. Login to your Digital License Manager store.
2. Go to "License Manager" &gt; "Software" &gt; "Add New" and create software item.
3. Obtain the software ID and then proceed with the next step **Installation**.

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

[](#installation)

The PHP package can be imported either with Composer or manually with including the `autoload.php` file:

```
composer install ideologix/dlm-wp-updater
```

or manually, first download the package and save it to your plugin, then include it as follows:

```
require_once 'path/to/dlm-wordpress-updater/autoload.php';
```

Integration
-----------

[](#integration)

The following example explains how to use the library within your PRO/Premium plugin.

```
use \IdeoLogix\DigitalLicenseManagerUpdaterWP\Main;

try {
    $instance = new Main( array(
        'id'              => 'The software ID',
        'name'            => 'The software Name',
        'file'            => '/path/to/wp-content/plugins/your-plugin/your-plugin.php', // Tip: use __FILE__ to define it in your-plugin.php
        'basename'        => 'your-plugin/your-plugin.php', // Tip: use plugin_basename( __FILE__ ) in your-plugin.php
        'version'         => YOUR_PLUGIN_VERSION, // Tip: Define this in your-plugin.php file and increment with every release.
        'url_settings'    => 'https://url-to-your-plugin/settings-page',
        'url_purchase'    => 'https://url-to-your-website/purchase-page',
        'consumer_key'    => 'ck_XXXXXXXXXXXXXXXXX',
        'consumer_secret' => 'cs_XXXXXXXXXXXXXXXXX',
        'api_url'         => 'https://yourwoocommercesite.com/wp-json/dlm/v1/',
        'prefix'          => 'dlm',
    ) );
} catch (\Exception $e) {
    error_log('Error: ' . $e->getMessage());
}

// Important: To display the activation form in your settings page (url_settings), use the renderActivationForm() method like bellow.
// Note: If you want to override the activation form, you can extend the Activator class with your own class and override the renderActivationForm() method.
$instance->getActivator()->renderActivationForm();
```

###  Health Score

46

—

FairBetter than 92% of packages

Maintenance85

Actively maintained with recent releases

Popularity25

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 83.3% 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 ~118 days

Recently: every ~159 days

Total

15

Last Release

77d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/092968da21d868077ffac225d195f167f19435d61409f8ec656136c6f3d6f197?d=identicon)[gdarko](/maintainers/gdarko)

---

Top Contributors

[![gdarko](https://avatars.githubusercontent.com/u/5760249?v=4)](https://github.com/gdarko "gdarko (35 commits)")[![pondermatic](https://avatars.githubusercontent.com/u/5377968?v=4)](https://github.com/pondermatic "pondermatic (7 commits)")

### Embed Badge

![Health badge](/badges/ideologix-dlm-wp-updater/health.svg)

```
[![Health](https://phpackages.com/badges/ideologix-dlm-wp-updater/health.svg)](https://phpackages.com/packages/ideologix-dlm-wp-updater)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k15](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

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