Download the PHP package app-verk/google-cloud-storage-media-bundle without Composer

On this page you can find all versions of the php package app-verk/google-cloud-storage-media-bundle. 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 google-cloud-storage-media-bundle

GoogleCloudStorageMediaBundle

Symfony Media Bundle. The bundle allow in easy way upload files. The bundle required to working dropzone.js script.

Configure

Require the bundle with composer:

$ composer require app-verk/google-cloud-storage-media-bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new AppVerk\GoogleCloudStorageMediaBundle\GoogleCloudStorageMediaBundle(),
        // ...
    );
}

Create your Media class:

<?php

namespace AppBundle\Entity;

use AppVerk\GoogleCloudStorageMediaBundle\Entity\Media as BaseMedia;
use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity()
 */
class Media extends BaseMedia
{

}

Add to config.yml:

twig:
    form:
        resources:
            - 'GoogleCloudStorageMediaBundle:form:fields.html.twig'

google_cloud_storage_media:
    namer: "AppVerk\\GoogleCloudStorageMediaBundle\\Namer\\DefaultNamer"
    filesystem: "default.storage"
    filesystem_url_retriever: 'AppVerk\GoogleCloudStorageMediaBundle\Flysystem\Retriever\LocalObjectUrlRetriever'
    entities:
        media_class: AppBundle\Entity\Media
    gcs:
        project_id: 123
        bucket_id: my_bucket
        key_file_path: "default"
    allowed_mime_types: ["image/jpeg", "image/jpg", "image/png", "image/gif", "application/pdf"]

Add to routing.yml:

media:
    resource: '@GoogleCloudStorageMediaBundle/Controller/'
    type: annotation

Add these libs into your admin panel:

<!--css -->
<link rel="stylesheet" href="{{ asset('bundles/media/css/dropzone.min.css') }}" />

<!-- js -->
<script src="{{ asset('bundles/media/js/dropzone.min.js') }}"></script>

Update your database schema:

$ php app/console doctrine:schema:update --force

Media Form Type

<?php

use Symfony\Component\Form\AbstractType;
use AppVerk\GoogleCloudStorageMediaBundle\Form\Type\MediaType;
use Symfony\Component\Form\FormBuilderInterface;

class Post extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $formMapper
            ->add('image', MediaType::class)
        ;
    }
}

Twig helper

Render a media:

<img src="{{ post.media|media }}" />

Group of validation

Bundle allow to validation every single used MediaType in different way. For example you want to allow only PDF files:

You need to add group into config.yml:

media:
    entities:
        media_class: AppBundle\Entity\Media
    allowed_mime_types: ["image/png", "image/gif"]
    max_file_size: 15000000
    groups:
        lorem:
            allowed_mime_types: ["application/pdf"]
            max_file_size: 560000

Set group in MediaType:

$formMapper->add('image', MediaType::class, [
    'group' => 'lorem'
]);

Using new StorageService and flysystem layer

In order to use the new AppVerk\GoogleCloudStorageMediaBundle\Service\v2\StorageService you have to:

Configure flysystem correctly (example):

config/packages/flysystem.yaml

config/services/storage.yaml

Then, configure media bundle accordingly config/packages/google_cloud_storage_media.yaml

License

The bundle is released under the MIT License.


All versions of google-cloud-storage-media-bundle with dependencies

PHP Build Version
Package Version
Requires php Version 7.4.* || 8.*
app-verk/components Version dev-master
league/flysystem-bundle Version ^2.0
google/cloud-storage Version ^1.16
symfony/framework-bundle Version ^5.0
symfony/event-dispatcher Version ^5.0
symfony/http-kernel Version ^5.0
symfony/http-foundation Version ^5.0
symfony/translation Version ^5.0
symfony/form Version ^5.0
stof/doctrine-extensions-bundle Version ^1.3
symfony/twig-bundle Version ^5.0
doctrine/orm Version *
symfony/orm-pack 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 app-verk/google-cloud-storage-media-bundle contains the following files

Loading the files please wait ....