Download the PHP package chialab/cakephp-object-storage without Composer

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

Object storage plugin for CakePHP

This plugin offers an implementation of an object storage for CakePHP applications.

Features

This plugin provides:

Installation

You can install this plugin using composer:

To use AWS S3 as a backend storage, the SDK is also needed:

Usage

Add the plugin in your Application.php bootstrap:

Run the migration to create the files table:

Add the configuration for the backend storage in your app.php:

See chialab/php-object-storage library's README for more information on the adapters.

Disable routing

Use ['routes' => false] when adding the plugin to implement your own routes. You can still use Chialab/CakeObjectStorage.Files as controller if you only want to change the paths, or implement your own controller.

Disable event listener

Use ['bootstrap' => false] when adding the plugin to disable automatically adding the event listener. If you're using the plugin's FilesTable, you are required to set the DI container to its instances, or implement your own service handling.

Disable service provider

Use ['services' => false] when adding the plugin to disable automatically adding the storage service provider. You are required to provide a MultipartUploadInterface implementation to FilesTable instances, or implement your own service handling.

Upload

See File::getMultipartChunkSize() for the threshold between small file and multipart upload.

Create file entity

The default controller accepts a request like the following:

The response is like the following:

The file entity in the response has a property is_multipart to let the client know if a multipart upload is required. In this case, the response will also contain a chunk_size property with the maximum file part size, and a finalize URL to call after all parts have been uploaded.

Upload file

To upload the file, make a request like the following with the file as body:

Multipart upload

To upload a part of a multipart upload, add the part query parameter to the request:

The parameter is an incremental number starting from 1, which represent the "index" of the part currently uploading.

The endpoint will respond with a hash of the uploaded part that needs to be stored to finalize the upload later:

To finalize the upload:

To abort a multipart upload:


All versions of cakephp-object-storage with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1
cakephp/cakephp Version ^4.3
cakephp/migrations Version ^3.0
chialab/object-storage Version v0.1.0
webmozart/assert Version ^1.11
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 chialab/cakephp-object-storage contains the following files

Loading the files please wait ....