HEX
Server: nginx/1.27.1
System: Linux in-3 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
User: ivenus-clone (3297)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v4513/tepnot/public_html/wp-content/plugins/dokan-pro/vendor/appsero/updater/README.md
# AppSero Client Updater

### Version 2.3.5
- Fixed: Missing methods added to prevent a fatal error

### Version 2.3.4
- Fixed: Plugin update message do not display after dependent plugin version update

### Version 2.3.3
- [Depency](#depency)
- [Installation](#installation)
- [Usages](#usages)

## Depenct

At first you need to isntall [Appseo Client](https://github.com/Appsero/client/blob/develop/readme.md)


## Installation

You can install AppSero Client Updater in two ways, via composer and manually.

### 1. Composer Installation

Add dependency in your project (theme/plugin):

```
composer require appsero/updater
```

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

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


### 2. Manual Installation

Clone the repository in your project.

```bash
cd /path/to/your/project/folder
git clone https://github.com/AppSero/updater.git updater
```

##### Now include the dependencies in your plugin/theme.

```php
if (! class_exists('Appsero\Updater')) {
  require __DIR__ . '/updater/src/Updater.php';
}
```

## Usages

```php
$client = new Appsero\Client( 'a4a8da5b-b419-4656-98e9-4a42e9044891', 'Akismet', __FILE__ );

// Active automatic updater
Appsero\Updater::init($client);
```