Download the PHP package elijahcruz/tasker without Composer

On this page you can find all versions of the php package elijahcruz/tasker. 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 tasker

`

Introduction

Tasker is a CLI Deployment tool, written in PHP. It's purpose is to make things simple when deploying your website, and allows you to do so without actually going into the server yourself.

How it works

Tasker works by adding a host, creating a deployment file, and then running that deployment file on your server via SSH.

First, you add the host, you choose the name, such as myhost, and then enter the host such as [email protected].

Next, you create a deployment file, this file is stored on your PC, so it never actually is stored on your server.

Finally, you run the deployment file on the server. This works by SSHing into the server, then running the file, line by line, as commands.

Requirements

Tasker has very minimal requirements.

We need the SQlite extension to be able to store the hosts, and the names of the deployments.

Installation

Tasker is available via composer.

`

After installation, you then just have to run the install command

`

This creates a folder called .tasker in your home folder. This is where the deployments and database itself are stored. We need to store them here because we use a .PHAR file.

Usage

There are a few commands that Tasker has, but they are really easy to learn.

USAGE: tasker <command> [options] [arguments]

`

How the run command works

Under the hood, Tasker utilizes Spatie/SSH, allowing for a much easier experience. This uses scp under it's hood, which is how it it able to run as such.

Deployment files are kinda like bash files in a way, only running one command per line, with the only real difference being that you don't have you .bashrc handy for it. It also doesn't work with actual bash syntax, such as if/else statements.

Tasker Limitations/Issues Observed

There are some issues that I've personally noticed with Tasker, some aren't related to Tasker itself, while some are issues that don't actually need to be fixed.

License

Tasker uses the MIT license.

Disclaimer

Please note that I have to say here that I take no responsability to anything that may happen to your server using Tasker. The reason I say this is because Tasker itself does not create the deployment file, you do. Tasker only runs the deployment file you ask it to run.


All versions of tasker with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4|^8.0
ext-sqlite3 Version *
illuminate/database Version ^9.12
jc21/clitable Version ^1.2
laminas/laminas-text Version ^2.8
laravel-zero/phar-updater Version ^1.3.0
spatie/ssh Version ^1.7
symfony/process Version ^6.0
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 elijahcruz/tasker contains the following files

Loading the files please wait ....