Download the PHP package firesnake/is-it-running without Composer

On this page you can find all versions of the php package firesnake/is-it-running. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package is-it-running

Is It Running

Table of Contents

About

Is it running is a monitoring System for websites. It allows you to monitor several environments with predefined checks. How these environments are addressed, is completely up to you.

In every Environment you can define variables, which then in turn can be used by the individual checks.

Installation

The Software uses doctrine. To be able to use doctrine you have to set it up. Here is a link to their documentation.

The Software also provides a few cli commands. In order for them to work, you must create a bootstrap.php file. It must be located in workdir/bootstrap.php.
This file must include the Autoloader of composer and, provide the method

Once that is done, all you have to do is set up the database and create the tables. You will find how that is done in the documentation of Doctrine.

Write you own CheckRunner

The CheckRunner is the main performer of this software. In the CheckRunner you can examine the response of the curlResponse and determine if the check is successful or failed. This class is an example of a check runner.
firesnake\isItRunning\entities\CheckableEnvironment\HttpStatusTest

Each CheckRunner must implement the interface firesnake\isItRunning\entities\CheckableEnvironment\CheckRunner

You must however add your own CheckRunner in the PerformerRegistry. You can access the registry via an instance of the firesnake\isItRunning\IsItRunning class.

The Comment of the checkRunner is only used if the test fails.

How to use

  1. Create an Environment
  2. Create a Check and configure it how you need it
  3. Wait on the dashboard (It does refresh itself every minute)

You can use the EnvironmentVariables for the url of a Check. This syntax must be fulfilled: {{variableName}}rest-of-url
Where you place the variable is up to you. If needed, multiple variables can be used.


All versions of is-it-running with dependencies

PHP Build Version
Package Version
Requires php Version >=8.0
doctrine/orm Version ^2.13
doctrine/annotations Version ^1.13
symfony/cache Version ^6.1
twig/twig Version ^3.4
dragonmantank/cron-expression Version ^3.3
ext-curl Version *
adistoe/env-loader Version ^1.1
phpmailer/phpmailer Version ^6.6
ext-http Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package firesnake/is-it-running contains the following files

Loading the files please wait ....