https://github.com/broskees/one-time-registration
A WordPress Plugin to generate one-time links for registration of your WordPress site, and disallow any other type of registration.
https://github.com/broskees/one-time-registration
Last synced: 2 months ago
JSON representation
A WordPress Plugin to generate one-time links for registration of your WordPress site, and disallow any other type of registration.
- Host: GitHub
- URL: https://github.com/broskees/one-time-registration
- Owner: broskees
- Created: 2022-09-23T02:49:17.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-27T23:05:32.000Z (over 2 years ago)
- Last Synced: 2025-01-20T08:12:11.219Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
# One Time Registration WordPress Plugin
A WordPress Plugin to generate one-time links for registration of your WordPress site, and disallow any other type of registration.
## Installation
### Manually
Export this repository as a zip and install manually.
### Composer
At the moment I'm not going to bother with versions and such for this.
To install or add the following to the `repositories` section of your composer.json file:
```json
{
"type": "package",
"package": {
"name": "broskees/one-time-registration",
"version": "master",
"type": "wordpress-plugin",
"source": {
"url": "https://github.com/broskees/one-time-registration.git",
"type": "git",
"reference": "master"
}
}
},
```Then run `composer require broskees/one-time-registration`
## Updating with composer
Firstly remove the old version:
`composer remove broskees/one-time-registration`
Clear composer cache:
`composer clearcache`
Reinstall:
`composer require --prefer-dist broskees/one-time-registration:dev-master`