Download the PHP package originphp/storage without Composer

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

Storage

license build coverage

The Storage library provides an easy way to access different types of storages from local disk, ZIP archives, FTP and SFTP. Its a unified approach for working with different storages.

Installation

To install this package

Configuration

You need to configure the default storage engine, you can use multiple engines, but there must be a default one.

In your bootstrap/configuration files add

Using Storage

Writing To Storage

You can also write to folders directly. Folders in the tree that do not exist will be created automatically.

Reading From Storage

Deleting From Storage

To delete files or folders

Folders are deleted recursively automatically, when using delete.

Listing Storage Contents

Version 2.0 no longer lists names of files relative to the path you pass to the list method. The full path name is always returned.

To list the files on the storage

Storage contents are listed recursively and it will provide you with an array of FileObjects. Each file has is an object which can be accessed as an array or an object

When the FileObject is converted to a string it will become a path e.g. /main/subfolder/foo.txt

If you just want the files of particular folder, then it will list all files recursively under that folder.

Working with Multiple Storages

Whether you are using multiple storage engines, or you multiple configurations for a single storage engine, the Storage utility is flexible.

You can get the configured Storage volume

Or you can pass an options array telling the Storage object which configuration to use

Storage Engines

Local

The local storage simply works with data from the drive.

FTP

Then you need to configure this

options for configuring FTP include:

SFTP

To use the SFTP engine, you need to install phpseclib

Then configure as follows:

If you use want to use a private key to login, you can either provide the filename with the full path or the contents of the private key itself.

If your private key requires a password then you can provide that as well. See the How to setup SSH keys tutorial for more information.

options for configuring SFTP include:

S3

The S3 Engine works with Amazon S3 and any other object storage server which uses the S3 protocol, for example minio.

To use the S3 Engine, you need to install the Amazon AWS SDK

Then you can configure the S3 engine like this

Options for configuring the S3 engine are:

Minio Server (S3)

To fire up your own minio server locally you can run the docker command

You can access this also using your web browser at http://127.0.0.1:9000.

Zip

To use the ZIP storage engine, provide the filename with a full path.


All versions of storage with dependencies

PHP Build Version
Package Version
Requires php Version >=7.3.0
originphp/configurable Version ^2.0
originphp/defer Version ^3.0
ext-zip 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 originphp/storage contains the following files

Loading the files please wait ....