PHPackages                             tylercd100/php-rebooter - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. tylercd100/php-rebooter

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

tylercd100/php-rebooter
=======================

This package will allow you to reboot, boot, and shutdown your servers remotely.

2.0.0(10y ago)28MITPHPPHP ^5.5.9|^7.0

Since Apr 20Pushed 10y ago2 watchersCompare

[ Source](https://github.com/tylercd100/php-rebooter)[ Packagist](https://packagist.org/packages/tylercd100/php-rebooter)[ Docs](https://github.com/tylercd100/php-rebooter)[ RSS](/packages/tylercd100-php-rebooter/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (5)Dependencies (3)Versions (7)Used By (0)

PHP Rebooter
============

[](#php-rebooter)

[![Latest Version](https://camo.githubusercontent.com/2af5d9bbab890af9a888fc4ea5f27209a26273530e9b3a6c4edfe1edfbb4d908/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f74796c657263643130302f7068702d7265626f6f7465722e7376673f7374796c653d666c61742d737175617265)](https://github.com/tylercd100/php-rebooter/releases)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/f65f4e5183ad570561db215bc6f849f0896d166aa580a222e85b0725668ba50a/68747470733a2f2f7472617669732d63692e6f72672f74796c657263643130302f7068702d7265626f6f7465722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/tylercd100/php-rebooter)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/143a0bd14e4565eee6da5e1351fd34a8a98f2e3c9b6a9737ecc32014a181d35b/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f74796c657263643130302f7068702d7265626f6f7465722f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/tylercd100/php-rebooter/?branch=master)[![Code Coverage](https://camo.githubusercontent.com/1bbbb6e4511fc525d427030e45a5178a23e715b30b3a6dc2d4e6e9b2f90a7e65/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f74796c657263643130302f7068702d7265626f6f7465722f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/tylercd100/php-rebooter/?branch=master)[![Dependency Status](https://camo.githubusercontent.com/1c4ac926efb90f2924bb989040a5bf7eedb5476ed59563195a7d1ed8141ed7fb/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f757365722f70726f6a656374732f3536663332353263333536333065303032396462303138372f62616467652e7376673f7374796c653d666c6174)](https://www.versioneye.com/user/projects/56f3252c35630e0029db0187)[![Total Downloads](https://camo.githubusercontent.com/84b5da72eb158335bec46c5df987324ecdc569424ef4f14c7e6f351fba6f4f9f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f74796c657263643130302f7068702d7265626f6f7465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/tylercd100/php-rebooter)

This package will allow you to reboot, boot, and shutdown your servers remotely.

Currently supported:

- [Linode](https://www.linode.com)
- [DigitalOcean](https://www.digitalocean.com)
- [Vultr](https://www.vultr.com)
- SSH with username and password

Planned support for:

- [Amazon EC2](https://aws.amazon.com/ec2)
- SSH with more options

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

[](#installation)

Install via [composer](https://getcomposer.org/) - In the terminal:

```
composer require tylercd100/php-rebooter
```

Usage
-----

[](#usage)

### Linode, DigitalOcean and Vultr

[](#linode-digitalocean-and-vultr)

```
use Tylercd100\Rebooter\Drivers\Api\Linode;
use Tylercd100\Rebooter\Drivers\Api\DigitalOcean; // DigitalOcean takes the same parameters as Linode
use Tylercd100\Rebooter\Drivers\Api\Vultr;        // Vultr takes the same parameters as Linode

$token = "secret";
$server_id = 1234;

$server = new Linode($token,$server_id);

$server->reboot();
# or $server->boot();
# or $server->shutdown();
```

### SSH Password

[](#ssh-password)

```
use Tylercd100\Rebooter\Drivers\Ssh\Password;

$host = "your-server.com";
$user = "your-username";
$pass = "your-secret-password";
$port = 22; // The port parameter is optional and will default to 22

$server = new Password($host,$user,$pass,$port);

$server->reboot();
# or $server->shutdown();
# or $server->boot(); // Will not work as you cannot boot a powered down maching using SSH
```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 93.1% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

5

Last Release

3675d ago

Major Versions

1.3.0 → 2.0.02016-04-21

### Community

Maintainers

![](https://www.gravatar.com/avatar/5d0f17a08e8038aafdd451317206dda9429dfda2c7cbadb0c0796e25367108d5?d=identicon)[tylercd100](/maintainers/tylercd100)

---

Top Contributors

[![tylercd100](https://avatars.githubusercontent.com/u/4522226?v=4)](https://github.com/tylercd100 "tylercd100 (27 commits)")[![scrutinizer-auto-fixer](https://avatars.githubusercontent.com/u/6253494?v=4)](https://github.com/scrutinizer-auto-fixer "scrutinizer-auto-fixer (2 commits)")

---

Tags

tylercd100

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/tylercd100-php-rebooter/health.svg)

```
[![Health](https://phpackages.com/badges/tylercd100-php-rebooter/health.svg)](https://phpackages.com/packages/tylercd100-php-rebooter)
```

###  Alternatives

[shlinkio/shlink

A self-hosted and PHP-based URL shortener application with CLI and REST interfaces

4.8k4.3k](/packages/shlinkio-shlink)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[dhlparcel/magento2-plugin

DHL Parcel plugin for Magento 2

11180.5k2](/packages/dhlparcel-magento2-plugin)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)[tylercd100/laravel-placeholders

Find and replace placeholders in a string

1216.0k](/packages/tylercd100-laravel-placeholders)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
