Download the PHP package oboxmedia/push-it without Composer

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

pustIt

Rsync abastraction and deployment tool.

Alows you to define various sync operations via a config file and simplify deployment from staging to production.

Installation

Option 1: Install via composer

Then you can run it from within your project php vendor/bin/pushIt -h

Option 2: Standalone installation

Then you can run it by invoking the script php scripts/pushIt -h

Quick Start

Step 1 Define a .pushIt.conf file in the root of your project

For example:

Step 2 Define a excludeFile.txt this will list files to ignore when synching

For example:

Step 3 From the root of you project run the sync scripts

php vendor/bin/pushIt --target app

Configuration

Wehn running the pushIt script it will look in the current folder for a .pushIt.conf file. If not found it will work back up the file tree and use the first .pushIt.conf file it finds.

Alternatively you can use the --config or -c option to specify a configuration file.

This file has two types of configuration the [default] options, which control some behaviours or the script, it allows to define defaults for different deploy targets.

Deploy targets define a source and destination folder to push. Each target is defined in a [target name] section in the config file.

default configuration directives

The [default] section enable you to define global options that are used in all targets.

defaultTarget: allows you to define which target is used by default (when no --target or -t option is specified.

Deploy Target configuration directives

source: source folder to sync (same as rsync source)

destination: destination folder to sync to (same as rsync destination)

excludeFile: text file that contains file patterns to ignore (same as rsync --exclude-from)


All versions of push-it with dependencies

PHP Build Version
Package Version
Requires webtrendi/clapp Version ^1.1
symfony/process Version ^4.2
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 oboxmedia/push-it contains the following files

Loading the files please wait ....