PHPackages                             makewpdev/client - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. makewpdev/client

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

makewpdev/client
================

MakeWP.dev Client

00PHP

Since Aug 25Pushed 5y ago1 watchersCompare

[ Source](https://github.com/makewpdev/client)[ Packagist](https://packagist.org/packages/makewpdev/client)[ RSS](/packages/makewpdev-client/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependenciesVersions (1)Used By (0)

MakeWP CLient
=============

[](#makewp-client)

- [Installation](#installation)
- [Insights](#insights)
- [Dynamic Usage](#usage)

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

[](#installation)

You can install MakeWP Client in two ways, via composer or manually.

### 1. Composer Installation

[](#1-composer-installation)

Add dependency in your project (theme/plugin):

```
composer require makewpdev/client
```

Now add autoload.php in your file if you haven't done already.

```
require_once __DIR__ . '/vendor/autoload.php';
```

### 2. Manual Installation

[](#2-manual-installation)

Clone the repository in your project.

```
cd /path/to/your/project/folder
git clone https://github.com/makewpdev/client.git makewpdev

```

Now include the dependencies in your plugin/theme.

```
require_once __DIR__ . '/makewpdev/src/Client.php';
```

Insights
--------

[](#insights)

MakeWP can be used in both themes and plugins.

The `makewpdev\Client` class has three parameters:

```
$client = new Makewpdev\Client( $hash, $name, $file );
```

- **hash** (string, required) - The unique identifier for a plugin or theme.
- **name** (string, required) - The name of the plugin or theme.
- **file** (string, required) - The main file path of the plugin. For theme, path to functions.php

Usage Example
-------------

[](#usage-example)

Please refer to the **installation** step before start using the class.

You can obtain the hash for your plugin for the [MakeWP Dashboard](https://dashboard.makewp.dev). The 3rd parameter must have to be the main file of the plugin.

```
/**
 * Initialize the tracker
 *
 * @return void
 */
if(!function_exists('makeWP_init_tracker_plugin_name')){
function makeWP_init_tracker_plugin_name() {

    if ( ! class_exists( 'Makewpdev\Client' ) ) {
        require_once __DIR__ . '/makewpdev/src/Client.php';
    }

    $client = new \Makewpdev\Client( 'QYwQI-Yu79YOd7-bYf3GJJ5hm-uzACdpk-O88JP6', 'Plugin Name', __FILE__ );

    // Active insights
    $client->insights()->init();

    // Active automatic updater
    $client->updater();

    // Active license page and checker
    $args = array(
        'type'       => 'options',
        'menu_title' => 'Plugin Name',
        'page_title' => 'Plugin Name License Settings',
        'menu_slug'  => 'plugin_name_settings',
    );
    $client->license()->add_settings_page( $args );
}

makeWP_init_tracker_plugin_name();
}
```

Makesure to:

- change `plugin_name` with your plugin slug
- call this function direcly, never use any action hook to call this function

> For plugins example code that needs to be used on your main plugin file. For themes example code that needs to be used on your themes `functions.php` file.

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity32

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/959bbd393f9539bfbac8acd402a1f3677ad47451f8439be9d242b095b32ee34a?d=identicon)[themeid](/maintainers/themeid)

---

Top Contributors

[![dankerizer](https://avatars.githubusercontent.com/u/587674?v=4)](https://github.com/dankerizer "dankerizer (15 commits)")

### Embed Badge

![Health badge](/badges/makewpdev-client/health.svg)

```
[![Health](https://phpackages.com/badges/makewpdev-client/health.svg)](https://phpackages.com/packages/makewpdev-client)
```

###  Alternatives

[grasmash/composerize-drupal

Convert a non-Composer managed Drupal application into a Composer-managed application.

12819.4k1](/packages/grasmash-composerize-drupal)[neutron/signal-handler

A library to ease the use of signal handling.

13101.4k2](/packages/neutron-signal-handler)

PHPackages © 2026

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