Commit 229bd8bbff3407ab65c185589297cebe586b2d55

Authored by eduardo
1 parent 45d3d817
Exists in master and in 1 other branch 3.1

Corrige as dependências e atualiza versões dos módulos tornando o diretório instalável

@@ -7,6 +7,7 @@ vendor/* @@ -7,6 +7,7 @@ vendor/*
7 */cache/* 7 */cache/*
8 web/uploads/* 8 web/uploads/*
9 web/bundles/* 9 web/bundles/*
  10 +web/fonts/*
10 11
11 # Configuration files 12 # Configuration files
12 app/config/parameters.ini 13 app/config/parameters.ini
@@ -14,7 +15,6 @@ app/config/parameters.yml @@ -14,7 +15,6 @@ app/config/parameters.yml
14 15
15 # Composer 16 # Composer
16 composer.phar 17 composer.phar
17 -composer.lock  
18 18
19 # Ignore SVN 19 # Ignore SVN
20 *.svn 20 *.svn
app/AppKernel.php
@@ -21,7 +21,7 @@ class AppKernel extends Kernel @@ -21,7 +21,7 @@ class AppKernel extends Kernel
21 new JMS\DiExtraBundle\JMSDiExtraBundle($this), 21 new JMS\DiExtraBundle\JMSDiExtraBundle($this),
22 new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(), 22 new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(),
23 new Cacic\CommonBundle\CacicCommonBundle(), 23 new Cacic\CommonBundle\CacicCommonBundle(),
24 - new Bc\Bundle\BootstrapBundle\BcBootstrapBundle(), 24 + new Braincrafted\Bundle\BootstrapBundle\BraincraftedBootstrapBundle(),
25 new Cacic\RelatorioBundle\CacicRelatorioBundle(), 25 new Cacic\RelatorioBundle\CacicRelatorioBundle(),
26 new Cacic\WSBundle\CacicWSBundle(), 26 new Cacic\WSBundle\CacicWSBundle(),
27 new Knp\Bundle\PaginatorBundle\KnpPaginatorBundle(), 27 new Knp\Bundle\PaginatorBundle\KnpPaginatorBundle(),
app/bootstrap.php.cache
@@ -1575,10 +1575,14 @@ return null !== $this->headers->get('Vary'); @@ -1575,10 +1575,14 @@ return null !== $this->headers->get('Vary');
1575 } 1575 }
1576 public function getVary() 1576 public function getVary()
1577 { 1577 {
1578 -if (!$vary = $this->headers->get('Vary')) { 1578 +if (!$vary = $this->headers->get('Vary', null, false)) {
1579 return array(); 1579 return array();
1580 } 1580 }
1581 -return is_array($vary) ? $vary : preg_split('/[\s,]+/', $vary); 1581 +$ret = array();
  1582 +foreach ($vary as $item) {
  1583 +$ret = array_merge($ret, preg_split('/[\s,]+/', $item));
  1584 +}
  1585 +return $ret;
1582 } 1586 }
1583 public function setVary($headers, $replace = true) 1587 public function setVary($headers, $replace = true)
1584 { 1588 {
@@ -2170,11 +2174,11 @@ protected $booted; @@ -2170,11 +2174,11 @@ protected $booted;
2170 protected $name; 2174 protected $name;
2171 protected $startTime; 2175 protected $startTime;
2172 protected $loadClassCache; 2176 protected $loadClassCache;
2173 -const VERSION ='2.3.11';  
2174 -const VERSION_ID ='20311'; 2177 +const VERSION ='2.3.12';
  2178 +const VERSION_ID ='20312';
2175 const MAJOR_VERSION ='2'; 2179 const MAJOR_VERSION ='2';
2176 const MINOR_VERSION ='3'; 2180 const MINOR_VERSION ='3';
2177 -const RELEASE_VERSION ='11'; 2181 +const RELEASE_VERSION ='12';
2178 const EXTRA_VERSION =''; 2182 const EXTRA_VERSION ='';
2179 public function __construct($environment, $debug) 2183 public function __construct($environment, $debug)
2180 { 2184 {
@@ -2540,21 +2544,33 @@ return $source; @@ -2540,21 +2544,33 @@ return $source;
2540 $rawChunk =''; 2544 $rawChunk ='';
2541 $output =''; 2545 $output ='';
2542 $tokens = token_get_all($source); 2546 $tokens = token_get_all($source);
  2547 +$ignoreSpace = false;
2543 for (reset($tokens); false !== $token = current($tokens); next($tokens)) { 2548 for (reset($tokens); false !== $token = current($tokens); next($tokens)) {
2544 if (is_string($token)) { 2549 if (is_string($token)) {
2545 $rawChunk .= $token; 2550 $rawChunk .= $token;
2546 } elseif (T_START_HEREDOC === $token[0]) { 2551 } elseif (T_START_HEREDOC === $token[0]) {
2547 -$output .= preg_replace(array('/\s+$/Sm','/\n+/S'),"\n", $rawChunk).$token[1]; 2552 +$output .= $rawChunk.$token[1];
2548 do { 2553 do {
2549 $token = next($tokens); 2554 $token = next($tokens);
2550 $output .= $token[1]; 2555 $output .= $token[1];
2551 } while ($token[0] !== T_END_HEREDOC); 2556 } while ($token[0] !== T_END_HEREDOC);
2552 $rawChunk =''; 2557 $rawChunk ='';
2553 -} elseif (!in_array($token[0], array(T_COMMENT, T_DOC_COMMENT))) { 2558 +} elseif (T_WHITESPACE === $token[0]) {
  2559 +if ($ignoreSpace) {
  2560 +$ignoreSpace = false;
  2561 +continue;
  2562 +}
  2563 +$rawChunk .= preg_replace(array('/\n{2,}/S'),"\n", $token[1]);
  2564 +} elseif (in_array($token[0], array(T_COMMENT, T_DOC_COMMENT))) {
  2565 +$ignoreSpace = true;
  2566 +} else {
2554 $rawChunk .= $token[1]; 2567 $rawChunk .= $token[1];
  2568 +if (T_OPEN_TAG === $token[0]) {
  2569 +$ignoreSpace = true;
  2570 +}
2555 } 2571 }
2556 } 2572 }
2557 -$output .= preg_replace(array('/\s+$/Sm','/\n+/S'),"\n", $rawChunk); 2573 +$output .= $rawChunk;
2558 return $output; 2574 return $output;
2559 } 2575 }
2560 public function serialize() 2576 public function serialize()
@@ -2736,6 +2752,7 @@ $application->add($r->newInstance()); @@ -2736,6 +2752,7 @@ $application->add($r->newInstance());
2736 namespace Symfony\Component\Config 2752 namespace Symfony\Component\Config
2737 { 2753 {
2738 use Symfony\Component\Config\Resource\ResourceInterface; 2754 use Symfony\Component\Config\Resource\ResourceInterface;
  2755 +use Symfony\Component\Filesystem\Exception\IOException;
2739 use Symfony\Component\Filesystem\Filesystem; 2756 use Symfony\Component\Filesystem\Filesystem;
2740 class ConfigCache 2757 class ConfigCache
2741 { 2758 {
@@ -2773,11 +2790,20 @@ return true; @@ -2773,11 +2790,20 @@ return true;
2773 } 2790 }
2774 public function write($content, array $metadata = null) 2791 public function write($content, array $metadata = null)
2775 { 2792 {
2776 -$mode = 0666 & ~umask(); 2793 +$mode = 0666;
  2794 +$umask = umask();
2777 $filesystem = new Filesystem(); 2795 $filesystem = new Filesystem();
2778 -$filesystem->dumpFile($this->file, $content, $mode); 2796 +$filesystem->dumpFile($this->file, $content, null);
  2797 +try {
  2798 +$filesystem->chmod($this->file, $mode, $umask);
  2799 +} catch (IOException $e) {
  2800 +}
2779 if (null !== $metadata && true === $this->debug) { 2801 if (null !== $metadata && true === $this->debug) {
2780 -$filesystem->dumpFile($this->getMetaFile(), serialize($metadata), $mode); 2802 +$filesystem->dumpFile($this->getMetaFile(), serialize($metadata), null);
  2803 +try {
  2804 +$filesystem->chmod($this->getMetaFile(), $mode, $umask);
  2805 +} catch (IOException $e) {
  2806 +}
2781 } 2807 }
2782 } 2808 }
2783 private function getMetaFile() 2809 private function getMetaFile()
app/config/config.yml
@@ -25,12 +25,21 @@ twig: @@ -25,12 +25,21 @@ twig:
25 cacic_version: 3.0.0 25 cacic_version: 3.0.0
26 form: 26 form:
27 resources: 27 resources:
28 - - "BcBootstrapBundle:Form:form_div_layout.html.twig" 28 + - "BraincraftedBootstrapBundle:Form:form_div_layout.html.twig"
29 29
30 -bc_bootstrap:  
31 - assets_dir: "%kernel.root_dir%/../vendor/twitter/bootstrap"  
32 - jquery_path: "%kernel.root_dir%/../vendor/jquery/jquery/jquery-1.9.1.js"  
33 - less_filter: lessphp 30 +braincrafted_bootstrap:
  31 + assets_dir: %kernel.root_dir%/../vendor/twbs/bootstrap
  32 + jquery_path: %kernel.root_dir%/../vendor/jquery/jquery/jquery-1.10.2.js
  33 + less_filter: less # "less", "lessphp" or "none"
  34 + auto_configure:
  35 + assetic: true
  36 + twig: true
  37 + knp_menu: true
  38 + knp_paginator: true
  39 + customize:
  40 + variables_file: ~
  41 + bootstrap_output: %kernel.root_dir%/Resources/less/bootstrap.less
  42 + bootstrap_template: BraincraftedBootstrapBundle:Bootstrap:bootstrap.less.twig
34 43
35 # Assetic Configuration 44 # Assetic Configuration
36 assetic: 45 assetic:
@@ -52,41 +61,17 @@ assetic: @@ -52,41 +61,17 @@ assetic:
52 lessphp: 61 lessphp:
53 file: "%kernel.root_dir%/../vendor/leafo/lessphp/lessc.inc.php" 62 file: "%kernel.root_dir%/../vendor/leafo/lessphp/lessc.inc.php"
54 apply_to: "\.less$" 63 apply_to: "\.less$"
  64 + less:
  65 + node: /usr/bin/nodejs
  66 + node_paths: [/usr/lib/nodejs]
  67 + apply_to: "\.less$"
55 cssrewrite: ~ 68 cssrewrite: ~
56 assets: 69 assets:
57 - bootstrap_css:  
58 - inputs:  
59 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/less/bootstrap.less"  
60 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/less/responsive.less"  
61 - filters:  
62 - - lessphp  
63 - - cssrewrite  
64 - output: css/bootstrap.css  
65 - bootstrap_js:  
66 - inputs:  
67 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/js/bootstrap-transition.js"  
68 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/js/bootstrap-alert.js"  
69 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/js/bootstrap-button.js"  
70 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/js/bootstrap-carousel.js"  
71 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/js/bootstrap-collapse.js"  
72 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/js/bootstrap-dropdown.js"  
73 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/js/bootstrap-modal.js"  
74 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/js/bootstrap-tooltip.js"  
75 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/js/bootstrap-popover.js"  
76 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/js/bootstrap-scrollspy.js"  
77 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/js/bootstrap-tab.js"  
78 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/js/bootstrap-typeahead.js"  
79 - - "%kernel.root_dir%/../vendor/twitter/bootstrap/js/bootstrap-affix.js"  
80 - output: js/bootstrap.js  
81 jquery_js: 70 jquery_js:
82 inputs: 71 inputs:
83 - - "%kernel.root_dir%/../vendor/jquery/jquery/jquery-1.9.1.js" 72 + - "%kernel.root_dir%/../vendor/jquery/jquery/jquery-1.10.2.js"
84 output: js/jquery.js 73 output: js/jquery.js
85 filters: [?yui_js] 74 filters: [?yui_js]
86 - bootstrap_less:  
87 - inputs:  
88 - - '%kernel.root_dir%/../vendor/twitter/bootstrap/less/bootstrap.less'  
89 - filters: [lessphp,cssembed]  
90 75
91 76
92 # Doctrine Configuration 77 # Doctrine Configuration
@@ -9,12 +9,15 @@ @@ -9,12 +9,15 @@
9 "type": "package", 9 "type": "package",
10 "package": { 10 "package": {
11 "name": "jquery/jquery", 11 "name": "jquery/jquery",
12 - "version": "1.9.1", 12 + "version": "1.10.2",
13 "dist": { 13 "dist": {
14 - "url": "http://code.jquery.com/jquery-1.9.1.js", 14 + "url": "http://code.jquery.com/jquery-1.10.2.js",
15 "type": "file" 15 "type": "file"
16 } 16 }
17 - }, 17 + }
  18 + },
  19 + {
  20 +
18 "type": "vcs", 21 "type": "vcs",
19 "url": "https://github.com/lightbase/cocar.git" 22 "url": "https://github.com/lightbase/cocar.git"
20 } 23 }
@@ -22,6 +25,7 @@ @@ -22,6 +25,7 @@
22 "require": { 25 "require": {
23 "php": ">=5.3.3", 26 "php": ">=5.3.3",
24 "symfony/symfony": "2.3.*", 27 "symfony/symfony": "2.3.*",
  28 + "jquery/jquery": "1.10.*",
25 "doctrine/orm": ">=2.2.3,<2.4-dev", 29 "doctrine/orm": ">=2.2.3,<2.4-dev",
26 "doctrine/doctrine-bundle": "1.2.*", 30 "doctrine/doctrine-bundle": "1.2.*",
27 "twig/extensions": "1.0.*", 31 "twig/extensions": "1.0.*",
@@ -36,15 +40,14 @@ @@ -36,15 +40,14 @@
36 "jms/security-extra-bundle": "1.5.*", 40 "jms/security-extra-bundle": "1.5.*",
37 "jms/di-extra-bundle": "1.4.*", 41 "jms/di-extra-bundle": "1.4.*",
38 "kriswallsmith/assetic": "v1.1.1", 42 "kriswallsmith/assetic": "v1.1.1",
39 - "braincrafted/bootstrap-bundle": "dev-master",  
40 - "leafo/lessphp": "*", 43 + "braincrafted/bootstrap-bundle": "~2.0",
  44 + "leafo/lessphp": "0.4.0",
41 "twitter/bootstrap": "2.3.*", 45 "twitter/bootstrap": "2.3.*",
42 "knplabs/knp-paginator-bundle": "dev-master", 46 "knplabs/knp-paginator-bundle": "dev-master",
43 "doctrine/data-fixtures": "dev-master", 47 "doctrine/data-fixtures": "dev-master",
44 "doctrine/doctrine-fixtures-bundle": "dev-master", 48 "doctrine/doctrine-fixtures-bundle": "dev-master",
45 "ijanki/ftp-bundle": "*", 49 "ijanki/ftp-bundle": "*",
46 "jms/translation-bundle": "1.1.*@dev", 50 "jms/translation-bundle": "1.1.*@dev",
47 - "jquery/jquery": "1.9.*",  
48 "helios-ag/fm-elfinder-bundle": "1.x", 51 "helios-ag/fm-elfinder-bundle": "1.x",
49 "knplabs/knp-menu": "2.0.*@dev", 52 "knplabs/knp-menu": "2.0.*@dev",
50 "knplabs/knp-menu-bundle":"dev-master", 53 "knplabs/knp-menu-bundle":"dev-master",
@@ -54,20 +57,23 @@ @@ -54,20 +57,23 @@
54 "jms/serializer": "0.14.*@dev", 57 "jms/serializer": "0.14.*@dev",
55 "jms/serializer-bundle": "0.13.*@dev", 58 "jms/serializer-bundle": "0.13.*@dev",
56 "lightbase/cocar": "dev-master", 59 "lightbase/cocar": "dev-master",
57 - "ddeboer/data-import-bundle": "dev-master" 60 + "ddeboer/data-import-bundle": "dev-master",
  61 + "twbs/bootstrap": "3.0.*"
58 }, 62 },
59 "scripts": { 63 "scripts": {
60 "post-install-cmd": [ 64 "post-install-cmd": [
61 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", 65 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
62 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", 66 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
63 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", 67 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
64 - "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile" 68 + "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
  69 + "Braincrafted\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::install"
65 ], 70 ],
66 "post-update-cmd": [ 71 "post-update-cmd": [
67 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", 72 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
68 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", 73 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
69 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", 74 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
70 - "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile" 75 + "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
  76 + "Braincrafted\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::install"
71 ] 77 ]
72 }, 78 },
73 "extra": { 79 "extra": {
composer.lock 0 → 100644
@@ -0,0 +1,3341 @@ @@ -0,0 +1,3341 @@
  1 +{
  2 + "_readme": [
  3 + "This file locks the dependencies of your project to a known state",
  4 + "Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file"
  5 + ],
  6 + "hash": "1a093ce481c9852ef22c1ca95a5cbf08",
  7 + "packages": [
  8 + {
  9 + "name": "braincrafted/bootstrap-bundle",
  10 + "version": "v2.0.1",
  11 + "target-dir": "Braincrafted/Bundle/BootstrapBundle",
  12 + "source": {
  13 + "type": "git",
  14 + "url": "https://github.com/braincrafted/bootstrap-bundle.git",
  15 + "reference": "dc6169b1e29d8668cda960aa663fcc4bbd602bd4"
  16 + },
  17 + "dist": {
  18 + "type": "zip",
  19 + "url": "https://api.github.com/repos/braincrafted/bootstrap-bundle/zipball/dc6169b1e29d8668cda960aa663fcc4bbd602bd4",
  20 + "reference": "dc6169b1e29d8668cda960aa663fcc4bbd602bd4",
  21 + "shasum": ""
  22 + },
  23 + "require": {
  24 + "php": ">=5.3.3",
  25 + "symfony/console": "~2.3",
  26 + "symfony/finder": "~2.3",
  27 + "symfony/form": "~2.3",
  28 + "symfony/framework-bundle": "~2.3",
  29 + "symfony/twig-bundle": "~2.3"
  30 + },
  31 + "require-dev": {
  32 + "knplabs/knp-menu": "~2.0@alpha",
  33 + "knplabs/knp-menu-bundle": "~2.0@alpha",
  34 + "knplabs/knp-paginator-bundle": "dev-master",
  35 + "mockery/mockery": "0.8.*",
  36 + "phpunit/phpunit": "3.7.*",
  37 + "symfony/assetic-bundle": "~2.3"
  38 + },
  39 + "suggest": {
  40 + "knplabs/knp-menu": "Required to use KnpMenuBundle.",
  41 + "knplabs/knp-menu-bundle": "BraincraftedBootstrapBundle styles the menus provided by KnpMenuBundle.",
  42 + "knplabs/knp-paginator-bundle": "BraincraftedBootstrapBundle styles the pagination provided by KnpPaginatorBundle.",
  43 + "twbs/bootstrap": "Twitter Bootstrap provides the assets (images, CSS and JS)"
  44 + },
  45 + "type": "symfony-bundle",
  46 + "autoload": {
  47 + "psr-0": {
  48 + "Braincrafted\\Bundle\\BootstrapBundle": ""
  49 + }
  50 + },
  51 + "notification-url": "https://packagist.org/downloads/",
  52 + "license": [
  53 + "MIT"
  54 + ],
  55 + "authors": [
  56 + {
  57 + "name": "Florian Eckerstorfer",
  58 + "email": "florian@eckerstorfer.co",
  59 + "homepage": "http://florian.ec",
  60 + "role": "Developer"
  61 + }
  62 + ],
  63 + "description": "BraincraftedBootstrapBundle integrates Bootstrap into Symfony2 by providing templates, Twig extensions, services and commands.",
  64 + "keywords": [
  65 + "bootstrap"
  66 + ],
  67 + "time": "2014-04-03 16:59:23"
  68 + },
  69 + {
  70 + "name": "ddeboer/data-import",
  71 + "version": "0.12.2",
  72 + "source": {
  73 + "type": "git",
  74 + "url": "https://github.com/ddeboer/data-import.git",
  75 + "reference": "6a7d4e6d80e7011b63c6d747952bae072d8009df"
  76 + },
  77 + "dist": {
  78 + "type": "zip",
  79 + "url": "https://api.github.com/repos/ddeboer/data-import/zipball/6a7d4e6d80e7011b63c6d747952bae072d8009df",
  80 + "reference": "6a7d4e6d80e7011b63c6d747952bae072d8009df",
  81 + "shasum": ""
  82 + },
  83 + "require": {
  84 + "php": ">=5.3.0"
  85 + },
  86 + "require-dev": {
  87 + "doctrine/dbal": "*",
  88 + "doctrine/orm": "*",
  89 + "ext-iconv": "*",
  90 + "ext-mbstring": "*",
  91 + "ext-sqlite3": "*",
  92 + "phpoffice/phpexcel": "*",
  93 + "symfony/console": ">=2.2",
  94 + "symfony/property-access": "*",
  95 + "symfony/validator": "~2.3.0"
  96 + },
  97 + "suggest": {
  98 + "doctrine/dbal": "If you want to use the DbalReader",
  99 + "ext-iconv": "For the CharsetValueConverter",
  100 + "ext-mbstring": "For the CharsetValueConverter",
  101 + "phpoffice/phpexcel": "If you want to use the ExcelReader",
  102 + "symfony/console": "If you want to use the ConsoleProgressWriter",
  103 + "symfony/property-access": "If you want to use the ObjectConverter",
  104 + "symfony/validator": "to use the ValidatorFilter"
  105 + },
  106 + "type": "library",
  107 + "autoload": {
  108 + "psr-0": {
  109 + "Ddeboer\\DataImport": "src"
  110 + }
  111 + },
  112 + "notification-url": "https://packagist.org/downloads/",
  113 + "license": [
  114 + "MIT"
  115 + ],
  116 + "authors": [
  117 + {
  118 + "name": "David de Boer",
  119 + "email": "david@ddeboer.nl",
  120 + "homepage": "http://ddeboer.nl"
  121 + },
  122 + {
  123 + "name": "The community",
  124 + "homepage": "https://github.com/ddeboer/data-import/graphs/contributors"
  125 + }
  126 + ],
  127 + "description": "Import data from, and export data to, a range of file formats and media",
  128 + "keywords": [
  129 + "csv",
  130 + "data",
  131 + "doctrine",
  132 + "excel",
  133 + "export",
  134 + "import"
  135 + ],
  136 + "time": "2014-03-28 08:49:45"
  137 + },
  138 + {
  139 + "name": "ddeboer/data-import-bundle",
  140 + "version": "dev-master",
  141 + "target-dir": "Ddeboer/DataImportBundle",
  142 + "source": {
  143 + "type": "git",
  144 + "url": "https://github.com/ddeboer/DdeboerDataImportBundle.git",
  145 + "reference": "653961354e541380feef085791cb8368da3160db"
  146 + },
  147 + "dist": {
  148 + "type": "zip",
  149 + "url": "https://api.github.com/repos/ddeboer/DdeboerDataImportBundle/zipball/653961354e541380feef085791cb8368da3160db",
  150 + "reference": "653961354e541380feef085791cb8368da3160db",
  151 + "shasum": ""
  152 + },
  153 + "require": {
  154 + "ddeboer/data-import": "*",
  155 + "php": ">=5.3.0"
  156 + },
  157 + "type": "symfony-bundle",
  158 + "autoload": {
  159 + "psr-0": {
  160 + "Ddeboer\\DataImportBundle": ""
  161 + }
  162 + },
  163 + "notification-url": "https://packagist.org/downloads/",
  164 + "license": [
  165 + "MIT"
  166 + ],
  167 + "authors": [
  168 + {
  169 + "name": "David de Boer",
  170 + "email": "david@ddeboer.nl",
  171 + "homepage": "https://github.com/ddeboer"
  172 + }
  173 + ],
  174 + "description": "A Symfony2 bundle for the ddeboer/data-import library",
  175 + "homepage": "https://github.com/ddeboer/DdeboerDataImportBundle",
  176 + "keywords": [
  177 + "csv",
  178 + "import"
  179 + ],
  180 + "time": "2014-04-04 11:01:36"
  181 + },
  182 + {
  183 + "name": "doctrine/annotations",
  184 + "version": "v1.1.2",
  185 + "source": {
  186 + "type": "git",
  187 + "url": "https://github.com/doctrine/annotations.git",
  188 + "reference": "40db0c96985aab2822edbc4848b3bd2429e02670"
  189 + },
  190 + "dist": {
  191 + "type": "zip",
  192 + "url": "https://api.github.com/repos/doctrine/annotations/zipball/40db0c96985aab2822edbc4848b3bd2429e02670",
  193 + "reference": "40db0c96985aab2822edbc4848b3bd2429e02670",
  194 + "shasum": ""
  195 + },
  196 + "require": {
  197 + "doctrine/lexer": "1.*",
  198 + "php": ">=5.3.2"
  199 + },
  200 + "require-dev": {
  201 + "doctrine/cache": "1.*"
  202 + },
  203 + "type": "library",
  204 + "extra": {
  205 + "branch-alias": {
  206 + "dev-master": "1.0.x-dev"
  207 + }
  208 + },
  209 + "autoload": {
  210 + "psr-0": {
  211 + "Doctrine\\Common\\Annotations\\": "lib/"
  212 + }
  213 + },
  214 + "notification-url": "https://packagist.org/downloads/",
  215 + "license": [
  216 + "MIT"
  217 + ],
  218 + "authors": [
  219 + {
  220 + "name": "Jonathan H. Wage",
  221 + "email": "jonwage@gmail.com",
  222 + "homepage": "http://www.jwage.com/",
  223 + "role": "Creator"
  224 + },
  225 + {
  226 + "name": "Guilherme Blanco",
  227 + "email": "guilhermeblanco@gmail.com",
  228 + "homepage": "http://www.instaclick.com"
  229 + },
  230 + {
  231 + "name": "Roman Borschel",
  232 + "email": "roman@code-factory.org"
  233 + },
  234 + {
  235 + "name": "Benjamin Eberlei",
  236 + "email": "kontakt@beberlei.de"
  237 + },
  238 + {
  239 + "name": "Johannes Schmitt",
  240 + "email": "schmittjoh@gmail.com",
  241 + "homepage": "http://jmsyst.com",
  242 + "role": "Developer of wrapped JMSSerializerBundle"
  243 + }
  244 + ],
  245 + "description": "Docblock Annotations Parser",
  246 + "homepage": "http://www.doctrine-project.org",
  247 + "keywords": [
  248 + "annotations",
  249 + "docblock",
  250 + "parser"
  251 + ],
  252 + "time": "2013-06-16 21:33:03"
  253 + },
  254 + {
  255 + "name": "doctrine/cache",
  256 + "version": "v1.3.0",
  257 + "source": {
  258 + "type": "git",
  259 + "url": "https://github.com/doctrine/cache.git",
  260 + "reference": "e16d7adf45664a50fa86f515b6d5e7f670130449"
  261 + },
  262 + "dist": {
  263 + "type": "zip",
  264 + "url": "https://api.github.com/repos/doctrine/cache/zipball/e16d7adf45664a50fa86f515b6d5e7f670130449",
  265 + "reference": "e16d7adf45664a50fa86f515b6d5e7f670130449",
  266 + "shasum": ""
  267 + },
  268 + "require": {
  269 + "php": ">=5.3.2"
  270 + },
  271 + "conflict": {
  272 + "doctrine/common": ">2.2,<2.4"
  273 + },
  274 + "require-dev": {
  275 + "phpunit/phpunit": ">=3.7",
  276 + "satooshi/php-coveralls": "~0.6"
  277 + },
  278 + "type": "library",
  279 + "extra": {
  280 + "branch-alias": {
  281 + "dev-master": "1.0.x-dev"
  282 + }
  283 + },
  284 + "autoload": {
  285 + "psr-0": {
  286 + "Doctrine\\Common\\Cache\\": "lib/"
  287 + }
  288 + },
  289 + "notification-url": "https://packagist.org/downloads/",
  290 + "license": [
  291 + "MIT"
  292 + ],
  293 + "authors": [
  294 + {
  295 + "name": "Jonathan H. Wage",
  296 + "email": "jonwage@gmail.com",
  297 + "homepage": "http://www.jwage.com/",
  298 + "role": "Creator"
  299 + },
  300 + {
  301 + "name": "Guilherme Blanco",
  302 + "email": "guilhermeblanco@gmail.com",
  303 + "homepage": "http://www.instaclick.com"
  304 + },
  305 + {
  306 + "name": "Roman Borschel",
  307 + "email": "roman@code-factory.org"
  308 + },
  309 + {
  310 + "name": "Benjamin Eberlei",
  311 + "email": "kontakt@beberlei.de"
  312 + },
  313 + {
  314 + "name": "Johannes Schmitt",
  315 + "email": "schmittjoh@gmail.com",
  316 + "homepage": "http://jmsyst.com",
  317 + "role": "Developer of wrapped JMSSerializerBundle"
  318 + }
  319 + ],
  320 + "description": "Caching library offering an object-oriented API for many cache backends",
  321 + "homepage": "http://www.doctrine-project.org",
  322 + "keywords": [
  323 + "cache",
  324 + "caching"
  325 + ],
  326 + "time": "2013-10-25 19:04:14"
  327 + },
  328 + {
  329 + "name": "doctrine/collections",
  330 + "version": "v1.2",
  331 + "source": {
  332 + "type": "git",
  333 + "url": "https://github.com/doctrine/collections.git",
  334 + "reference": "b99c5c46c87126201899afe88ec490a25eedd6a2"
  335 + },
  336 + "dist": {
  337 + "type": "zip",
  338 + "url": "https://api.github.com/repos/doctrine/collections/zipball/b99c5c46c87126201899afe88ec490a25eedd6a2",
  339 + "reference": "b99c5c46c87126201899afe88ec490a25eedd6a2",
  340 + "shasum": ""
  341 + },
  342 + "require": {
  343 + "php": ">=5.3.2"
  344 + },
  345 + "type": "library",
  346 + "extra": {
  347 + "branch-alias": {
  348 + "dev-master": "1.2.x-dev"
  349 + }
  350 + },
  351 + "autoload": {
  352 + "psr-0": {
  353 + "Doctrine\\Common\\Collections\\": "lib/"
  354 + }
  355 + },
  356 + "notification-url": "https://packagist.org/downloads/",
  357 + "license": [
  358 + "MIT"
  359 + ],
  360 + "authors": [
  361 + {
  362 + "name": "Jonathan Wage",
  363 + "email": "jonwage@gmail.com",
  364 + "homepage": "http://www.jwage.com/",
  365 + "role": "Creator"
  366 + },
  367 + {
  368 + "name": "Guilherme Blanco",
  369 + "email": "guilhermeblanco@gmail.com",
  370 + "homepage": "http://www.instaclick.com"
  371 + },
  372 + {
  373 + "name": "Roman Borschel",
  374 + "email": "roman@code-factory.org"
  375 + },
  376 + {
  377 + "name": "Benjamin Eberlei",
  378 + "email": "kontakt@beberlei.de"
  379 + },
  380 + {
  381 + "name": "Johannes Schmitt",
  382 + "email": "schmittjoh@gmail.com",
  383 + "homepage": "http://jmsyst.com",
  384 + "role": "Developer of wrapped JMSSerializerBundle"
  385 + }
  386 + ],
  387 + "description": "Collections Abstraction library",
  388 + "homepage": "http://www.doctrine-project.org",
  389 + "keywords": [
  390 + "array",
  391 + "collections",
  392 + "iterator"
  393 + ],
  394 + "time": "2014-02-03 23:07:43"
  395 + },
  396 + {
  397 + "name": "doctrine/common",
  398 + "version": "v2.4.1",
  399 + "source": {
  400 + "type": "git",
  401 + "url": "https://github.com/doctrine/common.git",
  402 + "reference": "ceb18cf9b0230f3ea208b6238130fd415abda0a7"
  403 + },
  404 + "dist": {
  405 + "type": "zip",
  406 + "url": "https://api.github.com/repos/doctrine/common/zipball/ceb18cf9b0230f3ea208b6238130fd415abda0a7",
  407 + "reference": "ceb18cf9b0230f3ea208b6238130fd415abda0a7",
  408 + "shasum": ""
  409 + },
  410 + "require": {
  411 + "doctrine/annotations": "1.*",
  412 + "doctrine/cache": "1.*",
  413 + "doctrine/collections": "1.*",
  414 + "doctrine/inflector": "1.*",
  415 + "doctrine/lexer": "1.*",
  416 + "php": ">=5.3.2"
  417 + },
  418 + "type": "library",
  419 + "extra": {
  420 + "branch-alias": {
  421 + "dev-master": "2.4.x-dev"
  422 + }
  423 + },
  424 + "autoload": {
  425 + "psr-0": {
  426 + "Doctrine\\Common\\": "lib/"
  427 + }
  428 + },
  429 + "notification-url": "https://packagist.org/downloads/",
  430 + "license": [
  431 + "MIT"
  432 + ],
  433 + "authors": [
  434 + {
  435 + "name": "Jonathan Wage",
  436 + "email": "jonwage@gmail.com",
  437 + "homepage": "http://www.jwage.com/",
  438 + "role": "Creator"
  439 + },
  440 + {
  441 + "name": "Guilherme Blanco",
  442 + "email": "guilhermeblanco@gmail.com",
  443 + "homepage": "http://www.instaclick.com"
  444 + },
  445 + {
  446 + "name": "Roman Borschel",
  447 + "email": "roman@code-factory.org"
  448 + },
  449 + {
  450 + "name": "Benjamin Eberlei",
  451 + "email": "kontakt@beberlei.de"
  452 + },
  453 + {
  454 + "name": "Johannes Schmitt",
  455 + "email": "schmittjoh@gmail.com",
  456 + "homepage": "http://jmsyst.com",
  457 + "role": "Developer of wrapped JMSSerializerBundle"
  458 + }
  459 + ],
  460 + "description": "Common Library for Doctrine projects",
  461 + "homepage": "http://www.doctrine-project.org",
  462 + "keywords": [
  463 + "annotations",
  464 + "collections",
  465 + "eventmanager",
  466 + "persistence",
  467 + "spl"
  468 + ],
  469 + "time": "2013-09-07 10:20:34"
  470 + },
  471 + {
  472 + "name": "doctrine/data-fixtures",
  473 + "version": "dev-master",
  474 + "source": {
  475 + "type": "git",
  476 + "url": "https://github.com/doctrine/data-fixtures.git",
  477 + "reference": "e847b073c2b5350045edbb40443645ad09a59538"
  478 + },
  479 + "dist": {
  480 + "type": "zip",
  481 + "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/e847b073c2b5350045edbb40443645ad09a59538",
  482 + "reference": "e847b073c2b5350045edbb40443645ad09a59538",
  483 + "shasum": ""
  484 + },
  485 + "require": {
  486 + "doctrine/common": "~2.2",
  487 + "php": ">=5.3.2"
  488 + },
  489 + "require-dev": {
  490 + "doctrine/orm": "~2.2"
  491 + },
  492 + "suggest": {
  493 + "doctrine/mongodb-odm": "For loading MongoDB ODM fixtures",
  494 + "doctrine/orm": "For loading ORM fixtures",
  495 + "doctrine/phpcr-odm": "For loading PHPCR ODM fixtures"
  496 + },
  497 + "type": "library",
  498 + "extra": {
  499 + "branch-alias": {
  500 + "dev-master": "1.0.x-dev"
  501 + }
  502 + },
  503 + "autoload": {
  504 + "psr-0": {
  505 + "Doctrine\\Common\\DataFixtures": "lib/"
  506 + }
  507 + },
  508 + "notification-url": "https://packagist.org/downloads/",
  509 + "license": [
  510 + "MIT"
  511 + ],
  512 + "authors": [
  513 + {
  514 + "name": "Jonathan Wage",
  515 + "email": "jonwage@gmail.com",
  516 + "homepage": "http://www.jwage.com/",
  517 + "role": "Creator"
  518 + }
  519 + ],
  520 + "description": "Data Fixtures for all Doctrine Object Managers",
  521 + "homepage": "http://www.doctrine-project.org",
  522 + "keywords": [
  523 + "database"
  524 + ],
  525 + "time": "2014-03-13 12:26:17"
  526 + },
  527 + {
  528 + "name": "doctrine/dbal",
  529 + "version": "2.3.4",
  530 + "source": {
  531 + "type": "git",
  532 + "url": "https://github.com/doctrine/dbal.git",
  533 + "reference": "2a37b007dda8e21bdbb8fa445be8fa0064199e13"
  534 + },
  535 + "dist": {
  536 + "type": "zip",
  537 + "url": "https://api.github.com/repos/doctrine/dbal/zipball/2a37b007dda8e21bdbb8fa445be8fa0064199e13",
  538 + "reference": "2a37b007dda8e21bdbb8fa445be8fa0064199e13",
  539 + "shasum": ""
  540 + },
  541 + "require": {
  542 + "doctrine/common": ">=2.3.0,<2.5-dev",
  543 + "php": ">=5.3.2"
  544 + },
  545 + "type": "library",
  546 + "extra": {
  547 + "branch-alias": {
  548 + "dev-master": "2.3.x-dev"
  549 + }
  550 + },
  551 + "autoload": {
  552 + "psr-0": {
  553 + "Doctrine\\DBAL": "lib/"
  554 + }
  555 + },
  556 + "notification-url": "https://packagist.org/downloads/",
  557 + "license": [
  558 + "MIT"
  559 + ],
  560 + "authors": [
  561 + {
  562 + "name": "Jonathan Wage",
  563 + "email": "jonwage@gmail.com",
  564 + "homepage": "http://www.jwage.com/",
  565 + "role": "Creator"
  566 + },
  567 + {
  568 + "name": "Guilherme Blanco",
  569 + "email": "guilhermeblanco@gmail.com",
  570 + "homepage": "http://www.instaclick.com"
  571 + },
  572 + {
  573 + "name": "Roman Borschel",
  574 + "email": "roman@code-factory.org"
  575 + },
  576 + {
  577 + "name": "Benjamin Eberlei",
  578 + "email": "kontakt@beberlei.de"
  579 + }
  580 + ],
  581 + "description": "Database Abstraction Layer",
  582 + "homepage": "http://www.doctrine-project.org",
  583 + "keywords": [
  584 + "database",
  585 + "dbal",
  586 + "persistence",
  587 + "queryobject"
  588 + ],
  589 + "time": "2013-05-11 07:45:37"
  590 + },
  591 + {
  592 + "name": "doctrine/doctrine-bundle",
  593 + "version": "v1.2.0",
  594 + "target-dir": "Doctrine/Bundle/DoctrineBundle",
  595 + "source": {
  596 + "type": "git",
  597 + "url": "https://github.com/doctrine/DoctrineBundle.git",
  598 + "reference": "765b0d87fcc3e839c74817b7211258cbef3a4fb9"
  599 + },
  600 + "dist": {
  601 + "type": "zip",
  602 + "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/765b0d87fcc3e839c74817b7211258cbef3a4fb9",
  603 + "reference": "765b0d87fcc3e839c74817b7211258cbef3a4fb9",
  604 + "shasum": ""
  605 + },
  606 + "require": {
  607 + "doctrine/dbal": ">=2.2,<2.5-dev",
  608 + "jdorn/sql-formatter": "~1.1",
  609 + "php": ">=5.3.2",
  610 + "symfony/doctrine-bridge": "~2.2",
  611 + "symfony/framework-bundle": "~2.2"
  612 + },
  613 + "require-dev": {
  614 + "doctrine/orm": ">=2.2,<2.5-dev",
  615 + "symfony/validator": "~2.2",
  616 + "symfony/yaml": "~2.2"
  617 + },
  618 + "suggest": {
  619 + "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  620 + "symfony/web-profiler-bundle": "to use the data collector"
  621 + },
  622 + "type": "symfony-bundle",
  623 + "extra": {
  624 + "branch-alias": {
  625 + "dev-master": "1.2.x-dev"
  626 + }
  627 + },
  628 + "autoload": {
  629 + "psr-0": {
  630 + "Doctrine\\Bundle\\DoctrineBundle": ""
  631 + }
  632 + },
  633 + "notification-url": "https://packagist.org/downloads/",
  634 + "license": [
  635 + "MIT"
  636 + ],
  637 + "authors": [
  638 + {
  639 + "name": "Fabien Potencier",
  640 + "email": "fabien@symfony.com",
  641 + "homepage": "http://fabien.potencier.org",
  642 + "role": "Lead Developer"
  643 + },
  644 + {
  645 + "name": "Symfony Community",
  646 + "homepage": "http://symfony.com/contributors"
  647 + },
  648 + {
  649 + "name": "Benjamin Eberlei",
  650 + "email": "kontakt@beberlei.de"
  651 + }
  652 + ],
  653 + "description": "Symfony DoctrineBundle",
  654 + "homepage": "http://www.doctrine-project.org",
  655 + "keywords": [
  656 + "database",
  657 + "dbal",
  658 + "orm",
  659 + "persistence"
  660 + ],
  661 + "time": "2013-03-25 20:13:59"
  662 + },
  663 + {
  664 + "name": "doctrine/doctrine-fixtures-bundle",
  665 + "version": "dev-master",
  666 + "target-dir": "Doctrine/Bundle/FixturesBundle",
  667 + "source": {
  668 + "type": "git",
  669 + "url": "https://github.com/doctrine/DoctrineFixturesBundle.git",
  670 + "reference": "ccd69d9ec90013955a412a21125672afc09738dc"
  671 + },
  672 + "dist": {
  673 + "type": "zip",
  674 + "url": "https://api.github.com/repos/doctrine/DoctrineFixturesBundle/zipball/ccd69d9ec90013955a412a21125672afc09738dc",
  675 + "reference": "ccd69d9ec90013955a412a21125672afc09738dc",
  676 + "shasum": ""
  677 + },
  678 + "require": {
  679 + "doctrine/data-fixtures": "~1.0",
  680 + "doctrine/doctrine-bundle": "~1.0",
  681 + "php": ">=5.3.2",
  682 + "symfony/doctrine-bridge": "~2.1"
  683 + },
  684 + "type": "symfony-bundle",
  685 + "extra": {
  686 + "branch-alias": {
  687 + "dev-master": "2.2.x-dev"
  688 + }
  689 + },
  690 + "autoload": {
  691 + "psr-0": {
  692 + "Doctrine\\Bundle\\FixturesBundle": ""
  693 + }
  694 + },
  695 + "notification-url": "https://packagist.org/downloads/",
  696 + "license": [
  697 + "MIT"
  698 + ],
  699 + "authors": [
  700 + {
  701 + "name": "Fabien Potencier",
  702 + "email": "fabien@symfony.com",
  703 + "homepage": "http://fabien.potencier.org",
  704 + "role": "Lead Developer"
  705 + },
  706 + {
  707 + "name": "Symfony Community",
  708 + "homepage": "http://symfony.com/contributors"
  709 + },
  710 + {
  711 + "name": "Doctrine Project",
  712 + "homepage": "http://www.doctrine-project.org"
  713 + }
  714 + ],
  715 + "description": "Symfony DoctrineFixturesBundle",
  716 + "homepage": "http://www.doctrine-project.org",
  717 + "keywords": [
  718 + "Fixture",
  719 + "persistence"
  720 + ],
  721 + "time": "2014-03-05 01:11:31"
  722 + },
  723 + {
  724 + "name": "doctrine/inflector",
  725 + "version": "v1.0",
  726 + "source": {
  727 + "type": "git",
  728 + "url": "https://github.com/doctrine/inflector.git",
  729 + "reference": "54b8333d2a5682afdc690060c1cf384ba9f47f08"
  730 + },
  731 + "dist": {
  732 + "type": "zip",
  733 + "url": "https://api.github.com/repos/doctrine/inflector/zipball/54b8333d2a5682afdc690060c1cf384ba9f47f08",
  734 + "reference": "54b8333d2a5682afdc690060c1cf384ba9f47f08",
  735 + "shasum": ""
  736 + },
  737 + "require": {
  738 + "php": ">=5.3.2"
  739 + },
  740 + "type": "library",
  741 + "autoload": {
  742 + "psr-0": {
  743 + "Doctrine\\Common\\Inflector\\": "lib/"
  744 + }
  745 + },
  746 + "notification-url": "https://packagist.org/downloads/",
  747 + "license": [
  748 + "MIT"
  749 + ],
  750 + "authors": [
  751 + {
  752 + "name": "Jonathan Wage",
  753 + "email": "jonwage@gmail.com",
  754 + "homepage": "http://www.jwage.com/",
  755 + "role": "Creator"
  756 + },
  757 + {
  758 + "name": "Guilherme Blanco",
  759 + "email": "guilhermeblanco@gmail.com",
  760 + "homepage": "http://www.instaclick.com"
  761 + },
  762 + {
  763 + "name": "Roman Borschel",
  764 + "email": "roman@code-factory.org"
  765 + },
  766 + {
  767 + "name": "Benjamin Eberlei",
  768 + "email": "kontakt@beberlei.de"
  769 + },
  770 + {
  771 + "name": "Johannes Schmitt",
  772 + "email": "schmittjoh@gmail.com",
  773 + "homepage": "http://jmsyst.com",
  774 + "role": "Developer of wrapped JMSSerializerBundle"
  775 + }
  776 + ],
  777 + "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  778 + "homepage": "http://www.doctrine-project.org",
  779 + "keywords": [
  780 + "inflection",
  781 + "pluarlize",
  782 + "singuarlize",
  783 + "string"
  784 + ],
  785 + "time": "2013-01-10 21:49:15"
  786 + },
  787 + {
  788 + "name": "doctrine/lexer",
  789 + "version": "v1.0",
  790 + "source": {
  791 + "type": "git",
  792 + "url": "https://github.com/doctrine/lexer.git",
  793 + "reference": "2f708a85bb3aab5d99dab8be435abd73e0b18acb"
  794 + },
  795 + "dist": {
  796 + "type": "zip",
  797 + "url": "https://api.github.com/repos/doctrine/lexer/zipball/2f708a85bb3aab5d99dab8be435abd73e0b18acb",
  798 + "reference": "2f708a85bb3aab5d99dab8be435abd73e0b18acb",
  799 + "shasum": ""
  800 + },
  801 + "require": {
  802 + "php": ">=5.3.2"
  803 + },
  804 + "type": "library",
  805 + "autoload": {
  806 + "psr-0": {
  807 + "Doctrine\\Common\\Lexer\\": "lib/"
  808 + }
  809 + },
  810 + "notification-url": "https://packagist.org/downloads/",
  811 + "license": [
  812 + "MIT"
  813 + ],
  814 + "authors": [
  815 + {
  816 + "name": "Guilherme Blanco",
  817 + "email": "guilhermeblanco@gmail.com",
  818 + "homepage": "http://www.instaclick.com"
  819 + },
  820 + {
  821 + "name": "Roman Borschel",
  822 + "email": "roman@code-factory.org"
  823 + },
  824 + {
  825 + "name": "Johannes Schmitt",
  826 + "email": "schmittjoh@gmail.com",
  827 + "homepage": "http://jmsyst.com",
  828 + "role": "Developer of wrapped JMSSerializerBundle"
  829 + }
  830 + ],
  831 + "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  832 + "homepage": "http://www.doctrine-project.org",
  833 + "keywords": [
  834 + "lexer",
  835 + "parser"
  836 + ],
  837 + "time": "2013-01-12 18:59:04"
  838 + },
  839 + {
  840 + "name": "doctrine/orm",
  841 + "version": "2.3.5",
  842 + "source": {
  843 + "type": "git",
  844 + "url": "https://github.com/doctrine/doctrine2.git",
  845 + "reference": "2c31ec4809a28a549bf22d7cb7504add98156cd6"
  846 + },
  847 + "dist": {
  848 + "type": "zip",
  849 + "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/2c31ec4809a28a549bf22d7cb7504add98156cd6",
  850 + "reference": "2c31ec4809a28a549bf22d7cb7504add98156cd6",
  851 + "shasum": ""
  852 + },
  853 + "require": {
  854 + "doctrine/dbal": "2.3.*",
  855 + "ext-pdo": "*",
  856 + "php": ">=5.3.2",
  857 + "symfony/console": "2.*"
  858 + },
  859 + "suggest": {
  860 + "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  861 + },
  862 + "bin": [
  863 + "bin/doctrine",
  864 + "bin/doctrine.php"
  865 + ],
  866 + "type": "library",
  867 + "extra": {
  868 + "branch-alias": {
  869 + "dev-master": "2.3.x-dev"
  870 + }
  871 + },
  872 + "autoload": {
  873 + "psr-0": {
  874 + "Doctrine\\ORM": "lib/"
  875 + }
  876 + },
  877 + "notification-url": "https://packagist.org/downloads/",
  878 + "license": [
  879 + "MIT"
  880 + ],
  881 + "authors": [
  882 + {
  883 + "name": "Jonathan Wage",
  884 + "email": "jonwage@gmail.com",
  885 + "homepage": "http://www.jwage.com/",
  886 + "role": "Creator"
  887 + },
  888 + {
  889 + "name": "Guilherme Blanco",
  890 + "email": "guilhermeblanco@gmail.com",
  891 + "homepage": "http://www.instaclick.com"
  892 + },
  893 + {
  894 + "name": "Roman Borschel",
  895 + "email": "roman@code-factory.org"
  896 + },
  897 + {
  898 + "name": "Benjamin Eberlei",
  899 + "email": "kontakt@beberlei.de"
  900 + }
  901 + ],
  902 + "description": "Object-Relational-Mapper for PHP",
  903 + "homepage": "http://www.doctrine-project.org",
  904 + "keywords": [
  905 + "database",
  906 + "orm"
  907 + ],
  908 + "time": "2014-02-08 16:28:24"
  909 + },
  910 + {
  911 + "name": "friendsofsymfony/rest-bundle",
  912 + "version": "dev-master",
  913 + "target-dir": "FOS/RestBundle",
  914 + "source": {
  915 + "type": "git",
  916 + "url": "https://github.com/FriendsOfSymfony/FOSRestBundle.git",
  917 + "reference": "890829effff016b53f392d45702107a09e71edcf"
  918 + },
  919 + "dist": {
  920 + "type": "zip",
  921 + "url": "https://api.github.com/repos/FriendsOfSymfony/FOSRestBundle/zipball/890829effff016b53f392d45702107a09e71edcf",
  922 + "reference": "890829effff016b53f392d45702107a09e71edcf",
  923 + "shasum": ""
  924 + },
  925 + "require": {
  926 + "doctrine/inflector": "1.0.*",
  927 + "php": ">=5.3.2",
  928 + "psr/log": "~1.0",
  929 + "symfony/framework-bundle": "~2.2",
  930 + "willdurand/jsonp-callback-validator": "~1.0",
  931 + "willdurand/negotiation": "~1.2"
  932 + },
  933 + "conflict": {
  934 + "jms/serializer": "<0.12",
  935 + "jms/serializer-bundle": "<0.11"
  936 + },
  937 + "require-dev": {
  938 + "jms/serializer-bundle": "0.12.*",
  939 + "sensio/framework-extra-bundle": "~2.2",
  940 + "symfony/form": "~2.2",
  941 + "symfony/security": "~2.2",
  942 + "symfony/serializer": "~2.2",
  943 + "symfony/validator": "~2.2",
  944 + "symfony/yaml": "~2.2"
  945 + },
  946 + "suggest": {
  947 + "jms/serializer-bundle": "Add support for advanced serialization capabilities, recommended, requires 0.12.*",
  948 + "sensio/framework-extra-bundle": "Add support for route annotations and the view response listener",
  949 + "symfony/serializer": "Add support for basic serialization capabilities and xml decoding, requires ~2.2"
  950 + },
  951 + "type": "symfony-bundle",
  952 + "extra": {
  953 + "branch-alias": {
  954 + "dev-master": "1.4-dev"
  955 + }
  956 + },
  957 + "autoload": {
  958 + "psr-0": {
  959 + "FOS\\RestBundle": ""
  960 + }
  961 + },
  962 + "notification-url": "https://packagist.org/downloads/",
  963 + "license": [
  964 + "MIT"
  965 + ],
  966 + "authors": [
  967 + {
  968 + "name": "Lukas Kahwe Smith",
  969 + "email": "smith@pooteeweet.org"
  970 + },
  971 + {
  972 + "name": "FriendsOfSymfony Community",
  973 + "homepage": "https://github.com/friendsofsymfony/FOSRestBundle/contributors"
  974 + },
  975 + {
  976 + "name": "Konstantin Kudryashov",
  977 + "email": "ever.zet@gmail.com",
  978 + "homepage": "http://everzet.com"
  979 + }
  980 + ],
  981 + "description": "This Bundle provides various tools to rapidly develop RESTful API's with Symfony2",
  982 + "homepage": "http://friendsofsymfony.github.com",
  983 + "keywords": [
  984 + "rest"
  985 + ],
  986 + "time": "2014-04-03 21:10:08"
  987 + },
  988 + {
  989 + "name": "helios-ag/fm-elfinder-bundle",
  990 + "version": "1.4.2",
  991 + "target-dir": "FM/ElfinderBundle",
  992 + "source": {
  993 + "type": "git",
  994 + "url": "https://github.com/helios-ag/FMElfinderBundle.git",
  995 + "reference": "6f2cd74ee288ccd11cae169ab2bf002f231ba83c"
  996 + },
  997 + "dist": {
  998 + "type": "zip",
  999 + "url": "https://api.github.com/repos/helios-ag/FMElfinderBundle/zipball/6f2cd74ee288ccd11cae169ab2bf002f231ba83c",
  1000 + "reference": "6f2cd74ee288ccd11cae169ab2bf002f231ba83c",
  1001 + "shasum": ""
  1002 + },
  1003 + "require": {
  1004 + "helios-ag/fm-elfinder-php-connector": "1.1.1",
  1005 + "php": ">=5.3.3",
  1006 + "sensio/framework-extra-bundle": "*@dev",
  1007 + "symfony/symfony": "*@stable",
  1008 + "symfony/twig-bundle": "~2.0"
  1009 + },
  1010 + "suggest": {
  1011 + "Trsteel/ckeditor-bundle": "CKEditor WYSIWYG Editor Bundlefor Symfony2 Project by Trsteel",
  1012 + "stfalcon/tinymce-bundle": "TinyMCE WYSIWYG Editor Bundle by Stfalcon"
  1013 + },
  1014 + "type": "symfony-bundle",
  1015 + "autoload": {
  1016 + "psr-0": {
  1017 + "FM\\ElfinderBundle": ""
  1018 + }
  1019 + },
  1020 + "notification-url": "https://packagist.org/downloads/",
  1021 + "license": [
  1022 + "MIT"
  1023 + ],
  1024 + "authors": [
  1025 + {
  1026 + "name": "Al Ganiev",
  1027 + "email": "helios.ag@gmail.com"
  1028 + },
  1029 + {
  1030 + "name": "Symfony Community",
  1031 + "homepage": "https://github.com/helios-ag/FMElfinderBundle/contributors"
  1032 + }
  1033 + ],
  1034 + "description": "ElFinder bundle, add ElFinder file manager to your Symfony2 project",
  1035 + "homepage": "https://github.com/helios-ag/FMElfinderBundle",
  1036 + "keywords": [
  1037 + "elfinder",
  1038 + "file manager"
  1039 + ],
  1040 + "time": "2013-12-19 07:59:20"
  1041 + },
  1042 + {
  1043 + "name": "helios-ag/fm-elfinder-php-connector",
  1044 + "version": "1.1.1",
  1045 + "source": {
  1046 + "type": "git",
  1047 + "url": "https://github.com/helios-ag/ElFinderPHP.git",
  1048 + "reference": "fa24c5ce710ec2c9eab899786c93dfac1a232386"
  1049 + },
  1050 + "dist": {
  1051 + "type": "zip",
  1052 + "url": "https://api.github.com/repos/helios-ag/ElFinderPHP/zipball/fa24c5ce710ec2c9eab899786c93dfac1a232386",
  1053 + "reference": "fa24c5ce710ec2c9eab899786c93dfac1a232386",
  1054 + "shasum": ""
  1055 + },
  1056 + "require": {
  1057 + "php": ">=5.3.0"
  1058 + },
  1059 + "type": "library",
  1060 + "autoload": {
  1061 + "psr-0": {
  1062 + "FM\\ElFinderPHP": "src/"
  1063 + }
  1064 + },
  1065 + "notification-url": "https://packagist.org/downloads/",
  1066 + "license": [
  1067 + "BSD-3 Clause"
  1068 + ],
  1069 + "authors": [
  1070 + {
  1071 + "name": "Al Ganiev",
  1072 + "email": "helios.ag@gmail.com"
  1073 + },
  1074 + {
  1075 + "name": "ElFinder authors",
  1076 + "homepage": "https://github.com/Studio-42/elFinder"
  1077 + },
  1078 + {
  1079 + "name": "Symfony Community",
  1080 + "homepage": "https://github.com/helios-ag/ElFinderPHP/contributors"
  1081 + }
  1082 + ],
  1083 + "description": "ElFinder PHP backend, 5.3 compliant",
  1084 + "homepage": "http://github.com/helios-ag/ElFinderPHP",
  1085 + "keywords": [
  1086 + "elfinder",
  1087 + "filemanager"
  1088 + ],
  1089 + "time": "2013-08-06 17:02:04"
  1090 + },
  1091 + {
  1092 + "name": "ijanki/ftp-bundle",
  1093 + "version": "v1.0.0",
  1094 + "target-dir": "Ijanki/Bundle/FtpBundle",
  1095 + "source": {
  1096 + "type": "git",
  1097 + "url": "https://github.com/iJanki/FtpBundle.git",
  1098 + "reference": "3a96d145221871749f3618f1f6b132456e64cba5"
  1099 + },
  1100 + "dist": {
  1101 + "type": "zip",
  1102 + "url": "https://api.github.com/repos/iJanki/FtpBundle/zipball/3a96d145221871749f3618f1f6b132456e64cba5",
  1103 + "reference": "3a96d145221871749f3618f1f6b132456e64cba5",
  1104 + "shasum": ""
  1105 + },
  1106 + "require": {
  1107 + "php": ">=5.3.2"
  1108 + },
  1109 + "type": "symfony-bundle",
  1110 + "autoload": {
  1111 + "psr-0": {
  1112 + "Ijanki\\Bundle\\FtpBundle": ""
  1113 + }
  1114 + },
  1115 + "notification-url": "https://packagist.org/downloads/",
  1116 + "license": [
  1117 + "MIT"
  1118 + ],
  1119 + "authors": [
  1120 + {
  1121 + "name": "Daniele Cesarini",
  1122 + "email": "daniele.cesarini@gmail.com",
  1123 + "homepage": "http://www.danielecesarini.com",
  1124 + "role": "Developer"
  1125 + }
  1126 + ],
  1127 + "description": "A Symfony2 Bundle to wrap the PHP ftp extension functionality in a more classy way.",
  1128 + "homepage": "https://github.com/iJanki/FtpBundle",
  1129 + "keywords": [
  1130 + "ftp"
  1131 + ],
  1132 + "time": "2013-06-04 20:39:31"
  1133 + },
  1134 + {
  1135 + "name": "incenteev/composer-parameter-handler",
  1136 + "version": "v2.1.0",
  1137 + "target-dir": "Incenteev/ParameterHandler",
  1138 + "source": {
  1139 + "type": "git",
  1140 + "url": "https://github.com/Incenteev/ParameterHandler.git",
  1141 + "reference": "143272a0a09c62616a3c8011fc165a10c6b35241"
  1142 + },
  1143 + "dist": {
  1144 + "type": "zip",
  1145 + "url": "https://api.github.com/repos/Incenteev/ParameterHandler/zipball/143272a0a09c62616a3c8011fc165a10c6b35241",
  1146 + "reference": "143272a0a09c62616a3c8011fc165a10c6b35241",
  1147 + "shasum": ""
  1148 + },
  1149 + "require": {
  1150 + "php": ">=5.3.3",
  1151 + "symfony/yaml": "~2.0"
  1152 + },
  1153 + "require-dev": {
  1154 + "composer/composer": "1.0.*@dev",
  1155 + "phpspec/prophecy-phpunit": "~1.0",
  1156 + "symfony/filesystem": "~2.2"
  1157 + },
  1158 + "type": "library",
  1159 + "extra": {
  1160 + "branch-alias": {
  1161 + "dev-master": "2.1.x-dev"
  1162 + }
  1163 + },
  1164 + "autoload": {
  1165 + "psr-0": {
  1166 + "Incenteev\\ParameterHandler": ""
  1167 + }
  1168 + },
  1169 + "notification-url": "https://packagist.org/downloads/",
  1170 + "license": [
  1171 + "MIT"
  1172 + ],
  1173 + "authors": [
  1174 + {
  1175 + "name": "Christophe Coevoet",
  1176 + "email": "stof@notk.org"
  1177 + }
  1178 + ],
  1179 + "description": "Composer script handling your ignored parameter file",
  1180 + "homepage": "https://github.com/Incenteev/ParameterHandler",
  1181 + "keywords": [
  1182 + "parameters management"
  1183 + ],
  1184 + "time": "2013-12-07 10:10:39"
  1185 + },
  1186 + {
  1187 + "name": "jdorn/sql-formatter",
  1188 + "version": "v1.2.17",
  1189 + "source": {
  1190 + "type": "git",
  1191 + "url": "https://github.com/jdorn/sql-formatter.git",
  1192 + "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  1193 + },
  1194 + "dist": {
  1195 + "type": "zip",
  1196 + "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  1197 + "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  1198 + "shasum": ""
  1199 + },
  1200 + "require": {
  1201 + "php": ">=5.2.4"
  1202 + },
  1203 + "require-dev": {
  1204 + "phpunit/phpunit": "3.7.*"
  1205 + },
  1206 + "type": "library",
  1207 + "extra": {
  1208 + "branch-alias": {
  1209 + "dev-master": "1.3.x-dev"
  1210 + }
  1211 + },
  1212 + "autoload": {
  1213 + "classmap": [
  1214 + "lib"
  1215 + ]
  1216 + },
  1217 + "notification-url": "https://packagist.org/downloads/",
  1218 + "license": [
  1219 + "MIT"
  1220 + ],
  1221 + "authors": [
  1222 + {
  1223 + "name": "Jeremy Dorn",
  1224 + "email": "jeremy@jeremydorn.com",
  1225 + "homepage": "http://jeremydorn.com/"
  1226 + }
  1227 + ],
  1228 + "description": "a PHP SQL highlighting library",
  1229 + "homepage": "https://github.com/jdorn/sql-formatter/",
  1230 + "keywords": [
  1231 + "highlight",
  1232 + "sql"
  1233 + ],
  1234 + "time": "2014-01-12 16:20:24"
  1235 + },
  1236 + {
  1237 + "name": "jms/aop-bundle",
  1238 + "version": "1.0.1",
  1239 + "target-dir": "JMS/AopBundle",
  1240 + "source": {
  1241 + "type": "git",
  1242 + "url": "https://github.com/schmittjoh/JMSAopBundle.git",
  1243 + "reference": "93f41ab85ed409430bc3bab2e0b7c7677f152aa8"
  1244 + },
  1245 + "dist": {
  1246 + "type": "zip",
  1247 + "url": "https://api.github.com/repos/schmittjoh/JMSAopBundle/zipball/93f41ab85ed409430bc3bab2e0b7c7677f152aa8",
  1248 + "reference": "93f41ab85ed409430bc3bab2e0b7c7677f152aa8",
  1249 + "shasum": ""
  1250 + },
  1251 + "require": {
  1252 + "jms/cg": "1.*",
  1253 + "symfony/framework-bundle": "2.*"
  1254 + },
  1255 + "type": "symfony-bundle",
  1256 + "extra": {
  1257 + "branch-alias": {
  1258 + "dev-master": "1.1.x-dev"
  1259 + }
  1260 + },
  1261 + "autoload": {
  1262 + "psr-0": {
  1263 + "JMS\\AopBundle": ""
  1264 + }
  1265 + },
  1266 + "notification-url": "https://packagist.org/downloads/",
  1267 + "license": [
  1268 + "Apache"
  1269 + ],
  1270 + "authors": [
  1271 + {
  1272 + "name": "Johannes M. Schmitt",
  1273 + "email": "schmittjoh@gmail.com",
  1274 + "homepage": "http://jmsyst.com",
  1275 + "role": "Developer of wrapped JMSSerializerBundle"
  1276 + }
  1277 + ],
  1278 + "description": "Adds AOP capabilities to Symfony2",
  1279 + "keywords": [
  1280 + "annotations",
  1281 + "aop"
  1282 + ],
  1283 + "time": "2013-07-29 09:34:26"
  1284 + },
  1285 + {
  1286 + "name": "jms/cg",
  1287 + "version": "1.0.0",
  1288 + "source": {
  1289 + "type": "git",
  1290 + "url": "https://github.com/schmittjoh/cg-library.git",
  1291 + "reference": "ce8ef43dd6bfe6ce54e5e9844ab71be2343bf2fc"
  1292 + },
  1293 + "dist": {
  1294 + "type": "zip",
  1295 + "url": "https://api.github.com/repos/schmittjoh/cg-library/zipball/ce8ef43dd6bfe6ce54e5e9844ab71be2343bf2fc",
  1296 + "reference": "ce8ef43dd6bfe6ce54e5e9844ab71be2343bf2fc",
  1297 + "shasum": ""
  1298 + },
  1299 + "require": {
  1300 + "php": ">=5.3.0"
  1301 + },
  1302 + "type": "library",
  1303 + "autoload": {
  1304 + "psr-0": {
  1305 + "CG\\": "src/"
  1306 + }
  1307 + },
  1308 + "notification-url": "https://packagist.org/downloads/",
  1309 + "license": [
  1310 + "Apache"
  1311 + ],
  1312 + "authors": [
  1313 + {
  1314 + "name": "Johannes M. Schmitt",
  1315 + "email": "schmittjoh@gmail.com",
  1316 + "homepage": "http://jmsyst.com",
  1317 + "role": "Developer of wrapped JMSSerializerBundle"
  1318 + }
  1319 + ],
  1320 + "description": "Toolset for generating PHP code",
  1321 + "keywords": [
  1322 + "code generation"
  1323 + ],
  1324 + "time": "2012-01-02 20:40:52"
  1325 + },
  1326 + {
  1327 + "name": "jms/di-extra-bundle",
  1328 + "version": "1.4.0",
  1329 + "target-dir": "JMS/DiExtraBundle",
  1330 + "source": {
  1331 + "type": "git",
  1332 + "url": "https://github.com/schmittjoh/JMSDiExtraBundle.git",
  1333 + "reference": "7fffdb6c96fb922a131af06d773e1e6c5301d070"
  1334 + },
  1335 + "dist": {
  1336 + "type": "zip",
  1337 + "url": "https://api.github.com/repos/schmittjoh/JMSDiExtraBundle/zipball/7fffdb6c96fb922a131af06d773e1e6c5301d070",
  1338 + "reference": "7fffdb6c96fb922a131af06d773e1e6c5301d070",
  1339 + "shasum": ""
  1340 + },
  1341 + "require": {
  1342 + "jms/aop-bundle": ">=1.0.0,<1.2-dev",
  1343 + "jms/metadata": "1.*",
  1344 + "symfony/finder": "~2.1",
  1345 + "symfony/framework-bundle": "~2.1",
  1346 + "symfony/process": "~2.1"
  1347 + },
  1348 + "require-dev": {
  1349 + "doctrine/doctrine-bundle": "*",
  1350 + "doctrine/orm": "*",
  1351 + "jms/security-extra-bundle": "1.*",
  1352 + "phpcollection/phpcollection": ">=0.1,<0.3-dev",
  1353 + "sensio/framework-extra-bundle": "*",
  1354 + "symfony/browser-kit": "*",
  1355 + "symfony/class-loader": "*",
  1356 + "symfony/form": "*",
  1357 + "symfony/security-bundle": "*",
  1358 + "symfony/twig-bundle": "*",
  1359 + "symfony/validator": "*",
  1360 + "symfony/yaml": "*"
  1361 + },
  1362 + "type": "symfony-bundle",
  1363 + "extra": {
  1364 + "branch-alias": {
  1365 + "dev-master": "1.3-dev"
  1366 + }
  1367 + },
  1368 + "autoload": {
  1369 + "psr-0": {
  1370 + "JMS\\DiExtraBundle": ""
  1371 + }
  1372 + },
  1373 + "notification-url": "https://packagist.org/downloads/",
  1374 + "license": [
  1375 + "Apache"
  1376 + ],
  1377 + "authors": [
  1378 + {
  1379 + "name": "Johannes M. Schmitt",
  1380 + "email": "schmittjoh@gmail.com",
  1381 + "homepage": "http://jmsyst.com",
  1382 + "role": "Developer of wrapped JMSSerializerBundle"
  1383 + }
  1384 + ],
  1385 + "description": "Allows to configure dependency injection using annotations",
  1386 + "homepage": "http://jmsyst.com/bundles/JMSDiExtraBundle",
  1387 + "keywords": [
  1388 + "annotations",
  1389 + "dependency injection"
  1390 + ],
  1391 + "time": "2013-06-08 13:13:40"
  1392 + },
  1393 + {
  1394 + "name": "jms/metadata",
  1395 + "version": "1.5.0",
  1396 + "source": {
  1397 + "type": "git",
  1398 + "url": "https://github.com/schmittjoh/metadata.git",
  1399 + "reference": "88ffa28bc987e4c26229fc84a2e541b6ed4e1459"
  1400 + },
  1401 + "dist": {
  1402 + "type": "zip",
  1403 + "url": "https://api.github.com/repos/schmittjoh/metadata/zipball/88ffa28bc987e4c26229fc84a2e541b6ed4e1459",
  1404 + "reference": "88ffa28bc987e4c26229fc84a2e541b6ed4e1459",
  1405 + "shasum": ""
  1406 + },
  1407 + "require": {
  1408 + "php": ">=5.3.0"
  1409 + },
  1410 + "require-dev": {
  1411 + "doctrine/cache": "~1.0"
  1412 + },
  1413 + "type": "library",
  1414 + "extra": {
  1415 + "branch-alias": {
  1416 + "dev-master": "1.5.x-dev"
  1417 + }
  1418 + },
  1419 + "autoload": {
  1420 + "psr-0": {
  1421 + "Metadata\\": "src/"
  1422 + }
  1423 + },
  1424 + "notification-url": "https://packagist.org/downloads/",
  1425 + "license": [
  1426 + "Apache"
  1427 + ],
  1428 + "authors": [
  1429 + {
  1430 + "name": "Johannes M. Schmitt",
  1431 + "email": "schmittjoh@gmail.com",
  1432 + "homepage": "http://jmsyst.com",
  1433 + "role": "Developer of wrapped JMSSerializerBundle"
  1434 + }
  1435 + ],
  1436 + "description": "Class/method/property metadata management in PHP",
  1437 + "keywords": [
  1438 + "annotations",
  1439 + "metadata",
  1440 + "xml",
  1441 + "yaml"
  1442 + ],
  1443 + "time": "2013-11-05 23:02:36"
  1444 + },
  1445 + {
  1446 + "name": "jms/parser-lib",
  1447 + "version": "1.0.0",
  1448 + "source": {
  1449 + "type": "git",
  1450 + "url": "https://github.com/schmittjoh/parser-lib.git",
  1451 + "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d"
  1452 + },
  1453 + "dist": {
  1454 + "type": "zip",
  1455 + "url": "https://api.github.com/repos/schmittjoh/parser-lib/zipball/c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1456 + "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1457 + "shasum": ""
  1458 + },
  1459 + "require": {
  1460 + "phpoption/phpoption": ">=0.9,<2.0-dev"
  1461 + },
  1462 + "type": "library",
  1463 + "extra": {
  1464 + "branch-alias": {
  1465 + "dev-master": "1.0-dev"
  1466 + }
  1467 + },
  1468 + "autoload": {
  1469 + "psr-0": {
  1470 + "JMS\\": "src/"
  1471 + }
  1472 + },
  1473 + "notification-url": "https://packagist.org/downloads/",
  1474 + "license": [
  1475 + "Apache2"
  1476 + ],
  1477 + "description": "A library for easily creating recursive-descent parsers.",
  1478 + "time": "2012-11-18 18:08:43"
  1479 + },
  1480 + {
  1481 + "name": "jms/security-extra-bundle",
  1482 + "version": "1.5.1",
  1483 + "target-dir": "JMS/SecurityExtraBundle",
  1484 + "source": {
  1485 + "type": "git",
  1486 + "url": "https://github.com/schmittjoh/JMSSecurityExtraBundle.git",
  1487 + "reference": "f5f6c6df69ceae8b709e57b49fcc2a42d9280bcc"
  1488 + },
  1489 + "dist": {
  1490 + "type": "zip",
  1491 + "url": "https://api.github.com/repos/schmittjoh/JMSSecurityExtraBundle/zipball/f5f6c6df69ceae8b709e57b49fcc2a42d9280bcc",
  1492 + "reference": "f5f6c6df69ceae8b709e57b49fcc2a42d9280bcc",
  1493 + "shasum": ""
  1494 + },
  1495 + "require": {
  1496 + "jms/aop-bundle": "~1.0",
  1497 + "jms/di-extra-bundle": "~1.3",
  1498 + "jms/metadata": "~1.0",
  1499 + "jms/parser-lib": "~1.0",
  1500 + "symfony/framework-bundle": "~2.1",
  1501 + "symfony/security-bundle": "*"
  1502 + },
  1503 + "require-dev": {
  1504 + "doctrine/doctrine-bundle": "*",
  1505 + "doctrine/orm": "*",
  1506 + "sensio/framework-extra-bundle": "*",
  1507 + "symfony/browser-kit": "*",
  1508 + "symfony/class-loader": "*",
  1509 + "symfony/css-selector": "*",
  1510 + "symfony/finder": "*",
  1511 + "symfony/form": "*",
  1512 + "symfony/process": "*",
  1513 + "symfony/twig-bundle": "*",
  1514 + "symfony/validator": "*",
  1515 + "symfony/yaml": "*"
  1516 + },
  1517 + "type": "symfony-bundle",
  1518 + "extra": {
  1519 + "branch-alias": {
  1520 + "dev-master": "1.4-dev"
  1521 + }
  1522 + },
  1523 + "autoload": {
  1524 + "psr-0": {
  1525 + "JMS\\SecurityExtraBundle": ""
  1526 + }
  1527 + },
  1528 + "notification-url": "https://packagist.org/downloads/",
  1529 + "license": [
  1530 + "Apache2"
  1531 + ],
  1532 + "authors": [
  1533 + {
  1534 + "name": "Johannes M. Schmitt",
  1535 + "email": "schmittjoh@gmail.com",
  1536 + "homepage": "http://jmsyst.com",
  1537 + "role": "Developer of wrapped JMSSerializerBundle"
  1538 + }
  1539 + ],
  1540 + "description": "Enhances the Symfony2 Security Component by adding several new features",
  1541 + "homepage": "http://jmsyst.com/bundles/JMSSecurityExtraBundle",
  1542 + "keywords": [
  1543 + "annotations",
  1544 + "authorization",
  1545 + "expression",
  1546 + "secure",
  1547 + "security"
  1548 + ],
  1549 + "time": "2013-06-09 10:29:54"
  1550 + },
  1551 + {
  1552 + "name": "jms/serializer",
  1553 + "version": "0.14.0",
  1554 + "source": {
  1555 + "type": "git",
  1556 + "url": "https://github.com/schmittjoh/serializer.git",
  1557 + "reference": "22daa254e54f4b69292bd8679d7a6f3a78dc85d4"
  1558 + },
  1559 + "dist": {
  1560 + "type": "zip",
  1561 + "url": "https://api.github.com/repos/schmittjoh/serializer/zipball/22daa254e54f4b69292bd8679d7a6f3a78dc85d4",
  1562 + "reference": "22daa254e54f4b69292bd8679d7a6f3a78dc85d4",
  1563 + "shasum": ""
  1564 + },
  1565 + "require": {
  1566 + "doctrine/annotations": "1.*",
  1567 + "jms/metadata": "~1.1",
  1568 + "jms/parser-lib": "1.*",
  1569 + "php": ">=5.3.2",
  1570 + "phpcollection/phpcollection": ">=0.1,<0.3-dev"
  1571 + },
  1572 + "require-dev": {
  1573 + "doctrine/orm": ">=2.1,<2.4-dev",
  1574 + "doctrine/phpcr-odm": "~1.0.1",
  1575 + "jackalope/jackalope-doctrine-dbal": "1.0.*",
  1576 + "propel/propel1": "~1.7",
  1577 + "symfony/filesystem": "2.*",
  1578 + "symfony/form": ">=2.1,<2.2-dev",
  1579 + "symfony/translation": ">=2.0,<2.2-dev",
  1580 + "symfony/validator": ">=2.0,<2.2-dev",
  1581 + "symfony/yaml": "2.*",
  1582 + "twig/twig": ">=1.8,<2.0-dev"
  1583 + },
  1584 + "suggest": {
  1585 + "symfony/yaml": "Required if you'd like to serialize data to YAML format."
  1586 + },
  1587 + "type": "library",
  1588 + "extra": {
  1589 + "branch-alias": {
  1590 + "dev-master": "0.14-dev"
  1591 + }
  1592 + },
  1593 + "autoload": {
  1594 + "psr-0": {
  1595 + "JMS\\Serializer": "src/"
  1596 + }
  1597 + },
  1598 + "notification-url": "https://packagist.org/downloads/",
  1599 + "license": [
  1600 + "Apache2"
  1601 + ],
  1602 + "authors": [
  1603 + {
  1604 + "name": "Johannes M. Schmitt",
  1605 + "email": "schmittjoh@gmail.com",
  1606 + "homepage": "http://jmsyst.com",
  1607 + "role": "Developer of wrapped JMSSerializerBundle"
  1608 + }
  1609 + ],
  1610 + "description": "Library for (de-)serializing data of any complexity; supports XML, JSON, and YAML.",
  1611 + "homepage": "http://jmsyst.com/libs/serializer",
  1612 + "keywords": [
  1613 + "deserialization",
  1614 + "jaxb",
  1615 + "json",
  1616 + "serialization",
  1617 + "xml"
  1618 + ],
  1619 + "time": "2013-12-04 16:46:05"
  1620 + },
  1621 + {
  1622 + "name": "jms/serializer-bundle",
  1623 + "version": "dev-master",
  1624 + "target-dir": "JMS/SerializerBundle",
  1625 + "source": {
  1626 + "type": "git",
  1627 + "url": "https://github.com/schmittjoh/JMSSerializerBundle.git",
  1628 + "reference": "ca66cd3ace6bea5367838c6dfb00a6a0bacb8a79"
  1629 + },
  1630 + "dist": {
  1631 + "type": "zip",
  1632 + "url": "https://api.github.com/repos/schmittjoh/JMSSerializerBundle/zipball/ca66cd3ace6bea5367838c6dfb00a6a0bacb8a79",
  1633 + "reference": "ca66cd3ace6bea5367838c6dfb00a6a0bacb8a79",
  1634 + "shasum": ""
  1635 + },
  1636 + "require": {
  1637 + "jms/serializer": "~0.11",
  1638 + "php": ">=5.3.2",
  1639 + "symfony/framework-bundle": "~2.1"
  1640 + },
  1641 + "require-dev": {
  1642 + "doctrine/doctrine-bundle": "*",
  1643 + "doctrine/orm": "*",
  1644 + "symfony/browser-kit": "*",
  1645 + "symfony/class-loader": "*",
  1646 + "symfony/css-selector": "*",
  1647 + "symfony/finder": "*",
  1648 + "symfony/form": "*",
  1649 + "symfony/process": "*",
  1650 + "symfony/twig-bundle": "*",
  1651 + "symfony/validator": "*",
  1652 + "symfony/yaml": "*"
  1653 + },
  1654 + "suggest": {
  1655 + "jms/di-extra-bundle": "Required to get lazy loading (de)serialization visitors, ~1.3"
  1656 + },
  1657 + "type": "symfony-bundle",
  1658 + "extra": {
  1659 + "branch-alias": {
  1660 + "dev-master": "0.13-dev"
  1661 + }
  1662 + },
  1663 + "autoload": {
  1664 + "psr-0": {
  1665 + "JMS\\SerializerBundle": ""
  1666 + }
  1667 + },
  1668 + "notification-url": "https://packagist.org/downloads/",
  1669 + "license": [
  1670 + "Apache2"
  1671 + ],
  1672 + "authors": [
  1673 + {
  1674 + "name": "Johannes M. Schmitt",
  1675 + "email": "schmittjoh@gmail.com",
  1676 + "homepage": "http://jmsyst.com",
  1677 + "role": "Developer of wrapped JMSSerializerBundle"
  1678 + }
  1679 + ],
  1680 + "description": "Allows you to easily serialize, and deserialize data of any complexity",
  1681 + "homepage": "http://jmsyst.com/bundles/JMSSerializerBundle",
  1682 + "keywords": [
  1683 + "deserialization",
  1684 + "jaxb",
  1685 + "json",
  1686 + "serialization",
  1687 + "xml"
  1688 + ],
  1689 + "time": "2014-02-09 12:04:09"
  1690 + },
  1691 + {
  1692 + "name": "jms/translation-bundle",
  1693 + "version": "dev-master",
  1694 + "target-dir": "JMS/TranslationBundle",
  1695 + "source": {
  1696 + "type": "git",
  1697 + "url": "https://github.com/schmittjoh/JMSTranslationBundle.git",
  1698 + "reference": "1c41baf3a0b8c6f0f3a3894c1adc0648ea651bc0"
  1699 + },
  1700 + "dist": {
  1701 + "type": "zip",
  1702 + "url": "https://api.github.com/repos/schmittjoh/JMSTranslationBundle/zipball/1c41baf3a0b8c6f0f3a3894c1adc0648ea651bc0",
  1703 + "reference": "1c41baf3a0b8c6f0f3a3894c1adc0648ea651bc0",
  1704 + "shasum": ""
  1705 + },
  1706 + "require": {
  1707 + "nikic/php-parser": "0.9.4",
  1708 + "symfony/console": "*",
  1709 + "symfony/framework-bundle": "~2.1"
  1710 + },
  1711 + "conflict": {
  1712 + "twig/twig": "1.10.2"
  1713 + },
  1714 + "require-dev": {
  1715 + "jms/di-extra-bundle": ">=1.1",
  1716 + "sensio/framework-extra-bundle": "*",
  1717 + "symfony/browser-kit": "*",
  1718 + "symfony/class-loader": "*",
  1719 + "symfony/css-selector": "*",
  1720 + "symfony/finder": "*",
  1721 + "symfony/form": "*",
  1722 + "symfony/process": "*",
  1723 + "symfony/security": "*",
  1724 + "symfony/twig-bundle": "*",
  1725 + "symfony/validator": "*",
  1726 + "symfony/yaml": "*"
  1727 + },
  1728 + "type": "symfony-bundle",
  1729 + "extra": {
  1730 + "branch-alias": {
  1731 + "dev-master": "1.1-dev"
  1732 + }
  1733 + },
  1734 + "autoload": {
  1735 + "psr-0": {
  1736 + "JMS\\TranslationBundle": ""
  1737 + }
  1738 + },
  1739 + "notification-url": "https://packagist.org/downloads/",
  1740 + "license": [
  1741 + "Apache2"
  1742 + ],
  1743 + "authors": [
  1744 + {
  1745 + "name": "Johannes M. Schmitt",
  1746 + "email": "schmittjoh@gmail.com",
  1747 + "homepage": "https://github.com/schmittjoh",
  1748 + "role": "Developer of wrapped JMSSerializerBundle"
  1749 + }
  1750 + ],
  1751 + "description": "Puts the Symfony2 Translation Component on steroids",
  1752 + "homepage": "http://jmsyst.com/bundles/JMSTranslationBundle",
  1753 + "keywords": [
  1754 + "extract",
  1755 + "extraction",
  1756 + "i18n",
  1757 + "interface",
  1758 + "multilanguage",
  1759 + "translation",
  1760 + "ui",
  1761 + "webinterface"
  1762 + ],
  1763 + "time": "2014-02-17 15:05:26"
  1764 + },
  1765 + {
  1766 + "name": "jpgraph/jpgraph",
  1767 + "version": "dev-master",
  1768 + "source": {
  1769 + "type": "git",
  1770 + "url": "https://github.com/ztec/JpGraph.git",
  1771 + "reference": "ad26df5941e847cf1255aecd2011ce16207304cf"
  1772 + },
  1773 + "dist": {
  1774 + "type": "zip",
  1775 + "url": "https://api.github.com/repos/ztec/JpGraph/zipball/ad26df5941e847cf1255aecd2011ce16207304cf",
  1776 + "reference": "ad26df5941e847cf1255aecd2011ce16207304cf",
  1777 + "shasum": ""
  1778 + },
  1779 + "type": "library",
  1780 + "autoload": {
  1781 + "psr-0": {
  1782 + "JpGraph": "lib/"
  1783 + }
  1784 + },
  1785 + "notification-url": "https://packagist.org/downloads/",
  1786 + "license": [
  1787 + "QPL 1.0"
  1788 + ],
  1789 + "authors": [
  1790 + {
  1791 + "name": "JpGraph team"
  1792 + }
  1793 + ],
  1794 + "description": "jpGraph, library to make graphs and charts",
  1795 + "homepage": "http://jpgraph.net/",
  1796 + "keywords": [
  1797 + "chart",
  1798 + "data",
  1799 + "graph",
  1800 + "jpgraph",
  1801 + "pie"
  1802 + ],
  1803 + "time": "2013-05-23 14:04:00"
  1804 + },
  1805 + {
  1806 + "name": "jquery/jquery",
  1807 + "version": "1.10.2",
  1808 + "dist": {
  1809 + "type": "file",
  1810 + "url": "http://code.jquery.com/jquery-1.10.2.js",
  1811 + "reference": null,
  1812 + "shasum": null
  1813 + },
  1814 + "type": "library"
  1815 + },
  1816 + {
  1817 + "name": "knplabs/knp-components",
  1818 + "version": "1.2.5",
  1819 + "source": {
  1820 + "type": "git",
  1821 + "url": "https://github.com/KnpLabs/knp-components.git",
  1822 + "reference": "8803fdaa18bd24bd158143e3d9099f4b243a31dd"
  1823 + },
  1824 + "dist": {
  1825 + "type": "zip",
  1826 + "url": "https://api.github.com/repos/KnpLabs/knp-components/zipball/8803fdaa18bd24bd158143e3d9099f4b243a31dd",
  1827 + "reference": "8803fdaa18bd24bd158143e3d9099f4b243a31dd",
  1828 + "shasum": ""
  1829 + },
  1830 + "require": {
  1831 + "php": ">=5.3.2"
  1832 + },
  1833 + "suggest": {
  1834 + "doctrine/common": "to allow usage pagination with Doctrine ArrayCollection",
  1835 + "doctrine/mongodb-odm": "to allow usage pagination with Doctrine ODM MongoDB",
  1836 + "doctrine/orm": "to allow usage pagination with Doctrine ORM",
  1837 + "propel/propel1": "to allow usage pagination with Propel ORM",
  1838 + "ruflin/Elastica": "to allow usage pagination with ElasticSearch Client",
  1839 + "solarium/solarium": "to allow usage pagination with Solarium Client"
  1840 + },
  1841 + "type": "library",
  1842 + "extra": {
  1843 + "branch-alias": {
  1844 + "dev-master": "1.2.x-dev"
  1845 + }
  1846 + },
  1847 + "autoload": {
  1848 + "psr-0": {
  1849 + "Knp\\Component": "src/"
  1850 + }
  1851 + },
  1852 + "notification-url": "https://packagist.org/downloads/",
  1853 + "license": [
  1854 + "MIT"
  1855 + ],
  1856 + "authors": [
  1857 + {
  1858 + "name": "KnpLabs Team",
  1859 + "homepage": "http://knplabs.com"
  1860 + },
  1861 + {
  1862 + "name": "Symfony Community",
  1863 + "homepage": "http://github.com/KnpLabs/knp-components/contributors"
  1864 + }
  1865 + ],
  1866 + "description": "Knplabs component library",
  1867 + "homepage": "http://github.com/KnpLabs/knp-components",
  1868 + "keywords": [
  1869 + "components",
  1870 + "knp",
  1871 + "knplabs",
  1872 + "pager",
  1873 + "paginator"
  1874 + ],
  1875 + "time": "2014-01-09 16:23:31"
  1876 + },
  1877 + {
  1878 + "name": "knplabs/knp-menu",
  1879 + "version": "dev-master",
  1880 + "source": {
  1881 + "type": "git",
  1882 + "url": "https://github.com/KnpLabs/KnpMenu.git",
  1883 + "reference": "777f70f168cd49c0be27936d716fe57835eaa9ae"
  1884 + },
  1885 + "dist": {
  1886 + "type": "zip",
  1887 + "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/777f70f168cd49c0be27936d716fe57835eaa9ae",
  1888 + "reference": "777f70f168cd49c0be27936d716fe57835eaa9ae",
  1889 + "shasum": ""
  1890 + },
  1891 + "require": {
  1892 + "php": ">=5.3.0"
  1893 + },
  1894 + "require-dev": {
  1895 + "pimple/pimple": "1.0.*",
  1896 + "silex/silex": "1.0.*",
  1897 + "twig/twig": ">=1.2,<2.0-dev"
  1898 + },
  1899 + "suggest": {
  1900 + "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  1901 + "silex/silex": "for the integration with your silex application",
  1902 + "twig/twig": "for the TwigRenderer and the integration with your templates"
  1903 + },
  1904 + "type": "library",
  1905 + "extra": {
  1906 + "branch-alias": {
  1907 + "dev-master": "2.0.x-dev"
  1908 + }
  1909 + },
  1910 + "autoload": {
  1911 + "psr-0": {
  1912 + "Knp\\Menu\\": "src/"
  1913 + }
  1914 + },
  1915 + "notification-url": "https://packagist.org/downloads/",
  1916 + "license": [
  1917 + "MIT"
  1918 + ],
  1919 + "authors": [
  1920 + {
  1921 + "name": "Christophe Coevoet",
  1922 + "email": "stof@notk.org"
  1923 + },
  1924 + {
  1925 + "name": "KnpLabs",
  1926 + "homepage": "http://knplabs.com"
  1927 + },
  1928 + {
  1929 + "name": "Symfony Community",
  1930 + "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  1931 + }
  1932 + ],
  1933 + "description": "An object oriented menu library",
  1934 + "homepage": "http://knplabs.com",
  1935 + "keywords": [
  1936 + "menu",
  1937 + "tree"
  1938 + ],
  1939 + "time": "2014-04-05 12:43:14"
  1940 + },
  1941 + {
  1942 + "name": "knplabs/knp-menu-bundle",
  1943 + "version": "dev-master",
  1944 + "target-dir": "Knp/Bundle/MenuBundle",
  1945 + "source": {
  1946 + "type": "git",
  1947 + "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  1948 + "reference": "e5700ed8cbd5c402d24d6dda118aa23400937288"
  1949 + },
  1950 + "dist": {
  1951 + "type": "zip",
  1952 + "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/e5700ed8cbd5c402d24d6dda118aa23400937288",
  1953 + "reference": "e5700ed8cbd5c402d24d6dda118aa23400937288",
  1954 + "shasum": ""
  1955 + },
  1956 + "require": {
  1957 + "knplabs/knp-menu": "~2.0, >=2.0.0-beta1",
  1958 + "symfony/framework-bundle": "~2.0"
  1959 + },
  1960 + "type": "symfony-bundle",
  1961 + "extra": {
  1962 + "branch-alias": {
  1963 + "dev-master": "2.0.x-dev"
  1964 + }
  1965 + },
  1966 + "autoload": {
  1967 + "psr-0": {
  1968 + "Knp\\Bundle\\MenuBundle": ""
  1969 + }
  1970 + },
  1971 + "notification-url": "https://packagist.org/downloads/",
  1972 + "license": [
  1973 + "MIT"
  1974 + ],
  1975 + "authors": [
  1976 + {
  1977 + "name": "Christophe Coevoet",
  1978 + "email": "stof@notk.org"
  1979 + },
  1980 + {
  1981 + "name": "Knplabs",
  1982 + "homepage": "http://knplabs.com"
  1983 + },
  1984 + {
  1985 + "name": "Symfony Community",
  1986 + "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  1987 + }
  1988 + ],
  1989 + "description": "This bundle provides an integration of the KnpMenu library",
  1990 + "keywords": [
  1991 + "menu"
  1992 + ],
  1993 + "time": "2014-03-03 22:44:01"
  1994 + },
  1995 + {
  1996 + "name": "knplabs/knp-paginator-bundle",
  1997 + "version": "dev-master",
  1998 + "target-dir": "Knp/Bundle/PaginatorBundle",
  1999 + "source": {
  2000 + "type": "git",
  2001 + "url": "https://github.com/KnpLabs/KnpPaginatorBundle.git",
  2002 + "reference": "7ea961c9ef60343a359f513c9fec7fd3bb65ddcb"
  2003 + },
  2004 + "dist": {
  2005 + "type": "zip",
  2006 + "url": "https://api.github.com/repos/KnpLabs/KnpPaginatorBundle/zipball/7ea961c9ef60343a359f513c9fec7fd3bb65ddcb",
  2007 + "reference": "7ea961c9ef60343a359f513c9fec7fd3bb65ddcb",
  2008 + "shasum": ""
  2009 + },
  2010 + "require": {
  2011 + "knplabs/knp-components": "~1.2",
  2012 + "php": ">=5.3.3",
  2013 + "symfony/framework-bundle": "~2.0",
  2014 + "twig/twig": "~1.5"
  2015 + },
  2016 + "type": "symfony-bundle",
  2017 + "extra": {
  2018 + "branch-alias": {
  2019 + "dev-master": "2.4.x-dev"
  2020 + }
  2021 + },
  2022 + "autoload": {
  2023 + "psr-0": {
  2024 + "Knp\\Bundle\\PaginatorBundle": ""
  2025 + }
  2026 + },
  2027 + "notification-url": "https://packagist.org/downloads/",
  2028 + "license": [
  2029 + "MIT"
  2030 + ],
  2031 + "authors": [
  2032 + {
  2033 + "name": "KnpLabs Team",
  2034 + "homepage": "http://knplabs.com"
  2035 + },
  2036 + {
  2037 + "name": "Symfony2 Community",
  2038 + "homepage": "http://github.com/KnpLabs/KnpPaginatorBundle/contributors"
  2039 + }
  2040 + ],
  2041 + "description": "Paginator bundle for Symfony2 to automate pagination and simplify sorting and other features",
  2042 + "homepage": "http://github.com/KnpLabs/KnpPaginatorBundle",
  2043 + "keywords": [
  2044 + "Symfony2",
  2045 + "bundle",
  2046 + "knp",
  2047 + "knplabs",
  2048 + "pager",
  2049 + "pagination",
  2050 + "paginator"
  2051 + ],
  2052 + "time": "2014-03-04 08:53:05"
  2053 + },
  2054 + {
  2055 + "name": "kriswallsmith/assetic",
  2056 + "version": "v1.1.1",
  2057 + "source": {
  2058 + "type": "git",
  2059 + "url": "https://github.com/kriswallsmith/assetic.git",
  2060 + "reference": "a826e4b96f5c607ff47ef61caf3826b2b1e840ec"
  2061 + },
  2062 + "dist": {
  2063 + "type": "zip",
  2064 + "url": "https://api.github.com/repos/kriswallsmith/assetic/zipball/a826e4b96f5c607ff47ef61caf3826b2b1e840ec",
  2065 + "reference": "a826e4b96f5c607ff47ef61caf3826b2b1e840ec",
  2066 + "shasum": ""
  2067 + },
  2068 + "require": {
  2069 + "php": ">=5.3.1",
  2070 + "symfony/process": "~2.1"
  2071 + },
  2072 + "require-dev": {
  2073 + "cssmin/cssmin": "*",
  2074 + "joliclic/javascript-packer": "*",
  2075 + "kamicane/packager": "*",
  2076 + "leafo/lessphp": "*",
  2077 + "leafo/scssphp": "*",
  2078 + "leafo/scssphp-compass": "*",
  2079 + "mrclay/minify": "*",
  2080 + "phpunit/phpunit": "~3.7",
  2081 + "ptachoire/cssembed": "*",
  2082 + "twig/twig": "~1.6"
  2083 + },
  2084 + "suggest": {
  2085 + "leafo/lessphp": "Assetic provides the integration with the lessphp LESS compiler",
  2086 + "leafo/scssphp": "Assetic provides the integration with the scssphp SCSS compiler",
  2087 + "leafo/scssphp-compass": "Assetic provides the integration with the SCSS compass plugin",
  2088 + "ptachoire/cssembed": "Assetic provides the integration with phpcssembed to embed data uris",
  2089 + "twig/twig": "Assetic provides the integration with the Twig templating engine"
  2090 + },
  2091 + "type": "library",
  2092 + "extra": {
  2093 + "branch-alias": {
  2094 + "dev-master": "1.1-dev"
  2095 + }
  2096 + },
  2097 + "autoload": {
  2098 + "psr-0": {
  2099 + "Assetic": "src/"
  2100 + },
  2101 + "files": [
  2102 + "src/functions.php"
  2103 + ]
  2104 + },
  2105 + "notification-url": "https://packagist.org/downloads/",
  2106 + "license": [
  2107 + "MIT"
  2108 + ],
  2109 + "authors": [
  2110 + {
  2111 + "name": "Kris Wallsmith",
  2112 + "email": "kris.wallsmith@gmail.com",
  2113 + "homepage": "http://kriswallsmith.net/"
  2114 + }
  2115 + ],
  2116 + "description": "Asset Management for PHP",
  2117 + "homepage": "https://github.com/kriswallsmith/assetic",
  2118 + "keywords": [
  2119 + "assets",
  2120 + "compression",
  2121 + "minification"
  2122 + ],
  2123 + "time": "2013-06-01 22:13:43"
  2124 + },
  2125 + {
  2126 + "name": "leafo/lessphp",
  2127 + "version": "v0.4.0",
  2128 + "source": {
  2129 + "type": "git",
  2130 + "url": "https://github.com/leafo/lessphp.git",
  2131 + "reference": "51f3f06f0fe78a722dabfd14578444bdd078d9de"
  2132 + },
  2133 + "dist": {
  2134 + "type": "zip",
  2135 + "url": "https://api.github.com/repos/leafo/lessphp/zipball/51f3f06f0fe78a722dabfd14578444bdd078d9de",
  2136 + "reference": "51f3f06f0fe78a722dabfd14578444bdd078d9de",
  2137 + "shasum": ""
  2138 + },
  2139 + "type": "library",
  2140 + "extra": {
  2141 + "branch-alias": {
  2142 + "dev-master": "0.3-dev"
  2143 + }
  2144 + },
  2145 + "autoload": {
  2146 + "classmap": [
  2147 + "lessc.inc.php"
  2148 + ]
  2149 + },
  2150 + "notification-url": "https://packagist.org/downloads/",
  2151 + "license": [
  2152 + "MIT",
  2153 + "GPL-3.0"
  2154 + ],
  2155 + "authors": [
  2156 + {
  2157 + "name": "Leaf Corcoran",
  2158 + "email": "leafot@gmail.com",
  2159 + "homepage": "http://leafo.net"
  2160 + }
  2161 + ],
  2162 + "description": "lessphp is a compiler for LESS written in PHP.",
  2163 + "homepage": "http://leafo.net/lessphp/",
  2164 + "time": "2013-08-09 17:09:19"
  2165 + },
  2166 + {
  2167 + "name": "lightbase/cocar",
  2168 + "version": "dev-master",
  2169 + "target-dir": "Swpb/Bundle/CocarBundle",
  2170 + "source": {
  2171 + "type": "git",
  2172 + "url": "https://github.com/lightbase/cocar.git",
  2173 + "reference": "8465bec2675d2f6b96b60a9ef59a95f4c25ef54e"
  2174 + },
  2175 + "dist": {
  2176 + "type": "zip",
  2177 + "url": "https://api.github.com/repos/lightbase/cocar/zipball/8465bec2675d2f6b96b60a9ef59a95f4c25ef54e",
  2178 + "reference": "8465bec2675d2f6b96b60a9ef59a95f4c25ef54e",
  2179 + "shasum": ""
  2180 + },
  2181 + "require": {
  2182 + "ddeboer/data-import-bundle": "dev-master",
  2183 + "jpgraph/jpgraph": "dev-master",
  2184 + "php": ">=5.3.2"
  2185 + },
  2186 + "type": "project",
  2187 + "extra": {
  2188 + "symfony-app-dir": "app",
  2189 + "symfony-web-dir": "web",
  2190 + "incenteev-parameters": {
  2191 + "file": "app/config/parameters.yml"
  2192 + },
  2193 + "branch-alias": {
  2194 + "dev-master": "2.0-dev"
  2195 + }
  2196 + },
  2197 + "autoload": {
  2198 + "psr-0": {
  2199 + "Swpb\\Bundle\\CocarBundle": ""
  2200 + }
  2201 + },
  2202 + "license": [
  2203 + "CC-GPL 2.0"
  2204 + ],
  2205 + "description": "COCAR",
  2206 + "support": {
  2207 + "source": "https://github.com/lightbase/cocar/tree/master"
  2208 + },
  2209 + "time": "2014-03-29 05:16:50"
  2210 + },
  2211 + {
  2212 + "name": "monolog/monolog",
  2213 + "version": "1.8.0",
  2214 + "source": {
  2215 + "type": "git",
  2216 + "url": "https://github.com/Seldaek/monolog.git",
  2217 + "reference": "392ef35fd470638e08d0160d6b1cbab63cb23174"
  2218 + },
  2219 + "dist": {
  2220 + "type": "zip",
  2221 + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/392ef35fd470638e08d0160d6b1cbab63cb23174",
  2222 + "reference": "392ef35fd470638e08d0160d6b1cbab63cb23174",
  2223 + "shasum": ""
  2224 + },
  2225 + "require": {
  2226 + "php": ">=5.3.0",
  2227 + "psr/log": "~1.0"
  2228 + },
  2229 + "require-dev": {
  2230 + "aws/aws-sdk-php": "~2.4, >2.4.8",
  2231 + "doctrine/couchdb": "~1.0@dev",
  2232 + "graylog2/gelf-php": "~1.0",
  2233 + "phpunit/phpunit": "~3.7.0",
  2234 + "raven/raven": "~0.5",
  2235 + "ruflin/elastica": "0.90.*"
  2236 + },
  2237 + "suggest": {
  2238 + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2239 + "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2240 + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2241 + "ext-mongo": "Allow sending log messages to a MongoDB server",
  2242 + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2243 + "raven/raven": "Allow sending log messages to a Sentry server",
  2244 + "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2245 + "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2246 + },
  2247 + "type": "library",
  2248 + "extra": {
  2249 + "branch-alias": {
  2250 + "dev-master": "1.8.x-dev"
  2251 + }
  2252 + },
  2253 + "autoload": {
  2254 + "psr-4": {
  2255 + "Monolog\\": "src/Monolog"
  2256 + }
  2257 + },
  2258 + "notification-url": "https://packagist.org/downloads/",
  2259 + "license": [
  2260 + "MIT"
  2261 + ],
  2262 + "authors": [
  2263 + {
  2264 + "name": "Jordi Boggiano",
  2265 + "email": "j.boggiano@seld.be",
  2266 + "homepage": "http://seld.be",
  2267 + "role": "Developer"
  2268 + }
  2269 + ],
  2270 + "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2271 + "homepage": "http://github.com/Seldaek/monolog",
  2272 + "keywords": [
  2273 + "log",
  2274 + "logging",
  2275 + "psr-3"
  2276 + ],
  2277 + "time": "2014-03-23 19:50:26"
  2278 + },
  2279 + {
  2280 + "name": "nikic/php-parser",
  2281 + "version": "v0.9.4",
  2282 + "source": {
  2283 + "type": "git",
  2284 + "url": "https://github.com/nikic/PHP-Parser.git",
  2285 + "reference": "1e5e280ae88a27effa2ae4aa2bd088494ed8594f"
  2286 + },
  2287 + "dist": {
  2288 + "type": "zip",
  2289 + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1e5e280ae88a27effa2ae4aa2bd088494ed8594f",
  2290 + "reference": "1e5e280ae88a27effa2ae4aa2bd088494ed8594f",
  2291 + "shasum": ""
  2292 + },
  2293 + "require": {
  2294 + "php": ">=5.2"
  2295 + },
  2296 + "type": "library",
  2297 + "extra": {
  2298 + "branch-alias": {
  2299 + "dev-master": "0.9-dev"
  2300 + }
  2301 + },
  2302 + "autoload": {
  2303 + "psr-0": {
  2304 + "PHPParser": "lib/"
  2305 + }
  2306 + },
  2307 + "notification-url": "https://packagist.org/downloads/",
  2308 + "license": [
  2309 + "BSD-3-Clause"
  2310 + ],
  2311 + "authors": [
  2312 + {
  2313 + "name": "Nikita Popov"
  2314 + }
  2315 + ],
  2316 + "description": "A PHP parser written in PHP",
  2317 + "keywords": [
  2318 + "parser",
  2319 + "php"
  2320 + ],
  2321 + "time": "2013-08-25 17:11:40"
  2322 + },
  2323 + {
  2324 + "name": "phpcollection/phpcollection",
  2325 + "version": "0.2.0",
  2326 + "source": {
  2327 + "type": "git",
  2328 + "url": "https://github.com/schmittjoh/php-collection.git",
  2329 + "reference": "acb02a921bb364f360ce786b13455345063c4a07"
  2330 + },
  2331 + "dist": {
  2332 + "type": "zip",
  2333 + "url": "https://api.github.com/repos/schmittjoh/php-collection/zipball/acb02a921bb364f360ce786b13455345063c4a07",
  2334 + "reference": "acb02a921bb364f360ce786b13455345063c4a07",
  2335 + "shasum": ""
  2336 + },
  2337 + "require": {
  2338 + "phpoption/phpoption": "1.*"
  2339 + },
  2340 + "type": "library",
  2341 + "extra": {
  2342 + "branch-alias": {
  2343 + "dev-master": "0.2-dev"
  2344 + }
  2345 + },
  2346 + "autoload": {
  2347 + "psr-0": {
  2348 + "PhpCollection": "src/"
  2349 + }
  2350 + },
  2351 + "notification-url": "https://packagist.org/downloads/",
  2352 + "license": [
  2353 + "Apache2"
  2354 + ],
  2355 + "authors": [
  2356 + {
  2357 + "name": "Johannes M. Schmitt",
  2358 + "email": "schmittjoh@gmail.com",
  2359 + "homepage": "http://jmsyst.com",
  2360 + "role": "Developer of wrapped JMSSerializerBundle"
  2361 + }
  2362 + ],
  2363 + "description": "General-Purpose Collection Library for PHP",
  2364 + "keywords": [
  2365 + "collection",
  2366 + "list",
  2367 + "map",
  2368 + "sequence",
  2369 + "set"
  2370 + ],
  2371 + "time": "2013-01-23 15:16:14"
  2372 + },
  2373 + {
  2374 + "name": "phpoption/phpoption",
  2375 + "version": "1.4.0",
  2376 + "source": {
  2377 + "type": "git",
  2378 + "url": "https://github.com/schmittjoh/php-option.git",
  2379 + "reference": "5d099bcf0393908bf4ad69cc47dafb785d51f7f5"
  2380 + },
  2381 + "dist": {
  2382 + "type": "zip",
  2383 + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/5d099bcf0393908bf4ad69cc47dafb785d51f7f5",
  2384 + "reference": "5d099bcf0393908bf4ad69cc47dafb785d51f7f5",
  2385 + "shasum": ""
  2386 + },
  2387 + "require": {
  2388 + "php": ">=5.3.0"
  2389 + },
  2390 + "type": "library",
  2391 + "extra": {
  2392 + "branch-alias": {
  2393 + "dev-master": "1.3-dev"
  2394 + }
  2395 + },
  2396 + "autoload": {
  2397 + "psr-0": {
  2398 + "PhpOption\\": "src/"
  2399 + }
  2400 + },
  2401 + "notification-url": "https://packagist.org/downloads/",
  2402 + "license": [
  2403 + "Apache2"
  2404 + ],
  2405 + "authors": [
  2406 + {
  2407 + "name": "Johannes M. Schmitt",
  2408 + "email": "schmittjoh@gmail.com",
  2409 + "homepage": "http://jmsyst.com",
  2410 + "role": "Developer of wrapped JMSSerializerBundle"
  2411 + }
  2412 + ],
  2413 + "description": "Option Type for PHP",
  2414 + "keywords": [
  2415 + "language",
  2416 + "option",
  2417 + "php",
  2418 + "type"
  2419 + ],
  2420 + "time": "2014-01-09 22:37:17"
  2421 + },
  2422 + {
  2423 + "name": "psr/log",
  2424 + "version": "1.0.0",
  2425 + "source": {
  2426 + "type": "git",
  2427 + "url": "https://github.com/php-fig/log.git",
  2428 + "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  2429 + },
  2430 + "dist": {
  2431 + "type": "zip",
  2432 + "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  2433 + "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  2434 + "shasum": ""
  2435 + },
  2436 + "type": "library",
  2437 + "autoload": {
  2438 + "psr-0": {
  2439 + "Psr\\Log\\": ""
  2440 + }
  2441 + },
  2442 + "notification-url": "https://packagist.org/downloads/",
  2443 + "license": [
  2444 + "MIT"
  2445 + ],
  2446 + "authors": [
  2447 + {
  2448 + "name": "PHP-FIG",
  2449 + "homepage": "http://www.php-fig.org/"
  2450 + }
  2451 + ],
  2452 + "description": "Common interface for logging libraries",
  2453 + "keywords": [
  2454 + "log",
  2455 + "psr",
  2456 + "psr-3"
  2457 + ],
  2458 + "time": "2012-12-21 11:40:51"
  2459 + },
  2460 + {
  2461 + "name": "sensio/distribution-bundle",
  2462 + "version": "v2.3.4",
  2463 + "target-dir": "Sensio/Bundle/DistributionBundle",
  2464 + "source": {
  2465 + "type": "git",
  2466 + "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  2467 + "reference": "66df91b4bd637a83299d8072aed3658bfd3b3021"
  2468 + },
  2469 + "dist": {
  2470 + "type": "zip",
  2471 + "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/66df91b4bd637a83299d8072aed3658bfd3b3021",
  2472 + "reference": "66df91b4bd637a83299d8072aed3658bfd3b3021",
  2473 + "shasum": ""
  2474 + },
  2475 + "require": {
  2476 + "symfony/framework-bundle": "~2.2"
  2477 + },
  2478 + "type": "symfony-bundle",
  2479 + "extra": {
  2480 + "branch-alias": {
  2481 + "dev-master": "2.3.x-dev"
  2482 + }
  2483 + },
  2484 + "autoload": {
  2485 + "psr-0": {
  2486 + "Sensio\\Bundle\\DistributionBundle": ""
  2487 + }
  2488 + },
  2489 + "notification-url": "https://packagist.org/downloads/",
  2490 + "license": [
  2491 + "MIT"
  2492 + ],
  2493 + "authors": [
  2494 + {
  2495 + "name": "Fabien Potencier",
  2496 + "email": "fabien@symfony.com",
  2497 + "homepage": "http://fabien.potencier.org",
  2498 + "role": "Lead Developer"
  2499 + }
  2500 + ],
  2501 + "description": "The base bundle for the Symfony Distributions",
  2502 + "keywords": [
  2503 + "configuration",
  2504 + "distribution"
  2505 + ],
  2506 + "time": "2013-08-22 05:04:53"
  2507 + },
  2508 + {
  2509 + "name": "sensio/framework-extra-bundle",
  2510 + "version": "v2.3.4",
  2511 + "target-dir": "Sensio/Bundle/FrameworkExtraBundle",
  2512 + "source": {
  2513 + "type": "git",
  2514 + "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2515 + "reference": "cce05719041d952bbec856789ca18646a1891d03"
  2516 + },
  2517 + "dist": {
  2518 + "type": "zip",
  2519 + "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/cce05719041d952bbec856789ca18646a1891d03",
  2520 + "reference": "cce05719041d952bbec856789ca18646a1891d03",
  2521 + "shasum": ""
  2522 + },
  2523 + "require": {
  2524 + "doctrine/common": "~2.2",
  2525 + "symfony/framework-bundle": "~2.2"
  2526 + },
  2527 + "type": "symfony-bundle",
  2528 + "extra": {
  2529 + "branch-alias": {
  2530 + "dev-master": "2.3.x-dev"
  2531 + }
  2532 + },
  2533 + "autoload": {
  2534 + "psr-0": {
  2535 + "Sensio\\Bundle\\FrameworkExtraBundle": ""
  2536 + }
  2537 + },
  2538 + "notification-url": "https://packagist.org/downloads/",
  2539 + "license": [
  2540 + "MIT"
  2541 + ],
  2542 + "authors": [
  2543 + {
  2544 + "name": "Fabien Potencier",
  2545 + "email": "fabien@symfony.com",
  2546 + "homepage": "http://fabien.potencier.org",
  2547 + "role": "Lead Developer"
  2548 + }
  2549 + ],
  2550 + "description": "This bundle provides a way to configure your controllers with annotations",
  2551 + "keywords": [
  2552 + "annotations",
  2553 + "controllers"
  2554 + ],
  2555 + "time": "2013-07-24 08:49:53"
  2556 + },
  2557 + {
  2558 + "name": "sensio/generator-bundle",
  2559 + "version": "v2.3.4",
  2560 + "target-dir": "Sensio/Bundle/GeneratorBundle",
  2561 + "source": {
  2562 + "type": "git",
  2563 + "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  2564 + "reference": "4a7b126e9c22f858e3584b19ddce6e5bdd7677ee"
  2565 + },
  2566 + "dist": {
  2567 + "type": "zip",
  2568 + "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/4a7b126e9c22f858e3584b19ddce6e5bdd7677ee",
  2569 + "reference": "4a7b126e9c22f858e3584b19ddce6e5bdd7677ee",
  2570 + "shasum": ""
  2571 + },
  2572 + "require": {
  2573 + "symfony/console": "~2.0",
  2574 + "symfony/framework-bundle": "~2.2"
  2575 + },
  2576 + "require-dev": {
  2577 + "doctrine/orm": "~2.2,>=2.2.3",
  2578 + "symfony/doctrine-bridge": "~2.2",
  2579 + "twig/twig": "~1.11"
  2580 + },
  2581 + "type": "symfony-bundle",
  2582 + "extra": {
  2583 + "branch-alias": {
  2584 + "dev-master": "2.3.x-dev"
  2585 + }
  2586 + },
  2587 + "autoload": {
  2588 + "psr-0": {
  2589 + "Sensio\\Bundle\\GeneratorBundle": ""
  2590 + }
  2591 + },
  2592 + "notification-url": "https://packagist.org/downloads/",
  2593 + "license": [
  2594 + "MIT"
  2595 + ],
  2596 + "authors": [
  2597 + {
  2598 + "name": "Fabien Potencier",
  2599 + "email": "fabien@symfony.com",
  2600 + "homepage": "http://fabien.potencier.org",
  2601 + "role": "Lead Developer"
  2602 + }
  2603 + ],
  2604 + "description": "This bundle generates code for you",
  2605 + "time": "2013-08-21 18:09:35"
  2606 + },
  2607 + {
  2608 + "name": "swiftmailer/swiftmailer",
  2609 + "version": "v5.1.0",
  2610 + "source": {
  2611 + "type": "git",
  2612 + "url": "https://github.com/swiftmailer/swiftmailer.git",
  2613 + "reference": "748c01c1144713ac0118396935d10b6ceec91b68"
  2614 + },
  2615 + "dist": {
  2616 + "type": "zip",
  2617 + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/748c01c1144713ac0118396935d10b6ceec91b68",
  2618 + "reference": "748c01c1144713ac0118396935d10b6ceec91b68",
  2619 + "shasum": ""
  2620 + },
  2621 + "require": {
  2622 + "php": ">=5.2.4"
  2623 + },
  2624 + "type": "library",
  2625 + "extra": {
  2626 + "branch-alias": {
  2627 + "dev-master": "5.1-dev"
  2628 + }
  2629 + },
  2630 + "autoload": {
  2631 + "files": [
  2632 + "lib/swift_required.php"
  2633 + ]
  2634 + },
  2635 + "notification-url": "https://packagist.org/downloads/",
  2636 + "license": [
  2637 + "MIT"
  2638 + ],
  2639 + "authors": [
  2640 + {
  2641 + "name": "Fabien Potencier",
  2642 + "email": "fabien@symfony.com",
  2643 + "homepage": "http://fabien.potencier.org",
  2644 + "role": "Lead Developer"
  2645 + },
  2646 + {
  2647 + "name": "Chris Corbyn"
  2648 + }
  2649 + ],
  2650 + "description": "Swiftmailer, free feature-rich PHP mailer",
  2651 + "homepage": "http://swiftmailer.org",
  2652 + "keywords": [
  2653 + "mail",
  2654 + "mailer"
  2655 + ],
  2656 + "time": "2014-03-18 09:03:27"
  2657 + },
  2658 + {
  2659 + "name": "symfony/assetic-bundle",
  2660 + "version": "v2.3.0",
  2661 + "target-dir": "Symfony/Bundle/AsseticBundle",
  2662 + "source": {
  2663 + "type": "git",
  2664 + "url": "https://github.com/symfony/AsseticBundle.git",
  2665 + "reference": "146dd3cb46b302bd471560471c6aaa930483dac1"
  2666 + },
  2667 + "dist": {
  2668 + "type": "zip",
  2669 + "url": "https://api.github.com/repos/symfony/AsseticBundle/zipball/146dd3cb46b302bd471560471c6aaa930483dac1",
  2670 + "reference": "146dd3cb46b302bd471560471c6aaa930483dac1",
  2671 + "shasum": ""
  2672 + },
  2673 + "require": {
  2674 + "kriswallsmith/assetic": "~1.1",
  2675 + "php": ">=5.3.0",
  2676 + "symfony/framework-bundle": "~2.1"
  2677 + },
  2678 + "require-dev": {
  2679 + "symfony/class-loader": "~2.1",
  2680 + "symfony/console": "~2.1",
  2681 + "symfony/css-selector": "~2.1",
  2682 + "symfony/dom-crawler": "~2.1",
  2683 + "symfony/form": "~2.1",
  2684 + "symfony/twig-bundle": "~2.1",
  2685 + "symfony/yaml": "~2.1"
  2686 + },
  2687 + "suggest": {
  2688 + "symfony/twig-bundle": "~2.1"
  2689 + },
  2690 + "type": "symfony-bundle",
  2691 + "extra": {
  2692 + "branch-alias": {
  2693 + "dev-master": "2.1.x-dev"
  2694 + }
  2695 + },
  2696 + "autoload": {
  2697 + "psr-0": {
  2698 + "Symfony\\Bundle\\AsseticBundle": ""
  2699 + }
  2700 + },
  2701 + "notification-url": "https://packagist.org/downloads/",
  2702 + "license": [
  2703 + "MIT"
  2704 + ],
  2705 + "authors": [
  2706 + {
  2707 + "name": "Kris Wallsmith",
  2708 + "email": "kris.wallsmith@gmail.com",
  2709 + "homepage": "http://kriswallsmith.net/"
  2710 + }
  2711 + ],
  2712 + "description": "Integrates Assetic into Symfony2",
  2713 + "homepage": "https://github.com/symfony/AsseticBundle",
  2714 + "keywords": [
  2715 + "assets",
  2716 + "compression",
  2717 + "minification"
  2718 + ],
  2719 + "time": "2013-05-16 05:32:23"
  2720 + },
  2721 + {
  2722 + "name": "symfony/class-loader",
  2723 + "version": "v2.2.11",
  2724 + "target-dir": "Symfony/Component/ClassLoader",
  2725 + "source": {
  2726 + "type": "git",
  2727 + "url": "https://github.com/symfony/ClassLoader.git",
  2728 + "reference": "0a5217edb631fe3d0e549133381cc5875c8d0e16"
  2729 + },
  2730 + "dist": {
  2731 + "type": "zip",
  2732 + "url": "https://api.github.com/repos/symfony/ClassLoader/zipball/0a5217edb631fe3d0e549133381cc5875c8d0e16",
  2733 + "reference": "0a5217edb631fe3d0e549133381cc5875c8d0e16",
  2734 + "shasum": ""
  2735 + },
  2736 + "require": {
  2737 + "php": ">=5.3.3"
  2738 + },
  2739 + "require-dev": {
  2740 + "symfony/finder": "~2.0"
  2741 + },
  2742 + "type": "library",
  2743 + "extra": {
  2744 + "branch-alias": {
  2745 + "dev-master": "2.2-dev"
  2746 + }
  2747 + },
  2748 + "autoload": {
  2749 + "psr-0": {
  2750 + "Symfony\\Component\\ClassLoader\\": ""
  2751 + }
  2752 + },
  2753 + "notification-url": "https://packagist.org/downloads/",
  2754 + "license": [
  2755 + "MIT"
  2756 + ],
  2757 + "authors": [
  2758 + {
  2759 + "name": "Fabien Potencier",
  2760 + "email": "fabien@symfony.com",
  2761 + "homepage": "http://fabien.potencier.org",
  2762 + "role": "Lead Developer"
  2763 + },
  2764 + {
  2765 + "name": "Symfony Community",
  2766 + "homepage": "http://symfony.com/contributors"
  2767 + }
  2768 + ],
  2769 + "description": "Symfony ClassLoader Component",
  2770 + "homepage": "http://symfony.com",
  2771 + "time": "2013-11-25 08:44:14"
  2772 + },
  2773 + {
  2774 + "name": "symfony/icu",
  2775 + "version": "v1.2.1",
  2776 + "target-dir": "Symfony/Component/Icu",
  2777 + "source": {
  2778 + "type": "git",
  2779 + "url": "https://github.com/symfony/Icu.git",
  2780 + "reference": "98e197da54df1f966dd5e8a4992135703569c987"
  2781 + },
  2782 + "dist": {
  2783 + "type": "zip",
  2784 + "url": "https://api.github.com/repos/symfony/Icu/zipball/98e197da54df1f966dd5e8a4992135703569c987",
  2785 + "reference": "98e197da54df1f966dd5e8a4992135703569c987",
  2786 + "shasum": ""
  2787 + },
  2788 + "require": {
  2789 + "lib-icu": ">=4.4",
  2790 + "php": ">=5.3.3",
  2791 + "symfony/intl": "~2.3"
  2792 + },
  2793 + "type": "library",
  2794 + "autoload": {
  2795 + "psr-0": {
  2796 + "Symfony\\Component\\Icu\\": ""
  2797 + }
  2798 + },
  2799 + "notification-url": "https://packagist.org/downloads/",
  2800 + "license": [
  2801 + "MIT"
  2802 + ],
  2803 + "authors": [
  2804 + {
  2805 + "name": "Symfony Community",
  2806 + "homepage": "http://symfony.com/contributors"
  2807 + },
  2808 + {
  2809 + "name": "Bernhard Schussek",
  2810 + "email": "bschussek@gmail.com"
  2811 + }
  2812 + ],
  2813 + "description": "Contains an excerpt of the ICU data and classes to load it.",
  2814 + "homepage": "http://symfony.com",
  2815 + "keywords": [
  2816 + "icu",
  2817 + "intl"
  2818 + ],
  2819 + "time": "2013-10-04 10:06:38"
  2820 + },
  2821 + {
  2822 + "name": "symfony/monolog-bundle",
  2823 + "version": "v2.3.0",
  2824 + "target-dir": "Symfony/Bundle/MonologBundle",
  2825 + "source": {
  2826 + "type": "git",
  2827 + "url": "https://github.com/symfony/MonologBundle.git",
  2828 + "reference": "03ed73bc11367b3156cc21f22ac37c7f70fcd10a"
  2829 + },
  2830 + "dist": {
  2831 + "type": "zip",
  2832 + "url": "https://api.github.com/repos/symfony/MonologBundle/zipball/03ed73bc11367b3156cc21f22ac37c7f70fcd10a",
  2833 + "reference": "03ed73bc11367b3156cc21f22ac37c7f70fcd10a",
  2834 + "shasum": ""
  2835 + },
  2836 + "require": {
  2837 + "monolog/monolog": "~1.3",
  2838 + "php": ">=5.3.2",
  2839 + "symfony/config": "~2.2-beta2",
  2840 + "symfony/dependency-injection": "~2.2-beta2",
  2841 + "symfony/monolog-bridge": "~2.2-beta2"
  2842 + },
  2843 + "require-dev": {
  2844 + "symfony/yaml": "~2.2-beta2"
  2845 + },
  2846 + "type": "symfony-bundle",
  2847 + "extra": {
  2848 + "branch-alias": {
  2849 + "dev-master": "2.2.x-dev"
  2850 + }
  2851 + },
  2852 + "autoload": {
  2853 + "psr-0": {
  2854 + "Symfony\\Bundle\\MonologBundle": ""
  2855 + }
  2856 + },
  2857 + "notification-url": "https://packagist.org/downloads/",
  2858 + "license": [
  2859 + "MIT"
  2860 + ],
  2861 + "authors": [
  2862 + {
  2863 + "name": "Fabien Potencier",
  2864 + "email": "fabien@symfony.com",
  2865 + "homepage": "http://fabien.potencier.org",
  2866 + "role": "Lead Developer"
  2867 + },
  2868 + {
  2869 + "name": "Symfony Community",
  2870 + "homepage": "http://symfony.com/contributors"
  2871 + }
  2872 + ],
  2873 + "description": "Symfony MonologBundle",
  2874 + "homepage": "http://symfony.com",
  2875 + "keywords": [
  2876 + "log",
  2877 + "logging"
  2878 + ],
  2879 + "time": "2013-05-27 18:06:55"
  2880 + },
  2881 + {
  2882 + "name": "symfony/swiftmailer-bundle",
  2883 + "version": "v2.3.7",
  2884 + "target-dir": "Symfony/Bundle/SwiftmailerBundle",
  2885 + "source": {
  2886 + "type": "git",
  2887 + "url": "https://github.com/symfony/SwiftmailerBundle.git",
  2888 + "reference": "e98defd402f72e8b54a029ba4d3ac4cb51dc3577"
  2889 + },
  2890 + "dist": {
  2891 + "type": "zip",
  2892 + "url": "https://api.github.com/repos/symfony/SwiftmailerBundle/zipball/e98defd402f72e8b54a029ba4d3ac4cb51dc3577",
  2893 + "reference": "e98defd402f72e8b54a029ba4d3ac4cb51dc3577",
  2894 + "shasum": ""
  2895 + },
  2896 + "require": {
  2897 + "php": ">=5.3.2",
  2898 + "swiftmailer/swiftmailer": ">=4.2.0,~5.0",
  2899 + "symfony/swiftmailer-bridge": "~2.1"
  2900 + },
  2901 + "require-dev": {
  2902 + "symfony/config": "~2.1",
  2903 + "symfony/dependency-injection": "~2.1",
  2904 + "symfony/http-kernel": "~2.1",
  2905 + "symfony/yaml": "~2.1"
  2906 + },
  2907 + "type": "symfony-bundle",
  2908 + "extra": {
  2909 + "branch-alias": {
  2910 + "dev-master": "2.3-dev"
  2911 + }
  2912 + },
  2913 + "autoload": {
  2914 + "psr-0": {
  2915 + "Symfony\\Bundle\\SwiftmailerBundle": ""
  2916 + }
  2917 + },
  2918 + "notification-url": "https://packagist.org/downloads/",
  2919 + "license": [
  2920 + "MIT"
  2921 + ],
  2922 + "authors": [
  2923 + {
  2924 + "name": "Fabien Potencier",
  2925 + "email": "fabien@symfony.com",
  2926 + "homepage": "http://fabien.potencier.org",
  2927 + "role": "Lead Developer"
  2928 + },
  2929 + {
  2930 + "name": "Symfony Community",
  2931 + "homepage": "http://symfony.com/contributors"
  2932 + }
  2933 + ],
  2934 + "description": "Symfony SwiftmailerBundle",
  2935 + "homepage": "http://symfony.com",
  2936 + "time": "2014-04-05 17:15:52"
  2937 + },
  2938 + {
  2939 + "name": "symfony/symfony",
  2940 + "version": "v2.3.12",
  2941 + "source": {
  2942 + "type": "git",
  2943 + "url": "https://github.com/symfony/symfony.git",
  2944 + "reference": "3574df3d5e0039f3225007b8be534df5c4104503"
  2945 + },
  2946 + "dist": {
  2947 + "type": "zip",
  2948 + "url": "https://api.github.com/repos/symfony/symfony/zipball/3574df3d5e0039f3225007b8be534df5c4104503",
  2949 + "reference": "3574df3d5e0039f3225007b8be534df5c4104503",
  2950 + "shasum": ""
  2951 + },
  2952 + "require": {
  2953 + "doctrine/common": "~2.2",
  2954 + "php": ">=5.3.3",
  2955 + "psr/log": "~1.0",
  2956 + "symfony/icu": "~1.0",
  2957 + "twig/twig": "~1.11"
  2958 + },
  2959 + "replace": {
  2960 + "symfony/browser-kit": "self.version",
  2961 + "symfony/class-loader": "self.version",
  2962 + "symfony/config": "self.version",
  2963 + "symfony/console": "self.version",
  2964 + "symfony/css-selector": "self.version",
  2965 + "symfony/debug": "self.version",
  2966 + "symfony/dependency-injection": "self.version",
  2967 + "symfony/doctrine-bridge": "self.version",
  2968 + "symfony/dom-crawler": "self.version",
  2969 + "symfony/event-dispatcher": "self.version",
  2970 + "symfony/filesystem": "self.version",
  2971 + "symfony/finder": "self.version",
  2972 + "symfony/form": "self.version",
  2973 + "symfony/framework-bundle": "self.version",
  2974 + "symfony/http-foundation": "self.version",
  2975 + "symfony/http-kernel": "self.version",
  2976 + "symfony/intl": "self.version",
  2977 + "symfony/locale": "self.version",
  2978 + "symfony/monolog-bridge": "self.version",
  2979 + "symfony/options-resolver": "self.version",
  2980 + "symfony/process": "self.version",
  2981 + "symfony/propel1-bridge": "self.version",
  2982 + "symfony/property-access": "self.version",
  2983 + "symfony/proxy-manager-bridge": "self.version",
  2984 + "symfony/routing": "self.version",
  2985 + "symfony/security": "self.version",
  2986 + "symfony/security-bundle": "self.version",
  2987 + "symfony/serializer": "self.version",
  2988 + "symfony/stopwatch": "self.version",
  2989 + "symfony/swiftmailer-bridge": "self.version",
  2990 + "symfony/templating": "self.version",
  2991 + "symfony/translation": "self.version",
  2992 + "symfony/twig-bridge": "self.version",
  2993 + "symfony/twig-bundle": "self.version",
  2994 + "symfony/validator": "self.version",
  2995 + "symfony/web-profiler-bundle": "self.version",
  2996 + "symfony/yaml": "self.version"
  2997 + },
  2998 + "require-dev": {
  2999 + "doctrine/data-fixtures": "1.0.*",
  3000 + "doctrine/dbal": "~2.2",
  3001 + "doctrine/orm": "~2.2,>=2.2.3",
  3002 + "ircmaxell/password-compat": "1.0.*",
  3003 + "monolog/monolog": "~1.3",
  3004 + "ocramius/proxy-manager": ">=0.3.1,<0.4-dev",
  3005 + "propel/propel1": "1.6.*"
  3006 + },
  3007 + "type": "library",
  3008 + "extra": {
  3009 + "branch-alias": {
  3010 + "dev-master": "2.3-dev"
  3011 + }
  3012 + },
  3013 + "autoload": {
  3014 + "psr-0": {
  3015 + "Symfony\\": "src/"
  3016 + },
  3017 + "classmap": [
  3018 + "src/Symfony/Component/HttpFoundation/Resources/stubs",
  3019 + "src/Symfony/Component/Intl/Resources/stubs"
  3020 + ],
  3021 + "files": [
  3022 + "src/Symfony/Component/Intl/Resources/stubs/functions.php"
  3023 + ]
  3024 + },
  3025 + "notification-url": "https://packagist.org/downloads/",
  3026 + "license": [
  3027 + "MIT"
  3028 + ],
  3029 + "authors": [
  3030 + {
  3031 + "name": "Fabien Potencier",
  3032 + "email": "fabien@symfony.com",
  3033 + "homepage": "http://fabien.potencier.org",
  3034 + "role": "Lead Developer"
  3035 + },
  3036 + {
  3037 + "name": "Symfony Community",
  3038 + "homepage": "http://symfony.com/contributors"
  3039 + }
  3040 + ],
  3041 + "description": "The Symfony PHP framework",
  3042 + "homepage": "http://symfony.com",
  3043 + "keywords": [
  3044 + "framework"
  3045 + ],
  3046 + "time": "2014-04-03 05:42:39"
  3047 + },
  3048 + {
  3049 + "name": "twbs/bootstrap",
  3050 + "version": "v3.0.3",
  3051 + "source": {
  3052 + "type": "git",
  3053 + "url": "https://github.com/twbs/bootstrap.git",
  3054 + "reference": "6d03173a1aad98e75f7d33e65b411c519176c59a"
  3055 + },
  3056 + "dist": {
  3057 + "type": "zip",
  3058 + "url": "https://api.github.com/repos/twbs/bootstrap/zipball/6d03173a1aad98e75f7d33e65b411c519176c59a",
  3059 + "reference": "6d03173a1aad98e75f7d33e65b411c519176c59a",
  3060 + "shasum": ""
  3061 + },
  3062 + "type": "library",
  3063 + "extra": {
  3064 + "branch-alias": {
  3065 + "dev-master": "3.0.x-dev"
  3066 + }
  3067 + },
  3068 + "notification-url": "https://packagist.org/downloads/",
  3069 + "license": [
  3070 + "Apache-2.0"
  3071 + ],
  3072 + "authors": [
  3073 + {
  3074 + "name": "Jacob Thornton",
  3075 + "email": "jacobthornton@gmail.com"
  3076 + },
  3077 + {
  3078 + "name": "Mark Otto",
  3079 + "email": "markdotto@gmail.com"
  3080 + }
  3081 + ],
  3082 + "description": "Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.",
  3083 + "homepage": "http://getbootstrap.com",
  3084 + "keywords": [
  3085 + "bootstrap",
  3086 + "css"
  3087 + ],
  3088 + "time": "2013-12-05 16:09:10"
  3089 + },
  3090 + {
  3091 + "name": "twig/extensions",
  3092 + "version": "v1.0.1",
  3093 + "source": {
  3094 + "type": "git",
  3095 + "url": "https://github.com/fabpot/Twig-extensions.git",
  3096 + "reference": "f91a82ec225e5bb108e01a0f93c9be04f84dcfa0"
  3097 + },
  3098 + "dist": {
  3099 + "type": "zip",
  3100 + "url": "https://api.github.com/repos/fabpot/Twig-extensions/zipball/f91a82ec225e5bb108e01a0f93c9be04f84dcfa0",
  3101 + "reference": "f91a82ec225e5bb108e01a0f93c9be04f84dcfa0",
  3102 + "shasum": ""
  3103 + },
  3104 + "require": {
  3105 + "twig/twig": "~1.0"
  3106 + },
  3107 + "type": "library",
  3108 + "extra": {
  3109 + "branch-alias": {
  3110 + "dev-master": "1.0.x-dev"
  3111 + }
  3112 + },
  3113 + "autoload": {
  3114 + "psr-0": {
  3115 + "Twig_Extensions_": "lib/"
  3116 + }
  3117 + },
  3118 + "notification-url": "https://packagist.org/downloads/",
  3119 + "license": [
  3120 + "MIT"
  3121 + ],
  3122 + "authors": [
  3123 + {
  3124 + "name": "Fabien Potencier",
  3125 + "email": "fabien@symfony.com",
  3126 + "homepage": "http://fabien.potencier.org",
  3127 + "role": "Lead Developer"
  3128 + }
  3129 + ],
  3130 + "description": "Common additional features for Twig that do not directly belong in core",
  3131 + "homepage": "https://github.com/fabpot/Twig-extensions",
  3132 + "keywords": [
  3133 + "debug",
  3134 + "i18n",
  3135 + "text"
  3136 + ],
  3137 + "time": "2013-10-18 19:37:15"
  3138 + },
  3139 + {
  3140 + "name": "twig/twig",
  3141 + "version": "v1.15.1",
  3142 + "source": {
  3143 + "type": "git",
  3144 + "url": "https://github.com/fabpot/Twig.git",
  3145 + "reference": "1fb5784662f438d7d96a541e305e28b812e2eeed"
  3146 + },
  3147 + "dist": {
  3148 + "type": "zip",
  3149 + "url": "https://api.github.com/repos/fabpot/Twig/zipball/1fb5784662f438d7d96a541e305e28b812e2eeed",
  3150 + "reference": "1fb5784662f438d7d96a541e305e28b812e2eeed",
  3151 + "shasum": ""
  3152 + },
  3153 + "require": {
  3154 + "php": ">=5.2.4"
  3155 + },
  3156 + "type": "library",
  3157 + "extra": {
  3158 + "branch-alias": {
  3159 + "dev-master": "1.15-dev"
  3160 + }
  3161 + },
  3162 + "autoload": {
  3163 + "psr-0": {
  3164 + "Twig_": "lib/"
  3165 + }
  3166 + },
  3167 + "notification-url": "https://packagist.org/downloads/",
  3168 + "license": [
  3169 + "BSD-3-Clause"
  3170 + ],
  3171 + "authors": [
  3172 + {
  3173 + "name": "Fabien Potencier",
  3174 + "email": "fabien@symfony.com",
  3175 + "homepage": "http://fabien.potencier.org",
  3176 + "role": "Lead Developer"
  3177 + },
  3178 + {
  3179 + "name": "Armin Ronacher",
  3180 + "email": "armin.ronacher@active-4.com",
  3181 + "role": "Project Founder"
  3182 + },
  3183 + {
  3184 + "name": "Twig Team",
  3185 + "homepage": "https://github.com/fabpot/Twig/graphs/contributors",
  3186 + "role": "Contributors"
  3187 + }
  3188 + ],
  3189 + "description": "Twig, the flexible, fast, and secure template language for PHP",
  3190 + "homepage": "http://twig.sensiolabs.org",
  3191 + "keywords": [
  3192 + "templating"
  3193 + ],
  3194 + "time": "2014-02-13 10:19:29"
  3195 + },
  3196 + {
  3197 + "name": "twitter/bootstrap",
  3198 + "version": "v2.3.2",
  3199 + "source": {
  3200 + "type": "git",
  3201 + "url": "https://github.com/twbs/bootstrap.git",
  3202 + "reference": "b4c4072679943773a7582daa63f545ba818fa627"
  3203 + },
  3204 + "dist": {
  3205 + "type": "zip",
  3206 + "url": "https://api.github.com/repos/twbs/bootstrap/zipball/b4c4072679943773a7582daa63f545ba818fa627",
  3207 + "reference": "b4c4072679943773a7582daa63f545ba818fa627",
  3208 + "shasum": ""
  3209 + },
  3210 + "type": "library",
  3211 + "notification-url": "https://packagist.org/downloads/",
  3212 + "license": [
  3213 + "Apache-2.0"
  3214 + ],
  3215 + "description": "Sleek, intuitive, and powerful front-end framework for faster and easier web development.",
  3216 + "homepage": "http://twbs.github.com/bootstrap/",
  3217 + "keywords": [
  3218 + "bootstrap",
  3219 + "css"
  3220 + ],
  3221 + "time": "2013-07-27 06:36:38"
  3222 + },
  3223 + {
  3224 + "name": "willdurand/jsonp-callback-validator",
  3225 + "version": "v1.1.0",
  3226 + "source": {
  3227 + "type": "git",
  3228 + "url": "https://github.com/willdurand/JsonpCallbackValidator.git",
  3229 + "reference": "1a7d388bb521959e612ef50c5c7b1691b097e909"
  3230 + },
  3231 + "dist": {
  3232 + "type": "zip",
  3233 + "url": "https://api.github.com/repos/willdurand/JsonpCallbackValidator/zipball/1a7d388bb521959e612ef50c5c7b1691b097e909",
  3234 + "reference": "1a7d388bb521959e612ef50c5c7b1691b097e909",
  3235 + "shasum": ""
  3236 + },
  3237 + "require": {
  3238 + "php": ">=5.3.0"
  3239 + },
  3240 + "require-dev": {
  3241 + "phpunit/phpunit": "~3.7"
  3242 + },
  3243 + "type": "library",
  3244 + "autoload": {
  3245 + "psr-0": {
  3246 + "JsonpCallbackValidator": "src/"
  3247 + }
  3248 + },
  3249 + "notification-url": "https://packagist.org/downloads/",
  3250 + "license": [
  3251 + "MIT"
  3252 + ],
  3253 + "authors": [
  3254 + {
  3255 + "name": "William DURAND",
  3256 + "email": "william.durand1@gmail.com",
  3257 + "homepage": "http://www.willdurand.fr"
  3258 + }
  3259 + ],
  3260 + "description": "JSONP callback validator.",
  3261 + "time": "2014-01-20 22:35:06"
  3262 + },
  3263 + {
  3264 + "name": "willdurand/negotiation",
  3265 + "version": "1.3.2",
  3266 + "source": {
  3267 + "type": "git",
  3268 + "url": "https://github.com/willdurand/Negotiation.git",
  3269 + "reference": "cda64e26a980f433ce98200ba1b2301850489aab"
  3270 + },
  3271 + "dist": {
  3272 + "type": "zip",
  3273 + "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/cda64e26a980f433ce98200ba1b2301850489aab",
  3274 + "reference": "cda64e26a980f433ce98200ba1b2301850489aab",
  3275 + "shasum": ""
  3276 + },
  3277 + "require": {
  3278 + "php": ">=5.3.0"
  3279 + },
  3280 + "type": "library",
  3281 + "extra": {
  3282 + "branch-alias": {
  3283 + "dev-master": "1.3-dev"
  3284 + }
  3285 + },
  3286 + "autoload": {
  3287 + "psr-0": {
  3288 + "Negotiation": "src/"
  3289 + }
  3290 + },
  3291 + "notification-url": "https://packagist.org/downloads/",
  3292 + "license": [
  3293 + "MIT"
  3294 + ],
  3295 + "authors": [
  3296 + {
  3297 + "name": "William Durand",
  3298 + "email": "william.durand1@gmail.com",
  3299 + "homepage": "http://www.willdurand.fr"
  3300 + }
  3301 + ],
  3302 + "description": "Content Negotiation tools for PHP provided as a standalone library.",
  3303 + "homepage": "http://williamdurand.fr/Negotiation/",
  3304 + "keywords": [
  3305 + "accept",
  3306 + "content",
  3307 + "format",
  3308 + "header",
  3309 + "negotiation"
  3310 + ],
  3311 + "time": "2014-02-26 13:56:25"
  3312 + }
  3313 + ],
  3314 + "packages-dev": [
  3315 +
  3316 + ],
  3317 + "aliases": [
  3318 +
  3319 + ],
  3320 + "minimum-stability": "stable",
  3321 + "stability-flags": {
  3322 + "knplabs/knp-paginator-bundle": 20,
  3323 + "doctrine/data-fixtures": 20,
  3324 + "doctrine/doctrine-fixtures-bundle": 20,
  3325 + "jms/translation-bundle": 20,
  3326 + "knplabs/knp-menu": 20,
  3327 + "knplabs/knp-menu-bundle": 20,
  3328 + "jpgraph/jpgraph": 20,
  3329 + "friendsofsymfony/rest-bundle": 20,
  3330 + "jms/serializer": 20,
  3331 + "jms/serializer-bundle": 20,
  3332 + "lightbase/cocar": 20,
  3333 + "ddeboer/data-import-bundle": 20
  3334 + },
  3335 + "platform": {
  3336 + "php": ">=5.3.3"
  3337 + },
  3338 + "platform-dev": [
  3339 +
  3340 + ]
  3341 +}
composer.phar
No preview for this file type