https://github.com/generoi/genero-status
A basic status script to query the status of a Drupal/Wordpress site from a remote dashboard.
https://github.com/generoi/genero-status
Last synced: 22 days ago
JSON representation
A basic status script to query the status of a Drupal/Wordpress site from a remote dashboard.
- Host: GitHub
- URL: https://github.com/generoi/genero-status
- Owner: generoi
- Created: 2016-09-23T09:28:50.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-15T12:53:14.000Z (over 3 years ago)
- Last Synced: 2026-04-04T01:09:02.323Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# genero-status.php
> A basic status script to query the status of a Drupal/Wordpress site from a remote dashboard.
### Installation
Recommended way is to install the script in the root of the project using composer. To move it from the `vendor/` directory you can use the following configuration using `composer-dropin-installer`:
```
{
"repositories": [
{
"type": "composer",
"url": "https://packagist.minasithil.genero.fi/"
}
],
"require": {
"php": ">=5.6",
"composer/installers": "~1.2.0",
"koodimonni/composer-dropin-installer": "*",
"generoi/genero-status": "*"
},
"extra": {
"dropin-paths": {
"web/": ["package:generoi/genero-status:genero-status.php"]
}
}
}
```