https://github.com/veronalabs/updater
A custom update checker for WordPress plugins and themes based on yahnis-elsts/plugin-update-checker and own private license server updater.
https://github.com/veronalabs/updater
Last synced: about 1 year ago
JSON representation
A custom update checker for WordPress plugins and themes based on yahnis-elsts/plugin-update-checker and own private license server updater.
- Host: GitHub
- URL: https://github.com/veronalabs/updater
- Owner: veronalabs
- License: mit
- Created: 2021-09-26T19:41:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-28T11:49:50.000Z (about 2 years ago)
- Last Synced: 2025-03-27T15:52:20.718Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 9.77 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Updater
A custom update checker for WordPress plugins and themes based on yahnis-elsts/plugin-update-checker and own private license server updater.
### Installation
Install by Composer
```
composer require veronalabs/updater
```
Then, initial the `UpdaterChecker` by the required parameters
```php
\VeronaLabs\Updater\UpdaterChecker::getInstance(array(
'plugin_slug' => 'plugin-slug',
'website_url' => 'https://plugin-url.com',
'license_key' => 'license-key',
'plugin_path' => 'plugin-path',
'setting_page' => admin_url('admin.php?page=plugin-setting-page')
));
```