diff options
-rw-r--r-- | app/SymfonyRequirements.php | 41 | ||||
-rw-r--r-- | composer.lock | 628 |
2 files changed, 349 insertions, 320 deletions
diff --git a/app/SymfonyRequirements.php b/app/SymfonyRequirements.php index cbcf1c8e..caabe407 100644 --- a/app/SymfonyRequirements.php +++ b/app/SymfonyRequirements.php | |||
@@ -77,7 +77,7 @@ class Requirement | |||
77 | } | 77 | } |
78 | 78 | ||
79 | /** | 79 | /** |
80 | * Returns the help text for resolving the problem | 80 | * Returns the help text for resolving the problem. |
81 | * | 81 | * |
82 | * @return string The help text | 82 | * @return string The help text |
83 | */ | 83 | */ |
@@ -119,10 +119,10 @@ class PhpIniRequirement extends Requirement | |||
119 | * | 119 | * |
120 | * @param string $cfgName The configuration name used for ini_get() | 120 | * @param string $cfgName The configuration name used for ini_get() |
121 | * @param bool|callback $evaluation Either a boolean indicating whether the configuration should evaluate to true or false, | 121 | * @param bool|callback $evaluation Either a boolean indicating whether the configuration should evaluate to true or false, |
122 | or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement | 122 | * or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement |
123 | * @param bool $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false. | 123 | * @param bool $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false. |
124 | This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin. | 124 | * This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin. |
125 | Example: You require a config to be true but PHP later removes this config and defaults it to true internally. | 125 | * Example: You require a config to be true but PHP later removes this config and defaults it to true internally. |
126 | * @param string|null $testMessage The message for testing the requirement (when null and $evaluation is a boolean a default message is derived) | 126 | * @param string|null $testMessage The message for testing the requirement (when null and $evaluation is a boolean a default message is derived) |
127 | * @param string|null $helpHtml The help text formatted in HTML for resolving the problem (when null and $evaluation is a boolean a default help is derived) | 127 | * @param string|null $helpHtml The help text formatted in HTML for resolving the problem (when null and $evaluation is a boolean a default help is derived) |
128 | * @param string|null $helpText The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags) | 128 | * @param string|null $helpText The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags) |
@@ -221,10 +221,10 @@ class RequirementCollection implements IteratorAggregate | |||
221 | * | 221 | * |
222 | * @param string $cfgName The configuration name used for ini_get() | 222 | * @param string $cfgName The configuration name used for ini_get() |
223 | * @param bool|callback $evaluation Either a boolean indicating whether the configuration should evaluate to true or false, | 223 | * @param bool|callback $evaluation Either a boolean indicating whether the configuration should evaluate to true or false, |
224 | or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement | 224 | * or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement |
225 | * @param bool $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false. | 225 | * @param bool $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false. |
226 | This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin. | 226 | * This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin. |
227 | Example: You require a config to be true but PHP later removes this config and defaults it to true internally. | 227 | * Example: You require a config to be true but PHP later removes this config and defaults it to true internally. |
228 | * @param string $testMessage The message for testing the requirement (when null and $evaluation is a boolean a default message is derived) | 228 | * @param string $testMessage The message for testing the requirement (when null and $evaluation is a boolean a default message is derived) |
229 | * @param string $helpHtml The help text formatted in HTML for resolving the problem (when null and $evaluation is a boolean a default help is derived) | 229 | * @param string $helpHtml The help text formatted in HTML for resolving the problem (when null and $evaluation is a boolean a default help is derived) |
230 | * @param string|null $helpText The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags) | 230 | * @param string|null $helpText The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags) |
@@ -239,10 +239,10 @@ class RequirementCollection implements IteratorAggregate | |||
239 | * | 239 | * |
240 | * @param string $cfgName The configuration name used for ini_get() | 240 | * @param string $cfgName The configuration name used for ini_get() |
241 | * @param bool|callback $evaluation Either a boolean indicating whether the configuration should evaluate to true or false, | 241 | * @param bool|callback $evaluation Either a boolean indicating whether the configuration should evaluate to true or false, |
242 | or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement | 242 | * or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement |
243 | * @param bool $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false. | 243 | * @param bool $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false. |
244 | This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin. | 244 | * This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin. |
245 | Example: You require a config to be true but PHP later removes this config and defaults it to true internally. | 245 | * Example: You require a config to be true but PHP later removes this config and defaults it to true internally. |
246 | * @param string $testMessage The message for testing the requirement (when null and $evaluation is a boolean a default message is derived) | 246 | * @param string $testMessage The message for testing the requirement (when null and $evaluation is a boolean a default message is derived) |
247 | * @param string $helpHtml The help text formatted in HTML for resolving the problem (when null and $evaluation is a boolean a default help is derived) | 247 | * @param string $helpHtml The help text formatted in HTML for resolving the problem (when null and $evaluation is a boolean a default help is derived) |
248 | * @param string|null $helpText The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags) | 248 | * @param string|null $helpText The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags) |
@@ -542,11 +542,22 @@ class SymfonyRequirements extends RequirementCollection | |||
542 | 542 | ||
543 | /* optional recommendations follow */ | 543 | /* optional recommendations follow */ |
544 | 544 | ||
545 | $this->addRecommendation( | 545 | if (file_exists(__DIR__.'/../vendor/composer')) { |
546 | file_get_contents(__FILE__) === file_get_contents(__DIR__.'/../vendor/sensio/distribution-bundle/Sensio/Bundle/DistributionBundle/Resources/skeleton/app/SymfonyRequirements.php'), | 546 | require_once __DIR__.'/../vendor/autoload.php'; |
547 | 'Requirements file should be up-to-date', | 547 | |
548 | 'Your requirements file is outdated. Run composer install and re-check your configuration.' | 548 | try { |
549 | ); | 549 | $r = new \ReflectionClass('Sensio\Bundle\DistributionBundle\SensioDistributionBundle'); |
550 | |||
551 | $contents = file_get_contents(dirname($r->getFileName()).'/Resources/skeleton/app/SymfonyRequirements.php'); | ||
552 | } catch (\ReflectionException $e) { | ||
553 | $contents = ''; | ||
554 | } | ||
555 | $this->addRecommendation( | ||
556 | file_get_contents(__FILE__) === $contents, | ||
557 | 'Requirements file should be up-to-date', | ||
558 | 'Your requirements file is outdated. Run composer install and re-check your configuration.' | ||
559 | ); | ||
560 | } | ||
550 | 561 | ||
551 | $this->addRecommendation( | 562 | $this->addRecommendation( |
552 | version_compare($installedPhpVersion, '5.3.4', '>='), | 563 | version_compare($installedPhpVersion, '5.3.4', '>='), |
diff --git a/composer.lock b/composer.lock index 66f4738b..c44ffee0 100644 --- a/composer.lock +++ b/composer.lock | |||
@@ -8,16 +8,16 @@ | |||
8 | "packages": [ | 8 | "packages": [ |
9 | { | 9 | { |
10 | "name": "doctrine/annotations", | 10 | "name": "doctrine/annotations", |
11 | "version": "v1.2.3", | 11 | "version": "v1.2.4", |
12 | "source": { | 12 | "source": { |
13 | "type": "git", | 13 | "type": "git", |
14 | "url": "https://github.com/doctrine/annotations.git", | 14 | "url": "https://github.com/doctrine/annotations.git", |
15 | "reference": "eeda578cbe24a170331a1cfdf78be723412df7a4" | 15 | "reference": "b5202eb9e83f8db52e0e58867e0a46e63be8332e" |
16 | }, | 16 | }, |
17 | "dist": { | 17 | "dist": { |
18 | "type": "zip", | 18 | "type": "zip", |
19 | "url": "https://api.github.com/repos/doctrine/annotations/zipball/eeda578cbe24a170331a1cfdf78be723412df7a4", | 19 | "url": "https://api.github.com/repos/doctrine/annotations/zipball/b5202eb9e83f8db52e0e58867e0a46e63be8332e", |
20 | "reference": "eeda578cbe24a170331a1cfdf78be723412df7a4", | 20 | "reference": "b5202eb9e83f8db52e0e58867e0a46e63be8332e", |
21 | "shasum": "" | 21 | "shasum": "" |
22 | }, | 22 | }, |
23 | "require": { | 23 | "require": { |
@@ -72,20 +72,20 @@ | |||
72 | "docblock", | 72 | "docblock", |
73 | "parser" | 73 | "parser" |
74 | ], | 74 | ], |
75 | "time": "2014-12-20 20:49:38" | 75 | "time": "2014-12-23 22:40:37" |
76 | }, | 76 | }, |
77 | { | 77 | { |
78 | "name": "doctrine/cache", | 78 | "name": "doctrine/cache", |
79 | "version": "v1.4.0", | 79 | "version": "v1.4.1", |
80 | "source": { | 80 | "source": { |
81 | "type": "git", | 81 | "type": "git", |
82 | "url": "https://github.com/doctrine/cache.git", | 82 | "url": "https://github.com/doctrine/cache.git", |
83 | "reference": "2346085d2b027b233ae1d5de59b07440b9f288c8" | 83 | "reference": "c9eadeb743ac6199f7eec423cb9426bc518b7b03" |
84 | }, | 84 | }, |
85 | "dist": { | 85 | "dist": { |
86 | "type": "zip", | 86 | "type": "zip", |
87 | "url": "https://api.github.com/repos/doctrine/cache/zipball/2346085d2b027b233ae1d5de59b07440b9f288c8", | 87 | "url": "https://api.github.com/repos/doctrine/cache/zipball/c9eadeb743ac6199f7eec423cb9426bc518b7b03", |
88 | "reference": "2346085d2b027b233ae1d5de59b07440b9f288c8", | 88 | "reference": "c9eadeb743ac6199f7eec423cb9426bc518b7b03", |
89 | "shasum": "" | 89 | "shasum": "" |
90 | }, | 90 | }, |
91 | "require": { | 91 | "require": { |
@@ -96,13 +96,13 @@ | |||
96 | }, | 96 | }, |
97 | "require-dev": { | 97 | "require-dev": { |
98 | "phpunit/phpunit": ">=3.7", | 98 | "phpunit/phpunit": ">=3.7", |
99 | "predis/predis": "~0.8", | 99 | "predis/predis": "~1.0", |
100 | "satooshi/php-coveralls": "~0.6" | 100 | "satooshi/php-coveralls": "~0.6" |
101 | }, | 101 | }, |
102 | "type": "library", | 102 | "type": "library", |
103 | "extra": { | 103 | "extra": { |
104 | "branch-alias": { | 104 | "branch-alias": { |
105 | "dev-master": "1.4.x-dev" | 105 | "dev-master": "1.5.x-dev" |
106 | } | 106 | } |
107 | }, | 107 | }, |
108 | "autoload": { | 108 | "autoload": { |
@@ -142,25 +142,28 @@ | |||
142 | "cache", | 142 | "cache", |
143 | "caching" | 143 | "caching" |
144 | ], | 144 | ], |
145 | "time": "2015-01-15 20:38:55" | 145 | "time": "2015-04-15 00:11:59" |
146 | }, | 146 | }, |
147 | { | 147 | { |
148 | "name": "doctrine/collections", | 148 | "name": "doctrine/collections", |
149 | "version": "v1.2", | 149 | "version": "v1.3.0", |
150 | "source": { | 150 | "source": { |
151 | "type": "git", | 151 | "type": "git", |
152 | "url": "https://github.com/doctrine/collections.git", | 152 | "url": "https://github.com/doctrine/collections.git", |
153 | "reference": "b99c5c46c87126201899afe88ec490a25eedd6a2" | 153 | "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a" |
154 | }, | 154 | }, |
155 | "dist": { | 155 | "dist": { |
156 | "type": "zip", | 156 | "type": "zip", |
157 | "url": "https://api.github.com/repos/doctrine/collections/zipball/b99c5c46c87126201899afe88ec490a25eedd6a2", | 157 | "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a", |
158 | "reference": "b99c5c46c87126201899afe88ec490a25eedd6a2", | 158 | "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a", |
159 | "shasum": "" | 159 | "shasum": "" |
160 | }, | 160 | }, |
161 | "require": { | 161 | "require": { |
162 | "php": ">=5.3.2" | 162 | "php": ">=5.3.2" |
163 | }, | 163 | }, |
164 | "require-dev": { | ||
165 | "phpunit/phpunit": "~4.0" | ||
166 | }, | ||
164 | "type": "library", | 167 | "type": "library", |
165 | "extra": { | 168 | "extra": { |
166 | "branch-alias": { | 169 | "branch-alias": { |
@@ -178,17 +181,6 @@ | |||
178 | ], | 181 | ], |
179 | "authors": [ | 182 | "authors": [ |
180 | { | 183 | { |
181 | "name": "Jonathan Wage", | ||
182 | "email": "jonwage@gmail.com", | ||
183 | "homepage": "http://www.jwage.com/", | ||
184 | "role": "Creator" | ||
185 | }, | ||
186 | { | ||
187 | "name": "Guilherme Blanco", | ||
188 | "email": "guilhermeblanco@gmail.com", | ||
189 | "homepage": "http://www.instaclick.com" | ||
190 | }, | ||
191 | { | ||
192 | "name": "Roman Borschel", | 184 | "name": "Roman Borschel", |
193 | "email": "roman@code-factory.org" | 185 | "email": "roman@code-factory.org" |
194 | }, | 186 | }, |
@@ -197,10 +189,16 @@ | |||
197 | "email": "kontakt@beberlei.de" | 189 | "email": "kontakt@beberlei.de" |
198 | }, | 190 | }, |
199 | { | 191 | { |
192 | "name": "Guilherme Blanco", | ||
193 | "email": "guilhermeblanco@gmail.com" | ||
194 | }, | ||
195 | { | ||
196 | "name": "Jonathan Wage", | ||
197 | "email": "jonwage@gmail.com" | ||
198 | }, | ||
199 | { | ||
200 | "name": "Johannes Schmitt", | 200 | "name": "Johannes Schmitt", |
201 | "email": "schmittjoh@gmail.com", | 201 | "email": "schmittjoh@gmail.com" |
202 | "homepage": "https://github.com/schmittjoh", | ||
203 | "role": "Developer of wrapped JMSSerializerBundle" | ||
204 | } | 202 | } |
205 | ], | 203 | ], |
206 | "description": "Collections Abstraction library", | 204 | "description": "Collections Abstraction library", |
@@ -210,20 +208,20 @@ | |||
210 | "collections", | 208 | "collections", |
211 | "iterator" | 209 | "iterator" |
212 | ], | 210 | ], |
213 | "time": "2014-02-03 23:07:43" | 211 | "time": "2015-04-14 22:21:58" |
214 | }, | 212 | }, |
215 | { | 213 | { |
216 | "name": "doctrine/common", | 214 | "name": "doctrine/common", |
217 | "version": "v2.4.2", | 215 | "version": "v2.5.0", |
218 | "source": { | 216 | "source": { |
219 | "type": "git", | 217 | "type": "git", |
220 | "url": "https://github.com/doctrine/common.git", | 218 | "url": "https://github.com/doctrine/common.git", |
221 | "reference": "5db6ab40e4c531f14dad4ca96a394dfce5d4255b" | 219 | "reference": "cd8daf2501e10c63dced7b8b9b905844316ae9d3" |
222 | }, | 220 | }, |
223 | "dist": { | 221 | "dist": { |
224 | "type": "zip", | 222 | "type": "zip", |
225 | "url": "https://api.github.com/repos/doctrine/common/zipball/5db6ab40e4c531f14dad4ca96a394dfce5d4255b", | 223 | "url": "https://api.github.com/repos/doctrine/common/zipball/cd8daf2501e10c63dced7b8b9b905844316ae9d3", |
226 | "reference": "5db6ab40e4c531f14dad4ca96a394dfce5d4255b", | 224 | "reference": "cd8daf2501e10c63dced7b8b9b905844316ae9d3", |
227 | "shasum": "" | 225 | "shasum": "" |
228 | }, | 226 | }, |
229 | "require": { | 227 | "require": { |
@@ -240,7 +238,7 @@ | |||
240 | "type": "library", | 238 | "type": "library", |
241 | "extra": { | 239 | "extra": { |
242 | "branch-alias": { | 240 | "branch-alias": { |
243 | "dev-master": "2.4.x-dev" | 241 | "dev-master": "2.6.x-dev" |
244 | } | 242 | } |
245 | }, | 243 | }, |
246 | "autoload": { | 244 | "autoload": { |
@@ -254,17 +252,6 @@ | |||
254 | ], | 252 | ], |
255 | "authors": [ | 253 | "authors": [ |
256 | { | 254 | { |
257 | "name": "Jonathan Wage", | ||
258 | "email": "jonwage@gmail.com", | ||
259 | "homepage": "http://www.jwage.com/", | ||
260 | "role": "Creator" | ||
261 | }, | ||
262 | { | ||
263 | "name": "Guilherme Blanco", | ||
264 | "email": "guilhermeblanco@gmail.com", | ||
265 | "homepage": "http://www.instaclick.com" | ||
266 | }, | ||
267 | { | ||
268 | "name": "Roman Borschel", | 255 | "name": "Roman Borschel", |
269 | "email": "roman@code-factory.org" | 256 | "email": "roman@code-factory.org" |
270 | }, | 257 | }, |
@@ -273,10 +260,16 @@ | |||
273 | "email": "kontakt@beberlei.de" | 260 | "email": "kontakt@beberlei.de" |
274 | }, | 261 | }, |
275 | { | 262 | { |
263 | "name": "Guilherme Blanco", | ||
264 | "email": "guilhermeblanco@gmail.com" | ||
265 | }, | ||
266 | { | ||
267 | "name": "Jonathan Wage", | ||
268 | "email": "jonwage@gmail.com" | ||
269 | }, | ||
270 | { | ||
276 | "name": "Johannes Schmitt", | 271 | "name": "Johannes Schmitt", |
277 | "email": "schmittjoh@gmail.com", | 272 | "email": "schmittjoh@gmail.com" |
278 | "homepage": "https://github.com/schmittjoh", | ||
279 | "role": "Developer of wrapped JMSSerializerBundle" | ||
280 | } | 273 | } |
281 | ], | 274 | ], |
282 | "description": "Common Library for Doctrine projects", | 275 | "description": "Common Library for Doctrine projects", |
@@ -288,7 +281,7 @@ | |||
288 | "persistence", | 281 | "persistence", |
289 | "spl" | 282 | "spl" |
290 | ], | 283 | ], |
291 | "time": "2014-05-21 19:28:51" | 284 | "time": "2015-04-02 19:55:44" |
292 | }, | 285 | }, |
293 | { | 286 | { |
294 | "name": "doctrine/dbal", | 287 | "name": "doctrine/dbal", |
@@ -363,16 +356,16 @@ | |||
363 | }, | 356 | }, |
364 | { | 357 | { |
365 | "name": "doctrine/doctrine-bundle", | 358 | "name": "doctrine/doctrine-bundle", |
366 | "version": "v1.3.0", | 359 | "version": "v1.5.0", |
367 | "source": { | 360 | "source": { |
368 | "type": "git", | 361 | "type": "git", |
369 | "url": "https://github.com/doctrine/DoctrineBundle.git", | 362 | "url": "https://github.com/doctrine/DoctrineBundle.git", |
370 | "reference": "3beb3a780485ab01f86941f4892cd23ef8c39c6b" | 363 | "reference": "0b9e27037c4fdbad515ee5ec89842e9091a6480f" |
371 | }, | 364 | }, |
372 | "dist": { | 365 | "dist": { |
373 | "type": "zip", | 366 | "type": "zip", |
374 | "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/3beb3a780485ab01f86941f4892cd23ef8c39c6b", | 367 | "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/0b9e27037c4fdbad515ee5ec89842e9091a6480f", |
375 | "reference": "3beb3a780485ab01f86941f4892cd23ef8c39c6b", | 368 | "reference": "0b9e27037c4fdbad515ee5ec89842e9091a6480f", |
376 | "shasum": "" | 369 | "shasum": "" |
377 | }, | 370 | }, |
378 | "require": { | 371 | "require": { |
@@ -380,18 +373,17 @@ | |||
380 | "doctrine/doctrine-cache-bundle": "~1.0", | 373 | "doctrine/doctrine-cache-bundle": "~1.0", |
381 | "jdorn/sql-formatter": "~1.1", | 374 | "jdorn/sql-formatter": "~1.1", |
382 | "php": ">=5.3.2", | 375 | "php": ">=5.3.2", |
376 | "symfony/console": "~2.3", | ||
383 | "symfony/doctrine-bridge": "~2.2", | 377 | "symfony/doctrine-bridge": "~2.2", |
384 | "symfony/framework-bundle": "~2.2" | 378 | "symfony/framework-bundle": "~2.3" |
385 | }, | 379 | }, |
386 | "require-dev": { | 380 | "require-dev": { |
387 | "doctrine/orm": "~2.3", | 381 | "doctrine/orm": "~2.3", |
388 | "phpunit/php-code-coverage": "~1.2", | 382 | "phpunit/phpunit": "~4", |
389 | "phpunit/phpunit": "~3.7", | ||
390 | "phpunit/phpunit-mock-objects": "~1.2", | ||
391 | "satooshi/php-coveralls": "~0.6.1", | 383 | "satooshi/php-coveralls": "~0.6.1", |
392 | "symfony/validator": "~2.2", | 384 | "symfony/validator": "~2.2", |
393 | "symfony/yaml": "~2.2", | 385 | "symfony/yaml": "~2.2", |
394 | "twig/twig": "~1" | 386 | "twig/twig": "~1.10" |
395 | }, | 387 | }, |
396 | "suggest": { | 388 | "suggest": { |
397 | "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.", | 389 | "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.", |
@@ -400,7 +392,7 @@ | |||
400 | "type": "symfony-bundle", | 392 | "type": "symfony-bundle", |
401 | "extra": { | 393 | "extra": { |
402 | "branch-alias": { | 394 | "branch-alias": { |
403 | "dev-master": "1.3.x-dev" | 395 | "dev-master": "1.5.x-dev" |
404 | } | 396 | } |
405 | }, | 397 | }, |
406 | "autoload": { | 398 | "autoload": { |
@@ -438,7 +430,7 @@ | |||
438 | "orm", | 430 | "orm", |
439 | "persistence" | 431 | "persistence" |
440 | ], | 432 | ], |
441 | "time": "2014-11-28 08:32:03" | 433 | "time": "2015-05-28 12:27:15" |
442 | }, | 434 | }, |
443 | { | 435 | { |
444 | "name": "doctrine/doctrine-cache-bundle", | 436 | "name": "doctrine/doctrine-cache-bundle", |
@@ -592,6 +584,60 @@ | |||
592 | "time": "2014-12-20 21:24:13" | 584 | "time": "2014-12-20 21:24:13" |
593 | }, | 585 | }, |
594 | { | 586 | { |
587 | "name": "doctrine/instantiator", | ||
588 | "version": "1.0.4", | ||
589 | "source": { | ||
590 | "type": "git", | ||
591 | "url": "https://github.com/doctrine/instantiator.git", | ||
592 | "reference": "f976e5de371104877ebc89bd8fecb0019ed9c119" | ||
593 | }, | ||
594 | "dist": { | ||
595 | "type": "zip", | ||
596 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f976e5de371104877ebc89bd8fecb0019ed9c119", | ||
597 | "reference": "f976e5de371104877ebc89bd8fecb0019ed9c119", | ||
598 | "shasum": "" | ||
599 | }, | ||
600 | "require": { | ||
601 | "php": ">=5.3,<8.0-DEV" | ||
602 | }, | ||
603 | "require-dev": { | ||
604 | "athletic/athletic": "~0.1.8", | ||
605 | "ext-pdo": "*", | ||
606 | "ext-phar": "*", | ||
607 | "phpunit/phpunit": "~4.0", | ||
608 | "squizlabs/php_codesniffer": "2.0.*@ALPHA" | ||
609 | }, | ||
610 | "type": "library", | ||
611 | "extra": { | ||
612 | "branch-alias": { | ||
613 | "dev-master": "1.0.x-dev" | ||
614 | } | ||
615 | }, | ||
616 | "autoload": { | ||
617 | "psr-0": { | ||
618 | "Doctrine\\Instantiator\\": "src" | ||
619 | } | ||
620 | }, | ||
621 | "notification-url": "https://packagist.org/downloads/", | ||
622 | "license": [ | ||
623 | "MIT" | ||
624 | ], | ||
625 | "authors": [ | ||
626 | { | ||
627 | "name": "Marco Pivetta", | ||
628 | "email": "ocramius@gmail.com", | ||
629 | "homepage": "http://ocramius.github.com/" | ||
630 | } | ||
631 | ], | ||
632 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", | ||
633 | "homepage": "https://github.com/doctrine/instantiator", | ||
634 | "keywords": [ | ||
635 | "constructor", | ||
636 | "instantiate" | ||
637 | ], | ||
638 | "time": "2014-10-13 12:58:55" | ||
639 | }, | ||
640 | { | ||
595 | "name": "doctrine/lexer", | 641 | "name": "doctrine/lexer", |
596 | "version": "v1.0.1", | 642 | "version": "v1.0.1", |
597 | "source": { | 643 | "source": { |
@@ -647,26 +693,30 @@ | |||
647 | }, | 693 | }, |
648 | { | 694 | { |
649 | "name": "doctrine/orm", | 695 | "name": "doctrine/orm", |
650 | "version": "v2.4.7", | 696 | "version": "v2.5.0", |
651 | "source": { | 697 | "source": { |
652 | "type": "git", | 698 | "type": "git", |
653 | "url": "https://github.com/doctrine/doctrine2.git", | 699 | "url": "https://github.com/doctrine/doctrine2.git", |
654 | "reference": "2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68" | 700 | "reference": "aa80c7d2c55a372f5f9f825f5c66dbda53a6e3fe" |
655 | }, | 701 | }, |
656 | "dist": { | 702 | "dist": { |
657 | "type": "zip", | 703 | "type": "zip", |
658 | "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68", | 704 | "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/aa80c7d2c55a372f5f9f825f5c66dbda53a6e3fe", |
659 | "reference": "2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68", | 705 | "reference": "aa80c7d2c55a372f5f9f825f5c66dbda53a6e3fe", |
660 | "shasum": "" | 706 | "shasum": "" |
661 | }, | 707 | }, |
662 | "require": { | 708 | "require": { |
663 | "doctrine/collections": "~1.1", | 709 | "doctrine/cache": "~1.4", |
664 | "doctrine/dbal": "~2.4", | 710 | "doctrine/collections": "~1.2", |
711 | "doctrine/common": ">=2.5-dev,<2.6-dev", | ||
712 | "doctrine/dbal": ">=2.5-dev,<2.6-dev", | ||
713 | "doctrine/instantiator": "~1.0.1", | ||
665 | "ext-pdo": "*", | 714 | "ext-pdo": "*", |
666 | "php": ">=5.3.2", | 715 | "php": ">=5.4", |
667 | "symfony/console": "~2.0" | 716 | "symfony/console": "~2.5" |
668 | }, | 717 | }, |
669 | "require-dev": { | 718 | "require-dev": { |
719 | "phpunit/phpunit": "~4.0", | ||
670 | "satooshi/php-coveralls": "dev-master", | 720 | "satooshi/php-coveralls": "dev-master", |
671 | "symfony/yaml": "~2.1" | 721 | "symfony/yaml": "~2.1" |
672 | }, | 722 | }, |
@@ -680,7 +730,7 @@ | |||
680 | "type": "library", | 730 | "type": "library", |
681 | "extra": { | 731 | "extra": { |
682 | "branch-alias": { | 732 | "branch-alias": { |
683 | "dev-master": "2.4.x-dev" | 733 | "dev-master": "2.6.x-dev" |
684 | } | 734 | } |
685 | }, | 735 | }, |
686 | "autoload": { | 736 | "autoload": { |
@@ -716,7 +766,7 @@ | |||
716 | "database", | 766 | "database", |
717 | "orm" | 767 | "orm" |
718 | ], | 768 | ], |
719 | "time": "2014-12-16 13:45:01" | 769 | "time": "2015-04-02 20:40:18" |
720 | }, | 770 | }, |
721 | { | 771 | { |
722 | "name": "ezyang/htmlpurifier", | 772 | "name": "ezyang/htmlpurifier", |
@@ -764,50 +814,56 @@ | |||
764 | }, | 814 | }, |
765 | { | 815 | { |
766 | "name": "friendsofsymfony/rest-bundle", | 816 | "name": "friendsofsymfony/rest-bundle", |
767 | "version": "1.5.3", | 817 | "version": "1.6.0", |
768 | "target-dir": "FOS/RestBundle", | 818 | "target-dir": "FOS/RestBundle", |
769 | "source": { | 819 | "source": { |
770 | "type": "git", | 820 | "type": "git", |
771 | "url": "https://github.com/FriendsOfSymfony/FOSRestBundle.git", | 821 | "url": "https://github.com/FriendsOfSymfony/FOSRestBundle.git", |
772 | "reference": "fdd21c4c0cb6222ae37efc9362c6a96bd1432412" | 822 | "reference": "832d08199cadf1770ec43c2cba68b42b4d5e7f9f" |
773 | }, | 823 | }, |
774 | "dist": { | 824 | "dist": { |
775 | "type": "zip", | 825 | "type": "zip", |
776 | "url": "https://api.github.com/repos/FriendsOfSymfony/FOSRestBundle/zipball/fdd21c4c0cb6222ae37efc9362c6a96bd1432412", | 826 | "url": "https://api.github.com/repos/FriendsOfSymfony/FOSRestBundle/zipball/832d08199cadf1770ec43c2cba68b42b4d5e7f9f", |
777 | "reference": "fdd21c4c0cb6222ae37efc9362c6a96bd1432412", | 827 | "reference": "832d08199cadf1770ec43c2cba68b42b4d5e7f9f", |
778 | "shasum": "" | 828 | "shasum": "" |
779 | }, | 829 | }, |
780 | "require": { | 830 | "require": { |
781 | "doctrine/inflector": "~1.0", | 831 | "doctrine/inflector": "~1.0", |
782 | "php": ">=5.3.9", | 832 | "php": ">=5.3.9", |
783 | "psr/log": "~1.0", | 833 | "psr/log": "~1.0", |
784 | "symfony/framework-bundle": "~2.2", | 834 | "symfony/framework-bundle": "~2.3", |
835 | "symfony/http-kernel": "~2.3,>=2.3.24", | ||
785 | "willdurand/jsonp-callback-validator": "~1.0", | 836 | "willdurand/jsonp-callback-validator": "~1.0", |
786 | "willdurand/negotiation": "~1.2" | 837 | "willdurand/negotiation": "~1.2" |
787 | }, | 838 | }, |
788 | "conflict": { | 839 | "conflict": { |
789 | "jms/serializer": "<0.12", | 840 | "jms/serializer": "<0.12", |
790 | "jms/serializer-bundle": "<0.11" | 841 | "jms/serializer-bundle": "<0.11", |
842 | "symfony/validator": ">=2.5.0,<2.5.5" | ||
791 | }, | 843 | }, |
792 | "require-dev": { | 844 | "require-dev": { |
845 | "jms/serializer": "~0.13", | ||
793 | "jms/serializer-bundle": "~0.12", | 846 | "jms/serializer-bundle": "~0.12", |
794 | "sensio/framework-extra-bundle": "~2.2", | 847 | "phpoption/phpoption": "~1.1.0", |
795 | "symfony/form": "~2.2", | 848 | "sensio/framework-extra-bundle": "~3.0", |
796 | "symfony/security": "~2.2", | 849 | "symfony/browser-kit": "~2.3", |
797 | "symfony/serializer": "~2.2", | 850 | "symfony/dependency-injection": "~2.3", |
798 | "symfony/validator": "~2.2", | 851 | "symfony/form": "~2.3", |
799 | "symfony/yaml": "~2.2" | 852 | "symfony/security": "~2.3", |
853 | "symfony/serializer": "~2.3", | ||
854 | "symfony/validator": "~2.3", | ||
855 | "symfony/yaml": "~2.3" | ||
800 | }, | 856 | }, |
801 | "suggest": { | 857 | "suggest": { |
802 | "jms/serializer-bundle": "Add support for advanced serialization capabilities, recommended, requires ~0.12", | 858 | "jms/serializer-bundle": "Add support for advanced serialization capabilities, recommended, requires ~0.12", |
803 | "sensio/framework-extra-bundle": "Add support for route annotations and the view response listener", | 859 | "sensio/framework-extra-bundle": "Add support for route annotations and the view response listener, requires ~3.0", |
804 | "symfony/serializer": "Add support for basic serialization capabilities and xml decoding, requires ~2.2", | 860 | "symfony/serializer": "Add support for basic serialization capabilities and xml decoding, requires ~2.3", |
805 | "symfony/validator": "Add support for validation capabilities in the ParamFetcher, requires ~2.2" | 861 | "symfony/validator": "Add support for validation capabilities in the ParamFetcher, requires ~2.3" |
806 | }, | 862 | }, |
807 | "type": "symfony-bundle", | 863 | "type": "symfony-bundle", |
808 | "extra": { | 864 | "extra": { |
809 | "branch-alias": { | 865 | "branch-alias": { |
810 | "dev-master": "1.5-dev" | 866 | "dev-master": "1.6-dev" |
811 | } | 867 | } |
812 | }, | 868 | }, |
813 | "autoload": { | 869 | "autoload": { |
@@ -838,7 +894,7 @@ | |||
838 | "keywords": [ | 894 | "keywords": [ |
839 | "rest" | 895 | "rest" |
840 | ], | 896 | ], |
841 | "time": "2015-02-16 15:26:12" | 897 | "time": "2015-05-22 20:17:35" |
842 | }, | 898 | }, |
843 | { | 899 | { |
844 | "name": "htmlawed/htmlawed", | 900 | "name": "htmlawed/htmlawed", |
@@ -846,12 +902,12 @@ | |||
846 | "source": { | 902 | "source": { |
847 | "type": "git", | 903 | "type": "git", |
848 | "url": "https://github.com/kesar/HTMLawed.git", | 904 | "url": "https://github.com/kesar/HTMLawed.git", |
849 | "reference": "9d292af5f4c288aa68f38b87f5d88c8214f5f233" | 905 | "reference": "f842e793614bdf3af70a62b1e70570e824dc9ab6" |
850 | }, | 906 | }, |
851 | "dist": { | 907 | "dist": { |
852 | "type": "zip", | 908 | "type": "zip", |
853 | "url": "https://api.github.com/repos/kesar/HTMLawed/zipball/9d292af5f4c288aa68f38b87f5d88c8214f5f233", | 909 | "url": "https://api.github.com/repos/kesar/HTMLawed/zipball/f842e793614bdf3af70a62b1e70570e824dc9ab6", |
854 | "reference": "9d292af5f4c288aa68f38b87f5d88c8214f5f233", | 910 | "reference": "f842e793614bdf3af70a62b1e70570e824dc9ab6", |
855 | "shasum": "" | 911 | "shasum": "" |
856 | }, | 912 | }, |
857 | "require": { | 913 | "require": { |
@@ -868,7 +924,14 @@ | |||
868 | "GPL-2.0+", | 924 | "GPL-2.0+", |
869 | "LGPL-3.0" | 925 | "LGPL-3.0" |
870 | ], | 926 | ], |
871 | "description": "htmLawed - Process text with HTML markup to make it more compliant with HTML standards and administrative policies", | 927 | "authors": [ |
928 | { | ||
929 | "name": "Santosh Patnaik", | ||
930 | "homepage": "http://www.bioinformatics.org/people/index.php?user_hash=558b661f92d0ff7b", | ||
931 | "role": "Developer" | ||
932 | } | ||
933 | ], | ||
934 | "description": "htmLawed - Process text with HTML markup to make it more compliant with HTML standards and administrative policies", | ||
872 | "homepage": "http://www.bioinformatics.org/phplabware/internal_utilities/htmLawed/", | 935 | "homepage": "http://www.bioinformatics.org/phplabware/internal_utilities/htmLawed/", |
873 | "keywords": [ | 936 | "keywords": [ |
874 | "HTMLtidy", | 937 | "HTMLtidy", |
@@ -877,7 +940,7 @@ | |||
877 | "strip", | 940 | "strip", |
878 | "tags" | 941 | "tags" |
879 | ], | 942 | ], |
880 | "time": "2014-01-05 13:06:52" | 943 | "time": "2015-04-12 19:37:20" |
881 | }, | 944 | }, |
882 | { | 945 | { |
883 | "name": "incenteev/composer-parameter-handler", | 946 | "name": "incenteev/composer-parameter-handler", |
@@ -1437,16 +1500,16 @@ | |||
1437 | }, | 1500 | }, |
1438 | { | 1501 | { |
1439 | "name": "monolog/monolog", | 1502 | "name": "monolog/monolog", |
1440 | "version": "1.13.0", | 1503 | "version": "1.13.1", |
1441 | "source": { | 1504 | "source": { |
1442 | "type": "git", | 1505 | "type": "git", |
1443 | "url": "https://github.com/Seldaek/monolog.git", | 1506 | "url": "https://github.com/Seldaek/monolog.git", |
1444 | "reference": "c41c218e239b50446fd883acb1ecfd4b770caeae" | 1507 | "reference": "c31a2c4e8db5da8b46c74cf275d7f109c0f249ac" |
1445 | }, | 1508 | }, |
1446 | "dist": { | 1509 | "dist": { |
1447 | "type": "zip", | 1510 | "type": "zip", |
1448 | "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c41c218e239b50446fd883acb1ecfd4b770caeae", | 1511 | "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c31a2c4e8db5da8b46c74cf275d7f109c0f249ac", |
1449 | "reference": "c41c218e239b50446fd883acb1ecfd4b770caeae", | 1512 | "reference": "c31a2c4e8db5da8b46c74cf275d7f109c0f249ac", |
1450 | "shasum": "" | 1513 | "shasum": "" |
1451 | }, | 1514 | }, |
1452 | "require": { | 1515 | "require": { |
@@ -1506,21 +1569,21 @@ | |||
1506 | "logging", | 1569 | "logging", |
1507 | "psr-3" | 1570 | "psr-3" |
1508 | ], | 1571 | ], |
1509 | "time": "2015-03-05 01:12:12" | 1572 | "time": "2015-03-09 09:58:04" |
1510 | }, | 1573 | }, |
1511 | { | 1574 | { |
1512 | "name": "nelmio/api-doc-bundle", | 1575 | "name": "nelmio/api-doc-bundle", |
1513 | "version": "2.7.0", | 1576 | "version": "2.9.0", |
1514 | "target-dir": "Nelmio/ApiDocBundle", | 1577 | "target-dir": "Nelmio/ApiDocBundle", |
1515 | "source": { | 1578 | "source": { |
1516 | "type": "git", | 1579 | "type": "git", |
1517 | "url": "https://github.com/nelmio/NelmioApiDocBundle.git", | 1580 | "url": "https://github.com/nelmio/NelmioApiDocBundle.git", |
1518 | "reference": "3fdb2d4a819d1f71bff0c45880af705a8b124955" | 1581 | "reference": "de31760fd84a45fadbb4fe24db050b5e29ea70d1" |
1519 | }, | 1582 | }, |
1520 | "dist": { | 1583 | "dist": { |
1521 | "type": "zip", | 1584 | "type": "zip", |
1522 | "url": "https://api.github.com/repos/nelmio/NelmioApiDocBundle/zipball/3fdb2d4a819d1f71bff0c45880af705a8b124955", | 1585 | "url": "https://api.github.com/repos/nelmio/NelmioApiDocBundle/zipball/de31760fd84a45fadbb4fe24db050b5e29ea70d1", |
1523 | "reference": "3fdb2d4a819d1f71bff0c45880af705a8b124955", | 1586 | "reference": "de31760fd84a45fadbb4fe24db050b5e29ea70d1", |
1524 | "shasum": "" | 1587 | "shasum": "" |
1525 | }, | 1588 | }, |
1526 | "require": { | 1589 | "require": { |
@@ -1534,16 +1597,19 @@ | |||
1534 | "jms/serializer-bundle": "<0.11" | 1597 | "jms/serializer-bundle": "<0.11" |
1535 | }, | 1598 | }, |
1536 | "require-dev": { | 1599 | "require-dev": { |
1600 | "dunglas/api-bundle": "dev-master", | ||
1537 | "friendsofsymfony/rest-bundle": "~1.0", | 1601 | "friendsofsymfony/rest-bundle": "~1.0", |
1538 | "jms/serializer-bundle": ">=0.11", | 1602 | "jms/serializer-bundle": ">=0.11", |
1539 | "sensio/framework-extra-bundle": "~2.1", | 1603 | "sensio/framework-extra-bundle": "~3.0", |
1540 | "symfony/browser-kit": "~2.1", | 1604 | "symfony/browser-kit": "~2.1", |
1541 | "symfony/css-selector": "~2.1", | 1605 | "symfony/css-selector": "~2.1", |
1542 | "symfony/form": "~2.1", | 1606 | "symfony/form": "~2.1", |
1607 | "symfony/serializer": "~2.7@dev", | ||
1543 | "symfony/validator": "~2.1", | 1608 | "symfony/validator": "~2.1", |
1544 | "symfony/yaml": "~2.1" | 1609 | "symfony/yaml": "~2.1" |
1545 | }, | 1610 | }, |
1546 | "suggest": { | 1611 | "suggest": { |
1612 | "dunglas/api-bundle": "For making use of resources definitions of DunglasApiBundle.", | ||
1547 | "friendsofsymfony/rest-bundle": "For making use of REST information in the doc.", | 1613 | "friendsofsymfony/rest-bundle": "For making use of REST information in the doc.", |
1548 | "jms/serializer": "For making use of serializer information in the doc.", | 1614 | "jms/serializer": "For making use of serializer information in the doc.", |
1549 | "symfony/form": "For using form definitions as input.", | 1615 | "symfony/form": "For using form definitions as input.", |
@@ -1552,7 +1618,7 @@ | |||
1552 | "type": "symfony-bundle", | 1618 | "type": "symfony-bundle", |
1553 | "extra": { | 1619 | "extra": { |
1554 | "branch-alias": { | 1620 | "branch-alias": { |
1555 | "dev-master": "2.7.x-dev" | 1621 | "dev-master": "2.9.x-dev" |
1556 | } | 1622 | } |
1557 | }, | 1623 | }, |
1558 | "autoload": { | 1624 | "autoload": { |
@@ -1581,7 +1647,7 @@ | |||
1581 | "documentation", | 1647 | "documentation", |
1582 | "rest" | 1648 | "rest" |
1583 | ], | 1649 | ], |
1584 | "time": "2014-07-30 09:11:08" | 1650 | "time": "2015-05-16 17:16:14" |
1585 | }, | 1651 | }, |
1586 | { | 1652 | { |
1587 | "name": "nelmio/cors-bundle", | 1653 | "name": "nelmio/cors-bundle", |
@@ -1906,17 +1972,17 @@ | |||
1906 | }, | 1972 | }, |
1907 | { | 1973 | { |
1908 | "name": "sensio/distribution-bundle", | 1974 | "name": "sensio/distribution-bundle", |
1909 | "version": "v3.0.18", | 1975 | "version": "v3.0.25", |
1910 | "target-dir": "Sensio/Bundle/DistributionBundle", | 1976 | "target-dir": "Sensio/Bundle/DistributionBundle", |
1911 | "source": { | 1977 | "source": { |
1912 | "type": "git", | 1978 | "type": "git", |
1913 | "url": "https://github.com/sensiolabs/SensioDistributionBundle.git", | 1979 | "url": "https://github.com/sensiolabs/SensioDistributionBundle.git", |
1914 | "reference": "ac026149ffb1d3a5c893290d2d3ca8795013de08" | 1980 | "reference": "01931139b0f067a4016d5d56e82c2b3086533b89" |
1915 | }, | 1981 | }, |
1916 | "dist": { | 1982 | "dist": { |
1917 | "type": "zip", | 1983 | "type": "zip", |
1918 | "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/ac026149ffb1d3a5c893290d2d3ca8795013de08", | 1984 | "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/01931139b0f067a4016d5d56e82c2b3086533b89", |
1919 | "reference": "ac026149ffb1d3a5c893290d2d3ca8795013de08", | 1985 | "reference": "01931139b0f067a4016d5d56e82c2b3086533b89", |
1920 | "shasum": "" | 1986 | "shasum": "" |
1921 | }, | 1987 | }, |
1922 | "require": { | 1988 | "require": { |
@@ -1962,21 +2028,20 @@ | |||
1962 | "configuration", | 2028 | "configuration", |
1963 | "distribution" | 2029 | "distribution" |
1964 | ], | 2030 | ], |
1965 | "time": "2015-02-27 12:59:18" | 2031 | "time": "2015-05-29 22:35:41" |
1966 | }, | 2032 | }, |
1967 | { | 2033 | { |
1968 | "name": "sensio/framework-extra-bundle", | 2034 | "name": "sensio/framework-extra-bundle", |
1969 | "version": "v3.0.4", | 2035 | "version": "v3.0.8", |
1970 | "target-dir": "Sensio/Bundle/FrameworkExtraBundle", | ||
1971 | "source": { | 2036 | "source": { |
1972 | "type": "git", | 2037 | "type": "git", |
1973 | "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git", | 2038 | "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git", |
1974 | "reference": "b3bc3e67c8b6b68b18d727012183520d35ee762a" | 2039 | "reference": "a30fc18bf147bc25faf6b1d54bf55cfad4b63cba" |
1975 | }, | 2040 | }, |
1976 | "dist": { | 2041 | "dist": { |
1977 | "type": "zip", | 2042 | "type": "zip", |
1978 | "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/b3bc3e67c8b6b68b18d727012183520d35ee762a", | 2043 | "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/a30fc18bf147bc25faf6b1d54bf55cfad4b63cba", |
1979 | "reference": "b3bc3e67c8b6b68b18d727012183520d35ee762a", | 2044 | "reference": "a30fc18bf147bc25faf6b1d54bf55cfad4b63cba", |
1980 | "shasum": "" | 2045 | "shasum": "" |
1981 | }, | 2046 | }, |
1982 | "require": { | 2047 | "require": { |
@@ -1989,6 +2054,7 @@ | |||
1989 | }, | 2054 | }, |
1990 | "suggest": { | 2055 | "suggest": { |
1991 | "symfony/expression-language": "", | 2056 | "symfony/expression-language": "", |
2057 | "symfony/psr-http-message-bridge": "To use the PSR-7 converters", | ||
1992 | "symfony/security-bundle": "" | 2058 | "symfony/security-bundle": "" |
1993 | }, | 2059 | }, |
1994 | "type": "symfony-bundle", | 2060 | "type": "symfony-bundle", |
@@ -1998,8 +2064,8 @@ | |||
1998 | } | 2064 | } |
1999 | }, | 2065 | }, |
2000 | "autoload": { | 2066 | "autoload": { |
2001 | "psr-0": { | 2067 | "psr-4": { |
2002 | "Sensio\\Bundle\\FrameworkExtraBundle": "" | 2068 | "Sensio\\Bundle\\FrameworkExtraBundle\\": "" |
2003 | } | 2069 | } |
2004 | }, | 2070 | }, |
2005 | "notification-url": "https://packagist.org/downloads/", | 2071 | "notification-url": "https://packagist.org/downloads/", |
@@ -2017,20 +2083,20 @@ | |||
2017 | "annotations", | 2083 | "annotations", |
2018 | "controllers" | 2084 | "controllers" |
2019 | ], | 2085 | ], |
2020 | "time": "2014-12-02 09:52:52" | 2086 | "time": "2015-05-29 18:27:23" |
2021 | }, | 2087 | }, |
2022 | { | 2088 | { |
2023 | "name": "sensiolabs/security-checker", | 2089 | "name": "sensiolabs/security-checker", |
2024 | "version": "v2.0.1", | 2090 | "version": "v2.0.5", |
2025 | "source": { | 2091 | "source": { |
2026 | "type": "git", | 2092 | "type": "git", |
2027 | "url": "https://github.com/sensiolabs/security-checker.git", | 2093 | "url": "https://github.com/sensiolabs/security-checker.git", |
2028 | "reference": "134cecf1c61256bd8e973e11376891a724543820" | 2094 | "reference": "2c2a71f1c77d9765c12638c4724d9ca23658a810" |
2029 | }, | 2095 | }, |
2030 | "dist": { | 2096 | "dist": { |
2031 | "type": "zip", | 2097 | "type": "zip", |
2032 | "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/134cecf1c61256bd8e973e11376891a724543820", | 2098 | "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/2c2a71f1c77d9765c12638c4724d9ca23658a810", |
2033 | "reference": "134cecf1c61256bd8e973e11376891a724543820", | 2099 | "reference": "2c2a71f1c77d9765c12638c4724d9ca23658a810", |
2034 | "shasum": "" | 2100 | "shasum": "" |
2035 | }, | 2101 | }, |
2036 | "require": { | 2102 | "require": { |
@@ -2062,7 +2128,7 @@ | |||
2062 | } | 2128 | } |
2063 | ], | 2129 | ], |
2064 | "description": "A security checker for your composer.lock", | 2130 | "description": "A security checker for your composer.lock", |
2065 | "time": "2015-01-26 16:25:19" | 2131 | "time": "2015-05-28 14:22:40" |
2066 | }, | 2132 | }, |
2067 | { | 2133 | { |
2068 | "name": "simplepie/simplepie", | 2134 | "name": "simplepie/simplepie", |
@@ -2120,16 +2186,16 @@ | |||
2120 | }, | 2186 | }, |
2121 | { | 2187 | { |
2122 | "name": "swiftmailer/swiftmailer", | 2188 | "name": "swiftmailer/swiftmailer", |
2123 | "version": "v5.3.1", | 2189 | "version": "v5.4.0", |
2124 | "source": { | 2190 | "source": { |
2125 | "type": "git", | 2191 | "type": "git", |
2126 | "url": "https://github.com/swiftmailer/swiftmailer.git", | 2192 | "url": "https://github.com/swiftmailer/swiftmailer.git", |
2127 | "reference": "c5f963e7f9d6f6438fda4f22d5cc2db296ec621a" | 2193 | "reference": "31454f258f10329ae7c48763eb898a75c39e0a9f" |
2128 | }, | 2194 | }, |
2129 | "dist": { | 2195 | "dist": { |
2130 | "type": "zip", | 2196 | "type": "zip", |
2131 | "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/c5f963e7f9d6f6438fda4f22d5cc2db296ec621a", | 2197 | "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/31454f258f10329ae7c48763eb898a75c39e0a9f", |
2132 | "reference": "c5f963e7f9d6f6438fda4f22d5cc2db296ec621a", | 2198 | "reference": "31454f258f10329ae7c48763eb898a75c39e0a9f", |
2133 | "shasum": "" | 2199 | "shasum": "" |
2134 | }, | 2200 | }, |
2135 | "require": { | 2201 | "require": { |
@@ -2141,7 +2207,7 @@ | |||
2141 | "type": "library", | 2207 | "type": "library", |
2142 | "extra": { | 2208 | "extra": { |
2143 | "branch-alias": { | 2209 | "branch-alias": { |
2144 | "dev-master": "5.3-dev" | 2210 | "dev-master": "5.4-dev" |
2145 | } | 2211 | } |
2146 | }, | 2212 | }, |
2147 | "autoload": { | 2213 | "autoload": { |
@@ -2168,7 +2234,7 @@ | |||
2168 | "mail", | 2234 | "mail", |
2169 | "mailer" | 2235 | "mailer" |
2170 | ], | 2236 | ], |
2171 | "time": "2014-12-05 14:17:14" | 2237 | "time": "2015-03-14 06:06:39" |
2172 | }, | 2238 | }, |
2173 | { | 2239 | { |
2174 | "name": "symfony/assetic-bundle", | 2240 | "name": "symfony/assetic-bundle", |
@@ -2353,16 +2419,16 @@ | |||
2353 | }, | 2419 | }, |
2354 | { | 2420 | { |
2355 | "name": "symfony/symfony", | 2421 | "name": "symfony/symfony", |
2356 | "version": "v2.6.4", | 2422 | "version": "v2.6.9", |
2357 | "source": { | 2423 | "source": { |
2358 | "type": "git", | 2424 | "type": "git", |
2359 | "url": "https://github.com/symfony/symfony.git", | 2425 | "url": "https://github.com/symfony/symfony.git", |
2360 | "reference": "23b647f1e4eeb24a457d3c47f5f5046377d5a3bf" | 2426 | "reference": "b06539573ccf64dd3a62852685f052553d02c5ba" |
2361 | }, | 2427 | }, |
2362 | "dist": { | 2428 | "dist": { |
2363 | "type": "zip", | 2429 | "type": "zip", |
2364 | "url": "https://api.github.com/repos/symfony/symfony/zipball/23b647f1e4eeb24a457d3c47f5f5046377d5a3bf", | 2430 | "url": "https://api.github.com/repos/symfony/symfony/zipball/b06539573ccf64dd3a62852685f052553d02c5ba", |
2365 | "reference": "23b647f1e4eeb24a457d3c47f5f5046377d5a3bf", | 2431 | "reference": "b06539573ccf64dd3a62852685f052553d02c5ba", |
2366 | "shasum": "" | 2432 | "shasum": "" |
2367 | }, | 2433 | }, |
2368 | "require": { | 2434 | "require": { |
@@ -2426,7 +2492,8 @@ | |||
2426 | "ircmaxell/password-compat": "~1.0", | 2492 | "ircmaxell/password-compat": "~1.0", |
2427 | "monolog/monolog": "~1.11", | 2493 | "monolog/monolog": "~1.11", |
2428 | "ocramius/proxy-manager": "~0.4|~1.0", | 2494 | "ocramius/proxy-manager": "~0.4|~1.0", |
2429 | "propel/propel1": "~1.6" | 2495 | "propel/propel1": "~1.6", |
2496 | "symfony/phpunit-bridge": "~2.7" | ||
2430 | }, | 2497 | }, |
2431 | "type": "library", | 2498 | "type": "library", |
2432 | "extra": { | 2499 | "extra": { |
@@ -2452,33 +2519,33 @@ | |||
2452 | ], | 2519 | ], |
2453 | "authors": [ | 2520 | "authors": [ |
2454 | { | 2521 | { |
2455 | "name": "Symfony Community", | ||
2456 | "homepage": "http://symfony.com/contributors" | ||
2457 | }, | ||
2458 | { | ||
2459 | "name": "Fabien Potencier", | 2522 | "name": "Fabien Potencier", |
2460 | "email": "fabien@symfony.com" | 2523 | "email": "fabien@symfony.com" |
2524 | }, | ||
2525 | { | ||
2526 | "name": "Symfony Community", | ||
2527 | "homepage": "https://symfony.com/contributors" | ||
2461 | } | 2528 | } |
2462 | ], | 2529 | ], |
2463 | "description": "The Symfony PHP framework", | 2530 | "description": "The Symfony PHP framework", |
2464 | "homepage": "http://symfony.com", | 2531 | "homepage": "https://symfony.com", |
2465 | "keywords": [ | 2532 | "keywords": [ |
2466 | "framework" | 2533 | "framework" |
2467 | ], | 2534 | ], |
2468 | "time": "2015-02-02 18:02:30" | 2535 | "time": "2015-05-29 22:55:07" |
2469 | }, | 2536 | }, |
2470 | { | 2537 | { |
2471 | "name": "tecnick.com/tcpdf", | 2538 | "name": "tecnick.com/tcpdf", |
2472 | "version": "6.2.6", | 2539 | "version": "6.2.8", |
2473 | "source": { | 2540 | "source": { |
2474 | "type": "git", | 2541 | "type": "git", |
2475 | "url": "https://github.com/tecnickcom/TCPDF.git", | 2542 | "url": "https://github.com/tecnickcom/TCPDF.git", |
2476 | "reference": "a2e8f5b505a7a14a4ed960313c4baf699fd1f4bb" | 2543 | "reference": "3dee9e7f3a414875fd1d9f4f1dfc2433493a86d2" |
2477 | }, | 2544 | }, |
2478 | "dist": { | 2545 | "dist": { |
2479 | "type": "zip", | 2546 | "type": "zip", |
2480 | "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/a2e8f5b505a7a14a4ed960313c4baf699fd1f4bb", | 2547 | "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/3dee9e7f3a414875fd1d9f4f1dfc2433493a86d2", |
2481 | "reference": "a2e8f5b505a7a14a4ed960313c4baf699fd1f4bb", | 2548 | "reference": "3dee9e7f3a414875fd1d9f4f1dfc2433493a86d2", |
2482 | "shasum": "" | 2549 | "shasum": "" |
2483 | }, | 2550 | }, |
2484 | "require": { | 2551 | "require": { |
@@ -2528,7 +2595,7 @@ | |||
2528 | "pdf417", | 2595 | "pdf417", |
2529 | "qrcode" | 2596 | "qrcode" |
2530 | ], | 2597 | ], |
2531 | "time": "2015-01-28 18:51:40" | 2598 | "time": "2015-04-29 16:13:58" |
2532 | }, | 2599 | }, |
2533 | { | 2600 | { |
2534 | "name": "twig/extensions", | 2601 | "name": "twig/extensions", |
@@ -2584,20 +2651,20 @@ | |||
2584 | }, | 2651 | }, |
2585 | { | 2652 | { |
2586 | "name": "twig/twig", | 2653 | "name": "twig/twig", |
2587 | "version": "v1.18.0", | 2654 | "version": "v1.18.1", |
2588 | "source": { | 2655 | "source": { |
2589 | "type": "git", | 2656 | "type": "git", |
2590 | "url": "https://github.com/twigphp/Twig.git", | 2657 | "url": "https://github.com/twigphp/Twig.git", |
2591 | "reference": "4cf7464348e7f9893a93f7096a90b73722be99cf" | 2658 | "reference": "9f70492f44398e276d1b81c1b43adfe6751c7b7f" |
2592 | }, | 2659 | }, |
2593 | "dist": { | 2660 | "dist": { |
2594 | "type": "zip", | 2661 | "type": "zip", |
2595 | "url": "https://api.github.com/repos/twigphp/Twig/zipball/4cf7464348e7f9893a93f7096a90b73722be99cf", | 2662 | "url": "https://api.github.com/repos/twigphp/Twig/zipball/9f70492f44398e276d1b81c1b43adfe6751c7b7f", |
2596 | "reference": "4cf7464348e7f9893a93f7096a90b73722be99cf", | 2663 | "reference": "9f70492f44398e276d1b81c1b43adfe6751c7b7f", |
2597 | "shasum": "" | 2664 | "shasum": "" |
2598 | }, | 2665 | }, |
2599 | "require": { | 2666 | "require": { |
2600 | "php": ">=5.2.4" | 2667 | "php": ">=5.2.7" |
2601 | }, | 2668 | }, |
2602 | "type": "library", | 2669 | "type": "library", |
2603 | "extra": { | 2670 | "extra": { |
@@ -2637,7 +2704,7 @@ | |||
2637 | "keywords": [ | 2704 | "keywords": [ |
2638 | "templating" | 2705 | "templating" |
2639 | ], | 2706 | ], |
2640 | "time": "2015-01-25 17:32:08" | 2707 | "time": "2015-04-19 08:30:27" |
2641 | }, | 2708 | }, |
2642 | { | 2709 | { |
2643 | "name": "umpirsky/twig-gettext-extractor", | 2710 | "name": "umpirsky/twig-gettext-extractor", |
@@ -2713,7 +2780,7 @@ | |||
2713 | "description": "Libraries from @fivefilters.", | 2780 | "description": "Libraries from @fivefilters.", |
2714 | "homepage": "https://github.com/wallabag/Fivefilters_Libraries", | 2781 | "homepage": "https://github.com/wallabag/Fivefilters_Libraries", |
2715 | "support": { | 2782 | "support": { |
2716 | "source": "https://github.com/wallabag/Fivefilters_Libraries/tree/master", | 2783 | "source": "https://github.com/wallabag/Fivefilters_Libraries/tree/1.0.0", |
2717 | "issues": "https://github.com/wallabag/Fivefilters_Libraries/issues" | 2784 | "issues": "https://github.com/wallabag/Fivefilters_Libraries/issues" |
2718 | }, | 2785 | }, |
2719 | "time": "2015-01-19 20:19:28" | 2786 | "time": "2015-01-19 20:19:28" |
@@ -2758,7 +2825,7 @@ | |||
2758 | "description": "PHP Classes for dynamically generating EPub files.", | 2825 | "description": "PHP Classes for dynamically generating EPub files.", |
2759 | "homepage": "https://github.com/wallabag/PHPePub", | 2826 | "homepage": "https://github.com/wallabag/PHPePub", |
2760 | "support": { | 2827 | "support": { |
2761 | "source": "https://github.com/wallabag/PHPePub/tree/master" | 2828 | "source": "https://github.com/wallabag/PHPePub/tree/2.1.0" |
2762 | }, | 2829 | }, |
2763 | "time": "2015-01-19 11:44:19" | 2830 | "time": "2015-01-19 11:44:19" |
2764 | }, | 2831 | }, |
@@ -2795,7 +2862,7 @@ | |||
2795 | "description": "A simple and smart (or stupid) php5 snippets repository", | 2862 | "description": "A simple and smart (or stupid) php5 snippets repository", |
2796 | "homepage": "https://github.com/wallabag/kriss_php5", | 2863 | "homepage": "https://github.com/wallabag/kriss_php5", |
2797 | "support": { | 2864 | "support": { |
2798 | "source": "https://github.com/wallabag/kriss_php5/tree/master" | 2865 | "source": "https://github.com/wallabag/kriss_php5/tree/1.0.0" |
2799 | }, | 2866 | }, |
2800 | "time": "2015-01-18 21:21:43" | 2867 | "time": "2015-01-18 21:21:43" |
2801 | }, | 2868 | }, |
@@ -2832,7 +2899,7 @@ | |||
2832 | "description": "Paginate record sets, not tied in directly to a database.", | 2899 | "description": "Paginate record sets, not tied in directly to a database.", |
2833 | "homepage": "https://github.com/wallabag/pagination", | 2900 | "homepage": "https://github.com/wallabag/pagination", |
2834 | "support": { | 2901 | "support": { |
2835 | "source": "https://github.com/wallabag/pagination/tree/master" | 2902 | "source": "https://github.com/wallabag/pagination/tree/1.0.0" |
2836 | }, | 2903 | }, |
2837 | "time": "2015-01-19 09:24:39" | 2904 | "time": "2015-01-19 09:24:39" |
2838 | }, | 2905 | }, |
@@ -2878,7 +2945,7 @@ | |||
2878 | "sessions" | 2945 | "sessions" |
2879 | ], | 2946 | ], |
2880 | "support": { | 2947 | "support": { |
2881 | "source": "https://github.com/wallabag/PHP-Flash-Messages/tree/master" | 2948 | "source": "https://github.com/wallabag/PHP-Flash-Messages/tree/1.0.0" |
2882 | }, | 2949 | }, |
2883 | "time": "2015-01-18 19:51:55" | 2950 | "time": "2015-01-18 19:51:55" |
2884 | }, | 2951 | }, |
@@ -2932,7 +2999,7 @@ | |||
2932 | "html" | 2999 | "html" |
2933 | ], | 3000 | ], |
2934 | "support": { | 3001 | "support": { |
2935 | "source": "https://github.com/wallabag/php-readability/tree/master", | 3002 | "source": "https://github.com/wallabag/php-readability/tree/1.0.0", |
2936 | "issues": "https://github.com/wallabag/php-readability/issues" | 3003 | "issues": "https://github.com/wallabag/php-readability/issues" |
2937 | }, | 3004 | }, |
2938 | "time": "2015-01-19 12:25:38" | 3005 | "time": "2015-01-19 12:25:38" |
@@ -2970,29 +3037,30 @@ | |||
2970 | "description": "An experimental Mobipocket file creator in PHP.", | 3037 | "description": "An experimental Mobipocket file creator in PHP.", |
2971 | "homepage": "https://github.com/wallabag/phpMobi", | 3038 | "homepage": "https://github.com/wallabag/phpMobi", |
2972 | "support": { | 3039 | "support": { |
2973 | "source": "https://github.com/wallabag/phpMobi/tree/master" | 3040 | "source": "https://github.com/wallabag/phpMobi/tree/1.0.0" |
2974 | }, | 3041 | }, |
2975 | "time": "2015-01-19 12:43:17" | 3042 | "time": "2015-01-19 12:43:17" |
2976 | }, | 3043 | }, |
2977 | { | 3044 | { |
2978 | "name": "willdurand/hateoas", | 3045 | "name": "willdurand/hateoas", |
2979 | "version": "v2.4.0", | 3046 | "version": "v2.6.0", |
2980 | "source": { | 3047 | "source": { |
2981 | "type": "git", | 3048 | "type": "git", |
2982 | "url": "https://github.com/willdurand/Hateoas.git", | 3049 | "url": "https://github.com/willdurand/Hateoas.git", |
2983 | "reference": "89fe19ad9ce25f15323d76ac22272282ae8a9f14" | 3050 | "reference": "fc0869381d6934e5d430084154584761297caa6c" |
2984 | }, | 3051 | }, |
2985 | "dist": { | 3052 | "dist": { |
2986 | "type": "zip", | 3053 | "type": "zip", |
2987 | "url": "https://api.github.com/repos/willdurand/Hateoas/zipball/89fe19ad9ce25f15323d76ac22272282ae8a9f14", | 3054 | "url": "https://api.github.com/repos/willdurand/Hateoas/zipball/fc0869381d6934e5d430084154584761297caa6c", |
2988 | "reference": "89fe19ad9ce25f15323d76ac22272282ae8a9f14", | 3055 | "reference": "fc0869381d6934e5d430084154584761297caa6c", |
2989 | "shasum": "" | 3056 | "shasum": "" |
2990 | }, | 3057 | }, |
2991 | "require": { | 3058 | "require": { |
2992 | "doctrine/annotations": "~1.0", | 3059 | "doctrine/annotations": "~1.0", |
2993 | "doctrine/common": "~2.0", | 3060 | "doctrine/common": "~2.0", |
2994 | "jms/metadata": "~1.1", | 3061 | "jms/metadata": "~1.1", |
2995 | "jms/serializer": "~0.13@dev", | 3062 | "jms/serializer": "~0.13", |
3063 | "php": ">=5.3", | ||
2996 | "symfony/expression-language": "~2.4" | 3064 | "symfony/expression-language": "~2.4" |
2997 | }, | 3065 | }, |
2998 | "require-dev": { | 3066 | "require-dev": { |
@@ -3013,7 +3081,7 @@ | |||
3013 | "type": "library", | 3081 | "type": "library", |
3014 | "extra": { | 3082 | "extra": { |
3015 | "branch-alias": { | 3083 | "branch-alias": { |
3016 | "dev-master": "2.4-dev" | 3084 | "dev-master": "2.6-dev" |
3017 | } | 3085 | } |
3018 | }, | 3086 | }, |
3019 | "autoload": { | 3087 | "autoload": { |
@@ -3036,7 +3104,7 @@ | |||
3036 | } | 3104 | } |
3037 | ], | 3105 | ], |
3038 | "description": "A PHP library to support implementing representations for HATEOAS REST web services", | 3106 | "description": "A PHP library to support implementing representations for HATEOAS REST web services", |
3039 | "time": "2015-02-24 15:28:33" | 3107 | "time": "2015-05-21 21:57:34" |
3040 | }, | 3108 | }, |
3041 | { | 3109 | { |
3042 | "name": "willdurand/hateoas-bundle", | 3110 | "name": "willdurand/hateoas-bundle", |
@@ -3045,12 +3113,12 @@ | |||
3045 | "source": { | 3113 | "source": { |
3046 | "type": "git", | 3114 | "type": "git", |
3047 | "url": "https://github.com/willdurand/BazingaHateoasBundle.git", | 3115 | "url": "https://github.com/willdurand/BazingaHateoasBundle.git", |
3048 | "reference": "3c86e8080e8a229365a0ce91818da6fe6562376b" | 3116 | "reference": "a99f48ea5004a89ecf0927229d9c912fed9fa4ab" |
3049 | }, | 3117 | }, |
3050 | "dist": { | 3118 | "dist": { |
3051 | "type": "zip", | 3119 | "type": "zip", |
3052 | "url": "https://api.github.com/repos/willdurand/BazingaHateoasBundle/zipball/3c86e8080e8a229365a0ce91818da6fe6562376b", | 3120 | "url": "https://api.github.com/repos/willdurand/BazingaHateoasBundle/zipball/a99f48ea5004a89ecf0927229d9c912fed9fa4ab", |
3053 | "reference": "3c86e8080e8a229365a0ce91818da6fe6562376b", | 3121 | "reference": "a99f48ea5004a89ecf0927229d9c912fed9fa4ab", |
3054 | "shasum": "" | 3122 | "shasum": "" |
3055 | }, | 3123 | }, |
3056 | "require": { | 3124 | "require": { |
@@ -3088,7 +3156,7 @@ | |||
3088 | "HATEOAS", | 3156 | "HATEOAS", |
3089 | "rest" | 3157 | "rest" |
3090 | ], | 3158 | ], |
3091 | "time": "2015-02-19 16:27:51" | 3159 | "time": "2015-03-12 15:49:24" |
3092 | }, | 3160 | }, |
3093 | { | 3161 | { |
3094 | "name": "willdurand/jsonp-callback-validator", | 3162 | "name": "willdurand/jsonp-callback-validator", |
@@ -3183,24 +3251,27 @@ | |||
3183 | "packages-dev": [ | 3251 | "packages-dev": [ |
3184 | { | 3252 | { |
3185 | "name": "doctrine/data-fixtures", | 3253 | "name": "doctrine/data-fixtures", |
3186 | "version": "v1.0.0", | 3254 | "version": "v1.1.1", |
3187 | "source": { | 3255 | "source": { |
3188 | "type": "git", | 3256 | "type": "git", |
3189 | "url": "https://github.com/doctrine/data-fixtures.git", | 3257 | "url": "https://github.com/doctrine/data-fixtures.git", |
3190 | "reference": "b4a135c7db56ecc4602b54a2184368f440cac33e" | 3258 | "reference": "bd44f6b6e40247b6530bc8abe802e4e4d914976a" |
3191 | }, | 3259 | }, |
3192 | "dist": { | 3260 | "dist": { |
3193 | "type": "zip", | 3261 | "type": "zip", |
3194 | "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/b4a135c7db56ecc4602b54a2184368f440cac33e", | 3262 | "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/bd44f6b6e40247b6530bc8abe802e4e4d914976a", |
3195 | "reference": "b4a135c7db56ecc4602b54a2184368f440cac33e", | 3263 | "reference": "bd44f6b6e40247b6530bc8abe802e4e4d914976a", |
3196 | "shasum": "" | 3264 | "shasum": "" |
3197 | }, | 3265 | }, |
3198 | "require": { | 3266 | "require": { |
3199 | "doctrine/common": ">=2.2,<2.5-dev", | 3267 | "doctrine/common": "~2.2", |
3200 | "php": ">=5.3.2" | 3268 | "php": ">=5.3.2" |
3201 | }, | 3269 | }, |
3270 | "conflict": { | ||
3271 | "doctrine/orm": "< 2.4" | ||
3272 | }, | ||
3202 | "require-dev": { | 3273 | "require-dev": { |
3203 | "doctrine/orm": ">=2.2,<2.5-dev" | 3274 | "doctrine/orm": "~2.4" |
3204 | }, | 3275 | }, |
3205 | "suggest": { | 3276 | "suggest": { |
3206 | "doctrine/mongodb-odm": "For loading MongoDB ODM fixtures", | 3277 | "doctrine/mongodb-odm": "For loading MongoDB ODM fixtures", |
@@ -3210,7 +3281,7 @@ | |||
3210 | "type": "library", | 3281 | "type": "library", |
3211 | "extra": { | 3282 | "extra": { |
3212 | "branch-alias": { | 3283 | "branch-alias": { |
3213 | "dev-master": "1.0.x-dev" | 3284 | "dev-master": "1.1.x-dev" |
3214 | } | 3285 | } |
3215 | }, | 3286 | }, |
3216 | "autoload": { | 3287 | "autoload": { |
@@ -3225,9 +3296,7 @@ | |||
3225 | "authors": [ | 3296 | "authors": [ |
3226 | { | 3297 | { |
3227 | "name": "Jonathan Wage", | 3298 | "name": "Jonathan Wage", |
3228 | "email": "jonwage@gmail.com", | 3299 | "email": "jonwage@gmail.com" |
3229 | "homepage": "http://www.jwage.com/", | ||
3230 | "role": "Creator" | ||
3231 | } | 3300 | } |
3232 | ], | 3301 | ], |
3233 | "description": "Data Fixtures for all Doctrine Object Managers", | 3302 | "description": "Data Fixtures for all Doctrine Object Managers", |
@@ -3235,7 +3304,7 @@ | |||
3235 | "keywords": [ | 3304 | "keywords": [ |
3236 | "database" | 3305 | "database" |
3237 | ], | 3306 | ], |
3238 | "time": "2013-07-10 17:04:07" | 3307 | "time": "2015-03-30 12:14:13" |
3239 | }, | 3308 | }, |
3240 | { | 3309 | { |
3241 | "name": "doctrine/doctrine-fixtures-bundle", | 3310 | "name": "doctrine/doctrine-fixtures-bundle", |
@@ -3296,60 +3365,6 @@ | |||
3296 | "time": "2015-01-19 02:21:37" | 3365 | "time": "2015-01-19 02:21:37" |
3297 | }, | 3366 | }, |
3298 | { | 3367 | { |
3299 | "name": "doctrine/instantiator", | ||
3300 | "version": "1.0.4", | ||
3301 | "source": { | ||
3302 | "type": "git", | ||
3303 | "url": "https://github.com/doctrine/instantiator.git", | ||
3304 | "reference": "f976e5de371104877ebc89bd8fecb0019ed9c119" | ||
3305 | }, | ||
3306 | "dist": { | ||
3307 | "type": "zip", | ||
3308 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f976e5de371104877ebc89bd8fecb0019ed9c119", | ||
3309 | "reference": "f976e5de371104877ebc89bd8fecb0019ed9c119", | ||
3310 | "shasum": "" | ||
3311 | }, | ||
3312 | "require": { | ||
3313 | "php": ">=5.3,<8.0-DEV" | ||
3314 | }, | ||
3315 | "require-dev": { | ||
3316 | "athletic/athletic": "~0.1.8", | ||
3317 | "ext-pdo": "*", | ||
3318 | "ext-phar": "*", | ||
3319 | "phpunit/phpunit": "~4.0", | ||
3320 | "squizlabs/php_codesniffer": "2.0.*@ALPHA" | ||
3321 | }, | ||
3322 | "type": "library", | ||
3323 | "extra": { | ||
3324 | "branch-alias": { | ||
3325 | "dev-master": "1.0.x-dev" | ||
3326 | } | ||
3327 | }, | ||
3328 | "autoload": { | ||
3329 | "psr-0": { | ||
3330 | "Doctrine\\Instantiator\\": "src" | ||
3331 | } | ||
3332 | }, | ||
3333 | "notification-url": "https://packagist.org/downloads/", | ||
3334 | "license": [ | ||
3335 | "MIT" | ||
3336 | ], | ||
3337 | "authors": [ | ||
3338 | { | ||
3339 | "name": "Marco Pivetta", | ||
3340 | "email": "ocramius@gmail.com", | ||
3341 | "homepage": "http://ocramius.github.com/" | ||
3342 | } | ||
3343 | ], | ||
3344 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", | ||
3345 | "homepage": "https://github.com/doctrine/instantiator", | ||
3346 | "keywords": [ | ||
3347 | "constructor", | ||
3348 | "instantiate" | ||
3349 | ], | ||
3350 | "time": "2014-10-13 12:58:55" | ||
3351 | }, | ||
3352 | { | ||
3353 | "name": "phpdocumentor/reflection-docblock", | 3368 | "name": "phpdocumentor/reflection-docblock", |
3354 | "version": "2.0.4", | 3369 | "version": "2.0.4", |
3355 | "source": { | 3370 | "source": { |
@@ -3400,21 +3415,22 @@ | |||
3400 | }, | 3415 | }, |
3401 | { | 3416 | { |
3402 | "name": "phpspec/prophecy", | 3417 | "name": "phpspec/prophecy", |
3403 | "version": "v1.3.1", | 3418 | "version": "v1.4.1", |
3404 | "source": { | 3419 | "source": { |
3405 | "type": "git", | 3420 | "type": "git", |
3406 | "url": "https://github.com/phpspec/prophecy.git", | 3421 | "url": "https://github.com/phpspec/prophecy.git", |
3407 | "reference": "9ca52329bcdd1500de24427542577ebf3fc2f1c9" | 3422 | "reference": "3132b1f44c7bf2ec4c7eb2d3cb78fdeca760d373" |
3408 | }, | 3423 | }, |
3409 | "dist": { | 3424 | "dist": { |
3410 | "type": "zip", | 3425 | "type": "zip", |
3411 | "url": "https://api.github.com/repos/phpspec/prophecy/zipball/9ca52329bcdd1500de24427542577ebf3fc2f1c9", | 3426 | "url": "https://api.github.com/repos/phpspec/prophecy/zipball/3132b1f44c7bf2ec4c7eb2d3cb78fdeca760d373", |
3412 | "reference": "9ca52329bcdd1500de24427542577ebf3fc2f1c9", | 3427 | "reference": "3132b1f44c7bf2ec4c7eb2d3cb78fdeca760d373", |
3413 | "shasum": "" | 3428 | "shasum": "" |
3414 | }, | 3429 | }, |
3415 | "require": { | 3430 | "require": { |
3416 | "doctrine/instantiator": "~1.0,>=1.0.2", | 3431 | "doctrine/instantiator": "^1.0.2", |
3417 | "phpdocumentor/reflection-docblock": "~2.0" | 3432 | "phpdocumentor/reflection-docblock": "~2.0", |
3433 | "sebastian/comparator": "~1.1" | ||
3418 | }, | 3434 | }, |
3419 | "require-dev": { | 3435 | "require-dev": { |
3420 | "phpspec/phpspec": "~2.0" | 3436 | "phpspec/phpspec": "~2.0" |
@@ -3422,7 +3438,7 @@ | |||
3422 | "type": "library", | 3438 | "type": "library", |
3423 | "extra": { | 3439 | "extra": { |
3424 | "branch-alias": { | 3440 | "branch-alias": { |
3425 | "dev-master": "1.2.x-dev" | 3441 | "dev-master": "1.4.x-dev" |
3426 | } | 3442 | } |
3427 | }, | 3443 | }, |
3428 | "autoload": { | 3444 | "autoload": { |
@@ -3446,7 +3462,7 @@ | |||
3446 | } | 3462 | } |
3447 | ], | 3463 | ], |
3448 | "description": "Highly opinionated mocking framework for PHP 5.3+", | 3464 | "description": "Highly opinionated mocking framework for PHP 5.3+", |
3449 | "homepage": "http://phpspec.org", | 3465 | "homepage": "https://github.com/phpspec/prophecy", |
3450 | "keywords": [ | 3466 | "keywords": [ |
3451 | "Double", | 3467 | "Double", |
3452 | "Dummy", | 3468 | "Dummy", |
@@ -3455,20 +3471,20 @@ | |||
3455 | "spy", | 3471 | "spy", |
3456 | "stub" | 3472 | "stub" |
3457 | ], | 3473 | ], |
3458 | "time": "2014-11-17 16:23:49" | 3474 | "time": "2015-04-27 22:15:08" |
3459 | }, | 3475 | }, |
3460 | { | 3476 | { |
3461 | "name": "phpunit/php-code-coverage", | 3477 | "name": "phpunit/php-code-coverage", |
3462 | "version": "2.0.15", | 3478 | "version": "2.0.17", |
3463 | "source": { | 3479 | "source": { |
3464 | "type": "git", | 3480 | "type": "git", |
3465 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", | 3481 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", |
3466 | "reference": "34cc484af1ca149188d0d9e91412191e398e0b67" | 3482 | "reference": "c4e8e7725e351184a76544634855b8a9c405a6e3" |
3467 | }, | 3483 | }, |
3468 | "dist": { | 3484 | "dist": { |
3469 | "type": "zip", | 3485 | "type": "zip", |
3470 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/34cc484af1ca149188d0d9e91412191e398e0b67", | 3486 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c4e8e7725e351184a76544634855b8a9c405a6e3", |
3471 | "reference": "34cc484af1ca149188d0d9e91412191e398e0b67", | 3487 | "reference": "c4e8e7725e351184a76544634855b8a9c405a6e3", |
3472 | "shasum": "" | 3488 | "shasum": "" |
3473 | }, | 3489 | }, |
3474 | "require": { | 3490 | "require": { |
@@ -3517,35 +3533,37 @@ | |||
3517 | "testing", | 3533 | "testing", |
3518 | "xunit" | 3534 | "xunit" |
3519 | ], | 3535 | ], |
3520 | "time": "2015-01-24 10:06:35" | 3536 | "time": "2015-05-25 05:11:59" |
3521 | }, | 3537 | }, |
3522 | { | 3538 | { |
3523 | "name": "phpunit/php-file-iterator", | 3539 | "name": "phpunit/php-file-iterator", |
3524 | "version": "1.3.4", | 3540 | "version": "1.4.0", |
3525 | "source": { | 3541 | "source": { |
3526 | "type": "git", | 3542 | "type": "git", |
3527 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", | 3543 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", |
3528 | "reference": "acd690379117b042d1c8af1fafd61bde001bf6bb" | 3544 | "reference": "a923bb15680d0089e2316f7a4af8f437046e96bb" |
3529 | }, | 3545 | }, |
3530 | "dist": { | 3546 | "dist": { |
3531 | "type": "zip", | 3547 | "type": "zip", |
3532 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/acd690379117b042d1c8af1fafd61bde001bf6bb", | 3548 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a923bb15680d0089e2316f7a4af8f437046e96bb", |
3533 | "reference": "acd690379117b042d1c8af1fafd61bde001bf6bb", | 3549 | "reference": "a923bb15680d0089e2316f7a4af8f437046e96bb", |
3534 | "shasum": "" | 3550 | "shasum": "" |
3535 | }, | 3551 | }, |
3536 | "require": { | 3552 | "require": { |
3537 | "php": ">=5.3.3" | 3553 | "php": ">=5.3.3" |
3538 | }, | 3554 | }, |
3539 | "type": "library", | 3555 | "type": "library", |
3556 | "extra": { | ||
3557 | "branch-alias": { | ||
3558 | "dev-master": "1.4.x-dev" | ||
3559 | } | ||
3560 | }, | ||
3540 | "autoload": { | 3561 | "autoload": { |
3541 | "classmap": [ | 3562 | "classmap": [ |
3542 | "File/" | 3563 | "src/" |
3543 | ] | 3564 | ] |
3544 | }, | 3565 | }, |
3545 | "notification-url": "https://packagist.org/downloads/", | 3566 | "notification-url": "https://packagist.org/downloads/", |
3546 | "include-path": [ | ||
3547 | "" | ||
3548 | ], | ||
3549 | "license": [ | 3567 | "license": [ |
3550 | "BSD-3-Clause" | 3568 | "BSD-3-Clause" |
3551 | ], | 3569 | ], |
@@ -3562,7 +3580,7 @@ | |||
3562 | "filesystem", | 3580 | "filesystem", |
3563 | "iterator" | 3581 | "iterator" |
3564 | ], | 3582 | ], |
3565 | "time": "2013-10-10 15:34:57" | 3583 | "time": "2015-04-02 05:19:05" |
3566 | }, | 3584 | }, |
3567 | { | 3585 | { |
3568 | "name": "phpunit/php-text-template", | 3586 | "name": "phpunit/php-text-template", |
@@ -3654,16 +3672,16 @@ | |||
3654 | }, | 3672 | }, |
3655 | { | 3673 | { |
3656 | "name": "phpunit/php-token-stream", | 3674 | "name": "phpunit/php-token-stream", |
3657 | "version": "1.4.0", | 3675 | "version": "1.4.1", |
3658 | "source": { | 3676 | "source": { |
3659 | "type": "git", | 3677 | "type": "git", |
3660 | "url": "https://github.com/sebastianbergmann/php-token-stream.git", | 3678 | "url": "https://github.com/sebastianbergmann/php-token-stream.git", |
3661 | "reference": "db32c18eba00b121c145575fcbcd4d4d24e6db74" | 3679 | "reference": "eab81d02569310739373308137284e0158424330" |
3662 | }, | 3680 | }, |
3663 | "dist": { | 3681 | "dist": { |
3664 | "type": "zip", | 3682 | "type": "zip", |
3665 | "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/db32c18eba00b121c145575fcbcd4d4d24e6db74", | 3683 | "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/eab81d02569310739373308137284e0158424330", |
3666 | "reference": "db32c18eba00b121c145575fcbcd4d4d24e6db74", | 3684 | "reference": "eab81d02569310739373308137284e0158424330", |
3667 | "shasum": "" | 3685 | "shasum": "" |
3668 | }, | 3686 | }, |
3669 | "require": { | 3687 | "require": { |
@@ -3699,20 +3717,20 @@ | |||
3699 | "keywords": [ | 3717 | "keywords": [ |
3700 | "tokenizer" | 3718 | "tokenizer" |
3701 | ], | 3719 | ], |
3702 | "time": "2015-01-17 09:51:32" | 3720 | "time": "2015-04-08 04:46:07" |
3703 | }, | 3721 | }, |
3704 | { | 3722 | { |
3705 | "name": "phpunit/phpunit", | 3723 | "name": "phpunit/phpunit", |
3706 | "version": "4.5.0", | 3724 | "version": "4.6.9", |
3707 | "source": { | 3725 | "source": { |
3708 | "type": "git", | 3726 | "type": "git", |
3709 | "url": "https://github.com/sebastianbergmann/phpunit.git", | 3727 | "url": "https://github.com/sebastianbergmann/phpunit.git", |
3710 | "reference": "5b578d3865a9128b9c209b011fda6539ec06e7a5" | 3728 | "reference": "816d12536a7a032adc3b68737f82cfbbf98b79c1" |
3711 | }, | 3729 | }, |
3712 | "dist": { | 3730 | "dist": { |
3713 | "type": "zip", | 3731 | "type": "zip", |
3714 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/5b578d3865a9128b9c209b011fda6539ec06e7a5", | 3732 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/816d12536a7a032adc3b68737f82cfbbf98b79c1", |
3715 | "reference": "5b578d3865a9128b9c209b011fda6539ec06e7a5", | 3733 | "reference": "816d12536a7a032adc3b68737f82cfbbf98b79c1", |
3716 | "shasum": "" | 3734 | "shasum": "" |
3717 | }, | 3735 | }, |
3718 | "require": { | 3736 | "require": { |
@@ -3722,19 +3740,19 @@ | |||
3722 | "ext-reflection": "*", | 3740 | "ext-reflection": "*", |
3723 | "ext-spl": "*", | 3741 | "ext-spl": "*", |
3724 | "php": ">=5.3.3", | 3742 | "php": ">=5.3.3", |
3725 | "phpspec/prophecy": "~1.3.1", | 3743 | "phpspec/prophecy": "~1.3,>=1.3.1", |
3726 | "phpunit/php-code-coverage": "~2.0", | 3744 | "phpunit/php-code-coverage": "~2.0,>=2.0.11", |
3727 | "phpunit/php-file-iterator": "~1.3.2", | 3745 | "phpunit/php-file-iterator": "~1.4", |
3728 | "phpunit/php-text-template": "~1.2", | 3746 | "phpunit/php-text-template": "~1.2", |
3729 | "phpunit/php-timer": "~1.0.2", | 3747 | "phpunit/php-timer": "~1.0", |
3730 | "phpunit/phpunit-mock-objects": "~2.3", | 3748 | "phpunit/phpunit-mock-objects": "~2.3", |
3731 | "sebastian/comparator": "~1.1", | 3749 | "sebastian/comparator": "~1.1", |
3732 | "sebastian/diff": "~1.1", | 3750 | "sebastian/diff": "~1.2", |
3733 | "sebastian/environment": "~1.2", | 3751 | "sebastian/environment": "~1.2", |
3734 | "sebastian/exporter": "~1.2", | 3752 | "sebastian/exporter": "~1.2", |
3735 | "sebastian/global-state": "~1.0", | 3753 | "sebastian/global-state": "~1.0", |
3736 | "sebastian/version": "~1.0", | 3754 | "sebastian/version": "~1.0", |
3737 | "symfony/yaml": "~2.0" | 3755 | "symfony/yaml": "~2.1|~3.0" |
3738 | }, | 3756 | }, |
3739 | "suggest": { | 3757 | "suggest": { |
3740 | "phpunit/php-invoker": "~1.1" | 3758 | "phpunit/php-invoker": "~1.1" |
@@ -3745,7 +3763,7 @@ | |||
3745 | "type": "library", | 3763 | "type": "library", |
3746 | "extra": { | 3764 | "extra": { |
3747 | "branch-alias": { | 3765 | "branch-alias": { |
3748 | "dev-master": "4.5.x-dev" | 3766 | "dev-master": "4.6.x-dev" |
3749 | } | 3767 | } |
3750 | }, | 3768 | }, |
3751 | "autoload": { | 3769 | "autoload": { |
@@ -3771,29 +3789,29 @@ | |||
3771 | "testing", | 3789 | "testing", |
3772 | "xunit" | 3790 | "xunit" |
3773 | ], | 3791 | ], |
3774 | "time": "2015-02-05 15:51:19" | 3792 | "time": "2015-05-29 06:00:03" |
3775 | }, | 3793 | }, |
3776 | { | 3794 | { |
3777 | "name": "phpunit/phpunit-mock-objects", | 3795 | "name": "phpunit/phpunit-mock-objects", |
3778 | "version": "2.3.0", | 3796 | "version": "2.3.3", |
3779 | "source": { | 3797 | "source": { |
3780 | "type": "git", | 3798 | "type": "git", |
3781 | "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", | 3799 | "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", |
3782 | "reference": "c63d2367247365f688544f0d500af90a11a44c65" | 3800 | "reference": "253c005852591fd547fc18cd5b7b43a1ec82d8f7" |
3783 | }, | 3801 | }, |
3784 | "dist": { | 3802 | "dist": { |
3785 | "type": "zip", | 3803 | "type": "zip", |
3786 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/c63d2367247365f688544f0d500af90a11a44c65", | 3804 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/253c005852591fd547fc18cd5b7b43a1ec82d8f7", |
3787 | "reference": "c63d2367247365f688544f0d500af90a11a44c65", | 3805 | "reference": "253c005852591fd547fc18cd5b7b43a1ec82d8f7", |
3788 | "shasum": "" | 3806 | "shasum": "" |
3789 | }, | 3807 | }, |
3790 | "require": { | 3808 | "require": { |
3791 | "doctrine/instantiator": "~1.0,>=1.0.1", | 3809 | "doctrine/instantiator": "~1.0,>=1.0.2", |
3792 | "php": ">=5.3.3", | 3810 | "php": ">=5.3.3", |
3793 | "phpunit/php-text-template": "~1.2" | 3811 | "phpunit/php-text-template": "~1.2" |
3794 | }, | 3812 | }, |
3795 | "require-dev": { | 3813 | "require-dev": { |
3796 | "phpunit/phpunit": "~4.3" | 3814 | "phpunit/phpunit": "~4.4" |
3797 | }, | 3815 | }, |
3798 | "suggest": { | 3816 | "suggest": { |
3799 | "ext-soap": "*" | 3817 | "ext-soap": "*" |
@@ -3826,7 +3844,7 @@ | |||
3826 | "mock", | 3844 | "mock", |
3827 | "xunit" | 3845 | "xunit" |
3828 | ], | 3846 | ], |
3829 | "time": "2014-10-03 05:12:11" | 3847 | "time": "2015-05-29 05:19:18" |
3830 | }, | 3848 | }, |
3831 | { | 3849 | { |
3832 | "name": "sebastian/comparator", | 3850 | "name": "sebastian/comparator", |
@@ -3894,16 +3912,16 @@ | |||
3894 | }, | 3912 | }, |
3895 | { | 3913 | { |
3896 | "name": "sebastian/diff", | 3914 | "name": "sebastian/diff", |
3897 | "version": "1.2.0", | 3915 | "version": "1.3.0", |
3898 | "source": { | 3916 | "source": { |
3899 | "type": "git", | 3917 | "type": "git", |
3900 | "url": "https://github.com/sebastianbergmann/diff.git", | 3918 | "url": "https://github.com/sebastianbergmann/diff.git", |
3901 | "reference": "5843509fed39dee4b356a306401e9dd1a931fec7" | 3919 | "reference": "863df9687835c62aa423a22412d26fa2ebde3fd3" |
3902 | }, | 3920 | }, |
3903 | "dist": { | 3921 | "dist": { |
3904 | "type": "zip", | 3922 | "type": "zip", |
3905 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/5843509fed39dee4b356a306401e9dd1a931fec7", | 3923 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/863df9687835c62aa423a22412d26fa2ebde3fd3", |
3906 | "reference": "5843509fed39dee4b356a306401e9dd1a931fec7", | 3924 | "reference": "863df9687835c62aa423a22412d26fa2ebde3fd3", |
3907 | "shasum": "" | 3925 | "shasum": "" |
3908 | }, | 3926 | }, |
3909 | "require": { | 3927 | "require": { |
@@ -3915,7 +3933,7 @@ | |||
3915 | "type": "library", | 3933 | "type": "library", |
3916 | "extra": { | 3934 | "extra": { |
3917 | "branch-alias": { | 3935 | "branch-alias": { |
3918 | "dev-master": "1.2-dev" | 3936 | "dev-master": "1.3-dev" |
3919 | } | 3937 | } |
3920 | }, | 3938 | }, |
3921 | "autoload": { | 3939 | "autoload": { |
@@ -3942,32 +3960,32 @@ | |||
3942 | "keywords": [ | 3960 | "keywords": [ |
3943 | "diff" | 3961 | "diff" |
3944 | ], | 3962 | ], |
3945 | "time": "2014-08-15 10:29:00" | 3963 | "time": "2015-02-22 15:13:53" |
3946 | }, | 3964 | }, |
3947 | { | 3965 | { |
3948 | "name": "sebastian/environment", | 3966 | "name": "sebastian/environment", |
3949 | "version": "1.2.1", | 3967 | "version": "1.2.2", |
3950 | "source": { | 3968 | "source": { |
3951 | "type": "git", | 3969 | "type": "git", |
3952 | "url": "https://github.com/sebastianbergmann/environment.git", | 3970 | "url": "https://github.com/sebastianbergmann/environment.git", |
3953 | "reference": "6e6c71d918088c251b181ba8b3088af4ac336dd7" | 3971 | "reference": "5a8c7d31914337b69923db26c4221b81ff5a196e" |
3954 | }, | 3972 | }, |
3955 | "dist": { | 3973 | "dist": { |
3956 | "type": "zip", | 3974 | "type": "zip", |
3957 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6e6c71d918088c251b181ba8b3088af4ac336dd7", | 3975 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5a8c7d31914337b69923db26c4221b81ff5a196e", |
3958 | "reference": "6e6c71d918088c251b181ba8b3088af4ac336dd7", | 3976 | "reference": "5a8c7d31914337b69923db26c4221b81ff5a196e", |
3959 | "shasum": "" | 3977 | "shasum": "" |
3960 | }, | 3978 | }, |
3961 | "require": { | 3979 | "require": { |
3962 | "php": ">=5.3.3" | 3980 | "php": ">=5.3.3" |
3963 | }, | 3981 | }, |
3964 | "require-dev": { | 3982 | "require-dev": { |
3965 | "phpunit/phpunit": "~4.3" | 3983 | "phpunit/phpunit": "~4.4" |
3966 | }, | 3984 | }, |
3967 | "type": "library", | 3985 | "type": "library", |
3968 | "extra": { | 3986 | "extra": { |
3969 | "branch-alias": { | 3987 | "branch-alias": { |
3970 | "dev-master": "1.2.x-dev" | 3988 | "dev-master": "1.3.x-dev" |
3971 | } | 3989 | } |
3972 | }, | 3990 | }, |
3973 | "autoload": { | 3991 | "autoload": { |
@@ -3992,7 +4010,7 @@ | |||
3992 | "environment", | 4010 | "environment", |
3993 | "hhvm" | 4011 | "hhvm" |
3994 | ], | 4012 | ], |
3995 | "time": "2014-10-25 08:00:45" | 4013 | "time": "2015-01-01 10:01:08" |
3996 | }, | 4014 | }, |
3997 | { | 4015 | { |
3998 | "name": "sebastian/exporter", | 4016 | "name": "sebastian/exporter", |
@@ -4166,16 +4184,16 @@ | |||
4166 | }, | 4184 | }, |
4167 | { | 4185 | { |
4168 | "name": "sebastian/version", | 4186 | "name": "sebastian/version", |
4169 | "version": "1.0.4", | 4187 | "version": "1.0.5", |
4170 | "source": { | 4188 | "source": { |
4171 | "type": "git", | 4189 | "type": "git", |
4172 | "url": "https://github.com/sebastianbergmann/version.git", | 4190 | "url": "https://github.com/sebastianbergmann/version.git", |
4173 | "reference": "a77d9123f8e809db3fbdea15038c27a95da4058b" | 4191 | "reference": "ab931d46cd0d3204a91e1b9a40c4bc13032b58e4" |
4174 | }, | 4192 | }, |
4175 | "dist": { | 4193 | "dist": { |
4176 | "type": "zip", | 4194 | "type": "zip", |
4177 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/a77d9123f8e809db3fbdea15038c27a95da4058b", | 4195 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/ab931d46cd0d3204a91e1b9a40c4bc13032b58e4", |
4178 | "reference": "a77d9123f8e809db3fbdea15038c27a95da4058b", | 4196 | "reference": "ab931d46cd0d3204a91e1b9a40c4bc13032b58e4", |
4179 | "shasum": "" | 4197 | "shasum": "" |
4180 | }, | 4198 | }, |
4181 | "type": "library", | 4199 | "type": "library", |
@@ -4197,21 +4215,21 @@ | |||
4197 | ], | 4215 | ], |
4198 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", | 4216 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", |
4199 | "homepage": "https://github.com/sebastianbergmann/version", | 4217 | "homepage": "https://github.com/sebastianbergmann/version", |
4200 | "time": "2014-12-15 14:25:24" | 4218 | "time": "2015-02-24 06:35:25" |
4201 | }, | 4219 | }, |
4202 | { | 4220 | { |
4203 | "name": "sensio/generator-bundle", | 4221 | "name": "sensio/generator-bundle", |
4204 | "version": "v2.5.2", | 4222 | "version": "v2.5.3", |
4205 | "target-dir": "Sensio/Bundle/GeneratorBundle", | 4223 | "target-dir": "Sensio/Bundle/GeneratorBundle", |
4206 | "source": { | 4224 | "source": { |
4207 | "type": "git", | 4225 | "type": "git", |
4208 | "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git", | 4226 | "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git", |
4209 | "reference": "4b09746520a826a7bf34a466ba31c7d8740fef7e" | 4227 | "reference": "e50108c2133ee5c9c484555faed50c17a61221d3" |
4210 | }, | 4228 | }, |
4211 | "dist": { | 4229 | "dist": { |
4212 | "type": "zip", | 4230 | "type": "zip", |
4213 | "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/4b09746520a826a7bf34a466ba31c7d8740fef7e", | 4231 | "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/e50108c2133ee5c9c484555faed50c17a61221d3", |
4214 | "reference": "4b09746520a826a7bf34a466ba31c7d8740fef7e", | 4232 | "reference": "e50108c2133ee5c9c484555faed50c17a61221d3", |
4215 | "shasum": "" | 4233 | "shasum": "" |
4216 | }, | 4234 | }, |
4217 | "require": { | 4235 | "require": { |
@@ -4245,7 +4263,7 @@ | |||
4245 | } | 4263 | } |
4246 | ], | 4264 | ], |
4247 | "description": "This bundle generates code for you", | 4265 | "description": "This bundle generates code for you", |
4248 | "time": "2015-02-11 07:21:23" | 4266 | "time": "2015-03-17 06:36:52" |
4249 | } | 4267 | } |
4250 | ], | 4268 | ], |
4251 | "aliases": [], | 4269 | "aliases": [], |