Download the PHP package donia-shaker/media-library without Composer

On this page you can find all versions of the php package donia-shaker/media-library. 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 media-library

Media Library

This package provides a set of functions for handling media files, including images, audio, video, and PDF files.

Features

Installation

To install the DoniaShaker\MediaLibrary package, follow these steps:

  1. Add the package to your Laravel project using Composer:

  2. Publish the Database migrations and config to your project:

  3. If you wish to use a default format other than the default webp format, edit the following line in config/media-library.php

  4. Add ENV variables required by the package config

  5. Run the package's migrations to create the necessary database tables:

Usage

Initialization

  1. use the package:

  2. Call the Constructor

  3. in the following examples, the $format field can be null, thus using the default_image_format value defined from the config.

Save Image

This function saves an image file to the media library, generates a thumbnail, and associates it with the current model. Usage:

Create Temporary Image

This function creates a temporary image file in the media library.

Usage:

Convert Temporary Image

This function converts a temporary image file to a normal image file in the media library, deletes the temporary file and record, and associates the new image with the current model.

Usage:

Delete Temporary Image

This function deletes a temporary image file and record from the media library.

Usage:

Save Audio File

This function saves an audio file to the media library and associates it with the current model.

Usage:

Save Video File

This function saves a video file to the media library and associates it with the current model. Usage:

Save Document File

This function saves a document file to the media library and associates it with the current model. Usage:

Media Object

Explanation of the media object properties:

The media object represents a media file stored in the media library. It contains various properties providing information about the file, such as its associated model, file format, URLs for accessing the image and thumbnail, and timestamps for creation and updates.

Rules

Square Image

This function saves a document file to the media library and associates it with the current model. It accepts the $file parameter, which represents the uploaded document file.

Usage:

Troubleshooting and Collaboration

If you encounter any issues or have any suggestions, please feel free to open an issue on GitHub.


All versions of media-library with dependencies

PHP Build Version
Package Version
Requires laravel/framework Version >=10.0.0 <13.0.0
intervention/image Version ^3.6
ivoglent/ffmpeg-composer-bin Version ^1.3
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 donia-shaker/media-library contains the following files

Loading the files please wait ....