Download the PHP package dreadlabs/kunstmaan-distributed-bundle without Composer

On this page you can find all versions of the php package dreadlabs/kunstmaan-distributed-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 kunstmaan-distributed-bundle

Kunstmaan CMS Distributed Bundle

Configures a Kunstmaan Bundles CMS instance for running on distributed, clustered infrastructure.

What does it do?

  1. Package installations

    In order to operate on distributed infrastructure, Redis was choosen as a backend for various caches:

     snc/redis-bundle
     predis/predis
  2. Compiler passes

    • kunstmaan_admin.cache

      Replace filesystem cache with a redis cache.

    • dreadlabs_kunstmaan_distibuted.cache_page_events.subscriber

      Registers an EventListener for page cache invalidation.

How to activate?

Add the following bundles to your AppKernel:

// ...
new Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle(),
new Snc\RedisBundle\SncRedisBundle(),
new DreadLabs\KunstmaanDistributedBundle\DreadLabsKunstmaanDistributedBundle(),
// ...

Add the following container parameters to your parameters.yml.dist:

# Set according to the valid clients which may purge the cache
http_cache_purge_client_ips: [127.0.0.1, ...]
# Host and port of the proxy server(s)
http_cache_proxy_servers: [localhost:80]
# Base-URL of the application
http_cache_proxy_baseurl: localhost
# Proxy client options
http_cache_proxy_options: { purge_method: '', ... }
# Change / customize if something prevents the custom HTTP Method
http_cache_purge_method: 'PURGE'

Add the following configuration keys to your parameters.yml.dist:

redis_host:                    localhost
redis_db_cache:                1
redis_db_annotations:          2
redis_db_http_cache:           3
redis_db_kunstmaanadmin_cache: 4

Use the Bundle's HttpCache in your app/AppCache.php:

// app/AppCache.php
// ...
use DreadLabs\KunstmaanDistributedBundle\HttpCache\HttpCache;

class AppCache extends HttpCache
{
}

All versions of kunstmaan-distributed-bundle with dependencies

PHP Build Version
Package Version
Requires kunstmaan/bundles-cms Version ~3.6.0
snc/redis-bundle Version ~2.0.0
predis/predis Version ~1.1.1
friendsofsymfony/http-cache-bundle Version ~1.3.6
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 dreadlabs/kunstmaan-distributed-bundle contains the following files

Loading the files please wait ....