From 8a823811e4fad47aa3f85bbd87bcb1ef56cffe5f Mon Sep 17 00:00:00 2001 From: blair Date: Tue, 16 Feb 2016 08:17:56 -0600 Subject: [PATCH] Fixed typo in annotation for SeparatorPage Added dev dependencies Code reformat --- .gitignore | 39 +- .idea/composerJson.xml | 9 + .idea/encodings.xml | 4 +- .idea/misc.xml | 1 - .idea/modules.xml | 1 + .../Ten24CMSPagesExtension.php | 7 +- Entity/ContentPage.php | 20 +- Entity/HomePage.php | 21 +- Entity/SeparatorPage.php | 25 +- Form/ContentPageAdminType.php | 11 +- Form/HomePageAdminType.php | 11 +- Form/SeparatorPageAdminType.php | 14 +- Resources/config/services.yml | 12 +- .../two-column-left-pagetemplate.html.twig | 2 +- .../two-column-right-pagetemplate.html.twig | 2 +- Resources/views/HomePage/view.html.twig | 2 +- .../SeparatorPage/pagetemplate.html.twig | 2 +- Ten24CMSPagesBundle.php | 4 - composer.json | 6 + composer.lock | 2123 +++++++++++++++++ 20 files changed, 2211 insertions(+), 105 deletions(-) create mode 100644 .idea/composerJson.xml create mode 100644 composer.lock diff --git a/.gitignore b/.gitignore index a06c49f..f7cc5e3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,41 +1,4 @@ -### Symfony template -# Cache and logs (Symfony2) -/app/cache/* -/app/logs/* -!app/cache/.gitkeep -!app/logs/.gitkeep - -# Cache and logs (Symfony3) -/var/cache/* -/var/logs/* -!var/cache/.gitkeep -!var/logs/.gitkeep - -# Parameters -/app/config/parameters.yml -/app/config/parameters.ini - -# Managed by Composer -/app/bootstrap.php.cache -/var/bootstrap.php.cache -/bin/* -!bin/console -!bin/symfony_requirements -/vendor/ - -# Assets and user uploads -/web/bundles/ -/web/uploads/ - -# PHPUnit -/app/phpunit.xml -/phpunit.xml - -# Build data -/build/ - -# Composer PHAR -/composer.phar +vendor # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm diff --git a/.idea/composerJson.xml b/.idea/composerJson.xml new file mode 100644 index 0000000..4199499 --- /dev/null +++ b/.idea/composerJson.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml index d821048..f758959 100644 --- a/.idea/encodings.xml +++ b/.idea/encodings.xml @@ -1,4 +1,6 @@ - + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index c753c0f..940aad0 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,5 @@ - diff --git a/.idea/modules.xml b/.idea/modules.xml index 4dddcdd..5e00592 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -3,6 +3,7 @@ + \ No newline at end of file diff --git a/DependencyInjection/Ten24CMSPagesExtension.php b/DependencyInjection/Ten24CMSPagesExtension.php index 13a0c74..8f0e3ab 100644 --- a/DependencyInjection/Ten24CMSPagesExtension.php +++ b/DependencyInjection/Ten24CMSPagesExtension.php @@ -2,10 +2,10 @@ namespace Ten24\CMSPagesBundle\DependencyInjection; -use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\Config\FileLocator; -use Symfony\Component\HttpKernel\DependencyInjection\Extension; +use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Loader; +use Symfony\Component\HttpKernel\DependencyInjection\Extension; /** * This is the class that loads and manages your bundle configuration @@ -17,7 +17,8 @@ class Ten24CMSPagesExtension extends Extension /** * {@inheritDoc} */ - public function load(array $configs, ContainerBuilder $container) + public function load(array $configs, + ContainerBuilder $container) { $configuration = new Configuration(); $this->processConfiguration($configuration, $configs); diff --git a/Entity/ContentPage.php b/Entity/ContentPage.php index 829e663..bf3dff9 100644 --- a/Entity/ContentPage.php +++ b/Entity/ContentPage.php @@ -31,16 +31,16 @@ public function getDefaultAdminType() */ public function getPossibleChildTypes() { - return array( - array( + return [ + [ 'name' => 'Content Page', 'class' => 'Ten24\CMSPagesBundle\Entity\ContentPage' - ), - array( + ], + [ 'name' => 'Separator', 'class' => 'Ten24\CMSPagesBundle\Entity\SeparatorPage' - ), - ); + ], + ]; } /** @@ -48,10 +48,10 @@ public function getPossibleChildTypes() */ public function getPagePartAdminConfigurations() { - return array( + return [ 'Ten24CMSPagesBundle:main', 'Ten24CMSPagesBundle:sidebar' - ); + ]; } /** @@ -59,11 +59,11 @@ public function getPagePartAdminConfigurations() */ public function getPageTemplates() { - return array( + return [ 'Ten24CMSPagesBundle:default-one-column', 'Ten24CMSPagesBundle:default-two-column-left', 'Ten24CMSPagesBundle:default-two-column-right' - ); + ]; } /** diff --git a/Entity/HomePage.php b/Entity/HomePage.php index 641b953..7fcae4f 100644 --- a/Entity/HomePage.php +++ b/Entity/HomePage.php @@ -2,10 +2,10 @@ namespace Ten24\CMSPagesBundle\Entity; -use Ten24\CMSPagesBundle\Form\HomePageAdminType; use Doctrine\ORM\Mapping as ORM; use Kunstmaan\NodeBundle\Entity\AbstractPage; use Kunstmaan\PagePartBundle\Helper\HasPageTemplateInterface; +use Ten24\CMSPagesBundle\Form\HomePageAdminType; /** * HomePage Superclass @@ -14,7 +14,6 @@ */ abstract class HomePage extends AbstractPage implements HasPageTemplateInterface { - /** * Returns the default backend form type for this page * @@ -31,13 +30,13 @@ public function getDefaultAdminType() */ public function getPossibleChildTypes() { - return array( - array( + return [ + [ 'name' => 'Content Page', - 'class' => 'Ten24\CMSPagesBundle\Entity\ContentPage'), - array( + 'class' => 'Ten24\CMSPagesBundle\Entity\ContentPage'], + [ 'name' => 'Separator', - 'class' => 'Ten24\CMSPagesBundle\Entity\SeparatorPage'),); + 'class' => 'Ten24\CMSPagesBundle\Entity\SeparatorPage'],]; } /** @@ -46,8 +45,8 @@ public function getPossibleChildTypes() */ public function getPagePartAdminConfigurations() { - return array( - 'Ten24CMSPagesBundle:home'); + return [ + 'Ten24CMSPagesBundle:home']; } /** @@ -55,11 +54,11 @@ public function getPagePartAdminConfigurations() */ public function getPageTemplates() { - return array( + return [ 'Ten24CMSPagesBundle:default-one-column', 'Ten24CMSPagesBundle:default-two-column-left', 'Ten24CMSPagesBundle:default-two-column-right', - 'Ten24CMSPagesBundle:homepage'); + 'Ten24CMSPagesBundle:homepage']; } /** diff --git a/Entity/SeparatorPage.php b/Entity/SeparatorPage.php index 12b133c..9fd65e9 100644 --- a/Entity/SeparatorPage.php +++ b/Entity/SeparatorPage.php @@ -3,15 +3,16 @@ namespace Ten24\CMSPagesBundle\Entity; use Doctrine\ORM\Mapping as ORM; +use Kunstmaan\NodeBundle\Entity\AbstractPage; +use Kunstmaan\PagePartBundle\Helper\HasPageTemplateInterface; use Ten24\CMSPagesBundle\Form\SeparatorPageAdminType; /** * SeparatorPage Mappedsuperclass * - * @ORM\Mappedsuperclass + * @ORM\MappedSuperclass */ -class SeparatorPage extends \Kunstmaan\NodeBundle\Entity\AbstractPage - implements \Kunstmaan\PagePartBundle\Helper\HasPageTemplateInterface +abstract class SeparatorPage extends AbstractPage implements HasPageTemplateInterface { /** @@ -30,32 +31,34 @@ public function getDefaultAdminType() */ public function getPossibleChildTypes() { - return array( - array( + return [ + [ 'name' => 'Content Page', - 'class' => 'Ten24\CMSPagesBundle\Entity\ContentPage'), - array( + 'class' => 'Ten24\CMSPagesBundle\Entity\ContentPage'], + [ 'name' => 'Separator', - 'class' => 'Ten24\CMSPagesBundle\Entity\SeparatorPage')); + 'class' => 'Ten24\CMSPagesBundle\Entity\SeparatorPage']]; } /** * Get possible page part admin configurations + * * @return array */ public function getPagePartAdminConfigurations() { - return array(); + return []; } /** * Get possible page templates for this page + * * @return array */ public function getPageTemplates() { - return array( - 'Ten24CMSPagesBundle:separator'); + return [ + 'Ten24CMSPagesBundle:separator']; } /** diff --git a/Form/ContentPageAdminType.php b/Form/ContentPageAdminType.php index 2d88936..9af2eca 100644 --- a/Form/ContentPageAdminType.php +++ b/Form/ContentPageAdminType.php @@ -20,11 +20,12 @@ class ContentPageAdminType extends PageAdminType * @see FormTypeExtensionInterface::buildForm() * * @param FormBuilderInterface $builder The form builder - * @param array $options The options + * @param array $options The options * * @SuppressWarnings("unused") */ - public function buildForm(FormBuilderInterface $builder, array $options) + public function buildForm(FormBuilderInterface $builder, + array $options) { parent::buildForm($builder, $options); } @@ -36,9 +37,9 @@ public function buildForm(FormBuilderInterface $builder, array $options) */ public function setDefaultOptions(OptionsResolverInterface $resolver) { - $resolver->setDefaults(array( - 'data_class' => 'Ten24\CMSPagesBundle\Entity\ContentPage' - )); + $resolver->setDefaults([ + 'data_class' => 'Ten24\CMSPagesBundle\Entity\ContentPage' + ]); } /** diff --git a/Form/HomePageAdminType.php b/Form/HomePageAdminType.php index 150cbbd..64d0593 100644 --- a/Form/HomePageAdminType.php +++ b/Form/HomePageAdminType.php @@ -20,11 +20,12 @@ class HomePageAdminType extends PageAdminType * @see FormTypeExtensionInterface::buildForm() * * @param FormBuilderInterface $builder The form builder - * @param array $options The options + * @param array $options The options * * @SuppressWarnings("unused") */ - public function buildForm(FormBuilderInterface $builder, array $options) + public function buildForm(FormBuilderInterface $builder, + array $options) { parent::buildForm($builder, $options); } @@ -36,9 +37,9 @@ public function buildForm(FormBuilderInterface $builder, array $options) */ public function setDefaultOptions(OptionsResolverInterface $resolver) { - $resolver->setDefaults(array( - 'data_class' => 'Ten24\CMSPagesBundle\Entity\HomePage' - )); + $resolver->setDefaults([ + 'data_class' => 'Ten24\CMSPagesBundle\Entity\HomePage' + ]); } /** diff --git a/Form/SeparatorPageAdminType.php b/Form/SeparatorPageAdminType.php index cdfac5f..b52fab8 100644 --- a/Form/SeparatorPageAdminType.php +++ b/Form/SeparatorPageAdminType.php @@ -2,8 +2,8 @@ namespace Ten24\CMSPagesBundle\Form; -use Symfony\Component\OptionsResolver\OptionsResolverInterface; use Symfony\Component\Form\FormBuilderInterface; +use Symfony\Component\OptionsResolver\OptionsResolverInterface; /** * SeparatorPageAdminType @@ -16,12 +16,14 @@ class SeparatorPageAdminType extends \Kunstmaan\NodeBundle\Form\PageAdminType * * This method is called for each type in the hierarchy starting form the * top most type. Type extensions can further modify the form. + * * @param FormBuilderInterface $builder The form builder - * @param array $options The options + * @param array $options The options * * @see FormTypeExtensionInterface::buildForm() */ - public function buildForm(FormBuilderInterface $builder, array $options) + public function buildForm(FormBuilderInterface $builder, + array $options) { parent::buildForm($builder, $options); } @@ -33,9 +35,9 @@ public function buildForm(FormBuilderInterface $builder, array $options) */ public function setDefaultOptions(OptionsResolverInterface $resolver) { - $resolver->setDefaults(array( - 'data_class' => '\Ten24\CMSPagesBundle\Entity\SeparatorPage' - )); + $resolver->setDefaults([ + 'data_class' => '\Ten24\CMSPagesBundle\Entity\SeparatorPage' + ]); } /** diff --git a/Resources/config/services.yml b/Resources/config/services.yml index 1a3ee5c..fbada9a 100644 --- a/Resources/config/services.yml +++ b/Resources/config/services.yml @@ -10,11 +10,11 @@ services: - { name: form.type, alias: ten24cmspages.homepageadmin } ten24cmspages.form.type.admin.contentpage: - class: %ten24cmspages.form.type.admin.contentpage.class% - tags: - - { name: form.type, alias: ten24cmspages.contentpageadmin } + class: %ten24cmspages.form.type.admin.contentpage.class% + tags: + - { name: form.type, alias: ten24cmspages.contentpageadmin } ten24cmspages.form.type.admin.separatorpage: - class: %ten24cmspages.form.type.admin.separatorpage.class% - tags: - - { name: form.type, alias: ten24cmspages.separatorpageadmin } \ No newline at end of file + class: %ten24cmspages.form.type.admin.separatorpage.class% + tags: + - { name: form.type, alias: ten24cmspages.separatorpageadmin } \ No newline at end of file diff --git a/Resources/views/Common/two-column-left-pagetemplate.html.twig b/Resources/views/Common/two-column-left-pagetemplate.html.twig index cff7b0f..8e14488 100644 --- a/Resources/views/Common/two-column-left-pagetemplate.html.twig +++ b/Resources/views/Common/two-column-left-pagetemplate.html.twig @@ -2,7 +2,7 @@
{{ render_pageparts(page, 'sidebar') }}
- +
{{ render_pageparts(page, 'main') }}
diff --git a/Resources/views/Common/two-column-right-pagetemplate.html.twig b/Resources/views/Common/two-column-right-pagetemplate.html.twig index 4c76cc8..cb1622b 100644 --- a/Resources/views/Common/two-column-right-pagetemplate.html.twig +++ b/Resources/views/Common/two-column-right-pagetemplate.html.twig @@ -2,7 +2,7 @@
{{ render_pageparts(page, 'main') }}
- +
{{ render_pageparts(page, 'sidebar') }}
diff --git a/Resources/views/HomePage/view.html.twig b/Resources/views/HomePage/view.html.twig index a35783e..b7ba156 100644 --- a/Resources/views/HomePage/view.html.twig +++ b/Resources/views/HomePage/view.html.twig @@ -1,7 +1,7 @@ {% extends '::base.html.twig' %} {% block extra_body_attributes %} -class="home" + class="home" {% endblock %} {% block content %} diff --git a/Resources/views/SeparatorPage/pagetemplate.html.twig b/Resources/views/SeparatorPage/pagetemplate.html.twig index 5dbfd1a..d3a6b89 100644 --- a/Resources/views/SeparatorPage/pagetemplate.html.twig +++ b/Resources/views/SeparatorPage/pagetemplate.html.twig @@ -4,7 +4,7 @@ {% set activeNode = nodemenu.getActiveForDepth(nodemenu.current.node.level + 1) %} {% include 'Ten24CMSPagesBundle:Layout:submenu.html.twig' with { items: activeNode.children } %} - +
{% set seo = get_seo_for(page) %} {{ seo.metaDescription }} diff --git a/Ten24CMSPagesBundle.php b/Ten24CMSPagesBundle.php index 3b864bd..da3f81a 100644 --- a/Ten24CMSPagesBundle.php +++ b/Ten24CMSPagesBundle.php @@ -2,12 +2,8 @@ namespace Ten24\CMSPagesBundle; -use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\HttpKernel\Bundle\Bundle; -/** - * KunstmaanMediaBundle - */ class Ten24CMSPagesBundle extends Bundle { diff --git a/composer.json b/composer.json index c0a7fba..1bb7dcb 100644 --- a/composer.json +++ b/composer.json @@ -16,6 +16,12 @@ "tentwofour/cms-template": "dev-master" }, "require-dev": { + "kunstmaan/node-bundle": "3.2.x-dev", + "friendsofsymfony/user-bundle": "2.0.*@dev", + "kunstmaan/pagepart-bundle": "3.2.x-dev", + "doctrine/orm": "2.5.*", + "symfony/form": "2.8.*", + "symfony/options-resolver": "2.8.*" }, "minimum-stability": "stable", "autoload": { diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..09968aa --- /dev/null +++ b/composer.lock @@ -0,0 +1,2123 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", + "This file is @generated automatically" + ], + "hash": "19cb3b065f9ef80c72b92e74587f37d6", + "content-hash": "1f729e61428e92b9757b9991c4f29f20", + "packages": [], + "packages-dev": [ + { + "name": "behat/transliterator", + "version": "v1.1.0", + "source": { + "type": "git", + "url": "https://github.com/Behat/Transliterator.git", + "reference": "868e05be3a9f25ba6424c2dd4849567f50715003" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Behat/Transliterator/zipball/868e05be3a9f25ba6424c2dd4849567f50715003", + "reference": "868e05be3a9f25ba6424c2dd4849567f50715003", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-0": { + "Behat\\Transliterator": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Artistic-1.0" + ], + "description": "String transliterator", + "keywords": [ + "i18n", + "slug", + "transliterator" + ], + "time": "2015-09-28 16:26:35" + }, + { + "name": "doctrine/annotations", + "version": "v1.2.7", + "source": { + "type": "git", + "url": "https://github.com/doctrine/annotations.git", + "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535", + "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535", + "shasum": "" + }, + "require": { + "doctrine/lexer": "1.*", + "php": ">=5.3.2" + }, + "require-dev": { + "doctrine/cache": "1.*", + "phpunit/phpunit": "4.*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3.x-dev" + } + }, + "autoload": { + "psr-0": { + "Doctrine\\Common\\Annotations\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Docblock Annotations Parser", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "annotations", + "docblock", + "parser" + ], + "time": "2015-08-31 12:32:49" + }, + { + "name": "doctrine/cache", + "version": "v1.6.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/cache.git", + "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/cache/zipball/f8af318d14bdb0eff0336795b428b547bd39ccb6", + "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6", + "shasum": "" + }, + "require": { + "php": "~5.5|~7.0" + }, + "conflict": { + "doctrine/common": ">2.2,<2.4" + }, + "require-dev": { + "phpunit/phpunit": "~4.8|~5.0", + "predis/predis": "~1.0", + "satooshi/php-coveralls": "~0.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.6.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Caching library offering an object-oriented API for many cache backends", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "cache", + "caching" + ], + "time": "2015-12-31 16:37:02" + }, + { + "name": "doctrine/collections", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/collections.git", + "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a", + "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "require-dev": { + "phpunit/phpunit": "~4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-0": { + "Doctrine\\Common\\Collections\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Collections Abstraction library", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "array", + "collections", + "iterator" + ], + "time": "2015-04-14 22:21:58" + }, + { + "name": "doctrine/common", + "version": "v2.6.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/common.git", + "reference": "a579557bc689580c19fee4e27487a67fe60defc0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/common/zipball/a579557bc689580c19fee4e27487a67fe60defc0", + "reference": "a579557bc689580c19fee4e27487a67fe60defc0", + "shasum": "" + }, + "require": { + "doctrine/annotations": "1.*", + "doctrine/cache": "1.*", + "doctrine/collections": "1.*", + "doctrine/inflector": "1.*", + "doctrine/lexer": "1.*", + "php": "~5.5|~7.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.8|~5.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\": "lib/Doctrine/Common" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Common Library for Doctrine projects", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "annotations", + "collections", + "eventmanager", + "persistence", + "spl" + ], + "time": "2015-12-25 13:18:31" + }, + { + "name": "doctrine/dbal", + "version": "v2.5.4", + "source": { + "type": "git", + "url": "https://github.com/doctrine/dbal.git", + "reference": "abbdfd1cff43a7b99d027af3be709bc8fc7d4769" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/abbdfd1cff43a7b99d027af3be709bc8fc7d4769", + "reference": "abbdfd1cff43a7b99d027af3be709bc8fc7d4769", + "shasum": "" + }, + "require": { + "doctrine/common": ">=2.4,<2.7-dev", + "php": ">=5.3.2" + }, + "require-dev": { + "phpunit/phpunit": "4.*", + "symfony/console": "2.*" + }, + "suggest": { + "symfony/console": "For helpful console commands such as SQL execution and import of files." + }, + "bin": [ + "bin/doctrine-dbal" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.5.x-dev" + } + }, + "autoload": { + "psr-0": { + "Doctrine\\DBAL\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + } + ], + "description": "Database Abstraction Layer", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "database", + "dbal", + "persistence", + "queryobject" + ], + "time": "2016-01-05 22:11:12" + }, + { + "name": "doctrine/inflector", + "version": "v1.1.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "90b2128806bfde671b6952ab8bea493942c1fdae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae", + "reference": "90b2128806bfde671b6952ab8bea493942c1fdae", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "require-dev": { + "phpunit/phpunit": "4.*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, + "autoload": { + "psr-0": { + "Doctrine\\Common\\Inflector\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Common String Manipulations with regard to casing and singular/plural rules.", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "inflection", + "pluralize", + "singularize", + "string" + ], + "time": "2015-11-06 14:35:42" + }, + { + "name": "doctrine/instantiator", + "version": "1.0.5", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", + "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", + "shasum": "" + }, + "require": { + "php": ">=5.3,<8.0-DEV" + }, + "require-dev": { + "athletic/athletic": "~0.1.8", + "ext-pdo": "*", + "ext-phar": "*", + "phpunit/phpunit": "~4.0", + "squizlabs/php_codesniffer": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "http://ocramius.github.com/" + } + ], + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://github.com/doctrine/instantiator", + "keywords": [ + "constructor", + "instantiate" + ], + "time": "2015-06-14 21:17:01" + }, + { + "name": "doctrine/lexer", + "version": "v1.0.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c", + "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-0": { + "Doctrine\\Common\\Lexer\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "lexer", + "parser" + ], + "time": "2014-09-09 13:34:57" + }, + { + "name": "doctrine/orm", + "version": "v2.5.4", + "source": { + "type": "git", + "url": "https://github.com/doctrine/doctrine2.git", + "reference": "bc4ddbfb0114cb33438cc811c9a740d8aa304aab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/bc4ddbfb0114cb33438cc811c9a740d8aa304aab", + "reference": "bc4ddbfb0114cb33438cc811c9a740d8aa304aab", + "shasum": "" + }, + "require": { + "doctrine/cache": "~1.4", + "doctrine/collections": "~1.2", + "doctrine/common": ">=2.5-dev,<2.7-dev", + "doctrine/dbal": ">=2.5-dev,<2.6-dev", + "doctrine/instantiator": "~1.0.1", + "ext-pdo": "*", + "php": ">=5.4", + "symfony/console": "~2.5|~3.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.0", + "symfony/yaml": "~2.3|~3.0" + }, + "suggest": { + "symfony/yaml": "If you want to use YAML Metadata Mapping Driver" + }, + "bin": [ + "bin/doctrine", + "bin/doctrine.php" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.6.x-dev" + } + }, + "autoload": { + "psr-0": { + "Doctrine\\ORM\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + } + ], + "description": "Object-Relational-Mapper for PHP", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "database", + "orm" + ], + "time": "2016-01-05 21:34:58" + }, + { + "name": "friendsofsymfony/user-bundle", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git", + "reference": "e770bfa2fd0fc665f55cd7cfeb34bddeffb892f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/e770bfa2fd0fc665f55cd7cfeb34bddeffb892f4", + "reference": "e770bfa2fd0fc665f55cd7cfeb34bddeffb892f4", + "shasum": "" + }, + "require": { + "php": ">=5.3.9", + "symfony/form": "~2.3|~3.0", + "symfony/framework-bundle": "~2.3|~3.0", + "symfony/security-bundle": "~2.3|~3.0", + "symfony/twig-bundle": "~2.3|~3.0" + }, + "require-dev": { + "doctrine/doctrine-bundle": "~1.3", + "swiftmailer/swiftmailer": "~4.3|~5", + "symfony/console": "~2.3|~3.0", + "symfony/phpunit-bridge": "~2.7|~3.0", + "symfony/validator": "~2.3|~3.0", + "symfony/yaml": "~2.3|~3.0", + "willdurand/propel-typehintable-behavior": "~1.0" + }, + "suggest": { + "willdurand/propel-typehintable-behavior": "Needed when using the propel implementation" + }, + "type": "symfony-bundle", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "FOS\\UserBundle\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christophe Coevoet", + "email": "stof@notk.org" + }, + { + "name": "FriendsOfSymfony Community", + "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors" + }, + { + "name": "Thibault Duplessis", + "email": "thibault.duplessis@gmail.com" + } + ], + "description": "Symfony FOSUserBundle", + "homepage": "http://friendsofsymfony.github.com", + "keywords": [ + "User management" + ], + "time": "2016-02-11 16:30:08" + }, + { + "name": "gedmo/doctrine-extensions", + "version": "v2.3.12", + "source": { + "type": "git", + "url": "https://github.com/Atlantic18/DoctrineExtensions.git", + "reference": "c3ff3c73c95b01e107af33d4fe3abf80794e2df9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Atlantic18/DoctrineExtensions/zipball/c3ff3c73c95b01e107af33d4fe3abf80794e2df9", + "reference": "c3ff3c73c95b01e107af33d4fe3abf80794e2df9", + "shasum": "" + }, + "require": { + "behat/transliterator": "~1.0", + "doctrine/common": "~2.4", + "php": ">=5.3.2" + }, + "require-dev": { + "doctrine/mongodb-odm": ">=1.0.0-BETA11", + "doctrine/orm": "~2.4", + "phpunit/phpunit": "~4.4", + "phpunit/phpunit-mock-objects": "~2.3", + "symfony/yaml": "~2.3" + }, + "suggest": { + "doctrine/mongodb-odm": "to use the extensions with the MongoDB ODM", + "doctrine/orm": "to use the extensions with the ORM" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.3.x-dev" + } + }, + "autoload": { + "psr-0": { + "Gedmo\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "David Buchmann", + "email": "david@liip.ch" + }, + { + "name": "Gediminas Morkevicius", + "email": "gediminas.morkevicius@gmail.com" + }, + { + "name": "Gustavo Falco", + "email": "comfortablynumb84@gmail.com" + } + ], + "description": "Doctrine2 behavioral extensions", + "homepage": "http://gediminasm.org/", + "keywords": [ + "Blameable", + "behaviors", + "doctrine2", + "extensions", + "gedmo", + "loggable", + "nestedset", + "sluggable", + "sortable", + "timestampable", + "translatable", + "tree", + "uploadable" + ], + "time": "2015-02-24 21:41:37" + }, + { + "name": "guzzle/guzzle", + "version": "v3.8.1", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "4de0618a01b34aa1c8c33a3f13f396dcd3882eba" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/4de0618a01b34aa1c8c33a3f13f396dcd3882eba", + "reference": "4de0618a01b34aa1c8c33a3f13f396dcd3882eba", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "php": ">=5.3.3", + "symfony/event-dispatcher": ">=2.1" + }, + "replace": { + "guzzle/batch": "self.version", + "guzzle/cache": "self.version", + "guzzle/common": "self.version", + "guzzle/http": "self.version", + "guzzle/inflection": "self.version", + "guzzle/iterator": "self.version", + "guzzle/log": "self.version", + "guzzle/parser": "self.version", + "guzzle/plugin": "self.version", + "guzzle/plugin-async": "self.version", + "guzzle/plugin-backoff": "self.version", + "guzzle/plugin-cache": "self.version", + "guzzle/plugin-cookie": "self.version", + "guzzle/plugin-curlauth": "self.version", + "guzzle/plugin-error-response": "self.version", + "guzzle/plugin-history": "self.version", + "guzzle/plugin-log": "self.version", + "guzzle/plugin-md5": "self.version", + "guzzle/plugin-mock": "self.version", + "guzzle/plugin-oauth": "self.version", + "guzzle/service": "self.version", + "guzzle/stream": "self.version" + }, + "require-dev": { + "doctrine/cache": "*", + "monolog/monolog": "1.*", + "phpunit/phpunit": "3.7.*", + "psr/log": "1.0.*", + "symfony/class-loader": "*", + "zendframework/zend-cache": "<2.3", + "zendframework/zend-log": "<2.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.8-dev" + } + }, + "autoload": { + "psr-0": { + "Guzzle": "src/", + "Guzzle\\Tests": "tests/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Guzzle Community", + "homepage": "https://github.com/guzzle/guzzle/contributors" + } + ], + "description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients", + "homepage": "http://guzzlephp.org/", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "rest", + "web service" + ], + "time": "2014-01-28 22:29:15" + }, + { + "name": "knplabs/knp-menu", + "version": "v2.1.1", + "source": { + "type": "git", + "url": "https://github.com/KnpLabs/KnpMenu.git", + "reference": "9917b999a3c3d3901386d60c4888b07679291031" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/9917b999a3c3d3901386d60c4888b07679291031", + "reference": "9917b999a3c3d3901386d60c4888b07679291031", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "pimple/pimple": "~1.0", + "silex/silex": "~1.0", + "symfony/phpunit-bridge": "~2.7|~3.0", + "symfony/routing": "~2.3|~3.0", + "twig/twig": "~1.16|~2.0" + }, + "suggest": { + "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider", + "silex/silex": "for the integration with your silex application", + "twig/twig": "for the TwigRenderer and the integration with your templates" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "psr-4": { + "Knp\\Menu\\": "src/Knp/Menu" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christophe Coevoet", + "email": "stof@notk.org" + }, + { + "name": "KnpLabs", + "homepage": "http://knplabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://github.com/KnpLabs/KnpMenu/contributors" + } + ], + "description": "An object oriented menu library", + "homepage": "http://knplabs.com", + "keywords": [ + "menu", + "tree" + ], + "time": "2016-01-08 15:42:54" + }, + { + "name": "knplabs/knp-menu-bundle", + "version": "v2.1.1", + "source": { + "type": "git", + "url": "https://github.com/KnpLabs/KnpMenuBundle.git", + "reference": "90aff8e39274d1225dfa3bb7b1dd4e47b7312dca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/90aff8e39274d1225dfa3bb7b1dd4e47b7312dca", + "reference": "90aff8e39274d1225dfa3bb7b1dd4e47b7312dca", + "shasum": "" + }, + "require": { + "knplabs/knp-menu": "~2.1", + "symfony/framework-bundle": "~2.3|~3.0" + }, + "require-dev": { + "symfony/expression-language": "~2.4|~3.0", + "symfony/phpunit-bridge": "~2.7|~3.0" + }, + "type": "symfony-bundle", + "extra": { + "branch-alias": { + "dev-master": "2.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Knp\\Bundle\\MenuBundle\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christophe Coevoet", + "email": "stof@notk.org" + }, + { + "name": "Knplabs", + "homepage": "http://knplabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors" + } + ], + "description": "This bundle provides an integration of the KnpMenu library", + "keywords": [ + "menu" + ], + "time": "2015-12-15 12:06:23" + }, + { + "name": "kunstmaan/admin-bundle", + "version": "3.4.2", + "target-dir": "Kunstmaan/AdminBundle", + "source": { + "type": "git", + "url": "https://github.com/Kunstmaan/KunstmaanAdminBundle.git", + "reference": "3946d36dc157df52395f1e0bc26828a02077c454" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Kunstmaan/KunstmaanAdminBundle/zipball/3946d36dc157df52395f1e0bc26828a02077c454", + "reference": "3946d36dc157df52395f1e0bc26828a02077c454", + "shasum": "" + }, + "require": { + "doctrine/orm": "~2.2,>=2.2.3", + "friendsofsymfony/user-bundle": "2.0.*@dev", + "guzzle/guzzle": "3.8.*", + "knplabs/knp-menu-bundle": "~2.0", + "kunstmaan/utilities-bundle": "~3.2", + "php": ">=5.4.0", + "sensio/framework-extra-bundle": "*", + "symfony/symfony": "~2.5,<2.8.0" + }, + "require-dev": { + "doctrine/doctrine-fixtures-bundle": "~2.2.0", + "white-october/pagerfanta-bundle": "1.0.*" + }, + "type": "symfony-bundle", + "extra": { + "branch-alias": { + "dev-master": "3.5-dev" + } + }, + "autoload": { + "psr-0": { + "Kunstmaan\\AdminBundle": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kunstmaan Team", + "email": "support@kunstmaan.be", + "homepage": "http://www.kunstmaan.be/" + } + ], + "description": "The Kunstmaan Admin bundle supplies your project with a basic, elegant backend interface you can modify and extend so you can make your perfect admin module. The clean interface makes it straightforward for you and the people working with it to change settings and modify content.", + "homepage": "https://github.com/Kunstmaan/KunstmaanAdminBundle", + "keywords": [ + "admin", + "cms", + "kunstmaan" + ], + "time": "2015-11-30 20:36:11" + }, + { + "name": "kunstmaan/adminlist-bundle", + "version": "3.4.2", + "target-dir": "Kunstmaan/AdminListBundle", + "source": { + "type": "git", + "url": "https://github.com/Kunstmaan/KunstmaanAdminListBundle.git", + "reference": "18f938bbcce2f2906f693aae97dbc128da346a28" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Kunstmaan/KunstmaanAdminListBundle/zipball/18f938bbcce2f2906f693aae97dbc128da346a28", + "reference": "18f938bbcce2f2906f693aae97dbc128da346a28", + "shasum": "" + }, + "require": { + "friendsofsymfony/user-bundle": "2.0.*@dev", + "kunstmaan/admin-bundle": "~3.2", + "kunstmaan/utilities-bundle": "~3.2", + "php": ">=5.4.0", + "phpoffice/phpexcel": "1.8.*", + "sensio/framework-extra-bundle": ">=2.3.4,<4.0.0", + "symfony/symfony": "~2.3", + "white-october/pagerfanta-bundle": "1.0.*" + }, + "require-dev": { + "doctrine/doctrine-fixtures-bundle": "~2.2.0" + }, + "type": "symfony-bundle", + "extra": { + "branch-alias": { + "dev-master": "3.5-dev" + } + }, + "autoload": { + "psr-0": { + "Kunstmaan\\AdminListBundle": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kunstmaan Team", + "email": "support@kunstmaan.be", + "homepage": "http://www.kunstmaan.be/" + } + ], + "description": "Every website contains several lists of content ranging from articles on a blog, to drop down values. The KunstlaanAdminListBundles takes CRUD a step further by supplying filtering, exports to csv and editing capabilities to these content entities.", + "homepage": "https://github.com/Kunstmaan/KunstmaanAdminListBundle", + "keywords": [ + "cms", + "crud", + "kunstmaan" + ], + "time": "2015-11-20 12:46:22" + }, + { + "name": "kunstmaan/node-bundle", + "version": "3.2.x-dev", + "target-dir": "Kunstmaan/NodeBundle", + "source": { + "type": "git", + "url": "https://github.com/Kunstmaan/KunstmaanNodeBundle.git", + "reference": "c5f0ffb5c2b00022c38443348f3adfaf39cd459e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Kunstmaan/KunstmaanNodeBundle/zipball/c5f0ffb5c2b00022c38443348f3adfaf39cd459e", + "reference": "c5f0ffb5c2b00022c38443348f3adfaf39cd459e", + "shasum": "" + }, + "require": { + "friendsofsymfony/user-bundle": "2.0.*@dev", + "gedmo/doctrine-extensions": "2.3.*", + "kunstmaan/admin-bundle": "~3.2", + "kunstmaan/adminlist-bundle": "~3.2", + "kunstmaan/utilities-bundle": "~3.2", + "php": ">=5.4.0", + "symfony-cmf/routing-bundle": "~1.1.1", + "symfony/symfony": "~2.3" + }, + "type": "symfony-bundle", + "extra": { + "branch-alias": { + "dev-master": "3.2-dev" + } + }, + "autoload": { + "psr-0": { + "Kunstmaan\\NodeBundle": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kunstmaan Team", + "email": "support@kunstmaan.be", + "homepage": "http://www.kunstmaan.be/" + } + ], + "description": "All websites need pages(we call them nodes) but you probably don't want to spend too much time building them. Plus they should look pretty and contain the right content and that takes time. We make sure you have to spend less time managing your pages but still offer you flexibility so you can focus on more important tasks and don't have to worry about it.", + "homepage": "https://github.com/Kunstmaan/KunstmaanNodeBundle", + "keywords": [ + "admin", + "cms", + "kunstmaan", + "tree" + ], + "time": "2015-08-07 08:31:31" + }, + { + "name": "kunstmaan/pagepart-bundle", + "version": "3.2.x-dev", + "target-dir": "Kunstmaan/PagePartBundle", + "source": { + "type": "git", + "url": "https://github.com/Kunstmaan/KunstmaanPagePartBundle.git", + "reference": "32ba3a2767148f7dc91805b43f3227d244250d73" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Kunstmaan/KunstmaanPagePartBundle/zipball/32ba3a2767148f7dc91805b43f3227d244250d73", + "reference": "32ba3a2767148f7dc91805b43f3227d244250d73", + "shasum": "" + }, + "require": { + "friendsofsymfony/user-bundle": "2.0.*@dev", + "kunstmaan/admin-bundle": "~3.2", + "kunstmaan/node-bundle": "~3.2", + "kunstmaan/utilities-bundle": "~3.2", + "php": ">=5.4.0", + "symfony/symfony": "~2.3" + }, + "type": "symfony-bundle", + "extra": { + "branch-alias": { + "dev-master": "3.2-dev" + } + }, + "autoload": { + "psr-0": { + "Kunstmaan\\PagePartBundle": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kunstmaan Team", + "email": "support@kunstmaan.be", + "homepage": "http://www.kunstmaan.be/" + } + ], + "description": "The KunstmaanPagePartBundle forms the basis of our content management framework. A page built using a composition of blocks names pageparts. These pageparts allow you to fully separate the data from the presentation so non-technical webmasters can manage the website. Every page can have it's own list of possible pageparts, and pageparts are easy to create for your specific project to allow for rapid development.", + "homepage": "https://github.com/Kunstmaan/KunstmaanPagePartBundle", + "keywords": [ + "cms", + "kunstmaan", + "pageparts" + ], + "time": "2015-07-27 14:18:53" + }, + { + "name": "kunstmaan/utilities-bundle", + "version": "3.4.2", + "target-dir": "Kunstmaan/UtilitiesBundle", + "source": { + "type": "git", + "url": "https://github.com/Kunstmaan/KunstmaanUtilitiesBundle.git", + "reference": "22fb87d45443be56e711db7b92cc0f660ef8d1f6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Kunstmaan/KunstmaanUtilitiesBundle/zipball/22fb87d45443be56e711db7b92cc0f660ef8d1f6", + "reference": "22fb87d45443be56e711db7b92cc0f660ef8d1f6", + "shasum": "" + }, + "require": { + "doctrine/orm": "~2.2,>=2.2.3", + "php": ">=5.4.0", + "symfony/symfony": "~2.3" + }, + "suggest": { + "ekino/newrelic-bundle": "To use the UrlTransactionNamingStrategy" + }, + "type": "symfony-bundle", + "extra": { + "branch-alias": { + "dev-master": "3.5-dev" + } + }, + "autoload": { + "psr-0": { + "Kunstmaan\\UtilitiesBundle": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kunstmaan Team", + "email": "support@kunstmaan.be", + "homepage": "http://www.kunstmaan.be/" + } + ], + "description": "The KunstmaanUtilitiesBundle makes your life easier by providing a couple of small but usefull helper services you can use and re-use in your applications. We already implemented an easy to use cipher service and a shell helper service for you but feel free to send in a pull request with your additions. The shell helper allows you to run apps in the background, see if a process is running and has a method to kill a running process. The cipher service allow you to encode and decode strings using the Rijndael 256 cipher", + "homepage": "https://github.com/Kunstmaan/KunstmaanUtilitiesBundle", + "keywords": [ + "cipher", + "cms", + "kunstmaan", + "utilities" + ], + "time": "2015-10-05 19:02:28" + }, + { + "name": "pagerfanta/pagerfanta", + "version": "v1.0.3", + "source": { + "type": "git", + "url": "https://github.com/whiteoctober/Pagerfanta.git", + "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/a874d3612d954dcbbb49e5ffe178890918fb76fb", + "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "doctrine/orm": "~2.3", + "doctrine/phpcr-odm": "1.*", + "jackalope/jackalope-doctrine-dbal": "1.*", + "jmikola/geojson": "~1.0", + "mandango/mandango": "~1.0@dev", + "mandango/mondator": "~1.0@dev", + "phpunit/phpunit": "~4", + "propel/propel1": "~1.6", + "ruflin/elastica": "~1.3", + "solarium/solarium": "~3.1" + }, + "suggest": { + "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.", + "doctrine/orm": "To use the DoctrineORMAdapter.", + "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0", + "mandango/mandango": "To use the MandangoAdapter.", + "propel/propel1": "To use the PropelAdapter", + "solarium/solarium": "To use the SolariumAdapter." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-0": { + "Pagerfanta\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Pablo Díez", + "email": "pablodip@gmail.com" + } + ], + "description": "Pagination for PHP 5.3", + "keywords": [ + "page", + "pagination", + "paginator", + "paging" + ], + "time": "2014-10-06 10:57:25" + }, + { + "name": "paragonie/random_compat", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/paragonie/random_compat.git", + "reference": "b0e69d10852716b2ccbdff69c75c477637220790" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/b0e69d10852716b2ccbdff69c75c477637220790", + "reference": "b0e69d10852716b2ccbdff69c75c477637220790", + "shasum": "" + }, + "require": { + "php": ">=5.2.0" + }, + "require-dev": { + "phpunit/phpunit": "4.*|5.*" + }, + "suggest": { + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + }, + "type": "library", + "autoload": { + "files": [ + "lib/random.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "keywords": [ + "csprng", + "pseudorandom", + "random" + ], + "time": "2016-02-06 03:52:05" + }, + { + "name": "phpoffice/phpexcel", + "version": "1.8.1", + "source": { + "type": "git", + "url": "https://github.com/PHPOffice/PHPExcel.git", + "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/372c7cbb695a6f6f1e62649381aeaa37e7e70b32", + "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32", + "shasum": "" + }, + "require": { + "ext-xml": "*", + "ext-xmlwriter": "*", + "php": ">=5.2.0" + }, + "type": "library", + "autoload": { + "psr-0": { + "PHPExcel": "Classes/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL" + ], + "authors": [ + { + "name": "Maarten Balliauw", + "homepage": "http://blog.maartenballiauw.be" + }, + { + "name": "Mark Baker" + }, + { + "name": "Franck Lefevre", + "homepage": "http://blog.rootslabs.net" + }, + { + "name": "Erik Tilt" + } + ], + "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", + "homepage": "http://phpexcel.codeplex.com", + "keywords": [ + "OpenXML", + "excel", + "php", + "spreadsheet", + "xls", + "xlsx" + ], + "time": "2015-05-01 07:00:55" + }, + { + "name": "psr/log", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b", + "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b", + "shasum": "" + }, + "type": "library", + "autoload": { + "psr-0": { + "Psr\\Log\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "time": "2012-12-21 11:40:51" + }, + { + "name": "sensio/framework-extra-bundle", + "version": "v3.0.12", + "source": { + "type": "git", + "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git", + "reference": "3e8936fe13aa4086644977d334d8fcd275f50357" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/3e8936fe13aa4086644977d334d8fcd275f50357", + "reference": "3e8936fe13aa4086644977d334d8fcd275f50357", + "shasum": "" + }, + "require": { + "doctrine/common": "~2.2", + "symfony/framework-bundle": "~2.3|~3.0" + }, + "require-dev": { + "symfony/expression-language": "~2.4|~3.0", + "symfony/security-bundle": "~2.4|~3.0" + }, + "suggest": { + "symfony/expression-language": "", + "symfony/psr-http-message-bridge": "To use the PSR-7 converters", + "symfony/security-bundle": "" + }, + "type": "symfony-bundle", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Sensio\\Bundle\\FrameworkExtraBundle\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + } + ], + "description": "This bundle provides a way to configure your controllers with annotations", + "keywords": [ + "annotations", + "controllers" + ], + "time": "2015-12-18 17:39:27" + }, + { + "name": "symfony-cmf/routing", + "version": "1.1.0", + "target-dir": "Symfony/Cmf/Component/Routing", + "source": { + "type": "git", + "url": "https://github.com/symfony-cmf/Routing.git", + "reference": "9f8607950cbf888ec678713a35f3d0088857c85f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/9f8607950cbf888ec678713a35f3d0088857c85f", + "reference": "9f8607950cbf888ec678713a35f3d0088857c85f", + "shasum": "" + }, + "require": { + "php": ">=5.3.3", + "psr/log": "~1.0", + "symfony/http-kernel": "~2.2", + "symfony/routing": "~2.2" + }, + "require-dev": { + "symfony/config": "~2.2", + "symfony/dependency-injection": "~2.0", + "symfony/event-dispatcher": "~2.1" + }, + "suggest": { + "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version ~2.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-0": { + "Symfony\\Cmf\\Component\\Routing": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Symfony CMF Community", + "homepage": "https://github.com/symfony-cmf/Routing/contributors" + } + ], + "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers", + "homepage": "http://cmf.symfony.com", + "keywords": [ + "database", + "routing" + ], + "time": "2013-10-14 15:32:46" + }, + { + "name": "symfony-cmf/routing-bundle", + "version": "1.1.1", + "target-dir": "Symfony/Cmf/Bundle/RoutingBundle", + "source": { + "type": "git", + "url": "https://github.com/symfony-cmf/RoutingBundle.git", + "reference": "96d0649c6fb415cb06ed7a689d69e52bcce544dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony-cmf/RoutingBundle/zipball/96d0649c6fb415cb06ed7a689d69e52bcce544dd", + "reference": "96d0649c6fb415cb06ed7a689d69e52bcce544dd", + "shasum": "" + }, + "require": { + "php": ">=5.3.3", + "symfony-cmf/routing": "1.1.*", + "symfony/framework-bundle": "~2.2" + }, + "require-dev": { + "doctrine/orm": "2.3.*", + "matthiasnoback/symfony-config-test": "0.*", + "matthiasnoback/symfony-dependency-injection-test": "0.*", + "sonata-project/doctrine-phpcr-admin-bundle": "1.0.*", + "symfony-cmf/core-bundle": "1.0.*", + "symfony-cmf/testing": "1.1.*", + "symfony/monolog-bundle": "2.2.*" + }, + "suggest": { + "doctrine/orm": "To enable support for the ORM entities", + "doctrine/phpcr-bundle": "To enable support for the PHPCR ODM documents", + "doctrine/phpcr-odm": "To enable support for the PHPCR ODM documents", + "sonata-project/doctrine-phpcr-admin-bundle": "To provide an admin interface for the PHPCR ODM documents", + "symfony-cmf/content-bundle": "To optionally use the configured value for 'content_basepath' from the CoreBundle", + "symfony-cmf/core-bundle": "For compatibility with Symfony 2.2 and easier configuration" + }, + "type": "symfony-bundle", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-0": { + "Symfony\\Cmf\\Bundle\\RoutingBundle": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Symfony CMF Community", + "homepage": "https://github.com/symfony-cmf/RoutingBundle/contributors" + } + ], + "description": "Symfony RoutingBundle", + "homepage": "http://cmf.symfony.com", + "keywords": [ + "database", + "routing" + ], + "time": "2013-12-16 16:46:20" + }, + { + "name": "symfony/form", + "version": "v2.8.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/form.git", + "reference": "7fd5e4034cb8e215887136f5e176430bbf5ef085" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/form/zipball/7fd5e4034cb8e215887136f5e176430bbf5ef085", + "reference": "7fd5e4034cb8e215887136f5e176430bbf5ef085", + "shasum": "" + }, + "require": { + "php": ">=5.3.9", + "symfony/event-dispatcher": "~2.1|~3.0.0", + "symfony/intl": "~2.4|~3.0.0", + "symfony/options-resolver": "~2.6", + "symfony/polyfill-mbstring": "~1.0", + "symfony/property-access": "~2.3|~3.0.0" + }, + "conflict": { + "symfony/doctrine-bridge": "<2.7", + "symfony/framework-bundle": "<2.7", + "symfony/twig-bridge": "<2.7" + }, + "require-dev": { + "doctrine/collections": "~1.0", + "symfony/dependency-injection": "~2.3|~3.0.0", + "symfony/http-foundation": "~2.2|~3.0.0", + "symfony/http-kernel": "~2.4|~3.0.0", + "symfony/security-csrf": "~2.4|~3.0.0", + "symfony/translation": "~2.0,>=2.0.5|~3.0.0", + "symfony/validator": "~2.8|~3.0.0" + }, + "suggest": { + "symfony/framework-bundle": "For templating with PHP.", + "symfony/security-csrf": "For protecting forms against CSRF attacks.", + "symfony/twig-bridge": "For templating with Twig.", + "symfony/validator": "For form validation." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.8-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Form\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Form Component", + "homepage": "https://symfony.com", + "time": "2016-01-12 17:46:01" + }, + { + "name": "symfony/options-resolver", + "version": "v2.8.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/options-resolver.git", + "reference": "b98ca04f85240531b9ea8a0f00a21f2ecfbdfa51" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/b98ca04f85240531b9ea8a0f00a21f2ecfbdfa51", + "reference": "b98ca04f85240531b9ea8a0f00a21f2ecfbdfa51", + "shasum": "" + }, + "require": { + "php": ">=5.3.9" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.8-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\OptionsResolver\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony OptionsResolver Component", + "homepage": "https://symfony.com", + "keywords": [ + "config", + "configuration", + "options" + ], + "time": "2016-01-03 15:33:41" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.1.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "1289d16209491b584839022f29257ad859b8532d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/1289d16209491b584839022f29257ad859b8532d", + "reference": "1289d16209491b584839022f29257ad859b8532d", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "time": "2016-01-20 09:13:37" + }, + { + "name": "symfony/symfony", + "version": "v2.7.9", + "source": { + "type": "git", + "url": "https://github.com/symfony/symfony.git", + "reference": "d3646cc6875c214d211001e0673ec9e91b5f2da7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/symfony/zipball/d3646cc6875c214d211001e0673ec9e91b5f2da7", + "reference": "d3646cc6875c214d211001e0673ec9e91b5f2da7", + "shasum": "" + }, + "require": { + "doctrine/common": "~2.4", + "paragonie/random_compat": "~1.0", + "php": ">=5.3.9", + "psr/log": "~1.0", + "twig/twig": "~1.23|~2.0" + }, + "replace": { + "symfony/asset": "self.version", + "symfony/browser-kit": "self.version", + "symfony/class-loader": "self.version", + "symfony/config": "self.version", + "symfony/console": "self.version", + "symfony/css-selector": "self.version", + "symfony/debug": "self.version", + "symfony/debug-bundle": "self.version", + "symfony/dependency-injection": "self.version", + "symfony/doctrine-bridge": "self.version", + "symfony/dom-crawler": "self.version", + "symfony/event-dispatcher": "self.version", + "symfony/expression-language": "self.version", + "symfony/filesystem": "self.version", + "symfony/finder": "self.version", + "symfony/form": "self.version", + "symfony/framework-bundle": "self.version", + "symfony/http-foundation": "self.version", + "symfony/http-kernel": "self.version", + "symfony/intl": "self.version", + "symfony/locale": "self.version", + "symfony/monolog-bridge": "self.version", + "symfony/options-resolver": "self.version", + "symfony/process": "self.version", + "symfony/property-access": "self.version", + "symfony/proxy-manager-bridge": "self.version", + "symfony/routing": "self.version", + "symfony/security": "self.version", + "symfony/security-acl": "self.version", + "symfony/security-bundle": "self.version", + "symfony/security-core": "self.version", + "symfony/security-csrf": "self.version", + "symfony/security-http": "self.version", + "symfony/serializer": "self.version", + "symfony/stopwatch": "self.version", + "symfony/swiftmailer-bridge": "self.version", + "symfony/templating": "self.version", + "symfony/translation": "self.version", + "symfony/twig-bridge": "self.version", + "symfony/twig-bundle": "self.version", + "symfony/validator": "self.version", + "symfony/var-dumper": "self.version", + "symfony/web-profiler-bundle": "self.version", + "symfony/yaml": "self.version" + }, + "require-dev": { + "doctrine/data-fixtures": "1.0.*", + "doctrine/dbal": "~2.4", + "doctrine/doctrine-bundle": "~1.2", + "doctrine/orm": "~2.4,>=2.4.5", + "egulias/email-validator": "~1.2", + "ircmaxell/password-compat": "~1.0", + "monolog/monolog": "~1.11", + "ocramius/proxy-manager": "~0.4|~1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/", + "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/", + "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/", + "Symfony\\Bridge\\Swiftmailer\\": "src/Symfony/Bridge/Swiftmailer/", + "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/", + "Symfony\\Bundle\\": "src/Symfony/Bundle/", + "Symfony\\Component\\": "src/Symfony/Component/" + }, + "classmap": [ + "src/Symfony/Component/HttpFoundation/Resources/stubs", + "src/Symfony/Component/Intl/Resources/stubs" + ], + "files": [ + "src/Symfony/Component/Intl/Resources/stubs/functions.php" + ], + "exclude-from-classmap": [ + "**/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "The Symfony PHP framework", + "homepage": "https://symfony.com", + "keywords": [ + "framework" + ], + "time": "2016-01-14 10:41:56" + }, + { + "name": "twig/twig", + "version": "v1.24.0", + "source": { + "type": "git", + "url": "https://github.com/twigphp/Twig.git", + "reference": "3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8", + "reference": "3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8", + "shasum": "" + }, + "require": { + "php": ">=5.2.7" + }, + "require-dev": { + "symfony/debug": "~2.7", + "symfony/phpunit-bridge": "~2.7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.24-dev" + } + }, + "autoload": { + "psr-0": { + "Twig_": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com", + "homepage": "http://fabien.potencier.org", + "role": "Lead Developer" + }, + { + "name": "Armin Ronacher", + "email": "armin.ronacher@active-4.com", + "role": "Project Founder" + }, + { + "name": "Twig Team", + "homepage": "http://twig.sensiolabs.org/contributors", + "role": "Contributors" + } + ], + "description": "Twig, the flexible, fast, and secure template language for PHP", + "homepage": "http://twig.sensiolabs.org", + "keywords": [ + "templating" + ], + "time": "2016-01-25 21:22:18" + }, + { + "name": "white-october/pagerfanta-bundle", + "version": "v1.0.5", + "source": { + "type": "git", + "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git", + "reference": "e6b020f9c2af6fa5a46d780039c57fdb89003f6c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/e6b020f9c2af6fa5a46d780039c57fdb89003f6c", + "reference": "e6b020f9c2af6fa5a46d780039c57fdb89003f6c", + "shasum": "" + }, + "require": { + "pagerfanta/pagerfanta": "1.0.*", + "symfony/framework-bundle": "~2.3|~3.0", + "symfony/property-access": "~2.3|~3.0", + "symfony/twig-bundle": "~2.3|~3.0" + }, + "require-dev": { + "phpunit/phpunit": "~3.7", + "symfony/symfony": "~2.3|~3.0" + }, + "type": "symfony-bundle", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "WhiteOctober\\PagerfantaBundle\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Pablo Díez", + "email": "pablodip@gmail.com" + } + ], + "description": "Bundle to use Pagerfanta with Symfony2", + "keywords": [ + "page", + "paging" + ], + "time": "2015-12-06 17:16:06" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": { + "kunstmaan/node-bundle": 20, + "friendsofsymfony/user-bundle": 20, + "kunstmaan/pagepart-bundle": 20 + }, + "prefer-stable": false, + "prefer-lowest": false, + "platform": [], + "platform-dev": [] +}