PHPackages                             packedge-sdk/license - 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. packedge-sdk/license

ActiveLibrary

packedge-sdk/license
====================

License + auto-update for WordPress plugins

00PHP

Since Feb 6Pushed 3mo agoCompare

[ Source](https://github.com/Packedge-dev/packedge-wordpress-license)[ Packagist](https://packagist.org/packages/packedge-sdk/license)[ RSS](/packages/packedge-sdk-license/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

PackEdge License
================

[](#packedge-license)

License + auto-update for WordPress plugins.

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

[](#installation)

### Via Composer (Recommended)

[](#via-composer-recommended)

```
composer require packedge/license
```

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

use PackEdge\License;

$license = License::init('pk_xxx', __FILE__);
```

### Manual Installation

[](#manual-installation)

Download and copy `src/License.php` and `src/Updater.php` to your plugin:

```
require_once __DIR__ . '/includes/License.php';
require_once __DIR__ . '/includes/Updater.php';

use PackEdge\License;

$license = License::init('pk_xxx', __FILE__);
```

Quick Start
-----------

[](#quick-start)

```
