diff options
Diffstat (limited to 'composer.lock')
-rw-r--r-- | composer.lock | 964 |
1 files changed, 786 insertions, 178 deletions
diff --git a/composer.lock b/composer.lock index 9e17fca9..baf59eef 100644 --- a/composer.lock +++ b/composer.lock | |||
@@ -1,44 +1,197 @@ | |||
1 | { | 1 | { |
2 | "_readme": [ | 2 | "_readme": [ |
3 | "This file locks the dependencies of your project to a known state", | 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" | 4 | "Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", |
5 | "This file is @generated automatically" | ||
5 | ], | 6 | ], |
6 | "hash": "1c8badb14d91f4f3ef1cfae23252a2c4", | 7 | "hash": "67435ca652abe6c90bdd29701ecd679a", |
7 | "packages": [ | 8 | "packages": [ |
8 | { | 9 | { |
9 | "name": "symfony/event-dispatcher", | 10 | "name": "ezyang/htmlpurifier", |
10 | "version": "v2.3.2", | 11 | "version": "dev-master", |
11 | "target-dir": "Symfony/Component/EventDispatcher", | ||
12 | "source": { | 12 | "source": { |
13 | "type": "git", | 13 | "type": "git", |
14 | "url": "https://github.com/symfony/EventDispatcher.git", | 14 | "url": "https://github.com/ezyang/htmlpurifier.git", |
15 | "reference": "v2.3.2" | 15 | "reference": "0c3e68dd0357321b5a5818c3aa832b1cc24a4b1f" |
16 | }, | 16 | }, |
17 | "dist": { | 17 | "dist": { |
18 | "type": "zip", | 18 | "type": "zip", |
19 | "url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/v2.3.2", | 19 | "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/0c3e68dd0357321b5a5818c3aa832b1cc24a4b1f", |
20 | "reference": "v2.3.2", | 20 | "reference": "0c3e68dd0357321b5a5818c3aa832b1cc24a4b1f", |
21 | "shasum": "" | 21 | "shasum": "" |
22 | }, | 22 | }, |
23 | "require": { | 23 | "require": { |
24 | "php": ">=5.3.3" | 24 | "php": ">=5.2" |
25 | }, | ||
26 | "type": "library", | ||
27 | "autoload": { | ||
28 | "psr-0": { | ||
29 | "HTMLPurifier": "library/" | ||
30 | }, | ||
31 | "files": [ | ||
32 | "library/HTMLPurifier.composer.php" | ||
33 | ] | ||
34 | }, | ||
35 | "notification-url": "https://packagist.org/downloads/", | ||
36 | "license": [ | ||
37 | "LGPL" | ||
38 | ], | ||
39 | "authors": [ | ||
40 | { | ||
41 | "name": "Edward Z. Yang", | ||
42 | "email": "admin@htmlpurifier.org", | ||
43 | "homepage": "http://ezyang.com" | ||
44 | } | ||
45 | ], | ||
46 | "description": "Standards compliant HTML filter written in PHP", | ||
47 | "homepage": "http://htmlpurifier.org/", | ||
48 | "keywords": [ | ||
49 | "html" | ||
50 | ], | ||
51 | "time": "2014-12-09 02:30:54" | ||
52 | }, | ||
53 | { | ||
54 | "name": "fabpot/goutte", | ||
55 | "version": "dev-master", | ||
56 | "source": { | ||
57 | "type": "git", | ||
58 | "url": "https://github.com/FriendsOfPHP/Goutte.git", | ||
59 | "reference": "65ab61eae03d670b93a9044ad2328eb81aa1bde5" | ||
60 | }, | ||
61 | "dist": { | ||
62 | "type": "zip", | ||
63 | "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/65ab61eae03d670b93a9044ad2328eb81aa1bde5", | ||
64 | "reference": "65ab61eae03d670b93a9044ad2328eb81aa1bde5", | ||
65 | "shasum": "" | ||
66 | }, | ||
67 | "require": { | ||
68 | "guzzlehttp/guzzle": ">=4,<6", | ||
69 | "php": ">=5.4.0", | ||
70 | "symfony/browser-kit": "~2.1", | ||
71 | "symfony/css-selector": "~2.1", | ||
72 | "symfony/dom-crawler": "~2.1" | ||
73 | }, | ||
74 | "type": "application", | ||
75 | "extra": { | ||
76 | "branch-alias": { | ||
77 | "dev-master": "2.0-dev" | ||
78 | } | ||
79 | }, | ||
80 | "autoload": { | ||
81 | "psr-4": { | ||
82 | "Goutte\\": "Goutte" | ||
83 | } | ||
84 | }, | ||
85 | "notification-url": "https://packagist.org/downloads/", | ||
86 | "license": [ | ||
87 | "MIT" | ||
88 | ], | ||
89 | "authors": [ | ||
90 | { | ||
91 | "name": "Fabien Potencier", | ||
92 | "email": "fabien@symfony.com" | ||
93 | } | ||
94 | ], | ||
95 | "description": "A simple PHP Web Scraper", | ||
96 | "homepage": "https://github.com/FriendsOfPHP/Goutte", | ||
97 | "keywords": [ | ||
98 | "scraper" | ||
99 | ], | ||
100 | "time": "2014-11-28 09:48:17" | ||
101 | }, | ||
102 | { | ||
103 | "name": "guzzlehttp/guzzle", | ||
104 | "version": "5.1.0", | ||
105 | "source": { | ||
106 | "type": "git", | ||
107 | "url": "https://github.com/guzzle/guzzle.git", | ||
108 | "reference": "f1085bb4e023766a66b7b051914ec73bdf7202b5" | ||
109 | }, | ||
110 | "dist": { | ||
111 | "type": "zip", | ||
112 | "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f1085bb4e023766a66b7b051914ec73bdf7202b5", | ||
113 | "reference": "f1085bb4e023766a66b7b051914ec73bdf7202b5", | ||
114 | "shasum": "" | ||
115 | }, | ||
116 | "require": { | ||
117 | "guzzlehttp/ringphp": "~1.0", | ||
118 | "php": ">=5.4.0" | ||
25 | }, | 119 | }, |
26 | "require-dev": { | 120 | "require-dev": { |
27 | "symfony/dependency-injection": "~2.0" | 121 | "ext-curl": "*", |
122 | "phpunit/phpunit": "~4.0", | ||
123 | "psr/log": "~1.0" | ||
124 | }, | ||
125 | "type": "library", | ||
126 | "extra": { | ||
127 | "branch-alias": { | ||
128 | "dev-master": "5.0-dev" | ||
129 | } | ||
130 | }, | ||
131 | "autoload": { | ||
132 | "psr-4": { | ||
133 | "GuzzleHttp\\": "src/" | ||
134 | } | ||
135 | }, | ||
136 | "notification-url": "https://packagist.org/downloads/", | ||
137 | "license": [ | ||
138 | "MIT" | ||
139 | ], | ||
140 | "authors": [ | ||
141 | { | ||
142 | "name": "Michael Dowling", | ||
143 | "email": "mtdowling@gmail.com", | ||
144 | "homepage": "https://github.com/mtdowling" | ||
145 | } | ||
146 | ], | ||
147 | "description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients", | ||
148 | "homepage": "http://guzzlephp.org/", | ||
149 | "keywords": [ | ||
150 | "client", | ||
151 | "curl", | ||
152 | "framework", | ||
153 | "http", | ||
154 | "http client", | ||
155 | "rest", | ||
156 | "web service" | ||
157 | ], | ||
158 | "time": "2014-12-19 20:27:15" | ||
159 | }, | ||
160 | { | ||
161 | "name": "guzzlehttp/ringphp", | ||
162 | "version": "1.0.5", | ||
163 | "source": { | ||
164 | "type": "git", | ||
165 | "url": "https://github.com/guzzle/RingPHP.git", | ||
166 | "reference": "a903f51b692427318bc813217c0e6505287e79a4" | ||
167 | }, | ||
168 | "dist": { | ||
169 | "type": "zip", | ||
170 | "url": "https://api.github.com/repos/guzzle/RingPHP/zipball/a903f51b692427318bc813217c0e6505287e79a4", | ||
171 | "reference": "a903f51b692427318bc813217c0e6505287e79a4", | ||
172 | "shasum": "" | ||
173 | }, | ||
174 | "require": { | ||
175 | "guzzlehttp/streams": "~3.0", | ||
176 | "php": ">=5.4.0", | ||
177 | "react/promise": "~2.0" | ||
178 | }, | ||
179 | "require-dev": { | ||
180 | "ext-curl": "*", | ||
181 | "phpunit/phpunit": "~4.0" | ||
28 | }, | 182 | }, |
29 | "suggest": { | 183 | "suggest": { |
30 | "symfony/dependency-injection": "", | 184 | "ext-curl": "Guzzle will use specific adapters if cURL is present" |
31 | "symfony/http-kernel": "" | ||
32 | }, | 185 | }, |
33 | "type": "library", | 186 | "type": "library", |
34 | "extra": { | 187 | "extra": { |
35 | "branch-alias": { | 188 | "branch-alias": { |
36 | "dev-master": "2.3-dev" | 189 | "dev-master": "1.0-dev" |
37 | } | 190 | } |
38 | }, | 191 | }, |
39 | "autoload": { | 192 | "autoload": { |
40 | "psr-0": { | 193 | "psr-4": { |
41 | "Symfony\\Component\\EventDispatcher\\": "" | 194 | "GuzzleHttp\\Ring\\": "src/" |
42 | } | 195 | } |
43 | }, | 196 | }, |
44 | "notification-url": "https://packagist.org/downloads/", | 197 | "notification-url": "https://packagist.org/downloads/", |
@@ -47,31 +200,222 @@ | |||
47 | ], | 200 | ], |
48 | "authors": [ | 201 | "authors": [ |
49 | { | 202 | { |
50 | "name": "Fabien Potencier", | 203 | "name": "Michael Dowling", |
51 | "email": "fabien@symfony.com" | 204 | "email": "mtdowling@gmail.com", |
205 | "homepage": "https://github.com/mtdowling" | ||
206 | } | ||
207 | ], | ||
208 | "time": "2014-12-11 05:50:32" | ||
209 | }, | ||
210 | { | ||
211 | "name": "guzzlehttp/streams", | ||
212 | "version": "3.0.0", | ||
213 | "source": { | ||
214 | "type": "git", | ||
215 | "url": "https://github.com/guzzle/streams.git", | ||
216 | "reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5" | ||
217 | }, | ||
218 | "dist": { | ||
219 | "type": "zip", | ||
220 | "url": "https://api.github.com/repos/guzzle/streams/zipball/47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5", | ||
221 | "reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5", | ||
222 | "shasum": "" | ||
223 | }, | ||
224 | "require": { | ||
225 | "php": ">=5.4.0" | ||
226 | }, | ||
227 | "require-dev": { | ||
228 | "phpunit/phpunit": "~4.0" | ||
229 | }, | ||
230 | "type": "library", | ||
231 | "extra": { | ||
232 | "branch-alias": { | ||
233 | "dev-master": "3.0-dev" | ||
234 | } | ||
235 | }, | ||
236 | "autoload": { | ||
237 | "psr-4": { | ||
238 | "GuzzleHttp\\Stream\\": "src/" | ||
239 | } | ||
240 | }, | ||
241 | "notification-url": "https://packagist.org/downloads/", | ||
242 | "license": [ | ||
243 | "MIT" | ||
244 | ], | ||
245 | "authors": [ | ||
246 | { | ||
247 | "name": "Michael Dowling", | ||
248 | "email": "mtdowling@gmail.com", | ||
249 | "homepage": "https://github.com/mtdowling" | ||
250 | } | ||
251 | ], | ||
252 | "description": "Provides a simple abstraction over streams of data", | ||
253 | "homepage": "http://guzzlephp.org/", | ||
254 | "keywords": [ | ||
255 | "Guzzle", | ||
256 | "stream" | ||
257 | ], | ||
258 | "time": "2014-10-12 19:18:40" | ||
259 | }, | ||
260 | { | ||
261 | "name": "mgargano/simplehtmldom", | ||
262 | "version": "dev-master", | ||
263 | "source": { | ||
264 | "type": "git", | ||
265 | "url": "https://github.com/matstars/simplehtmldom.git", | ||
266 | "reference": "37fb0d7c1bda45c5a4cf14fdef56c1edf6aa42be" | ||
267 | }, | ||
268 | "dist": { | ||
269 | "type": "zip", | ||
270 | "url": "https://api.github.com/repos/matstars/simplehtmldom/zipball/37fb0d7c1bda45c5a4cf14fdef56c1edf6aa42be", | ||
271 | "reference": "37fb0d7c1bda45c5a4cf14fdef56c1edf6aa42be", | ||
272 | "shasum": "" | ||
273 | }, | ||
274 | "require": { | ||
275 | "php": ">=5.3.0" | ||
276 | }, | ||
277 | "type": "library", | ||
278 | "autoload": { | ||
279 | "psr-0": { | ||
280 | "SimpleHtmlDom": "src/" | ||
281 | }, | ||
282 | "files": [ | ||
283 | "src/simple_html_dom.php" | ||
284 | ] | ||
285 | }, | ||
286 | "notification-url": "https://packagist.org/downloads/", | ||
287 | "license": [ | ||
288 | "The MIT License" | ||
289 | ], | ||
290 | "authors": [ | ||
291 | { | ||
292 | "name": "S.C. Chen", | ||
293 | "email": "me578022@gmail.com", | ||
294 | "homepage": "http://simplehtmldom.sourceforge.net/", | ||
295 | "role": "Lead Developer" | ||
296 | } | ||
297 | ], | ||
298 | "description": "Composer package that gives you access to and (unlike all the others at this time) autoloads S.C. Chen's PHP Simple HTML DOM Parser Library", | ||
299 | "homepage": "http://simplehtmldom.sourceforge.net/", | ||
300 | "keywords": [ | ||
301 | "Simple", | ||
302 | "dom", | ||
303 | "html" | ||
304 | ], | ||
305 | "time": "2014-01-05 18:17:34" | ||
306 | }, | ||
307 | { | ||
308 | "name": "react/promise", | ||
309 | "version": "v2.2.0", | ||
310 | "source": { | ||
311 | "type": "git", | ||
312 | "url": "https://github.com/reactphp/promise.git", | ||
313 | "reference": "365fcee430dfa4ace1fbc75737ca60ceea7eeeef" | ||
314 | }, | ||
315 | "dist": { | ||
316 | "type": "zip", | ||
317 | "url": "https://api.github.com/repos/reactphp/promise/zipball/365fcee430dfa4ace1fbc75737ca60ceea7eeeef", | ||
318 | "reference": "365fcee430dfa4ace1fbc75737ca60ceea7eeeef", | ||
319 | "shasum": "" | ||
320 | }, | ||
321 | "require": { | ||
322 | "php": ">=5.4.0" | ||
323 | }, | ||
324 | "type": "library", | ||
325 | "extra": { | ||
326 | "branch-alias": { | ||
327 | "dev-master": "2.0-dev" | ||
328 | } | ||
329 | }, | ||
330 | "autoload": { | ||
331 | "psr-4": { | ||
332 | "React\\Promise\\": "src/" | ||
52 | }, | 333 | }, |
334 | "files": [ | ||
335 | "src/functions_include.php" | ||
336 | ] | ||
337 | }, | ||
338 | "notification-url": "https://packagist.org/downloads/", | ||
339 | "license": [ | ||
340 | "MIT" | ||
341 | ], | ||
342 | "authors": [ | ||
343 | { | ||
344 | "name": "Jan Sorgalla", | ||
345 | "email": "jsorgalla@googlemail.com" | ||
346 | } | ||
347 | ], | ||
348 | "description": "A lightweight implementation of CommonJS Promises/A for PHP", | ||
349 | "time": "2014-12-30 13:32:42" | ||
350 | }, | ||
351 | { | ||
352 | "name": "symfony/browser-kit", | ||
353 | "version": "v2.6.3", | ||
354 | "target-dir": "Symfony/Component/BrowserKit", | ||
355 | "source": { | ||
356 | "type": "git", | ||
357 | "url": "https://github.com/symfony/BrowserKit.git", | ||
358 | "reference": "2ecec44ed5047020c65dd6e4a4b2f3cf13ae3c04" | ||
359 | }, | ||
360 | "dist": { | ||
361 | "type": "zip", | ||
362 | "url": "https://api.github.com/repos/symfony/BrowserKit/zipball/2ecec44ed5047020c65dd6e4a4b2f3cf13ae3c04", | ||
363 | "reference": "2ecec44ed5047020c65dd6e4a4b2f3cf13ae3c04", | ||
364 | "shasum": "" | ||
365 | }, | ||
366 | "require": { | ||
367 | "php": ">=5.3.3", | ||
368 | "symfony/dom-crawler": "~2.0,>=2.0.5" | ||
369 | }, | ||
370 | "require-dev": { | ||
371 | "symfony/css-selector": "~2.0,>=2.0.5", | ||
372 | "symfony/process": "~2.0,>=2.0.5" | ||
373 | }, | ||
374 | "suggest": { | ||
375 | "symfony/process": "" | ||
376 | }, | ||
377 | "type": "library", | ||
378 | "extra": { | ||
379 | "branch-alias": { | ||
380 | "dev-master": "2.6-dev" | ||
381 | } | ||
382 | }, | ||
383 | "autoload": { | ||
384 | "psr-0": { | ||
385 | "Symfony\\Component\\BrowserKit\\": "" | ||
386 | } | ||
387 | }, | ||
388 | "notification-url": "https://packagist.org/downloads/", | ||
389 | "license": [ | ||
390 | "MIT" | ||
391 | ], | ||
392 | "authors": [ | ||
53 | { | 393 | { |
54 | "name": "Symfony Community", | 394 | "name": "Symfony Community", |
55 | "homepage": "http://symfony.com/contributors" | 395 | "homepage": "http://symfony.com/contributors" |
396 | }, | ||
397 | { | ||
398 | "name": "Fabien Potencier", | ||
399 | "email": "fabien@symfony.com" | ||
56 | } | 400 | } |
57 | ], | 401 | ], |
58 | "description": "Symfony EventDispatcher Component", | 402 | "description": "Symfony BrowserKit Component", |
59 | "homepage": "http://symfony.com", | 403 | "homepage": "http://symfony.com", |
60 | "time": "2013-05-13 14:36:40" | 404 | "time": "2015-01-03 08:01:59" |
61 | }, | 405 | }, |
62 | { | 406 | { |
63 | "name": "symfony/filesystem", | 407 | "name": "symfony/css-selector", |
64 | "version": "v2.3.2", | 408 | "version": "v2.6.3", |
65 | "target-dir": "Symfony/Component/Filesystem", | 409 | "target-dir": "Symfony/Component/CssSelector", |
66 | "source": { | 410 | "source": { |
67 | "type": "git", | 411 | "type": "git", |
68 | "url": "https://github.com/symfony/Filesystem.git", | 412 | "url": "https://github.com/symfony/CssSelector.git", |
69 | "reference": "v2.3.2" | 413 | "reference": "3f80ecc614fec68d5b4a84a0703db3fdf5ce8584" |
70 | }, | 414 | }, |
71 | "dist": { | 415 | "dist": { |
72 | "type": "zip", | 416 | "type": "zip", |
73 | "url": "https://api.github.com/repos/symfony/Filesystem/zipball/v2.3.2", | 417 | "url": "https://api.github.com/repos/symfony/CssSelector/zipball/3f80ecc614fec68d5b4a84a0703db3fdf5ce8584", |
74 | "reference": "v2.3.2", | 418 | "reference": "3f80ecc614fec68d5b4a84a0703db3fdf5ce8584", |
75 | "shasum": "" | 419 | "shasum": "" |
76 | }, | 420 | }, |
77 | "require": { | 421 | "require": { |
@@ -80,12 +424,12 @@ | |||
80 | "type": "library", | 424 | "type": "library", |
81 | "extra": { | 425 | "extra": { |
82 | "branch-alias": { | 426 | "branch-alias": { |
83 | "dev-master": "2.3-dev" | 427 | "dev-master": "2.6-dev" |
84 | } | 428 | } |
85 | }, | 429 | }, |
86 | "autoload": { | 430 | "autoload": { |
87 | "psr-0": { | 431 | "psr-0": { |
88 | "Symfony\\Component\\Filesystem\\": "" | 432 | "Symfony\\Component\\CssSelector\\": "" |
89 | } | 433 | } |
90 | }, | 434 | }, |
91 | "notification-url": "https://packagist.org/downloads/", | 435 | "notification-url": "https://packagist.org/downloads/", |
@@ -94,57 +438,113 @@ | |||
94 | ], | 438 | ], |
95 | "authors": [ | 439 | "authors": [ |
96 | { | 440 | { |
441 | "name": "Symfony Community", | ||
442 | "homepage": "http://symfony.com/contributors" | ||
443 | }, | ||
444 | { | ||
445 | "name": "Jean-François Simon", | ||
446 | "email": "jeanfrancois.simon@sensiolabs.com" | ||
447 | }, | ||
448 | { | ||
97 | "name": "Fabien Potencier", | 449 | "name": "Fabien Potencier", |
98 | "email": "fabien@symfony.com" | 450 | "email": "fabien@symfony.com" |
99 | }, | 451 | } |
452 | ], | ||
453 | "description": "Symfony CssSelector Component", | ||
454 | "homepage": "http://symfony.com", | ||
455 | "time": "2015-01-03 08:01:59" | ||
456 | }, | ||
457 | { | ||
458 | "name": "symfony/dom-crawler", | ||
459 | "version": "v2.6.3", | ||
460 | "target-dir": "Symfony/Component/DomCrawler", | ||
461 | "source": { | ||
462 | "type": "git", | ||
463 | "url": "https://github.com/symfony/DomCrawler.git", | ||
464 | "reference": "26a9eb302decd828990e1015afaa11b78b016073" | ||
465 | }, | ||
466 | "dist": { | ||
467 | "type": "zip", | ||
468 | "url": "https://api.github.com/repos/symfony/DomCrawler/zipball/26a9eb302decd828990e1015afaa11b78b016073", | ||
469 | "reference": "26a9eb302decd828990e1015afaa11b78b016073", | ||
470 | "shasum": "" | ||
471 | }, | ||
472 | "require": { | ||
473 | "php": ">=5.3.3" | ||
474 | }, | ||
475 | "require-dev": { | ||
476 | "symfony/css-selector": "~2.3" | ||
477 | }, | ||
478 | "suggest": { | ||
479 | "symfony/css-selector": "" | ||
480 | }, | ||
481 | "type": "library", | ||
482 | "extra": { | ||
483 | "branch-alias": { | ||
484 | "dev-master": "2.6-dev" | ||
485 | } | ||
486 | }, | ||
487 | "autoload": { | ||
488 | "psr-0": { | ||
489 | "Symfony\\Component\\DomCrawler\\": "" | ||
490 | } | ||
491 | }, | ||
492 | "notification-url": "https://packagist.org/downloads/", | ||
493 | "license": [ | ||
494 | "MIT" | ||
495 | ], | ||
496 | "authors": [ | ||
100 | { | 497 | { |
101 | "name": "Symfony Community", | 498 | "name": "Symfony Community", |
102 | "homepage": "http://symfony.com/contributors" | 499 | "homepage": "http://symfony.com/contributors" |
500 | }, | ||
501 | { | ||
502 | "name": "Fabien Potencier", | ||
503 | "email": "fabien@symfony.com" | ||
103 | } | 504 | } |
104 | ], | 505 | ], |
105 | "description": "Symfony Filesystem Component", | 506 | "description": "Symfony DomCrawler Component", |
106 | "homepage": "http://symfony.com", | 507 | "homepage": "http://symfony.com", |
107 | "time": "2013-06-04 15:02:05" | 508 | "time": "2015-01-03 08:01:59" |
108 | }, | 509 | }, |
109 | { | 510 | { |
110 | "name": "symfony/form", | 511 | "name": "symfony/event-dispatcher", |
111 | "version": "v2.3.2", | 512 | "version": "v2.6.3", |
112 | "target-dir": "Symfony/Component/Form", | 513 | "target-dir": "Symfony/Component/EventDispatcher", |
113 | "source": { | 514 | "source": { |
114 | "type": "git", | 515 | "type": "git", |
115 | "url": "https://github.com/symfony/Form.git", | 516 | "url": "https://github.com/symfony/EventDispatcher.git", |
116 | "reference": "v2.3.2" | 517 | "reference": "40ff70cadea3785d83cac1c8309514b36113064e" |
117 | }, | 518 | }, |
118 | "dist": { | 519 | "dist": { |
119 | "type": "zip", | 520 | "type": "zip", |
120 | "url": "https://api.github.com/repos/symfony/Form/zipball/v2.3.2", | 521 | "url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/40ff70cadea3785d83cac1c8309514b36113064e", |
121 | "reference": "v2.3.2", | 522 | "reference": "40ff70cadea3785d83cac1c8309514b36113064e", |
122 | "shasum": "" | 523 | "shasum": "" |
123 | }, | 524 | }, |
124 | "require": { | 525 | "require": { |
125 | "php": ">=5.3.3", | 526 | "php": ">=5.3.3" |
126 | "symfony/event-dispatcher": "~2.1", | ||
127 | "symfony/intl": "~2.3", | ||
128 | "symfony/options-resolver": "~2.1", | ||
129 | "symfony/property-access": "~2.2" | ||
130 | }, | 527 | }, |
131 | "require-dev": { | 528 | "require-dev": { |
132 | "symfony/http-foundation": "~2.2", | 529 | "psr/log": "~1.0", |
133 | "symfony/validator": "~2.2" | 530 | "symfony/config": "~2.0,>=2.0.5", |
531 | "symfony/dependency-injection": "~2.6", | ||
532 | "symfony/expression-language": "~2.6", | ||
533 | "symfony/stopwatch": "~2.3" | ||
134 | }, | 534 | }, |
135 | "suggest": { | 535 | "suggest": { |
136 | "symfony/http-foundation": "", | 536 | "symfony/dependency-injection": "", |
137 | "symfony/validator": "" | 537 | "symfony/http-kernel": "" |
138 | }, | 538 | }, |
139 | "type": "library", | 539 | "type": "library", |
140 | "extra": { | 540 | "extra": { |
141 | "branch-alias": { | 541 | "branch-alias": { |
142 | "dev-master": "2.3-dev" | 542 | "dev-master": "2.6-dev" |
143 | } | 543 | } |
144 | }, | 544 | }, |
145 | "autoload": { | 545 | "autoload": { |
146 | "psr-0": { | 546 | "psr-0": { |
147 | "Symfony\\Component\\Form\\": "" | 547 | "Symfony\\Component\\EventDispatcher\\": "" |
148 | } | 548 | } |
149 | }, | 549 | }, |
150 | "notification-url": "https://packagist.org/downloads/", | 550 | "notification-url": "https://packagist.org/downloads/", |
@@ -153,41 +553,110 @@ | |||
153 | ], | 553 | ], |
154 | "authors": [ | 554 | "authors": [ |
155 | { | 555 | { |
556 | "name": "Symfony Community", | ||
557 | "homepage": "http://symfony.com/contributors" | ||
558 | }, | ||
559 | { | ||
156 | "name": "Fabien Potencier", | 560 | "name": "Fabien Potencier", |
157 | "email": "fabien@symfony.com" | 561 | "email": "fabien@symfony.com" |
158 | }, | 562 | } |
563 | ], | ||
564 | "description": "Symfony EventDispatcher Component", | ||
565 | "homepage": "http://symfony.com", | ||
566 | "time": "2015-01-05 14:28:40" | ||
567 | }, | ||
568 | { | ||
569 | "name": "symfony/filesystem", | ||
570 | "version": "v2.6.3", | ||
571 | "target-dir": "Symfony/Component/Filesystem", | ||
572 | "source": { | ||
573 | "type": "git", | ||
574 | "url": "https://github.com/symfony/Filesystem.git", | ||
575 | "reference": "a1f566d1f92e142fa1593f4555d6d89e3044a9b7" | ||
576 | }, | ||
577 | "dist": { | ||
578 | "type": "zip", | ||
579 | "url": "https://api.github.com/repos/symfony/Filesystem/zipball/a1f566d1f92e142fa1593f4555d6d89e3044a9b7", | ||
580 | "reference": "a1f566d1f92e142fa1593f4555d6d89e3044a9b7", | ||
581 | "shasum": "" | ||
582 | }, | ||
583 | "require": { | ||
584 | "php": ">=5.3.3" | ||
585 | }, | ||
586 | "type": "library", | ||
587 | "extra": { | ||
588 | "branch-alias": { | ||
589 | "dev-master": "2.6-dev" | ||
590 | } | ||
591 | }, | ||
592 | "autoload": { | ||
593 | "psr-0": { | ||
594 | "Symfony\\Component\\Filesystem\\": "" | ||
595 | } | ||
596 | }, | ||
597 | "notification-url": "https://packagist.org/downloads/", | ||
598 | "license": [ | ||
599 | "MIT" | ||
600 | ], | ||
601 | "authors": [ | ||
159 | { | 602 | { |
160 | "name": "Symfony Community", | 603 | "name": "Symfony Community", |
161 | "homepage": "http://symfony.com/contributors" | 604 | "homepage": "http://symfony.com/contributors" |
605 | }, | ||
606 | { | ||
607 | "name": "Fabien Potencier", | ||
608 | "email": "fabien@symfony.com" | ||
162 | } | 609 | } |
163 | ], | 610 | ], |
164 | "description": "Symfony Form Component", | 611 | "description": "Symfony Filesystem Component", |
165 | "homepage": "http://symfony.com", | 612 | "homepage": "http://symfony.com", |
166 | "time": "2013-07-01 12:24:43" | 613 | "time": "2015-01-03 21:13:09" |
167 | }, | 614 | }, |
168 | { | 615 | { |
169 | "name": "symfony/icu", | 616 | "name": "symfony/form", |
170 | "version": "v1.0.0", | 617 | "version": "v2.6.3", |
171 | "target-dir": "Symfony/Component/Icu", | 618 | "target-dir": "Symfony/Component/Form", |
172 | "source": { | 619 | "source": { |
173 | "type": "git", | 620 | "type": "git", |
174 | "url": "https://github.com/symfony/Icu.git", | 621 | "url": "https://github.com/symfony/Form.git", |
175 | "reference": "v1.0.0" | 622 | "reference": "bfe4011e6b77e85ccf4df33dd361fa09dfa50303" |
176 | }, | 623 | }, |
177 | "dist": { | 624 | "dist": { |
178 | "type": "zip", | 625 | "type": "zip", |
179 | "url": "https://api.github.com/repos/symfony/Icu/zipball/v1.0.0", | 626 | "url": "https://api.github.com/repos/symfony/Form/zipball/bfe4011e6b77e85ccf4df33dd361fa09dfa50303", |
180 | "reference": "v1.0.0", | 627 | "reference": "bfe4011e6b77e85ccf4df33dd361fa09dfa50303", |
181 | "shasum": "" | 628 | "shasum": "" |
182 | }, | 629 | }, |
183 | "require": { | 630 | "require": { |
184 | "php": ">=5.3.3", | 631 | "php": ">=5.3.3", |
185 | "symfony/intl": ">=2.3,<3.0" | 632 | "symfony/event-dispatcher": "~2.1", |
633 | "symfony/intl": "~2.3", | ||
634 | "symfony/options-resolver": "~2.6", | ||
635 | "symfony/property-access": "~2.3" | ||
636 | }, | ||
637 | "require-dev": { | ||
638 | "doctrine/collections": "~1.0", | ||
639 | "symfony/http-foundation": "~2.2", | ||
640 | "symfony/http-kernel": "~2.4", | ||
641 | "symfony/security-csrf": "~2.4", | ||
642 | "symfony/translation": "~2.0,>=2.0.5", | ||
643 | "symfony/validator": "~2.6" | ||
644 | }, | ||
645 | "suggest": { | ||
646 | "symfony/framework-bundle": "For templating with PHP.", | ||
647 | "symfony/security-csrf": "For protecting forms against CSRF attacks.", | ||
648 | "symfony/twig-bridge": "For templating with Twig.", | ||
649 | "symfony/validator": "For form validation." | ||
186 | }, | 650 | }, |
187 | "type": "library", | 651 | "type": "library", |
652 | "extra": { | ||
653 | "branch-alias": { | ||
654 | "dev-master": "2.6-dev" | ||
655 | } | ||
656 | }, | ||
188 | "autoload": { | 657 | "autoload": { |
189 | "psr-0": { | 658 | "psr-0": { |
190 | "Symfony\\Component\\Icu\\": "" | 659 | "Symfony\\Component\\Form\\": "" |
191 | } | 660 | } |
192 | }, | 661 | }, |
193 | "notification-url": "https://packagist.org/downloads/", | 662 | "notification-url": "https://packagist.org/downloads/", |
@@ -200,36 +669,31 @@ | |||
200 | "homepage": "http://symfony.com/contributors" | 669 | "homepage": "http://symfony.com/contributors" |
201 | }, | 670 | }, |
202 | { | 671 | { |
203 | "name": "Bernhard Schussek", | 672 | "name": "Fabien Potencier", |
204 | "email": "bschussek@gmail.com" | 673 | "email": "fabien@symfony.com" |
205 | } | 674 | } |
206 | ], | 675 | ], |
207 | "description": "Contains an excerpt of the ICU data and classes to load it.", | 676 | "description": "Symfony Form Component", |
208 | "homepage": "http://symfony.com", | 677 | "homepage": "http://symfony.com", |
209 | "keywords": [ | 678 | "time": "2015-01-07 14:31:37" |
210 | "icu", | ||
211 | "intl" | ||
212 | ], | ||
213 | "time": "2013-06-03 18:32:07" | ||
214 | }, | 679 | }, |
215 | { | 680 | { |
216 | "name": "symfony/intl", | 681 | "name": "symfony/intl", |
217 | "version": "v2.3.2", | 682 | "version": "v2.6.3", |
218 | "target-dir": "Symfony/Component/Intl", | 683 | "target-dir": "Symfony/Component/Intl", |
219 | "source": { | 684 | "source": { |
220 | "type": "git", | 685 | "type": "git", |
221 | "url": "https://github.com/symfony/Intl.git", | 686 | "url": "https://github.com/symfony/Intl.git", |
222 | "reference": "v2.3.2" | 687 | "reference": "5e7494e1e6aed4309f43121b3141d6e0273dcaee" |
223 | }, | 688 | }, |
224 | "dist": { | 689 | "dist": { |
225 | "type": "zip", | 690 | "type": "zip", |
226 | "url": "https://api.github.com/repos/symfony/Intl/zipball/v2.3.2", | 691 | "url": "https://api.github.com/repos/symfony/Intl/zipball/5e7494e1e6aed4309f43121b3141d6e0273dcaee", |
227 | "reference": "v2.3.2", | 692 | "reference": "5e7494e1e6aed4309f43121b3141d6e0273dcaee", |
228 | "shasum": "" | 693 | "shasum": "" |
229 | }, | 694 | }, |
230 | "require": { | 695 | "require": { |
231 | "php": ">=5.3.3", | 696 | "php": ">=5.3.3" |
232 | "symfony/icu": "~1.0-RC" | ||
233 | }, | 697 | }, |
234 | "require-dev": { | 698 | "require-dev": { |
235 | "symfony/filesystem": ">=2.1" | 699 | "symfony/filesystem": ">=2.1" |
@@ -240,7 +704,7 @@ | |||
240 | "type": "library", | 704 | "type": "library", |
241 | "extra": { | 705 | "extra": { |
242 | "branch-alias": { | 706 | "branch-alias": { |
243 | "dev-master": "2.3-dev" | 707 | "dev-master": "2.6-dev" |
244 | } | 708 | } |
245 | }, | 709 | }, |
246 | "autoload": { | 710 | "autoload": { |
@@ -264,17 +728,16 @@ | |||
264 | "homepage": "http://symfony.com/contributors" | 728 | "homepage": "http://symfony.com/contributors" |
265 | }, | 729 | }, |
266 | { | 730 | { |
267 | "name": "Igor Wiedler", | ||
268 | "email": "igor@wiedler.ch", | ||
269 | "homepage": "http://wiedler.ch/igor/" | ||
270 | }, | ||
271 | { | ||
272 | "name": "Bernhard Schussek", | 731 | "name": "Bernhard Schussek", |
273 | "email": "bschussek@gmail.com" | 732 | "email": "bschussek@gmail.com" |
274 | }, | 733 | }, |
275 | { | 734 | { |
276 | "name": "Eriksen Costa", | 735 | "name": "Eriksen Costa", |
277 | "email": "eriksen.costa@infranology.com.br" | 736 | "email": "eriksen.costa@infranology.com.br" |
737 | }, | ||
738 | { | ||
739 | "name": "Igor Wiedler", | ||
740 | "email": "igor@wiedler.ch" | ||
278 | } | 741 | } |
279 | ], | 742 | ], |
280 | "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.", | 743 | "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.", |
@@ -287,21 +750,21 @@ | |||
287 | "l10n", | 750 | "l10n", |
288 | "localization" | 751 | "localization" |
289 | ], | 752 | ], |
290 | "time": "2013-07-08 13:00:35" | 753 | "time": "2015-01-03 08:01:59" |
291 | }, | 754 | }, |
292 | { | 755 | { |
293 | "name": "symfony/options-resolver", | 756 | "name": "symfony/options-resolver", |
294 | "version": "v2.3.2", | 757 | "version": "v2.6.3", |
295 | "target-dir": "Symfony/Component/OptionsResolver", | 758 | "target-dir": "Symfony/Component/OptionsResolver", |
296 | "source": { | 759 | "source": { |
297 | "type": "git", | 760 | "type": "git", |
298 | "url": "https://github.com/symfony/OptionsResolver.git", | 761 | "url": "https://github.com/symfony/OptionsResolver.git", |
299 | "reference": "v2.3.2" | 762 | "reference": "23aed23820c9c2273c405b43deee3de6c0668acd" |
300 | }, | 763 | }, |
301 | "dist": { | 764 | "dist": { |
302 | "type": "zip", | 765 | "type": "zip", |
303 | "url": "https://api.github.com/repos/symfony/OptionsResolver/zipball/v2.3.2", | 766 | "url": "https://api.github.com/repos/symfony/OptionsResolver/zipball/23aed23820c9c2273c405b43deee3de6c0668acd", |
304 | "reference": "v2.3.2", | 767 | "reference": "23aed23820c9c2273c405b43deee3de6c0668acd", |
305 | "shasum": "" | 768 | "shasum": "" |
306 | }, | 769 | }, |
307 | "require": { | 770 | "require": { |
@@ -310,7 +773,7 @@ | |||
310 | "type": "library", | 773 | "type": "library", |
311 | "extra": { | 774 | "extra": { |
312 | "branch-alias": { | 775 | "branch-alias": { |
313 | "dev-master": "2.3-dev" | 776 | "dev-master": "2.6-dev" |
314 | } | 777 | } |
315 | }, | 778 | }, |
316 | "autoload": { | 779 | "autoload": { |
@@ -324,12 +787,12 @@ | |||
324 | ], | 787 | ], |
325 | "authors": [ | 788 | "authors": [ |
326 | { | 789 | { |
327 | "name": "Fabien Potencier", | ||
328 | "email": "fabien@symfony.com" | ||
329 | }, | ||
330 | { | ||
331 | "name": "Symfony Community", | 790 | "name": "Symfony Community", |
332 | "homepage": "http://symfony.com/contributors" | 791 | "homepage": "http://symfony.com/contributors" |
792 | }, | ||
793 | { | ||
794 | "name": "Fabien Potencier", | ||
795 | "email": "fabien@symfony.com" | ||
333 | } | 796 | } |
334 | ], | 797 | ], |
335 | "description": "Symfony OptionsResolver Component", | 798 | "description": "Symfony OptionsResolver Component", |
@@ -339,21 +802,21 @@ | |||
339 | "configuration", | 802 | "configuration", |
340 | "options" | 803 | "options" |
341 | ], | 804 | ], |
342 | "time": "2013-04-11 06:50:46" | 805 | "time": "2015-01-05 17:41:06" |
343 | }, | 806 | }, |
344 | { | 807 | { |
345 | "name": "symfony/property-access", | 808 | "name": "symfony/property-access", |
346 | "version": "v2.3.2", | 809 | "version": "v2.6.3", |
347 | "target-dir": "Symfony/Component/PropertyAccess", | 810 | "target-dir": "Symfony/Component/PropertyAccess", |
348 | "source": { | 811 | "source": { |
349 | "type": "git", | 812 | "type": "git", |
350 | "url": "https://github.com/symfony/PropertyAccess.git", | 813 | "url": "https://github.com/symfony/PropertyAccess.git", |
351 | "reference": "v2.3.2" | 814 | "reference": "b5055bdf4365638065d2a268e213a57b771d2f74" |
352 | }, | 815 | }, |
353 | "dist": { | 816 | "dist": { |
354 | "type": "zip", | 817 | "type": "zip", |
355 | "url": "https://api.github.com/repos/symfony/PropertyAccess/zipball/v2.3.2", | 818 | "url": "https://api.github.com/repos/symfony/PropertyAccess/zipball/b5055bdf4365638065d2a268e213a57b771d2f74", |
356 | "reference": "v2.3.2", | 819 | "reference": "b5055bdf4365638065d2a268e213a57b771d2f74", |
357 | "shasum": "" | 820 | "shasum": "" |
358 | }, | 821 | }, |
359 | "require": { | 822 | "require": { |
@@ -362,7 +825,7 @@ | |||
362 | "type": "library", | 825 | "type": "library", |
363 | "extra": { | 826 | "extra": { |
364 | "branch-alias": { | 827 | "branch-alias": { |
365 | "dev-master": "2.3-dev" | 828 | "dev-master": "2.6-dev" |
366 | } | 829 | } |
367 | }, | 830 | }, |
368 | "autoload": { | 831 | "autoload": { |
@@ -376,12 +839,12 @@ | |||
376 | ], | 839 | ], |
377 | "authors": [ | 840 | "authors": [ |
378 | { | 841 | { |
379 | "name": "Fabien Potencier", | ||
380 | "email": "fabien@symfony.com" | ||
381 | }, | ||
382 | { | ||
383 | "name": "Symfony Community", | 842 | "name": "Symfony Community", |
384 | "homepage": "http://symfony.com/contributors" | 843 | "homepage": "http://symfony.com/contributors" |
844 | }, | ||
845 | { | ||
846 | "name": "Fabien Potencier", | ||
847 | "email": "fabien@symfony.com" | ||
385 | } | 848 | } |
386 | ], | 849 | ], |
387 | "description": "Symfony PropertyAccess Component", | 850 | "description": "Symfony PropertyAccess Component", |
@@ -397,41 +860,45 @@ | |||
397 | "property path", | 860 | "property path", |
398 | "reflection" | 861 | "reflection" |
399 | ], | 862 | ], |
400 | "time": "2013-07-01 12:24:43" | 863 | "time": "2015-01-03 15:33:07" |
401 | }, | 864 | }, |
402 | { | 865 | { |
403 | "name": "symfony/routing", | 866 | "name": "symfony/routing", |
404 | "version": "v2.3.2", | 867 | "version": "v2.6.3", |
405 | "target-dir": "Symfony/Component/Routing", | 868 | "target-dir": "Symfony/Component/Routing", |
406 | "source": { | 869 | "source": { |
407 | "type": "git", | 870 | "type": "git", |
408 | "url": "https://github.com/symfony/Routing.git", | 871 | "url": "https://github.com/symfony/Routing.git", |
409 | "reference": "v2.3.2" | 872 | "reference": "28382c6806780ddc657c136a5ca4415dd3252f41" |
410 | }, | 873 | }, |
411 | "dist": { | 874 | "dist": { |
412 | "type": "zip", | 875 | "type": "zip", |
413 | "url": "https://api.github.com/repos/symfony/Routing/zipball/v2.3.2", | 876 | "url": "https://api.github.com/repos/symfony/Routing/zipball/28382c6806780ddc657c136a5ca4415dd3252f41", |
414 | "reference": "v2.3.2", | 877 | "reference": "28382c6806780ddc657c136a5ca4415dd3252f41", |
415 | "shasum": "" | 878 | "shasum": "" |
416 | }, | 879 | }, |
417 | "require": { | 880 | "require": { |
418 | "php": ">=5.3.3" | 881 | "php": ">=5.3.3" |
419 | }, | 882 | }, |
420 | "require-dev": { | 883 | "require-dev": { |
884 | "doctrine/annotations": "~1.0", | ||
421 | "doctrine/common": "~2.2", | 885 | "doctrine/common": "~2.2", |
422 | "psr/log": "~1.0", | 886 | "psr/log": "~1.0", |
423 | "symfony/config": "~2.2", | 887 | "symfony/config": "~2.2", |
424 | "symfony/yaml": "~2.0" | 888 | "symfony/expression-language": "~2.4", |
889 | "symfony/http-foundation": "~2.3", | ||
890 | "symfony/yaml": "~2.0,>=2.0.5" | ||
425 | }, | 891 | }, |
426 | "suggest": { | 892 | "suggest": { |
427 | "doctrine/common": "", | 893 | "doctrine/annotations": "For using the annotation loader", |
428 | "symfony/config": "", | 894 | "symfony/config": "For using the all-in-one router or any loader", |
429 | "symfony/yaml": "" | 895 | "symfony/expression-language": "For using expression matching", |
896 | "symfony/yaml": "For using the YAML loader" | ||
430 | }, | 897 | }, |
431 | "type": "library", | 898 | "type": "library", |
432 | "extra": { | 899 | "extra": { |
433 | "branch-alias": { | 900 | "branch-alias": { |
434 | "dev-master": "2.3-dev" | 901 | "dev-master": "2.6-dev" |
435 | } | 902 | } |
436 | }, | 903 | }, |
437 | "autoload": { | 904 | "autoload": { |
@@ -445,48 +912,174 @@ | |||
445 | ], | 912 | ], |
446 | "authors": [ | 913 | "authors": [ |
447 | { | 914 | { |
915 | "name": "Symfony Community", | ||
916 | "homepage": "http://symfony.com/contributors" | ||
917 | }, | ||
918 | { | ||
448 | "name": "Fabien Potencier", | 919 | "name": "Fabien Potencier", |
449 | "email": "fabien@symfony.com" | 920 | "email": "fabien@symfony.com" |
921 | } | ||
922 | ], | ||
923 | "description": "Symfony Routing Component", | ||
924 | "homepage": "http://symfony.com", | ||
925 | "keywords": [ | ||
926 | "router", | ||
927 | "routing", | ||
928 | "uri", | ||
929 | "url" | ||
930 | ], | ||
931 | "time": "2015-01-05 14:28:40" | ||
932 | }, | ||
933 | { | ||
934 | "name": "symfony/security-core", | ||
935 | "version": "v2.6.3", | ||
936 | "target-dir": "Symfony/Component/Security/Core", | ||
937 | "source": { | ||
938 | "type": "git", | ||
939 | "url": "https://github.com/symfony/security-core.git", | ||
940 | "reference": "db8c6964f9d69496b9ef21788c4afc4306113242" | ||
941 | }, | ||
942 | "dist": { | ||
943 | "type": "zip", | ||
944 | "url": "https://api.github.com/repos/symfony/security-core/zipball/db8c6964f9d69496b9ef21788c4afc4306113242", | ||
945 | "reference": "db8c6964f9d69496b9ef21788c4afc4306113242", | ||
946 | "shasum": "" | ||
947 | }, | ||
948 | "require": { | ||
949 | "php": ">=5.3.3" | ||
950 | }, | ||
951 | "require-dev": { | ||
952 | "ircmaxell/password-compat": "1.0.*", | ||
953 | "psr/log": "~1.0", | ||
954 | "symfony/event-dispatcher": "~2.1", | ||
955 | "symfony/expression-language": "~2.6", | ||
956 | "symfony/http-foundation": "~2.4", | ||
957 | "symfony/translation": "~2.0,>=2.0.5", | ||
958 | "symfony/validator": "~2.5,>=2.5.5" | ||
959 | }, | ||
960 | "suggest": { | ||
961 | "ircmaxell/password-compat": "For using the BCrypt password encoder in PHP <5.5", | ||
962 | "symfony/event-dispatcher": "", | ||
963 | "symfony/expression-language": "For using the expression voter", | ||
964 | "symfony/http-foundation": "", | ||
965 | "symfony/validator": "For using the user password constraint" | ||
966 | }, | ||
967 | "type": "library", | ||
968 | "extra": { | ||
969 | "branch-alias": { | ||
970 | "dev-master": "2.6-dev" | ||
971 | } | ||
972 | }, | ||
973 | "autoload": { | ||
974 | "psr-0": { | ||
975 | "Symfony\\Component\\Security\\Core\\": "" | ||
976 | } | ||
977 | }, | ||
978 | "notification-url": "https://packagist.org/downloads/", | ||
979 | "license": [ | ||
980 | "MIT" | ||
981 | ], | ||
982 | "authors": [ | ||
983 | { | ||
984 | "name": "Symfony Community", | ||
985 | "homepage": "http://symfony.com/contributors" | ||
450 | }, | 986 | }, |
451 | { | 987 | { |
988 | "name": "Fabien Potencier", | ||
989 | "email": "fabien@symfony.com" | ||
990 | } | ||
991 | ], | ||
992 | "description": "Symfony Security Component - Core Library", | ||
993 | "homepage": "http://symfony.com", | ||
994 | "time": "2015-01-05 20:59:13" | ||
995 | }, | ||
996 | { | ||
997 | "name": "symfony/security-csrf", | ||
998 | "version": "v2.6.3", | ||
999 | "target-dir": "Symfony/Component/Security/Csrf", | ||
1000 | "source": { | ||
1001 | "type": "git", | ||
1002 | "url": "https://github.com/symfony/security-csrf.git", | ||
1003 | "reference": "c532081e1c9295b69dac2e3faea87112543504fc" | ||
1004 | }, | ||
1005 | "dist": { | ||
1006 | "type": "zip", | ||
1007 | "url": "https://api.github.com/repos/symfony/security-csrf/zipball/c532081e1c9295b69dac2e3faea87112543504fc", | ||
1008 | "reference": "c532081e1c9295b69dac2e3faea87112543504fc", | ||
1009 | "shasum": "" | ||
1010 | }, | ||
1011 | "require": { | ||
1012 | "php": ">=5.3.3", | ||
1013 | "symfony/security-core": "~2.4" | ||
1014 | }, | ||
1015 | "require-dev": { | ||
1016 | "symfony/http-foundation": "~2.1" | ||
1017 | }, | ||
1018 | "suggest": { | ||
1019 | "symfony/http-foundation": "For using the class SessionTokenStorage." | ||
1020 | }, | ||
1021 | "type": "library", | ||
1022 | "extra": { | ||
1023 | "branch-alias": { | ||
1024 | "dev-master": "2.6-dev" | ||
1025 | } | ||
1026 | }, | ||
1027 | "autoload": { | ||
1028 | "psr-0": { | ||
1029 | "Symfony\\Component\\Security\\Csrf\\": "" | ||
1030 | } | ||
1031 | }, | ||
1032 | "notification-url": "https://packagist.org/downloads/", | ||
1033 | "license": [ | ||
1034 | "MIT" | ||
1035 | ], | ||
1036 | "authors": [ | ||
1037 | { | ||
452 | "name": "Symfony Community", | 1038 | "name": "Symfony Community", |
453 | "homepage": "http://symfony.com/contributors" | 1039 | "homepage": "http://symfony.com/contributors" |
1040 | }, | ||
1041 | { | ||
1042 | "name": "Fabien Potencier", | ||
1043 | "email": "fabien@symfony.com" | ||
454 | } | 1044 | } |
455 | ], | 1045 | ], |
456 | "description": "Symfony Routing Component", | 1046 | "description": "Symfony Security Component - CSRF Library", |
457 | "homepage": "http://symfony.com", | 1047 | "homepage": "http://symfony.com", |
458 | "time": "2013-06-23 08:16:02" | 1048 | "time": "2015-01-03 08:01:59" |
459 | }, | 1049 | }, |
460 | { | 1050 | { |
461 | "name": "symfony/translation", | 1051 | "name": "symfony/translation", |
462 | "version": "v2.3.2", | 1052 | "version": "v2.6.3", |
463 | "target-dir": "Symfony/Component/Translation", | 1053 | "target-dir": "Symfony/Component/Translation", |
464 | "source": { | 1054 | "source": { |
465 | "type": "git", | 1055 | "type": "git", |
466 | "url": "https://github.com/symfony/Translation.git", | 1056 | "url": "https://github.com/symfony/Translation.git", |
467 | "reference": "v2.3.2" | 1057 | "reference": "f289cdf8179d32058c1e1cbac723106a5ff6fa39" |
468 | }, | 1058 | }, |
469 | "dist": { | 1059 | "dist": { |
470 | "type": "zip", | 1060 | "type": "zip", |
471 | "url": "https://api.github.com/repos/symfony/Translation/zipball/v2.3.2", | 1061 | "url": "https://api.github.com/repos/symfony/Translation/zipball/f289cdf8179d32058c1e1cbac723106a5ff6fa39", |
472 | "reference": "v2.3.2", | 1062 | "reference": "f289cdf8179d32058c1e1cbac723106a5ff6fa39", |
473 | "shasum": "" | 1063 | "shasum": "" |
474 | }, | 1064 | }, |
475 | "require": { | 1065 | "require": { |
476 | "php": ">=5.3.3" | 1066 | "php": ">=5.3.3" |
477 | }, | 1067 | }, |
478 | "require-dev": { | 1068 | "require-dev": { |
479 | "symfony/config": "~2.0", | 1069 | "psr/log": "~1.0", |
1070 | "symfony/config": "~2.3,>=2.3.12", | ||
1071 | "symfony/intl": "~2.3", | ||
480 | "symfony/yaml": "~2.2" | 1072 | "symfony/yaml": "~2.2" |
481 | }, | 1073 | }, |
482 | "suggest": { | 1074 | "suggest": { |
1075 | "psr/log": "To use logging capability in translator", | ||
483 | "symfony/config": "", | 1076 | "symfony/config": "", |
484 | "symfony/yaml": "" | 1077 | "symfony/yaml": "" |
485 | }, | 1078 | }, |
486 | "type": "library", | 1079 | "type": "library", |
487 | "extra": { | 1080 | "extra": { |
488 | "branch-alias": { | 1081 | "branch-alias": { |
489 | "dev-master": "2.3-dev" | 1082 | "dev-master": "2.6-dev" |
490 | } | 1083 | } |
491 | }, | 1084 | }, |
492 | "autoload": { | 1085 | "autoload": { |
@@ -500,59 +1093,70 @@ | |||
500 | ], | 1093 | ], |
501 | "authors": [ | 1094 | "authors": [ |
502 | { | 1095 | { |
503 | "name": "Fabien Potencier", | ||
504 | "email": "fabien@symfony.com" | ||
505 | }, | ||
506 | { | ||
507 | "name": "Symfony Community", | 1096 | "name": "Symfony Community", |
508 | "homepage": "http://symfony.com/contributors" | 1097 | "homepage": "http://symfony.com/contributors" |
1098 | }, | ||
1099 | { | ||
1100 | "name": "Fabien Potencier", | ||
1101 | "email": "fabien@symfony.com" | ||
509 | } | 1102 | } |
510 | ], | 1103 | ], |
511 | "description": "Symfony Translation Component", | 1104 | "description": "Symfony Translation Component", |
512 | "homepage": "http://symfony.com", | 1105 | "homepage": "http://symfony.com", |
513 | "time": "2013-05-13 14:36:40" | 1106 | "time": "2015-01-03 15:33:07" |
514 | }, | 1107 | }, |
515 | { | 1108 | { |
516 | "name": "symfony/twig-bridge", | 1109 | "name": "symfony/twig-bridge", |
517 | "version": "v2.3.2", | 1110 | "version": "v2.6.3", |
518 | "target-dir": "Symfony/Bridge/Twig", | 1111 | "target-dir": "Symfony/Bridge/Twig", |
519 | "source": { | 1112 | "source": { |
520 | "type": "git", | 1113 | "type": "git", |
521 | "url": "https://github.com/symfony/TwigBridge.git", | 1114 | "url": "https://github.com/symfony/TwigBridge.git", |
522 | "reference": "v2.3.2" | 1115 | "reference": "72c911dd02f5d8e68accab7120fc0fd1a0b84ba1" |
523 | }, | 1116 | }, |
524 | "dist": { | 1117 | "dist": { |
525 | "type": "zip", | 1118 | "type": "zip", |
526 | "url": "https://api.github.com/repos/symfony/TwigBridge/zipball/v2.3.2", | 1119 | "url": "https://api.github.com/repos/symfony/TwigBridge/zipball/72c911dd02f5d8e68accab7120fc0fd1a0b84ba1", |
527 | "reference": "v2.3.2", | 1120 | "reference": "72c911dd02f5d8e68accab7120fc0fd1a0b84ba1", |
528 | "shasum": "" | 1121 | "shasum": "" |
529 | }, | 1122 | }, |
530 | "require": { | 1123 | "require": { |
531 | "php": ">=5.3.3", | 1124 | "php": ">=5.3.3", |
532 | "twig/twig": "~1.11" | 1125 | "symfony/security-csrf": "~2.4", |
1126 | "twig/twig": "~1.13,>=1.13.1" | ||
533 | }, | 1127 | }, |
534 | "require-dev": { | 1128 | "require-dev": { |
535 | "symfony/form": "2.2.*", | 1129 | "symfony/console": "~2.4", |
536 | "symfony/http-kernel": "~2.2", | 1130 | "symfony/expression-language": "~2.4", |
1131 | "symfony/finder": "~2.3", | ||
1132 | "symfony/form": "~2.6", | ||
1133 | "symfony/http-kernel": "~2.3", | ||
1134 | "symfony/intl": "~2.3", | ||
537 | "symfony/routing": "~2.2", | 1135 | "symfony/routing": "~2.2", |
538 | "symfony/security": "~2.0", | 1136 | "symfony/security": "~2.4", |
1137 | "symfony/stopwatch": "~2.2", | ||
539 | "symfony/templating": "~2.1", | 1138 | "symfony/templating": "~2.1", |
540 | "symfony/translation": "~2.2", | 1139 | "symfony/translation": "~2.2", |
541 | "symfony/yaml": "~2.0" | 1140 | "symfony/var-dumper": "~2.6", |
1141 | "symfony/yaml": "~2.0,>=2.0.5" | ||
542 | }, | 1142 | }, |
543 | "suggest": { | 1143 | "suggest": { |
544 | "symfony/form": "", | 1144 | "symfony/expression-language": "For using the ExpressionExtension", |
545 | "symfony/http-kernel": "", | 1145 | "symfony/finder": "", |
546 | "symfony/routing": "", | 1146 | "symfony/form": "For using the FormExtension", |
547 | "symfony/security": "", | 1147 | "symfony/http-kernel": "For using the HttpKernelExtension", |
548 | "symfony/templating": "", | 1148 | "symfony/routing": "For using the RoutingExtension", |
549 | "symfony/translation": "", | 1149 | "symfony/security": "For using the SecurityExtension", |
550 | "symfony/yaml": "" | 1150 | "symfony/stopwatch": "For using the StopwatchExtension", |
1151 | "symfony/templating": "For using the TwigEngine", | ||
1152 | "symfony/translation": "For using the TranslationExtension", | ||
1153 | "symfony/var-dumper": "For using the DumpExtension", | ||
1154 | "symfony/yaml": "For using the YamlExtension" | ||
551 | }, | 1155 | }, |
552 | "type": "symfony-bridge", | 1156 | "type": "symfony-bridge", |
553 | "extra": { | 1157 | "extra": { |
554 | "branch-alias": { | 1158 | "branch-alias": { |
555 | "dev-master": "2.3-dev" | 1159 | "dev-master": "2.6-dev" |
556 | } | 1160 | } |
557 | }, | 1161 | }, |
558 | "autoload": { | 1162 | "autoload": { |
@@ -566,34 +1170,34 @@ | |||
566 | ], | 1170 | ], |
567 | "authors": [ | 1171 | "authors": [ |
568 | { | 1172 | { |
569 | "name": "Fabien Potencier", | ||
570 | "email": "fabien@symfony.com" | ||
571 | }, | ||
572 | { | ||
573 | "name": "Symfony Community", | 1173 | "name": "Symfony Community", |
574 | "homepage": "http://symfony.com/contributors" | 1174 | "homepage": "http://symfony.com/contributors" |
1175 | }, | ||
1176 | { | ||
1177 | "name": "Fabien Potencier", | ||
1178 | "email": "fabien@symfony.com" | ||
575 | } | 1179 | } |
576 | ], | 1180 | ], |
577 | "description": "Symfony Twig Bridge", | 1181 | "description": "Symfony Twig Bridge", |
578 | "homepage": "http://symfony.com", | 1182 | "homepage": "http://symfony.com", |
579 | "time": "2013-05-16 10:19:58" | 1183 | "time": "2015-01-05 14:28:40" |
580 | }, | 1184 | }, |
581 | { | 1185 | { |
582 | "name": "twig/extensions", | 1186 | "name": "twig/extensions", |
583 | "version": "v1.0.0", | 1187 | "version": "v1.0.1", |
584 | "source": { | 1188 | "source": { |
585 | "type": "git", | 1189 | "type": "git", |
586 | "url": "https://github.com/fabpot/Twig-extensions.git", | 1190 | "url": "https://github.com/twigphp/Twig-extensions.git", |
587 | "reference": "v1.0.0" | 1191 | "reference": "f91a82ec225e5bb108e01a0f93c9be04f84dcfa0" |
588 | }, | 1192 | }, |
589 | "dist": { | 1193 | "dist": { |
590 | "type": "zip", | 1194 | "type": "zip", |
591 | "url": "https://api.github.com/repos/fabpot/Twig-extensions/zipball/v1.0.0", | 1195 | "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/f91a82ec225e5bb108e01a0f93c9be04f84dcfa0", |
592 | "reference": "v1.0.0", | 1196 | "reference": "f91a82ec225e5bb108e01a0f93c9be04f84dcfa0", |
593 | "shasum": "" | 1197 | "shasum": "" |
594 | }, | 1198 | }, |
595 | "require": { | 1199 | "require": { |
596 | "twig/twig": "1.*" | 1200 | "twig/twig": "~1.0" |
597 | }, | 1201 | }, |
598 | "type": "library", | 1202 | "type": "library", |
599 | "extra": { | 1203 | "extra": { |
@@ -623,20 +1227,20 @@ | |||
623 | "i18n", | 1227 | "i18n", |
624 | "text" | 1228 | "text" |
625 | ], | 1229 | ], |
626 | "time": "2013-02-28 14:21:30" | 1230 | "time": "2013-10-18 19:37:15" |
627 | }, | 1231 | }, |
628 | { | 1232 | { |
629 | "name": "twig/twig", | 1233 | "name": "twig/twig", |
630 | "version": "v1.13.2", | 1234 | "version": "v1.17.0", |
631 | "source": { | 1235 | "source": { |
632 | "type": "git", | 1236 | "type": "git", |
633 | "url": "https://github.com/fabpot/Twig.git", | 1237 | "url": "https://github.com/twigphp/Twig.git", |
634 | "reference": "v1.13.2" | 1238 | "reference": "2493970fa4d587eca73f77e6d8bd48a8bdd4c608" |
635 | }, | 1239 | }, |
636 | "dist": { | 1240 | "dist": { |
637 | "type": "zip", | 1241 | "type": "zip", |
638 | "url": "https://api.github.com/repos/fabpot/Twig/zipball/v1.13.2", | 1242 | "url": "https://api.github.com/repos/twigphp/Twig/zipball/2493970fa4d587eca73f77e6d8bd48a8bdd4c608", |
639 | "reference": "v1.13.2", | 1243 | "reference": "2493970fa4d587eca73f77e6d8bd48a8bdd4c608", |
640 | "shasum": "" | 1244 | "shasum": "" |
641 | }, | 1245 | }, |
642 | "require": { | 1246 | "require": { |
@@ -645,7 +1249,7 @@ | |||
645 | "type": "library", | 1249 | "type": "library", |
646 | "extra": { | 1250 | "extra": { |
647 | "branch-alias": { | 1251 | "branch-alias": { |
648 | "dev-master": "1.13-dev" | 1252 | "dev-master": "1.17-dev" |
649 | } | 1253 | } |
650 | }, | 1254 | }, |
651 | "autoload": { | 1255 | "autoload": { |
@@ -660,11 +1264,19 @@ | |||
660 | "authors": [ | 1264 | "authors": [ |
661 | { | 1265 | { |
662 | "name": "Fabien Potencier", | 1266 | "name": "Fabien Potencier", |
663 | "email": "fabien@symfony.com" | 1267 | "email": "fabien@symfony.com", |
1268 | "homepage": "http://fabien.potencier.org", | ||
1269 | "role": "Lead Developer" | ||
664 | }, | 1270 | }, |
665 | { | 1271 | { |
666 | "name": "Armin Ronacher", | 1272 | "name": "Armin Ronacher", |
667 | "email": "armin.ronacher@active-4.com" | 1273 | "email": "armin.ronacher@active-4.com", |
1274 | "role": "Project Founder" | ||
1275 | }, | ||
1276 | { | ||
1277 | "name": "Twig Team", | ||
1278 | "homepage": "http://twig.sensiolabs.org/contributors", | ||
1279 | "role": "Contributors" | ||
668 | } | 1280 | } |
669 | ], | 1281 | ], |
670 | "description": "Twig, the flexible, fast, and secure template language for PHP", | 1282 | "description": "Twig, the flexible, fast, and secure template language for PHP", |
@@ -672,7 +1284,7 @@ | |||
672 | "keywords": [ | 1284 | "keywords": [ |
673 | "templating" | 1285 | "templating" |
674 | ], | 1286 | ], |
675 | "time": "2013-08-03 15:35:31" | 1287 | "time": "2015-01-14 10:15:49" |
676 | }, | 1288 | }, |
677 | { | 1289 | { |
678 | "name": "umpirsky/twig-gettext-extractor", | 1290 | "name": "umpirsky/twig-gettext-extractor", |
@@ -725,20 +1337,16 @@ | |||
725 | "time": "2013-02-14 16:41:48" | 1337 | "time": "2013-02-14 16:41:48" |
726 | } | 1338 | } |
727 | ], | 1339 | ], |
728 | "packages-dev": [ | 1340 | "packages-dev": [], |
729 | 1341 | "aliases": [], | |
730 | ], | ||
731 | "aliases": [ | ||
732 | |||
733 | ], | ||
734 | "minimum-stability": "stable", | 1342 | "minimum-stability": "stable", |
735 | "stability-flags": [ | 1343 | "stability-flags": { |
736 | 1344 | "fabpot/goutte": 20, | |
737 | ], | 1345 | "ezyang/htmlpurifier": 20, |
738 | "platform": [ | 1346 | "mgargano/simplehtmldom": 20 |
739 | 1347 | }, | |
740 | ], | 1348 | "prefer-stable": false, |
741 | "platform-dev": [ | 1349 | "prefer-lowest": false, |
742 | 1350 | "platform": [], | |
743 | ] | 1351 | "platform-dev": [] |
744 | } | 1352 | } |