Download the PHP package positibe/cms-bundle without Composer

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

PositibeCmsBundle

This bundle provide a AbstractPage, Page and Category entity and integrate some other Positibe bundles to create a Page CMS representation.

Installation

Before

To install the bundle just add the dependent bundles:

php composer.phar require positibe/cms-bundle

This bundle set the required configuration of other Positibe Bundles for you like:

But it's better take a look at those README.md file

Next, be sure to enable the bundles in your application kernel:

<?php
// app/AppKernel.php
public function registerBundles()
{
    return array(
        // ...
        // Sylius ResourceBundle
        new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(),
        new FOS\RestBundle\FOSRestBundle(),
        new JMS\SerializerBundle\JMSSerializerBundle($this),
        new Sylius\Bundle\ResourceBundle\SyliusResourceBundle(),
        new WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle(),
        new Bazinga\Bundle\HateoasBundle\BazingaHateoasBundle(),
        new winzou\Bundle\StateMachineBundle\winzouStateMachineBundle(),
        new Knp\Bundle\MenuBundle\KnpMenuBundle(),
        new Liip\ImagineBundle\LiipImagineBundle(),
        new Ivory\CKEditorBundle\IvoryCKEditorBundle(),
        new FM\ElfinderBundle\FMElfinderBundle(),
        new Sonata\CoreBundle\SonataCoreBundle(),
        new Sonata\BlockBundle\SonataBlockBundle(),
        new Sonata\SeoBundle\SonataSeoBundle(),
        new Lunetics\LocaleBundle\LuneticsLocaleBundle(),
        new Symfony\Cmf\Bundle\CoreBundle\CmfCoreBundle(),
        new Symfony\Cmf\Bundle\RoutingBundle\CmfRoutingBundle(),
        new Symfony\Cmf\Bundle\RoutingAutoBundle\CmfRoutingAutoBundle(),
        new Symfony\Cmf\Bundle\SeoBundle\CmfSeoBundle(),
        new Positibe\Bundle\CmfRoutingExtraBundle\PositibeCmfRoutingExtraBundle(),
        new Positibe\Bundle\CoreBundle\PositibeCoreBundle(),
        new Positibe\Bundle\MediaBundle\PositibeMediaBundle(),
        new Positibe\Bundle\MenuBundle\PositibeMenuBundle(),
        new Positibe\Bundle\CmsBundle\PositibeCmsBundle(),

        // ...
    );
}

Configuration

Import all necessary configurations to your app/config/config.yml the basic configuration.

app/config/config.yml

imports:
    - { resource: '@PositibeCoreBundle/Resources/config/config.yml'}
    - { resource: '@PositibeCmsBundle/Resources/config/config.yml' }
    - { resource: '@PositibeMediaBundle/Resources/config/config.yml'}
    - { resource: '@PositibeMenuBundle/Resources/config/config.yml'}
    - { resource: '@PositibeCmfRoutingExtraBundle/Resources/config/config.yml' }

#If you want some advanced configuration
positibe_cms:
    public_routes: # e.g. [homepage, my-company]  List of public symfony routes available.
    content_class: # e.g. [ AppBundle\Entity\Post, AppBundle\Entity\Category ] List of content that extend of MenuNodeReferralInterface.

Caution:: This bundle use the timestampable, sluggable, softdeleteable, translatable and sortable extension of GedmoDoctrineExtension. Be sure that you have the listeners for this extensions enable. You can also to use StofDoctrineExtensionBundle. Caution:: If you have the parameter positibe.menu_node.class: Positibe\Bundle\MenuBundle\Doctrine\Orm\MenuNode configured in your config.yml please erase it.


All versions of cms-bundle with dependencies

PHP Build Version
Package 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 positibe/cms-bundle contains the following files

Loading the files please wait ....