Download the PHP package marvinjanssen/magicmounter without Composer

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

MagicMounter

MagicMounter, by Marvin Janssen (http://marvinjanssen.me), released in 2017.

MagicMounter can magically mount "anything". These mounts can then be universally accessed using any of PHP's file/stream functions via the magic:// stream wrapper. What makes MagicMounter unique is that it the underlying driver for a mount is transparent to the end-user. Thus, you may at one point mount a local directory at magic://production, and later mount a remote directory via FTP at the same mount point.

Because MagicMounter works as a stream wrapper, all the goodness that comes with streams is available. Think of all the stream functions, filters, iterators, and so forth. This fact arguably makes it one of the most powerful PHP FTP clients to boot, whilst staying rather succinct.

To mount:

Where:

Usage

Install via Composer:

composer require marvinjanssen/magicmounter

Download project as zip file and include:

require 'magicmounter/src/magicmounter.php'

Example code

Drivers

MagicMounter currently comes with 3 drivers.

fs

Local filesystem driver.

Options:

ftp

Standard FTP driver using built-in ftp_* functions. The driver implements as many file system features as the PHP FTP extension permits.

Options:

To retrieve measurements if measure_transfer is enabled, use:

ftps

Extends ftp but uses ftp_ssl_connect().

Options are the same as ftp.

Extending

Extending MagicMounter with your own drivers is easy. Create your own class in the MagicMounter\driver namespace and implement the MagicMounter\Driver interface. A good starting point is the MagicMounter\driver\Fs class. Having some knowledge of the PHP stream wrapper is recommended. Also, be sure that you implement as much as you can, to offer a well-rounded magic driver. (Support for fseek(), fopen(), touch(), rename(), stat(), fopen() modes, etc..)

You define any custom driver as long as it implements MagicMounter\Driver:


All versions of magicmounter with dependencies

PHP Build Version
Package Version
No informations.
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 marvinjanssen/magicmounter contains the following files

Loading the files please wait ....