diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | RELEASE_PROCESS.md | 34 | ||||
-rw-r--r-- | app/config/wallabag.yml | 2 | ||||
-rw-r--r-- | composer.lock | 10434 | ||||
-rwxr-xr-x | scripts/release.sh | 4 |
5 files changed, 10446 insertions, 31 deletions
@@ -43,9 +43,6 @@ data/db/wallabag*.sqlite | |||
43 | docker/logs/ | 43 | docker/logs/ |
44 | docker/data/ | 44 | docker/data/ |
45 | 45 | ||
46 | # To avoid crazy stuff on some PR, we must manually FORCE ADD IT on each new release | ||
47 | composer.lock | ||
48 | |||
49 | # assets stuff | 46 | # assets stuff |
50 | node_modules/ | 47 | node_modules/ |
51 | bin | 48 | bin |
diff --git a/RELEASE_PROCESS.md b/RELEASE_PROCESS.md index 829f8390..881f0771 100644 --- a/RELEASE_PROCESS.md +++ b/RELEASE_PROCESS.md | |||
@@ -22,58 +22,42 @@ During this documentation, we assume the release is `$LAST_WALLABAG_RELEASE` (li | |||
22 | git checkout master | 22 | git checkout master |
23 | git pull origin master | 23 | git pull origin master |
24 | git checkout -b release-$LAST_WALLABAG_RELEASE | 24 | git checkout -b release-$LAST_WALLABAG_RELEASE |
25 | SYMFONY_ENV=prod composer up --no-dev | 25 | composer up |
26 | ``` | ||
27 | |||
28 | - Update `.travis.yml` file and replace the composer line with this one: | ||
29 | |||
30 | ```diff | ||
31 | script: | ||
32 | - - travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist | ||
33 | + - travis_wait bash composer update -o --no-interaction --no-progress --prefer-dist | ||
34 | ``` | 26 | ``` |
35 | 27 | ||
36 | - Then continue with these commands: | 28 | - Then continue with these commands: |
37 | 29 | ||
38 | ``` | 30 | ``` |
39 | git add --force composer.lock .travis.yml | 31 | git add composer.lock |
40 | git commit -m "Release wallabag $LAST_WALLABAG_RELEASE" | 32 | git commit -m "Release wallabag $LAST_WALLABAG_RELEASE" |
41 | git push origin release-$LAST_WALLABAG_RELEASE | 33 | git push origin release-$LAST_WALLABAG_RELEASE |
42 | ``` | 34 | ``` |
43 | 35 | ||
44 | - Create a new pull request with this title `DON'T MERGE Release wallabag $LAST_WALLABAG_RELEASE`. This pull request is used to launch builds on Travis-CI. | 36 | - Create a new pull request with this title `Release wallabag $LAST_WALLABAG_RELEASE`. This pull request is used to launch builds on Travis-CI. |
45 | - Run these command to create the package: | 37 | - Once PR is green, merge it and delete the branch. |
38 | - Run this command to create the package: | ||
46 | 39 | ||
47 | ``` | 40 | ``` |
48 | make release VERSION=$LAST_WALLABAG_RELEASE | 41 | make release VERSION=$LAST_WALLABAG_RELEASE |
49 | ``` | 42 | ``` |
50 | 43 | ||
51 | - [Create the new release on GitHub](https://github.com/wallabag/wallabag/releases/new) by targetting the `release-$LAST_WALLABAG_RELEASE` branch. You have to upload the package (generated previously). | 44 | - [Create the new release on GitHub](https://github.com/wallabag/wallabag/releases/new) by targetting the `master` branch or any appropriate branch (for instance backports). You have to upload the package (generated previously). |
52 | - Close the previously created pull request (**DO NOT MERGE IT**) and delete the `release-$LAST_WALLABAG_RELEASE` branch. | 45 | - Update the URL shortener (used on `wllbg.org` to update links like `https://wllbg.org/latest-v2-package` or `http://wllbg.org/latest-v2`) |
53 | - Update the URL shortener (used on `wllbg.org` to generate links like `https://wllbg.org/latest-v2-package` or `http://wllbg.org/latest-v2`) | ||
54 | - Update Dockerfile https://github.com/wallabag/docker (and create a new tag) | 46 | - Update Dockerfile https://github.com/wallabag/docker (and create a new tag) |
55 | - Update wallabag.org website (downloads, MD5 sum, releases and new blog post) | 47 | - Update wallabag.org website (downloads, MD5 sum, releases and new blog post) |
56 | - Put the next patch version suffixed with `-dev` in `app/config/wallabag.yml` (`wallabag_core.version`) | 48 | - Put the next patch version suffixed with `-dev` in `app/config/wallabag.yml` (`wallabag_core.version`) |
57 | - Drink a :beer:! | 49 | - Drink a :beer:! |
58 | 50 | ||
59 | ### `composer.lock` | ||
60 | A release tag must contain a `composer.lock` file. It sets which dependencies were available at the time a release was done, | ||
61 | making it easier to fix issues after the release. It also speeds up `composer install` on stable versions a LOT, by skipping the | ||
62 | dependencies resolution part. | ||
63 | |||
64 | Since `composer.lock` is ignored by default, either it must be removed from `.gitignore` _in the release branch_, | ||
65 | or it must be added using `git add --force composer.lock`. | ||
66 | |||
67 | ### Target PHP version | 51 | ### Target PHP version |
68 | `composer.lock` is _always_ built for a particular version, by default the one it is generated (with `composer update`). | 52 | `composer.lock` is _always_ built for a particular version, by default the one it is generated (with `composer update`). |
69 | 53 | ||
70 | If the PHP version used to generate the .lock isn't a widely available one (like PHP 7), a more common one should | 54 | If the PHP version used to generate the .lock isn't a widely available one (like PHP 8), a more common one should |
71 | be locally specified in `composer.lock`: | 55 | be locally specified in `composer.lock`: |
72 | 56 | ||
73 | ```json | 57 | ```json |
74 | "config": { | 58 | "config": { |
75 | "platform": { | 59 | "platform": { |
76 | "php": "5.5.9", | 60 | "php": "7.1.3", |
77 | "ext-something": "4.0" | 61 | "ext-something": "4.0" |
78 | } | 62 | } |
79 | } | 63 | } |
diff --git a/app/config/wallabag.yml b/app/config/wallabag.yml index 99088a6f..ea1cce12 100644 --- a/app/config/wallabag.yml +++ b/app/config/wallabag.yml | |||
@@ -1,5 +1,5 @@ | |||
1 | wallabag_core: | 1 | wallabag_core: |
2 | version: 2.3.8 | 2 | version: 2.4.0-dev |
3 | paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb" | 3 | paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb" |
4 | languages: | 4 | languages: |
5 | en: 'English' | 5 | en: 'English' |
diff --git a/composer.lock b/composer.lock new file mode 100644 index 00000000..cbb9265d --- /dev/null +++ b/composer.lock | |||
@@ -0,0 +1,10434 @@ | |||
1 | { | ||
2 | "_readme": [ | ||
3 | "This file locks the dependencies of your project to a known state", | ||
4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", | ||
5 | "This file is @generated automatically" | ||
6 | ], | ||
7 | "content-hash": "883f44eda34a48c8ddabc3294498d996", | ||
8 | "packages": [ | ||
9 | { | ||
10 | "name": "bdunogier/guzzle-site-authenticator", | ||
11 | "version": "1.0.0", | ||
12 | "source": { | ||
13 | "type": "git", | ||
14 | "url": "https://github.com/wallabag/guzzle-site-authenticator.git", | ||
15 | "reference": "6649aca6f13c27088ef34e4202b31fc0da01d987" | ||
16 | }, | ||
17 | "dist": { | ||
18 | "type": "zip", | ||
19 | "url": "https://api.github.com/repos/wallabag/guzzle-site-authenticator/zipball/6649aca6f13c27088ef34e4202b31fc0da01d987", | ||
20 | "reference": "6649aca6f13c27088ef34e4202b31fc0da01d987", | ||
21 | "shasum": "" | ||
22 | }, | ||
23 | "require": { | ||
24 | "guzzlehttp/guzzle": "^5.2.0", | ||
25 | "psr/log": "^1.0.0", | ||
26 | "symfony/expression-language": "^3.2" | ||
27 | }, | ||
28 | "require-dev": { | ||
29 | "friendsofphp/php-cs-fixer": "~2.0", | ||
30 | "monolog/monolog": "^1.13", | ||
31 | "php-coveralls/php-coveralls": "~1.0", | ||
32 | "symfony/phpunit-bridge": "^4.2" | ||
33 | }, | ||
34 | "type": "library", | ||
35 | "extra": { | ||
36 | "branch-alias": { | ||
37 | "dev-master": "1.0.x-dev" | ||
38 | } | ||
39 | }, | ||
40 | "autoload": { | ||
41 | "psr-4": { | ||
42 | "BD\\GuzzleSiteAuthenticatorBundle\\": "bundle/", | ||
43 | "BD\\GuzzleSiteAuthenticator\\": "lib/" | ||
44 | } | ||
45 | }, | ||
46 | "notification-url": "https://packagist.org/downloads/", | ||
47 | "license": [ | ||
48 | "MIT" | ||
49 | ], | ||
50 | "authors": [ | ||
51 | { | ||
52 | "name": "Bertrand Dunogier", | ||
53 | "email": "bertrand.dunogier@gmail.com" | ||
54 | } | ||
55 | ], | ||
56 | "description": "A guzzle plugin that adds, if necessary, authentication data to requests. Uses credentials and cookies, with login requests to the sites.", | ||
57 | "time": "2018-12-13T21:06:29+00:00" | ||
58 | }, | ||
59 | { | ||
60 | "name": "behat/transliterator", | ||
61 | "version": "v1.2.0", | ||
62 | "source": { | ||
63 | "type": "git", | ||
64 | "url": "https://github.com/Behat/Transliterator.git", | ||
65 | "reference": "826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c" | ||
66 | }, | ||
67 | "dist": { | ||
68 | "type": "zip", | ||
69 | "url": "https://api.github.com/repos/Behat/Transliterator/zipball/826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c", | ||
70 | "reference": "826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c", | ||
71 | "shasum": "" | ||
72 | }, | ||
73 | "require": { | ||
74 | "php": ">=5.3.3" | ||
75 | }, | ||
76 | "require-dev": { | ||
77 | "chuyskywalker/rolling-curl": "^3.1", | ||
78 | "php-yaoi/php-yaoi": "^1.0" | ||
79 | }, | ||
80 | "type": "library", | ||
81 | "extra": { | ||
82 | "branch-alias": { | ||
83 | "dev-master": "1.2-dev" | ||
84 | } | ||
85 | }, | ||
86 | "autoload": { | ||
87 | "psr-0": { | ||
88 | "Behat\\Transliterator": "src/" | ||
89 | } | ||
90 | }, | ||
91 | "notification-url": "https://packagist.org/downloads/", | ||
92 | "license": [ | ||
93 | "Artistic-1.0" | ||
94 | ], | ||
95 | "description": "String transliterator", | ||
96 | "keywords": [ | ||
97 | "i18n", | ||
98 | "slug", | ||
99 | "transliterator" | ||
100 | ], | ||
101 | "time": "2017-04-04T11:38:05+00:00" | ||
102 | }, | ||
103 | { | ||
104 | "name": "clue/stream-filter", | ||
105 | "version": "v1.4.1", | ||
106 | "source": { | ||
107 | "type": "git", | ||
108 | "url": "https://github.com/clue/php-stream-filter.git", | ||
109 | "reference": "5a58cc30a8bd6a4eb8f856adf61dd3e013f53f71" | ||
110 | }, | ||
111 | "dist": { | ||
112 | "type": "zip", | ||
113 | "url": "https://api.github.com/repos/clue/php-stream-filter/zipball/5a58cc30a8bd6a4eb8f856adf61dd3e013f53f71", | ||
114 | "reference": "5a58cc30a8bd6a4eb8f856adf61dd3e013f53f71", | ||
115 | "shasum": "" | ||
116 | }, | ||
117 | "require": { | ||
118 | "php": ">=5.3" | ||
119 | }, | ||
120 | "require-dev": { | ||
121 | "phpunit/phpunit": "^5.0 || ^4.8" | ||
122 | }, | ||
123 | "type": "library", | ||
124 | "autoload": { | ||
125 | "psr-4": { | ||
126 | "Clue\\StreamFilter\\": "src/" | ||
127 | }, | ||
128 | "files": [ | ||
129 | "src/functions_include.php" | ||
130 | ] | ||
131 | }, | ||
132 | "notification-url": "https://packagist.org/downloads/", | ||
133 | "license": [ | ||
134 | "MIT" | ||
135 | ], | ||
136 | "authors": [ | ||
137 | { | ||
138 | "name": "Christian Lück", | ||
139 | "email": "christian@lueck.tv" | ||
140 | } | ||
141 | ], | ||
142 | "description": "A simple and modern approach to stream filtering in PHP", | ||
143 | "homepage": "https://github.com/clue/php-stream-filter", | ||
144 | "keywords": [ | ||
145 | "bucket brigade", | ||
146 | "callback", | ||
147 | "filter", | ||
148 | "php_user_filter", | ||
149 | "stream", | ||
150 | "stream_filter_append", | ||
151 | "stream_filter_register" | ||
152 | ], | ||
153 | "time": "2019-04-09T12:31:48+00:00" | ||
154 | }, | ||
155 | { | ||
156 | "name": "composer/ca-bundle", | ||
157 | "version": "1.1.4", | ||
158 | "source": { | ||
159 | "type": "git", | ||
160 | "url": "https://github.com/composer/ca-bundle.git", | ||
161 | "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d" | ||
162 | }, | ||
163 | "dist": { | ||
164 | "type": "zip", | ||
165 | "url": "https://api.github.com/repos/composer/ca-bundle/zipball/558f321c52faeb4828c03e7dc0cfe39a09e09a2d", | ||
166 | "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d", | ||
167 | "shasum": "" | ||
168 | }, | ||
169 | "require": { | ||
170 | "ext-openssl": "*", | ||
171 | "ext-pcre": "*", | ||
172 | "php": "^5.3.2 || ^7.0" | ||
173 | }, | ||
174 | "require-dev": { | ||
175 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5", | ||
176 | "psr/log": "^1.0", | ||
177 | "symfony/process": "^2.5 || ^3.0 || ^4.0" | ||
178 | }, | ||
179 | "type": "library", | ||
180 | "extra": { | ||
181 | "branch-alias": { | ||
182 | "dev-master": "1.x-dev" | ||
183 | } | ||
184 | }, | ||
185 | "autoload": { | ||
186 | "psr-4": { | ||
187 | "Composer\\CaBundle\\": "src" | ||
188 | } | ||
189 | }, | ||
190 | "notification-url": "https://packagist.org/downloads/", | ||
191 | "license": [ | ||
192 | "MIT" | ||
193 | ], | ||
194 | "authors": [ | ||
195 | { | ||
196 | "name": "Jordi Boggiano", | ||
197 | "email": "j.boggiano@seld.be", | ||
198 | "homepage": "http://seld.be" | ||
199 | } | ||
200 | ], | ||
201 | "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", | ||
202 | "keywords": [ | ||
203 | "cabundle", | ||
204 | "cacert", | ||
205 | "certificate", | ||
206 | "ssl", | ||
207 | "tls" | ||
208 | ], | ||
209 | "time": "2019-01-28T09:30:10+00:00" | ||
210 | }, | ||
211 | { | ||
212 | "name": "craue/config-bundle", | ||
213 | "version": "dev-utf8mb4", | ||
214 | "source": { | ||
215 | "type": "git", | ||
216 | "url": "https://github.com/wallabag/CraueConfigBundle.git", | ||
217 | "reference": "46cfd37febc51d62e84e4c64fdb166e7495ca172" | ||
218 | }, | ||
219 | "dist": { | ||
220 | "type": "zip", | ||
221 | "url": "https://api.github.com/repos/wallabag/CraueConfigBundle/zipball/46cfd37febc51d62e84e4c64fdb166e7495ca172", | ||
222 | "reference": "46cfd37febc51d62e84e4c64fdb166e7495ca172", | ||
223 | "shasum": "" | ||
224 | }, | ||
225 | "require": { | ||
226 | "doctrine/doctrine-bundle": "~1.3", | ||
227 | "php": "^5.3.9|~7.0", | ||
228 | "symfony/framework-bundle": "~2.7|~3.0|~4.0" | ||
229 | }, | ||
230 | "require-dev": { | ||
231 | "doctrine/doctrine-cache-bundle": "~1.3", | ||
232 | "doctrine/orm": "^2.3.1", | ||
233 | "phpunit/phpunit": "^4.8.35|~5.7|~6.0", | ||
234 | "symfony/phpunit-bridge": "~3.2|~4.0", | ||
235 | "symfony/symfony": "~2.7|~3.0|~4.0" | ||
236 | }, | ||
237 | "type": "symfony-bundle", | ||
238 | "extra": { | ||
239 | "branch-alias": { | ||
240 | "dev-master": "2.1.x-dev" | ||
241 | } | ||
242 | }, | ||
243 | "autoload": { | ||
244 | "psr-4": { | ||
245 | "Craue\\ConfigBundle\\": "" | ||
246 | }, | ||
247 | "exclude-from-classmap": [ | ||
248 | "/Tests/" | ||
249 | ] | ||
250 | }, | ||
251 | "license": [ | ||
252 | "MIT" | ||
253 | ], | ||
254 | "authors": [ | ||
255 | { | ||
256 | "name": "Christian Raue", | ||
257 | "email": "christian.raue@gmail.com" | ||
258 | }, | ||
259 | { | ||
260 | "name": "Symfony Community", | ||
261 | "homepage": "https://github.com/craue/CraueConfigBundle/contributors" | ||
262 | } | ||
263 | ], | ||
264 | "description": "Database-stored settings made available via a service for your Symfony project.", | ||
265 | "homepage": "https://github.com/craue/CraueConfigBundle", | ||
266 | "keywords": [ | ||
267 | "config", | ||
268 | "symfony2", | ||
269 | "symfony3", | ||
270 | "symfony4" | ||
271 | ], | ||
272 | "support": { | ||
273 | "source": "https://github.com/wallabag/CraueConfigBundle/tree/utf8mb4" | ||
274 | }, | ||
275 | "time": "2018-11-28T19:15:35+00:00" | ||
276 | }, | ||
277 | { | ||
278 | "name": "defuse/php-encryption", | ||
279 | "version": "v2.2.1", | ||
280 | "source": { | ||
281 | "type": "git", | ||
282 | "url": "https://github.com/defuse/php-encryption.git", | ||
283 | "reference": "0f407c43b953d571421e0020ba92082ed5fb7620" | ||
284 | }, | ||
285 | "dist": { | ||
286 | "type": "zip", | ||
287 | "url": "https://api.github.com/repos/defuse/php-encryption/zipball/0f407c43b953d571421e0020ba92082ed5fb7620", | ||
288 | "reference": "0f407c43b953d571421e0020ba92082ed5fb7620", | ||
289 | "shasum": "" | ||
290 | }, | ||
291 | "require": { | ||
292 | "ext-openssl": "*", | ||
293 | "paragonie/random_compat": ">= 2", | ||
294 | "php": ">=5.4.0" | ||
295 | }, | ||
296 | "require-dev": { | ||
297 | "nikic/php-parser": "^2.0|^3.0|^4.0", | ||
298 | "phpunit/phpunit": "^4|^5" | ||
299 | }, | ||
300 | "bin": [ | ||
301 | "bin/generate-defuse-key" | ||
302 | ], | ||
303 | "type": "library", | ||
304 | "autoload": { | ||
305 | "psr-4": { | ||
306 | "Defuse\\Crypto\\": "src" | ||
307 | } | ||
308 | }, | ||
309 | "notification-url": "https://packagist.org/downloads/", | ||
310 | "license": [ | ||
311 | "MIT" | ||
312 | ], | ||
313 | "authors": [ | ||
314 | { | ||
315 | "name": "Taylor Hornby", | ||
316 | "email": "taylor@defuse.ca", | ||
317 | "homepage": "https://defuse.ca/" | ||
318 | }, | ||
319 | { | ||
320 | "name": "Scott Arciszewski", | ||
321 | "email": "info@paragonie.com", | ||
322 | "homepage": "https://paragonie.com" | ||
323 | } | ||
324 | ], | ||
325 | "description": "Secure PHP Encryption Library", | ||
326 | "keywords": [ | ||
327 | "aes", | ||
328 | "authenticated encryption", | ||
329 | "cipher", | ||
330 | "crypto", | ||
331 | "cryptography", | ||
332 | "encrypt", | ||
333 | "encryption", | ||
334 | "openssl", | ||
335 | "security", | ||
336 | "symmetric key cryptography" | ||
337 | ], | ||
338 | "time": "2018-07-24T23:27:56+00:00" | ||
339 | }, | ||
340 | { | ||
341 | "name": "doctrine/annotations", | ||
342 | "version": "v1.6.1", | ||
343 | "source": { | ||
344 | "type": "git", | ||
345 | "url": "https://github.com/doctrine/annotations.git", | ||
346 | "reference": "53120e0eb10355388d6ccbe462f1fea34ddadb24" | ||
347 | }, | ||
348 | "dist": { | ||
349 | "type": "zip", | ||
350 | "url": "https://api.github.com/repos/doctrine/annotations/zipball/53120e0eb10355388d6ccbe462f1fea34ddadb24", | ||
351 | "reference": "53120e0eb10355388d6ccbe462f1fea34ddadb24", | ||
352 | "shasum": "" | ||
353 | }, | ||
354 | "require": { | ||
355 | "doctrine/lexer": "1.*", | ||
356 | "php": "^7.1" | ||
357 | }, | ||
358 | "require-dev": { | ||
359 | "doctrine/cache": "1.*", | ||
360 | "phpunit/phpunit": "^6.4" | ||
361 | }, | ||
362 | "type": "library", | ||
363 | "extra": { | ||
364 | "branch-alias": { | ||
365 | "dev-master": "1.6.x-dev" | ||
366 | } | ||
367 | }, | ||
368 | "autoload": { | ||
369 | "psr-4": { | ||
370 | "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" | ||
371 | } | ||
372 | }, | ||
373 | "notification-url": "https://packagist.org/downloads/", | ||
374 | "license": [ | ||
375 | "MIT" | ||
376 | ], | ||
377 | "authors": [ | ||
378 | { | ||
379 | "name": "Roman Borschel", | ||
380 | "email": "roman@code-factory.org" | ||
381 | }, | ||
382 | { | ||
383 | "name": "Benjamin Eberlei", | ||
384 | "email": "kontakt@beberlei.de" | ||
385 | }, | ||
386 | { | ||
387 | "name": "Guilherme Blanco", | ||
388 | "email": "guilhermeblanco@gmail.com" | ||
389 | }, | ||
390 | { | ||
391 | "name": "Jonathan Wage", | ||
392 | "email": "jonwage@gmail.com" | ||
393 | }, | ||
394 | { | ||
395 | "name": "Johannes Schmitt", | ||
396 | "email": "schmittjoh@gmail.com" | ||
397 | } | ||
398 | ], | ||
399 | "description": "Docblock Annotations Parser", | ||
400 | "homepage": "http://www.doctrine-project.org", | ||
401 | "keywords": [ | ||
402 | "annotations", | ||
403 | "docblock", | ||
404 | "parser" | ||
405 | ], | ||
406 | "time": "2019-03-25T19:12:02+00:00" | ||
407 | }, | ||
408 | { | ||
409 | "name": "doctrine/cache", | ||
410 | "version": "v1.8.0", | ||
411 | "source": { | ||
412 | "type": "git", | ||
413 | "url": "https://github.com/doctrine/cache.git", | ||
414 | "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57" | ||
415 | }, | ||
416 | "dist": { | ||
417 | "type": "zip", | ||
418 | "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57", | ||
419 | "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57", | ||
420 | "shasum": "" | ||
421 | }, | ||
422 | "require": { | ||
423 | "php": "~7.1" | ||
424 | }, | ||
425 | "conflict": { | ||
426 | "doctrine/common": ">2.2,<2.4" | ||
427 | }, | ||
428 | "require-dev": { | ||
429 | "alcaeus/mongo-php-adapter": "^1.1", | ||
430 | "doctrine/coding-standard": "^4.0", | ||
431 | "mongodb/mongodb": "^1.1", | ||
432 | "phpunit/phpunit": "^7.0", | ||
433 | "predis/predis": "~1.0" | ||
434 | }, | ||
435 | "suggest": { | ||
436 | "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" | ||
437 | }, | ||
438 | "type": "library", | ||
439 | "extra": { | ||
440 | "branch-alias": { | ||
441 | "dev-master": "1.8.x-dev" | ||
442 | } | ||
443 | }, | ||
444 | "autoload": { | ||
445 | "psr-4": { | ||
446 | "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" | ||
447 | } | ||
448 | }, | ||
449 | "notification-url": "https://packagist.org/downloads/", | ||
450 | "license": [ | ||
451 | "MIT" | ||
452 | ], | ||
453 | "authors": [ | ||
454 | { | ||
455 | "name": "Roman Borschel", | ||
456 | "email": "roman@code-factory.org" | ||
457 | }, | ||
458 | { | ||
459 | "name": "Benjamin Eberlei", | ||
460 | "email": "kontakt@beberlei.de" | ||
461 | }, | ||
462 | { | ||
463 | "name": "Guilherme Blanco", | ||
464 | "email": "guilhermeblanco@gmail.com" | ||
465 | }, | ||
466 | { | ||
467 | "name": "Jonathan Wage", | ||
468 | "email": "jonwage@gmail.com" | ||
469 | }, | ||
470 | { | ||
471 | "name": "Johannes Schmitt", | ||
472 | "email": "schmittjoh@gmail.com" | ||
473 | } | ||
474 | ], | ||
475 | "description": "Caching library offering an object-oriented API for many cache backends", | ||
476 | "homepage": "https://www.doctrine-project.org", | ||
477 | "keywords": [ | ||
478 | "cache", | ||
479 | "caching" | ||
480 | ], | ||
481 | "time": "2018-08-21T18:01:43+00:00" | ||
482 | }, | ||
483 | { | ||
484 | "name": "doctrine/collections", | ||
485 | "version": "v1.6.1", | ||
486 | "source": { | ||
487 | "type": "git", | ||
488 | "url": "https://github.com/doctrine/collections.git", | ||
489 | "reference": "d2ae4ef05e25197343b6a39bae1d3c427a2f6956" | ||
490 | }, | ||
491 | "dist": { | ||
492 | "type": "zip", | ||
493 | "url": "https://api.github.com/repos/doctrine/collections/zipball/d2ae4ef05e25197343b6a39bae1d3c427a2f6956", | ||
494 | "reference": "d2ae4ef05e25197343b6a39bae1d3c427a2f6956", | ||
495 | "shasum": "" | ||
496 | }, | ||
497 | "require": { | ||
498 | "php": "^7.1.3" | ||
499 | }, | ||
500 | "require-dev": { | ||
501 | "doctrine/coding-standard": "^6.0", | ||
502 | "phpstan/phpstan-shim": "^0.9.2", | ||
503 | "phpunit/phpunit": "^7.0", | ||
504 | "vimeo/psalm": "^3.2.2" | ||
505 | }, | ||
506 | "type": "library", | ||
507 | "extra": { | ||
508 | "branch-alias": { | ||
509 | "dev-master": "1.6.x-dev" | ||
510 | } | ||
511 | }, | ||
512 | "autoload": { | ||
513 | "psr-4": { | ||
514 | "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" | ||
515 | } | ||
516 | }, | ||
517 | "notification-url": "https://packagist.org/downloads/", | ||
518 | "license": [ | ||
519 | "MIT" | ||
520 | ], | ||
521 | "authors": [ | ||
522 | { | ||
523 | "name": "Roman Borschel", | ||
524 | "email": "roman@code-factory.org" | ||
525 | }, | ||
526 | { | ||
527 | "name": "Benjamin Eberlei", | ||
528 | "email": "kontakt@beberlei.de" | ||
529 | }, | ||
530 | { | ||
531 | "name": "Guilherme Blanco", | ||
532 | "email": "guilhermeblanco@gmail.com" | ||
533 | }, | ||
534 | { | ||
535 | "name": "Jonathan Wage", | ||
536 | "email": "jonwage@gmail.com" | ||
537 | }, | ||
538 | { | ||
539 | "name": "Johannes Schmitt", | ||
540 | "email": "schmittjoh@gmail.com" | ||
541 | } | ||
542 | ], | ||
543 | "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", | ||
544 | "homepage": "https://www.doctrine-project.org/projects/collections.html", | ||
545 | "keywords": [ | ||
546 | "array", | ||
547 | "collections", | ||
548 | "iterators", | ||
549 | "php" | ||
550 | ], | ||
551 | "time": "2019-03-25T19:03:48+00:00" | ||
552 | }, | ||
553 | { | ||
554 | "name": "doctrine/common", | ||
555 | "version": "v2.10.0", | ||
556 | "source": { | ||
557 | "type": "git", | ||
558 | "url": "https://github.com/doctrine/common.git", | ||
559 | "reference": "30e33f60f64deec87df728c02b107f82cdafad9d" | ||
560 | }, | ||
561 | "dist": { | ||
562 | "type": "zip", | ||
563 | "url": "https://api.github.com/repos/doctrine/common/zipball/30e33f60f64deec87df728c02b107f82cdafad9d", | ||
564 | "reference": "30e33f60f64deec87df728c02b107f82cdafad9d", | ||
565 | "shasum": "" | ||
566 | }, | ||
567 | "require": { | ||
568 | "doctrine/annotations": "^1.0", | ||
569 | "doctrine/cache": "^1.0", | ||
570 | "doctrine/collections": "^1.0", | ||
571 | "doctrine/event-manager": "^1.0", | ||
572 | "doctrine/inflector": "^1.0", | ||
573 | "doctrine/lexer": "^1.0", | ||
574 | "doctrine/persistence": "^1.1", | ||
575 | "doctrine/reflection": "^1.0", | ||
576 | "php": "^7.1" | ||
577 | }, | ||
578 | "require-dev": { | ||
579 | "doctrine/coding-standard": "^1.0", | ||
580 | "phpunit/phpunit": "^6.3", | ||
581 | "squizlabs/php_codesniffer": "^3.0", | ||
582 | "symfony/phpunit-bridge": "^4.0.5" | ||
583 | }, | ||
584 | "type": "library", | ||
585 | "extra": { | ||
586 | "branch-alias": { | ||
587 | "dev-master": "2.10.x-dev" | ||
588 | } | ||
589 | }, | ||
590 | "autoload": { | ||
591 | "psr-4": { | ||
592 | "Doctrine\\Common\\": "lib/Doctrine/Common" | ||
593 | } | ||
594 | }, | ||
595 | "notification-url": "https://packagist.org/downloads/", | ||
596 | "license": [ | ||
597 | "MIT" | ||
598 | ], | ||
599 | "authors": [ | ||
600 | { | ||
601 | "name": "Roman Borschel", | ||
602 | "email": "roman@code-factory.org" | ||
603 | }, | ||
604 | { | ||
605 | "name": "Benjamin Eberlei", | ||
606 | "email": "kontakt@beberlei.de" | ||
607 | }, | ||
608 | { | ||
609 | "name": "Guilherme Blanco", | ||
610 | "email": "guilhermeblanco@gmail.com" | ||
611 | }, | ||
612 | { | ||
613 | "name": "Jonathan Wage", | ||
614 | "email": "jonwage@gmail.com" | ||
615 | }, | ||
616 | { | ||
617 | "name": "Johannes Schmitt", | ||
618 | "email": "schmittjoh@gmail.com" | ||
619 | }, | ||
620 | { | ||
621 | "name": "Marco Pivetta", | ||
622 | "email": "ocramius@gmail.com" | ||
623 | } | ||
624 | ], | ||
625 | "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.", | ||
626 | "homepage": "https://www.doctrine-project.org/projects/common.html", | ||
627 | "keywords": [ | ||
628 | "common", | ||
629 | "doctrine", | ||
630 | "php" | ||
631 | ], | ||
632 | "time": "2018-11-21T01:24:55+00:00" | ||
633 | }, | ||
634 | { | ||
635 | "name": "doctrine/dbal", | ||
636 | "version": "v2.9.2", | ||
637 | "source": { | ||
638 | "type": "git", | ||
639 | "url": "https://github.com/doctrine/dbal.git", | ||
640 | "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9" | ||
641 | }, | ||
642 | "dist": { | ||
643 | "type": "zip", | ||
644 | "url": "https://api.github.com/repos/doctrine/dbal/zipball/22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9", | ||
645 | "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9", | ||
646 | "shasum": "" | ||
647 | }, | ||
648 | "require": { | ||
649 | "doctrine/cache": "^1.0", | ||
650 | "doctrine/event-manager": "^1.0", | ||
651 | "ext-pdo": "*", | ||
652 | "php": "^7.1" | ||
653 | }, | ||
654 | "require-dev": { | ||
655 | "doctrine/coding-standard": "^5.0", | ||
656 | "jetbrains/phpstorm-stubs": "^2018.1.2", | ||
657 | "phpstan/phpstan": "^0.10.1", | ||
658 | "phpunit/phpunit": "^7.4", | ||
659 | "symfony/console": "^2.0.5|^3.0|^4.0", | ||
660 | "symfony/phpunit-bridge": "^3.4.5|^4.0.5" | ||
661 | }, | ||
662 | "suggest": { | ||
663 | "symfony/console": "For helpful console commands such as SQL execution and import of files." | ||
664 | }, | ||
665 | "bin": [ | ||
666 | "bin/doctrine-dbal" | ||
667 | ], | ||
668 | "type": "library", | ||
669 | "extra": { | ||
670 | "branch-alias": { | ||
671 | "dev-master": "2.9.x-dev", | ||
672 | "dev-develop": "3.0.x-dev" | ||
673 | } | ||
674 | }, | ||
675 | "autoload": { | ||
676 | "psr-4": { | ||
677 | "Doctrine\\DBAL\\": "lib/Doctrine/DBAL" | ||
678 | } | ||
679 | }, | ||
680 | "notification-url": "https://packagist.org/downloads/", | ||
681 | "license": [ | ||
682 | "MIT" | ||
683 | ], | ||
684 | "authors": [ | ||
685 | { | ||
686 | "name": "Roman Borschel", | ||
687 | "email": "roman@code-factory.org" | ||
688 | }, | ||
689 | { | ||
690 | "name": "Benjamin Eberlei", | ||
691 | "email": "kontakt@beberlei.de" | ||
692 | }, | ||
693 | { | ||
694 | "name": "Guilherme Blanco", | ||
695 | "email": "guilhermeblanco@gmail.com" | ||
696 | }, | ||
697 | { | ||
698 | "name": "Jonathan Wage", | ||
699 | "email": "jonwage@gmail.com" | ||
700 | } | ||
701 | ], | ||
702 | "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.", | ||
703 | "homepage": "https://www.doctrine-project.org/projects/dbal.html", | ||
704 | "keywords": [ | ||
705 | "abstraction", | ||
706 | "database", | ||
707 | "dbal", | ||
708 | "mysql", | ||
709 | "persistence", | ||
710 | "pgsql", | ||
711 | "php", | ||
712 | "queryobject" | ||
713 | ], | ||
714 | "time": "2018-12-31T03:27:51+00:00" | ||
715 | }, | ||
716 | { | ||
717 | "name": "doctrine/doctrine-bundle", | ||
718 | "version": "1.11.1", | ||
719 | "source": { | ||
720 | "type": "git", | ||
721 | "url": "https://github.com/doctrine/DoctrineBundle.git", | ||
722 | "reference": "09a38417339dc93849d051b914aae3947eb231a7" | ||
723 | }, | ||
724 | "dist": { | ||
725 | "type": "zip", | ||
726 | "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/09a38417339dc93849d051b914aae3947eb231a7", | ||
727 | "reference": "09a38417339dc93849d051b914aae3947eb231a7", | ||
728 | "shasum": "" | ||
729 | }, | ||
730 | "require": { | ||
731 | "doctrine/dbal": "^2.5.12", | ||
732 | "doctrine/doctrine-cache-bundle": "~1.2", | ||
733 | "jdorn/sql-formatter": "^1.2.16", | ||
734 | "php": "^7.1", | ||
735 | "symfony/config": "^3.4|^4.1", | ||
736 | "symfony/console": "^3.4|^4.1", | ||
737 | "symfony/dependency-injection": "^3.4|^4.1", | ||
738 | "symfony/doctrine-bridge": "^3.4|^4.1", | ||
739 | "symfony/framework-bundle": "^3.4|^4.1" | ||
740 | }, | ||
741 | "conflict": { | ||
742 | "doctrine/orm": "<2.6", | ||
743 | "twig/twig": "<1.34|>=2.0,<2.4" | ||
744 | }, | ||
745 | "require-dev": { | ||
746 | "doctrine/coding-standard": "^6.0", | ||
747 | "doctrine/orm": "^2.6", | ||
748 | "php-coveralls/php-coveralls": "^2.1", | ||
749 | "phpunit/phpunit": "7.0", | ||
750 | "symfony/cache": "^3.4|^4.1", | ||
751 | "symfony/phpunit-bridge": "^4.2", | ||
752 | "symfony/property-info": "^3.4|^4.1", | ||
753 | "symfony/validator": "^3.4|^4.1", | ||
754 | "symfony/web-profiler-bundle": "^3.4|^4.1", | ||
755 | "symfony/yaml": "^3.4|^4.1", | ||
756 | "twig/twig": "^1.34|^2.4" | ||
757 | }, | ||
758 | "suggest": { | ||
759 | "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.", | ||
760 | "symfony/web-profiler-bundle": "To use the data collector." | ||
761 | }, | ||
762 | "type": "symfony-bundle", | ||
763 | "extra": { | ||
764 | "branch-alias": { | ||
765 | "dev-master": "1.11.x-dev" | ||
766 | } | ||
767 | }, | ||
768 | "autoload": { | ||
769 | "psr-4": { | ||
770 | "Doctrine\\Bundle\\DoctrineBundle\\": "" | ||
771 | } | ||
772 | }, | ||
773 | "notification-url": "https://packagist.org/downloads/", | ||
774 | "license": [ | ||
775 | "MIT" | ||
776 | ], | ||
777 | "authors": [ | ||
778 | { | ||
779 | "name": "Symfony Community", | ||
780 | "homepage": "http://symfony.com/contributors" | ||
781 | }, | ||
782 | { | ||
783 | "name": "Benjamin Eberlei", | ||
784 | "email": "kontakt@beberlei.de" | ||
785 | }, | ||
786 | { | ||
787 | "name": "Doctrine Project", | ||
788 | "homepage": "http://www.doctrine-project.org/" | ||
789 | }, | ||
790 | { | ||
791 | "name": "Fabien Potencier", | ||
792 | "email": "fabien@symfony.com" | ||
793 | } | ||
794 | ], | ||
795 | "description": "Symfony DoctrineBundle", | ||
796 | "homepage": "http://www.doctrine-project.org", | ||
797 | "keywords": [ | ||
798 | "database", | ||
799 | "dbal", | ||
800 | "orm", | ||
801 | "persistence" | ||
802 | ], | ||
803 | "time": "2019-05-13T14:30:38+00:00" | ||
804 | }, | ||
805 | { | ||
806 | "name": "doctrine/doctrine-cache-bundle", | ||
807 | "version": "1.3.5", | ||
808 | "source": { | ||
809 | "type": "git", | ||
810 | "url": "https://github.com/doctrine/DoctrineCacheBundle.git", | ||
811 | "reference": "5514c90d9fb595e1095e6d66ebb98ce9ef049927" | ||
812 | }, | ||
813 | "dist": { | ||
814 | "type": "zip", | ||
815 | "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/5514c90d9fb595e1095e6d66ebb98ce9ef049927", | ||
816 | "reference": "5514c90d9fb595e1095e6d66ebb98ce9ef049927", | ||
817 | "shasum": "" | ||
818 | }, | ||
819 | "require": { | ||
820 | "doctrine/cache": "^1.4.2", | ||
821 | "doctrine/inflector": "~1.0", | ||
822 | "php": ">=5.3.2", | ||
823 | "symfony/doctrine-bridge": "~2.7|~3.3|~4.0" | ||
824 | }, | ||
825 | "require-dev": { | ||
826 | "instaclick/coding-standard": "~1.1", | ||
827 | "instaclick/object-calisthenics-sniffs": "dev-master", | ||
828 | "instaclick/symfony2-coding-standard": "dev-remaster", | ||
829 | "phpunit/phpunit": "~4.8.36|~5.6|~6.5|~7.0", | ||
830 | "predis/predis": "~0.8", | ||
831 | "satooshi/php-coveralls": "^1.0", | ||
832 | "squizlabs/php_codesniffer": "~1.5", | ||
833 | "symfony/console": "~2.7|~3.3|~4.0", | ||
834 | "symfony/finder": "~2.7|~3.3|~4.0", | ||
835 | "symfony/framework-bundle": "~2.7|~3.3|~4.0", | ||
836 | "symfony/phpunit-bridge": "~2.7|~3.3|~4.0", | ||
837 | "symfony/security-acl": "~2.7|~3.3", | ||
838 | "symfony/validator": "~2.7|~3.3|~4.0", | ||
839 | "symfony/yaml": "~2.7|~3.3|~4.0" | ||
840 | }, | ||
841 | "suggest": { | ||
842 | "symfony/security-acl": "For using this bundle to cache ACLs" | ||
843 | }, | ||
844 | "type": "symfony-bundle", | ||
845 | "extra": { | ||
846 | "branch-alias": { | ||
847 | "dev-master": "1.3.x-dev" | ||
848 | } | ||
849 | }, | ||
850 | "autoload": { | ||
851 | "psr-4": { | ||
852 | "Doctrine\\Bundle\\DoctrineCacheBundle\\": "" | ||
853 | }, | ||
854 | "exclude-from-classmap": [ | ||
855 | "/Tests/" | ||
856 | ] | ||
857 | }, | ||
858 | "notification-url": "https://packagist.org/downloads/", | ||
859 | "license": [ | ||
860 | "MIT" | ||
861 | ], | ||
862 | "authors": [ | ||
863 | { | ||
864 | "name": "Symfony Community", | ||
865 | "homepage": "http://symfony.com/contributors" | ||
866 | }, | ||
867 | { | ||
868 | "name": "Benjamin Eberlei", | ||
869 | "email": "kontakt@beberlei.de" | ||
870 | }, | ||
871 | { | ||
872 | "name": "Fabio B. Silva", | ||
873 | "email": "fabio.bat.silva@gmail.com" | ||
874 | }, | ||
875 | { | ||
876 | "name": "Guilherme Blanco", | ||
877 | "email": "guilhermeblanco@hotmail.com" | ||
878 | }, | ||
879 | { | ||
880 | "name": "Doctrine Project", | ||
881 | "homepage": "http://www.doctrine-project.org/" | ||
882 | }, | ||
883 | { | ||
884 | "name": "Fabien Potencier", | ||
885 | "email": "fabien@symfony.com" | ||
886 | } | ||
887 | ], | ||
888 | "description": "Symfony Bundle for Doctrine Cache", | ||
889 | "homepage": "https://www.doctrine-project.org", | ||
890 | "keywords": [ | ||
891 | "cache", | ||
892 | "caching" | ||
893 | ], | ||
894 | "time": "2018-11-09T06:25:35+00:00" | ||
895 | }, | ||
896 | { | ||
897 | "name": "doctrine/doctrine-migrations-bundle", | ||
898 | "version": "v1.3.2", | ||
899 | "source": { | ||
900 | "type": "git", | ||
901 | "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git", | ||
902 | "reference": "49fa399181db4bf4f9f725126bd1cb65c4398dce" | ||
903 | }, | ||
904 | "dist": { | ||
905 | "type": "zip", | ||
906 | "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/49fa399181db4bf4f9f725126bd1cb65c4398dce", | ||
907 | "reference": "49fa399181db4bf4f9f725126bd1cb65c4398dce", | ||
908 | "shasum": "" | ||
909 | }, | ||
910 | "require": { | ||
911 | "doctrine/doctrine-bundle": "~1.0", | ||
912 | "doctrine/migrations": "^1.1", | ||
913 | "php": ">=5.4.0", | ||
914 | "symfony/framework-bundle": "~2.7|~3.3|~4.0" | ||
915 | }, | ||
916 | "require-dev": { | ||
917 | "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^7.4" | ||
918 | }, | ||
919 | "type": "symfony-bundle", | ||
920 | "extra": { | ||
921 | "branch-alias": { | ||
922 | "dev-master": "1.3-dev" | ||
923 | } | ||
924 | }, | ||
925 | "autoload": { | ||
926 | "psr-4": { | ||
927 | "Doctrine\\Bundle\\MigrationsBundle\\": "" | ||
928 | } | ||
929 | }, | ||
930 | "notification-url": "https://packagist.org/downloads/", | ||
931 | "license": [ | ||
932 | "MIT" | ||
933 | ], | ||
934 | "authors": [ | ||
935 | { | ||
936 | "name": "Symfony Community", | ||
937 | "homepage": "http://symfony.com/contributors" | ||
938 | }, | ||
939 | { | ||
940 | "name": "Doctrine Project", | ||
941 | "homepage": "http://www.doctrine-project.org" | ||
942 | }, | ||
943 | { | ||
944 | "name": "Fabien Potencier", | ||
945 | "email": "fabien@symfony.com" | ||
946 | } | ||
947 | ], | ||
948 | "description": "Symfony DoctrineMigrationsBundle", | ||
949 | "homepage": "http://www.doctrine-project.org", | ||
950 | "keywords": [ | ||
951 | "dbal", | ||
952 | "migrations", | ||
953 | "schema" | ||
954 | ], | ||
955 | "time": "2018-12-03T11:55:33+00:00" | ||
956 | }, | ||
957 | { | ||
958 | "name": "doctrine/event-manager", | ||
959 | "version": "v1.0.0", | ||
960 | "source": { | ||
961 | "type": "git", | ||
962 | "url": "https://github.com/doctrine/event-manager.git", | ||
963 | "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3" | ||
964 | }, | ||
965 | "dist": { | ||
966 | "type": "zip", | ||
967 | "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3", | ||
968 | "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3", | ||
969 | "shasum": "" | ||
970 | }, | ||
971 | "require": { | ||
972 | "php": "^7.1" | ||
973 | }, | ||
974 | "conflict": { | ||
975 | "doctrine/common": "<2.9@dev" | ||
976 | }, | ||
977 | "require-dev": { | ||
978 | "doctrine/coding-standard": "^4.0", | ||
979 | "phpunit/phpunit": "^7.0" | ||
980 | }, | ||
981 | "type": "library", | ||
982 | "extra": { | ||
983 | "branch-alias": { | ||
984 | "dev-master": "1.0.x-dev" | ||
985 | } | ||
986 | }, | ||
987 | "autoload": { | ||
988 | "psr-4": { | ||
989 | "Doctrine\\Common\\": "lib/Doctrine/Common" | ||
990 | } | ||
991 | }, | ||
992 | "notification-url": "https://packagist.org/downloads/", | ||
993 | "license": [ | ||
994 | "MIT" | ||
995 | ], | ||
996 | "authors": [ | ||
997 | { | ||
998 | "name": "Roman Borschel", | ||
999 | "email": "roman@code-factory.org" | ||
1000 | }, | ||
1001 | { | ||
1002 | "name": "Benjamin Eberlei", | ||
1003 | "email": "kontakt@beberlei.de" | ||
1004 | }, | ||
1005 | { | ||
1006 | "name": "Guilherme Blanco", | ||
1007 | "email": "guilhermeblanco@gmail.com" | ||
1008 | }, | ||
1009 | { | ||
1010 | "name": "Jonathan Wage", | ||
1011 | "email": "jonwage@gmail.com" | ||
1012 | }, | ||
1013 | { | ||
1014 | "name": "Johannes Schmitt", | ||
1015 | "email": "schmittjoh@gmail.com" | ||
1016 | }, | ||
1017 | { | ||
1018 | "name": "Marco Pivetta", | ||
1019 | "email": "ocramius@gmail.com" | ||
1020 | } | ||
1021 | ], | ||
1022 | "description": "Doctrine Event Manager component", | ||
1023 | "homepage": "https://www.doctrine-project.org/projects/event-manager.html", | ||
1024 | "keywords": [ | ||
1025 | "event", | ||
1026 | "eventdispatcher", | ||
1027 | "eventmanager" | ||
1028 | ], | ||
1029 | "time": "2018-06-11T11:59:03+00:00" | ||
1030 | }, | ||
1031 | { | ||
1032 | "name": "doctrine/inflector", | ||
1033 | "version": "v1.3.0", | ||
1034 | "source": { | ||
1035 | "type": "git", | ||
1036 | "url": "https://github.com/doctrine/inflector.git", | ||
1037 | "reference": "5527a48b7313d15261292c149e55e26eae771b0a" | ||
1038 | }, | ||
1039 | "dist": { | ||
1040 | "type": "zip", | ||
1041 | "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a", | ||
1042 | "reference": "5527a48b7313d15261292c149e55e26eae771b0a", | ||
1043 | "shasum": "" | ||
1044 | }, | ||
1045 | "require": { | ||
1046 | "php": "^7.1" | ||
1047 | }, | ||
1048 | "require-dev": { | ||
1049 | "phpunit/phpunit": "^6.2" | ||
1050 | }, | ||
1051 | "type": "library", | ||
1052 | "extra": { | ||
1053 | "branch-alias": { | ||
1054 | "dev-master": "1.3.x-dev" | ||
1055 | } | ||
1056 | }, | ||
1057 | "autoload": { | ||
1058 | "psr-4": { | ||
1059 | "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" | ||
1060 | } | ||
1061 | }, | ||
1062 | "notification-url": "https://packagist.org/downloads/", | ||
1063 | "license": [ | ||
1064 | "MIT" | ||
1065 | ], | ||
1066 | "authors": [ | ||
1067 | { | ||
1068 | "name": "Roman Borschel", | ||
1069 | "email": "roman@code-factory.org" | ||
1070 | }, | ||
1071 | { | ||
1072 | "name": "Benjamin Eberlei", | ||
1073 | "email": "kontakt@beberlei.de" | ||
1074 | }, | ||
1075 | { | ||
1076 | "name": "Guilherme Blanco", | ||
1077 | "email": "guilhermeblanco@gmail.com" | ||
1078 | }, | ||
1079 | { | ||
1080 | "name": "Jonathan Wage", | ||
1081 | "email": "jonwage@gmail.com" | ||
1082 | }, | ||
1083 | { | ||
1084 | "name": "Johannes Schmitt", | ||
1085 | "email": "schmittjoh@gmail.com" | ||
1086 | } | ||
1087 | ], | ||
1088 | "description": "Common String Manipulations with regard to casing and singular/plural rules.", | ||
1089 | "homepage": "http://www.doctrine-project.org", | ||
1090 | "keywords": [ | ||
1091 | "inflection", | ||
1092 | "pluralize", | ||
1093 | "singularize", | ||
1094 | "string" | ||
1095 | ], | ||
1096 | "time": "2018-01-09T20:05:19+00:00" | ||
1097 | }, | ||
1098 | { | ||
1099 | "name": "doctrine/instantiator", | ||
1100 | "version": "1.2.0", | ||
1101 | "source": { | ||
1102 | "type": "git", | ||
1103 | "url": "https://github.com/doctrine/instantiator.git", | ||
1104 | "reference": "a2c590166b2133a4633738648b6b064edae0814a" | ||
1105 | }, | ||
1106 | "dist": { | ||
1107 | "type": "zip", | ||
1108 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a", | ||
1109 | "reference": "a2c590166b2133a4633738648b6b064edae0814a", | ||
1110 | "shasum": "" | ||
1111 | }, | ||
1112 | "require": { | ||
1113 | "php": "^7.1" | ||
1114 | }, | ||
1115 | "require-dev": { | ||
1116 | "doctrine/coding-standard": "^6.0", | ||
1117 | "ext-pdo": "*", | ||
1118 | "ext-phar": "*", | ||
1119 | "phpbench/phpbench": "^0.13", | ||
1120 | "phpstan/phpstan-phpunit": "^0.11", | ||
1121 | "phpstan/phpstan-shim": "^0.11", | ||
1122 | "phpunit/phpunit": "^7.0" | ||
1123 | }, | ||
1124 | "type": "library", | ||
1125 | "extra": { | ||
1126 | "branch-alias": { | ||
1127 | "dev-master": "1.2.x-dev" | ||
1128 | } | ||
1129 | }, | ||
1130 | "autoload": { | ||
1131 | "psr-4": { | ||
1132 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" | ||
1133 | } | ||
1134 | }, | ||
1135 | "notification-url": "https://packagist.org/downloads/", | ||
1136 | "license": [ | ||
1137 | "MIT" | ||
1138 | ], | ||
1139 | "authors": [ | ||
1140 | { | ||
1141 | "name": "Marco Pivetta", | ||
1142 | "email": "ocramius@gmail.com", | ||
1143 | "homepage": "http://ocramius.github.com/" | ||
1144 | } | ||
1145 | ], | ||
1146 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", | ||
1147 | "homepage": "https://www.doctrine-project.org/projects/instantiator.html", | ||
1148 | "keywords": [ | ||
1149 | "constructor", | ||
1150 | "instantiate" | ||
1151 | ], | ||
1152 | "time": "2019-03-17T17:37:11+00:00" | ||
1153 | }, | ||
1154 | { | ||
1155 | "name": "doctrine/lexer", | ||
1156 | "version": "v1.0.1", | ||
1157 | "source": { | ||
1158 | "type": "git", | ||
1159 | "url": "https://github.com/doctrine/lexer.git", | ||
1160 | "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c" | ||
1161 | }, | ||
1162 | "dist": { | ||
1163 | "type": "zip", | ||
1164 | "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c", | ||
1165 | "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c", | ||
1166 | "shasum": "" | ||
1167 | }, | ||
1168 | "require": { | ||
1169 | "php": ">=5.3.2" | ||
1170 | }, | ||
1171 | "type": "library", | ||
1172 | "extra": { | ||
1173 | "branch-alias": { | ||
1174 | "dev-master": "1.0.x-dev" | ||
1175 | } | ||
1176 | }, | ||
1177 | "autoload": { | ||
1178 | "psr-0": { | ||
1179 | "Doctrine\\Common\\Lexer\\": "lib/" | ||
1180 | } | ||
1181 | }, | ||
1182 | "notification-url": "https://packagist.org/downloads/", | ||
1183 | "license": [ | ||
1184 | "MIT" | ||
1185 | ], | ||
1186 | "authors": [ | ||
1187 | { | ||
1188 | "name": "Roman Borschel", | ||
1189 | "email": "roman@code-factory.org" | ||
1190 | }, | ||
1191 | { | ||
1192 | "name": "Guilherme Blanco", | ||
1193 | "email": "guilhermeblanco@gmail.com" | ||
1194 | }, | ||
1195 | { | ||
1196 | "name": "Johannes Schmitt", | ||
1197 | "email": "schmittjoh@gmail.com" | ||
1198 | } | ||
1199 | ], | ||
1200 | "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.", | ||
1201 | "homepage": "http://www.doctrine-project.org", | ||
1202 | "keywords": [ | ||
1203 | "lexer", | ||
1204 | "parser" | ||
1205 | ], | ||
1206 | "time": "2014-09-09T13:34:57+00:00" | ||
1207 | }, | ||
1208 | { | ||
1209 | "name": "doctrine/migrations", | ||
1210 | "version": "v1.8.1", | ||
1211 | "source": { | ||
1212 | "type": "git", | ||
1213 | "url": "https://github.com/doctrine/migrations.git", | ||
1214 | "reference": "215438c0eef3e5f9b7da7d09c6b90756071b43e6" | ||
1215 | }, | ||
1216 | "dist": { | ||
1217 | "type": "zip", | ||
1218 | "url": "https://api.github.com/repos/doctrine/migrations/zipball/215438c0eef3e5f9b7da7d09c6b90756071b43e6", | ||
1219 | "reference": "215438c0eef3e5f9b7da7d09c6b90756071b43e6", | ||
1220 | "shasum": "" | ||
1221 | }, | ||
1222 | "require": { | ||
1223 | "doctrine/dbal": "~2.6", | ||
1224 | "ocramius/proxy-manager": "^1.0|^2.0", | ||
1225 | "php": "^7.1", | ||
1226 | "symfony/console": "~3.3|^4.0" | ||
1227 | }, | ||
1228 | "require-dev": { | ||
1229 | "doctrine/coding-standard": "^1.0", | ||
1230 | "doctrine/orm": "~2.5", | ||
1231 | "jdorn/sql-formatter": "~1.1", | ||
1232 | "mikey179/vfsstream": "^1.6", | ||
1233 | "phpunit/phpunit": "~7.0", | ||
1234 | "squizlabs/php_codesniffer": "^3.0", | ||
1235 | "symfony/yaml": "~3.3|^4.0" | ||
1236 | }, | ||
1237 | "suggest": { | ||
1238 | "jdorn/sql-formatter": "Allows to generate formatted SQL with the diff command.", | ||
1239 | "symfony/yaml": "Allows the use of yaml for migration configuration files." | ||
1240 | }, | ||
1241 | "bin": [ | ||
1242 | "bin/doctrine-migrations" | ||
1243 | ], | ||
1244 | "type": "library", | ||
1245 | "extra": { | ||
1246 | "branch-alias": { | ||
1247 | "dev-master": "v1.8.x-dev" | ||
1248 | } | ||
1249 | }, | ||
1250 | "autoload": { | ||
1251 | "psr-4": { | ||
1252 | "Doctrine\\DBAL\\Migrations\\": "lib/Doctrine/DBAL/Migrations", | ||
1253 | "Doctrine\\Migrations\\": "lib/Doctrine/Migrations" | ||
1254 | } | ||
1255 | }, | ||
1256 | "notification-url": "https://packagist.org/downloads/", | ||
1257 | "license": [ | ||
1258 | "MIT" | ||
1259 | ], | ||
1260 | "authors": [ | ||
1261 | { | ||
1262 | "name": "Benjamin Eberlei", | ||
1263 | "email": "kontakt@beberlei.de" | ||
1264 | }, | ||
1265 | { | ||
1266 | "name": "Jonathan Wage", | ||
1267 | "email": "jonwage@gmail.com" | ||
1268 | }, | ||
1269 | { | ||
1270 | "name": "Michael Simonson", | ||
1271 | "email": "contact@mikesimonson.com" | ||
1272 | } | ||
1273 | ], | ||
1274 | "description": "Database Schema migrations using Doctrine DBAL", | ||
1275 | "homepage": "https://www.doctrine-project.org/projects/migrations.html", | ||
1276 | "keywords": [ | ||
1277 | "database", | ||
1278 | "migrations" | ||
1279 | ], | ||
1280 | "time": "2018-06-06T21:00:30+00:00" | ||
1281 | }, | ||
1282 | { | ||
1283 | "name": "doctrine/orm", | ||
1284 | "version": "v2.6.3", | ||
1285 | "source": { | ||
1286 | "type": "git", | ||
1287 | "url": "https://github.com/doctrine/orm.git", | ||
1288 | "reference": "434820973cadf2da2d66e7184be370084cc32ca8" | ||
1289 | }, | ||
1290 | "dist": { | ||
1291 | "type": "zip", | ||
1292 | "url": "https://api.github.com/repos/doctrine/orm/zipball/434820973cadf2da2d66e7184be370084cc32ca8", | ||
1293 | "reference": "434820973cadf2da2d66e7184be370084cc32ca8", | ||
1294 | "shasum": "" | ||
1295 | }, | ||
1296 | "require": { | ||
1297 | "doctrine/annotations": "~1.5", | ||
1298 | "doctrine/cache": "~1.6", | ||
1299 | "doctrine/collections": "^1.4", | ||
1300 | "doctrine/common": "^2.7.1", | ||
1301 | "doctrine/dbal": "^2.6", | ||
1302 | "doctrine/instantiator": "~1.1", | ||
1303 | "ext-pdo": "*", | ||
1304 | "php": "^7.1", | ||
1305 | "symfony/console": "~3.0|~4.0" | ||
1306 | }, | ||
1307 | "require-dev": { | ||
1308 | "doctrine/coding-standard": "^1.0", | ||
1309 | "phpunit/phpunit": "^6.5", | ||
1310 | "squizlabs/php_codesniffer": "^3.2", | ||
1311 | "symfony/yaml": "~3.4|~4.0" | ||
1312 | }, | ||
1313 | "suggest": { | ||
1314 | "symfony/yaml": "If you want to use YAML Metadata Mapping Driver" | ||
1315 | }, | ||
1316 | "bin": [ | ||
1317 | "bin/doctrine" | ||
1318 | ], | ||
1319 | "type": "library", | ||
1320 | "extra": { | ||
1321 | "branch-alias": { | ||
1322 | "dev-master": "2.6.x-dev" | ||
1323 | } | ||
1324 | }, | ||
1325 | "autoload": { | ||
1326 | "psr-4": { | ||
1327 | "Doctrine\\ORM\\": "lib/Doctrine/ORM" | ||
1328 | } | ||
1329 | }, | ||
1330 | "notification-url": "https://packagist.org/downloads/", | ||
1331 | "license": [ | ||
1332 | "MIT" | ||
1333 | ], | ||
1334 | "authors": [ | ||
1335 | { | ||
1336 | "name": "Roman Borschel", | ||
1337 | "email": "roman@code-factory.org" | ||
1338 | }, | ||
1339 | { | ||
1340 | "name": "Benjamin Eberlei", | ||
1341 | "email": "kontakt@beberlei.de" | ||
1342 | }, | ||
1343 | { | ||
1344 | "name": "Guilherme Blanco", | ||
1345 | "email": "guilhermeblanco@gmail.com" | ||
1346 | }, | ||
1347 | { | ||
1348 | "name": "Jonathan Wage", | ||
1349 | "email": "jonwage@gmail.com" | ||
1350 | }, | ||
1351 | { | ||
1352 | "name": "Marco Pivetta", | ||
1353 | "email": "ocramius@gmail.com" | ||
1354 | } | ||
1355 | ], | ||
1356 | "description": "Object-Relational-Mapper for PHP", | ||
1357 | "homepage": "http://www.doctrine-project.org", | ||
1358 | "keywords": [ | ||
1359 | "database", | ||
1360 | "orm" | ||
1361 | ], | ||
1362 | "time": "2018-11-20T23:46:46+00:00" | ||
1363 | }, | ||
1364 | { | ||
1365 | "name": "doctrine/persistence", | ||
1366 | "version": "1.1.1", | ||
1367 | "source": { | ||
1368 | "type": "git", | ||
1369 | "url": "https://github.com/doctrine/persistence.git", | ||
1370 | "reference": "3da7c9d125591ca83944f477e65ed3d7b4617c48" | ||
1371 | }, | ||
1372 | "dist": { | ||
1373 | "type": "zip", | ||
1374 | "url": "https://api.github.com/repos/doctrine/persistence/zipball/3da7c9d125591ca83944f477e65ed3d7b4617c48", | ||
1375 | "reference": "3da7c9d125591ca83944f477e65ed3d7b4617c48", | ||
1376 | "shasum": "" | ||
1377 | }, | ||
1378 | "require": { | ||
1379 | "doctrine/annotations": "^1.0", | ||
1380 | "doctrine/cache": "^1.0", | ||
1381 | "doctrine/collections": "^1.0", | ||
1382 | "doctrine/event-manager": "^1.0", | ||
1383 | "doctrine/reflection": "^1.0", | ||
1384 | "php": "^7.1" | ||
1385 | }, | ||
1386 | "conflict": { | ||
1387 | "doctrine/common": "<2.10@dev" | ||
1388 | }, | ||
1389 | "require-dev": { | ||
1390 | "doctrine/coding-standard": "^5.0", | ||
1391 | "phpstan/phpstan": "^0.8", | ||
1392 | "phpunit/phpunit": "^7.0" | ||
1393 | }, | ||
1394 | "type": "library", | ||
1395 | "extra": { | ||
1396 | "branch-alias": { | ||
1397 | "dev-master": "1.1.x-dev" | ||
1398 | } | ||
1399 | }, | ||
1400 | "autoload": { | ||
1401 | "psr-4": { | ||
1402 | "Doctrine\\Common\\": "lib/Doctrine/Common" | ||
1403 | } | ||
1404 | }, | ||
1405 | "notification-url": "https://packagist.org/downloads/", | ||
1406 | "license": [ | ||
1407 | "MIT" | ||
1408 | ], | ||
1409 | "authors": [ | ||
1410 | { | ||
1411 | "name": "Roman Borschel", | ||
1412 | "email": "roman@code-factory.org" | ||
1413 | }, | ||
1414 | { | ||
1415 | "name": "Benjamin Eberlei", | ||
1416 | "email": "kontakt@beberlei.de" | ||
1417 | }, | ||
1418 | { | ||
1419 | "name": "Guilherme Blanco", | ||
1420 | "email": "guilhermeblanco@gmail.com" | ||
1421 | }, | ||
1422 | { | ||
1423 | "name": "Jonathan Wage", | ||
1424 | "email": "jonwage@gmail.com" | ||
1425 | }, | ||
1426 | { | ||
1427 | "name": "Johannes Schmitt", | ||
1428 | "email": "schmittjoh@gmail.com" | ||
1429 | }, | ||
1430 | { | ||
1431 | "name": "Marco Pivetta", | ||
1432 | "email": "ocramius@gmail.com" | ||
1433 | } | ||
1434 | ], | ||
1435 | "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.", | ||
1436 | "homepage": "https://doctrine-project.org/projects/persistence.html", | ||
1437 | "keywords": [ | ||
1438 | "mapper", | ||
1439 | "object", | ||
1440 | "odm", | ||
1441 | "orm", | ||
1442 | "persistence" | ||
1443 | ], | ||
1444 | "time": "2019-04-23T08:28:24+00:00" | ||
1445 | }, | ||
1446 | { | ||
1447 | "name": "doctrine/reflection", | ||
1448 | "version": "v1.0.0", | ||
1449 | "source": { | ||
1450 | "type": "git", | ||
1451 | "url": "https://github.com/doctrine/reflection.git", | ||
1452 | "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6" | ||
1453 | }, | ||
1454 | "dist": { | ||
1455 | "type": "zip", | ||
1456 | "url": "https://api.github.com/repos/doctrine/reflection/zipball/02538d3f95e88eb397a5f86274deb2c6175c2ab6", | ||
1457 | "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6", | ||
1458 | "shasum": "" | ||
1459 | }, | ||
1460 | "require": { | ||
1461 | "doctrine/annotations": "^1.0", | ||
1462 | "ext-tokenizer": "*", | ||
1463 | "php": "^7.1" | ||
1464 | }, | ||
1465 | "require-dev": { | ||
1466 | "doctrine/coding-standard": "^4.0", | ||
1467 | "doctrine/common": "^2.8", | ||
1468 | "phpstan/phpstan": "^0.9.2", | ||
1469 | "phpstan/phpstan-phpunit": "^0.9.4", | ||
1470 | "phpunit/phpunit": "^7.0", | ||
1471 | "squizlabs/php_codesniffer": "^3.0" | ||
1472 | }, | ||
1473 | "type": "library", | ||
1474 | "extra": { | ||
1475 | "branch-alias": { | ||
1476 | "dev-master": "1.0.x-dev" | ||
1477 | } | ||
1478 | }, | ||
1479 | "autoload": { | ||
1480 | "psr-4": { | ||
1481 | "Doctrine\\Common\\": "lib/Doctrine/Common" | ||
1482 | } | ||
1483 | }, | ||
1484 | "notification-url": "https://packagist.org/downloads/", | ||
1485 | "license": [ | ||
1486 | "MIT" | ||
1487 | ], | ||
1488 | "authors": [ | ||
1489 | { | ||
1490 | "name": "Roman Borschel", | ||
1491 | "email": "roman@code-factory.org" | ||
1492 | }, | ||
1493 | { | ||
1494 | "name": "Benjamin Eberlei", | ||
1495 | "email": "kontakt@beberlei.de" | ||
1496 | }, | ||
1497 | { | ||
1498 | "name": "Guilherme Blanco", | ||
1499 | "email": "guilhermeblanco@gmail.com" | ||
1500 | }, | ||
1501 | { | ||
1502 | "name": "Jonathan Wage", | ||
1503 | "email": "jonwage@gmail.com" | ||
1504 | }, | ||
1505 | { | ||
1506 | "name": "Johannes Schmitt", | ||
1507 | "email": "schmittjoh@gmail.com" | ||
1508 | }, | ||
1509 | { | ||
1510 | "name": "Marco Pivetta", | ||
1511 | "email": "ocramius@gmail.com" | ||
1512 | } | ||
1513 | ], | ||
1514 | "description": "Doctrine Reflection component", | ||
1515 | "homepage": "https://www.doctrine-project.org/projects/reflection.html", | ||
1516 | "keywords": [ | ||
1517 | "reflection" | ||
1518 | ], | ||
1519 | "time": "2018-06-14T14:45:07+00:00" | ||
1520 | }, | ||
1521 | { | ||
1522 | "name": "egulias/email-validator", | ||
1523 | "version": "2.1.8", | ||
1524 | "source": { | ||
1525 | "type": "git", | ||
1526 | "url": "https://github.com/egulias/EmailValidator.git", | ||
1527 | "reference": "c26463ff9241f27907112fbcd0c86fa670cfef98" | ||
1528 | }, | ||
1529 | "dist": { | ||
1530 | "type": "zip", | ||
1531 | "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/c26463ff9241f27907112fbcd0c86fa670cfef98", | ||
1532 | "reference": "c26463ff9241f27907112fbcd0c86fa670cfef98", | ||
1533 | "shasum": "" | ||
1534 | }, | ||
1535 | "require": { | ||
1536 | "doctrine/lexer": "^1.0.1", | ||
1537 | "php": ">= 5.5" | ||
1538 | }, | ||
1539 | "require-dev": { | ||
1540 | "dominicsayers/isemail": "dev-master", | ||
1541 | "phpunit/phpunit": "^4.8.35||^5.7||^6.0", | ||
1542 | "satooshi/php-coveralls": "^1.0.1" | ||
1543 | }, | ||
1544 | "suggest": { | ||
1545 | "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" | ||
1546 | }, | ||
1547 | "type": "library", | ||
1548 | "extra": { | ||
1549 | "branch-alias": { | ||
1550 | "dev-master": "2.0.x-dev" | ||
1551 | } | ||
1552 | }, | ||
1553 | "autoload": { | ||
1554 | "psr-4": { | ||
1555 | "Egulias\\EmailValidator\\": "EmailValidator" | ||
1556 | } | ||
1557 | }, | ||
1558 | "notification-url": "https://packagist.org/downloads/", | ||
1559 | "license": [ | ||
1560 | "MIT" | ||
1561 | ], | ||
1562 | "authors": [ | ||
1563 | { | ||
1564 | "name": "Eduardo Gulias Davis" | ||
1565 | } | ||
1566 | ], | ||
1567 | "description": "A library for validating emails against several RFCs", | ||
1568 | "homepage": "https://github.com/egulias/EmailValidator", | ||
1569 | "keywords": [ | ||
1570 | "email", | ||
1571 | "emailvalidation", | ||
1572 | "emailvalidator", | ||
1573 | "validation", | ||
1574 | "validator" | ||
1575 | ], | ||
1576 | "time": "2019-05-16T22:02:54+00:00" | ||
1577 | }, | ||
1578 | { | ||
1579 | "name": "electrolinux/php-html5lib", | ||
1580 | "version": "0.1.0", | ||
1581 | "source": { | ||
1582 | "type": "git", | ||
1583 | "url": "https://github.com/electrolinux/php-html5lib.git", | ||
1584 | "reference": "9f92154993c7ecb120d9f9c0e558660d32846721" | ||
1585 | }, | ||
1586 | "dist": { | ||
1587 | "type": "zip", | ||
1588 | "url": "https://api.github.com/repos/electrolinux/php-html5lib/zipball/9f92154993c7ecb120d9f9c0e558660d32846721", | ||
1589 | "reference": "9f92154993c7ecb120d9f9c0e558660d32846721", | ||
1590 | "shasum": "" | ||
1591 | }, | ||
1592 | "require": { | ||
1593 | "php": ">=5.3.2" | ||
1594 | }, | ||
1595 | "type": "library", | ||
1596 | "autoload": { | ||
1597 | "psr-0": { | ||
1598 | "HTML5Lib": "src/", | ||
1599 | "HTML5Lib\\Tests": "tests/" | ||
1600 | } | ||
1601 | }, | ||
1602 | "notification-url": "https://packagist.org/downloads/", | ||
1603 | "license": [ | ||
1604 | "MIT" | ||
1605 | ], | ||
1606 | "authors": [ | ||
1607 | { | ||
1608 | "name": "Multiple users", | ||
1609 | "homepage": "https://code.google.com/p/html5lib/", | ||
1610 | "role": "Original developers" | ||
1611 | }, | ||
1612 | { | ||
1613 | "name": "Sébastien Lavoie", | ||
1614 | "homepage": "http://blog.lavoie.sl", | ||
1615 | "role": "Packager" | ||
1616 | }, | ||
1617 | { | ||
1618 | "name": "didier Belot", | ||
1619 | "role": "Packager" | ||
1620 | } | ||
1621 | ], | ||
1622 | "description": "A PHP implementations of a HTML parser based on the WHATWG HTML5 specification.", | ||
1623 | "homepage": "https://github.com/electrolinux/php-html5lib", | ||
1624 | "keywords": [ | ||
1625 | "HTML5", | ||
1626 | "php" | ||
1627 | ], | ||
1628 | "time": "2013-03-18T18:32:30+00:00" | ||
1629 | }, | ||
1630 | { | ||
1631 | "name": "fig/link-util", | ||
1632 | "version": "1.0.0", | ||
1633 | "source": { | ||
1634 | "type": "git", | ||
1635 | "url": "https://github.com/php-fig/link-util.git", | ||
1636 | "reference": "1a07821801a148be4add11ab0603e4af55a72fac" | ||
1637 | }, | ||
1638 | "dist": { | ||
1639 | "type": "zip", | ||
1640 | "url": "https://api.github.com/repos/php-fig/link-util/zipball/1a07821801a148be4add11ab0603e4af55a72fac", | ||
1641 | "reference": "1a07821801a148be4add11ab0603e4af55a72fac", | ||
1642 | "shasum": "" | ||
1643 | }, | ||
1644 | "require": { | ||
1645 | "php": ">=5.5.0", | ||
1646 | "psr/link": "~1.0@dev" | ||
1647 | }, | ||
1648 | "require-dev": { | ||
1649 | "phpunit/phpunit": "^5.1", | ||
1650 | "squizlabs/php_codesniffer": "^2.3.1" | ||
1651 | }, | ||
1652 | "type": "library", | ||
1653 | "extra": { | ||
1654 | "branch-alias": { | ||
1655 | "dev-master": "1.0.x-dev" | ||
1656 | } | ||
1657 | }, | ||
1658 | "autoload": { | ||
1659 | "psr-4": { | ||
1660 | "Fig\\Link\\": "src/" | ||
1661 | } | ||
1662 | }, | ||
1663 | "notification-url": "https://packagist.org/downloads/", | ||
1664 | "license": [ | ||
1665 | "MIT" | ||
1666 | ], | ||
1667 | "authors": [ | ||
1668 | { | ||
1669 | "name": "PHP-FIG", | ||
1670 | "homepage": "http://www.php-fig.org/" | ||
1671 | } | ||
1672 | ], | ||
1673 | "description": "Common utility implementations for HTTP links", | ||
1674 | "keywords": [ | ||
1675 | "http", | ||
1676 | "http-link", | ||
1677 | "link", | ||
1678 | "psr", | ||
1679 | "psr-13", | ||
1680 | "rest" | ||
1681 | ], | ||
1682 | "time": "2016-10-17T18:31:11+00:00" | ||
1683 | }, | ||
1684 | { | ||
1685 | "name": "fossar/htmlawed", | ||
1686 | "version": "1.2.7", | ||
1687 | "source": { | ||
1688 | "type": "git", | ||
1689 | "url": "https://github.com/fossar/HTMLawed.git", | ||
1690 | "reference": "4f7505e9622a96242923895c3008719b2c2283d3" | ||
1691 | }, | ||
1692 | "dist": { | ||
1693 | "type": "zip", | ||
1694 | "url": "https://api.github.com/repos/fossar/HTMLawed/zipball/4f7505e9622a96242923895c3008719b2c2283d3", | ||
1695 | "reference": "4f7505e9622a96242923895c3008719b2c2283d3", | ||
1696 | "shasum": "" | ||
1697 | }, | ||
1698 | "require": { | ||
1699 | "php": ">4.4.0" | ||
1700 | }, | ||
1701 | "replace": { | ||
1702 | "htmlawed/htmlawed": "*" | ||
1703 | }, | ||
1704 | "type": "library", | ||
1705 | "autoload": { | ||
1706 | "files": [ | ||
1707 | "htmLawed.php" | ||
1708 | ] | ||
1709 | }, | ||
1710 | "notification-url": "https://packagist.org/downloads/", | ||
1711 | "license": [ | ||
1712 | "GPL-2.0+", | ||
1713 | "LGPL-3.0" | ||
1714 | ], | ||
1715 | "authors": [ | ||
1716 | { | ||
1717 | "name": "Santosh Patnaik", | ||
1718 | "homepage": "http://www.bioinformatics.org/people/index.php?user_hash=558b661f92d0ff7b", | ||
1719 | "role": "Developer" | ||
1720 | } | ||
1721 | ], | ||
1722 | "description": "htmLawed - Process text with HTML markup to make it more compliant with HTML standards and administrative policies", | ||
1723 | "homepage": "http://www.bioinformatics.org/phplabware/internal_utilities/htmLawed/", | ||
1724 | "keywords": [ | ||
1725 | "HTMLtidy", | ||
1726 | "html", | ||
1727 | "sanitize", | ||
1728 | "strip", | ||
1729 | "tags" | ||
1730 | ], | ||
1731 | "time": "2019-05-09T11:53:40+00:00" | ||
1732 | }, | ||
1733 | { | ||
1734 | "name": "friendsofsymfony/jsrouting-bundle", | ||
1735 | "version": "2.3.0", | ||
1736 | "source": { | ||
1737 | "type": "git", | ||
1738 | "url": "https://github.com/FriendsOfSymfony/FOSJsRoutingBundle.git", | ||
1739 | "reference": "c24d1820da8b6ec55cb2023b456f1d49dd2cbe62" | ||
1740 | }, | ||
1741 | "dist": { | ||
1742 | "type": "zip", | ||
1743 | "url": "https://api.github.com/repos/FriendsOfSymfony/FOSJsRoutingBundle/zipball/c24d1820da8b6ec55cb2023b456f1d49dd2cbe62", | ||
1744 | "reference": "c24d1820da8b6ec55cb2023b456f1d49dd2cbe62", | ||
1745 | "shasum": "" | ||
1746 | }, | ||
1747 | "require": { | ||
1748 | "php": "^5.3.9|^7.0", | ||
1749 | "symfony/console": "~2.7||~3.0|^4.0", | ||
1750 | "symfony/framework-bundle": "~2.7||~3.0|^4.0", | ||
1751 | "symfony/serializer": "~2.7||~3.0|^4.0", | ||
1752 | "willdurand/jsonp-callback-validator": "~1.0" | ||
1753 | }, | ||
1754 | "require-dev": { | ||
1755 | "symfony/expression-language": "~2.7||~3.0|^4.0", | ||
1756 | "symfony/phpunit-bridge": "^3.3|^4.0" | ||
1757 | }, | ||
1758 | "type": "symfony-bundle", | ||
1759 | "extra": { | ||
1760 | "branch-alias": { | ||
1761 | "dev-master": "2.0-dev" | ||
1762 | } | ||
1763 | }, | ||
1764 | "autoload": { | ||
1765 | "psr-4": { | ||
1766 | "FOS\\JsRoutingBundle\\": "" | ||
1767 | }, | ||
1768 | "exclude-from-classmap": [ | ||
1769 | "/Tests/" | ||
1770 | ] | ||
1771 | }, | ||
1772 | "notification-url": "https://packagist.org/downloads/", | ||
1773 | "license": [ | ||
1774 | "MIT" | ||
1775 | ], | ||
1776 | "authors": [ | ||
1777 | { | ||
1778 | "name": "FriendsOfSymfony Community", | ||
1779 | "homepage": "https://github.com/friendsofsymfony/FOSJsRoutingBundle/contributors" | ||
1780 | }, | ||
1781 | { | ||
1782 | "name": "William Durand", | ||
1783 | "email": "will+git@drnd.me" | ||
1784 | } | ||
1785 | ], | ||
1786 | "description": "A pretty nice way to expose your Symfony2 routing to client applications.", | ||
1787 | "homepage": "http://friendsofsymfony.github.com", | ||
1788 | "keywords": [ | ||
1789 | "Js Routing", | ||
1790 | "javascript", | ||
1791 | "routing" | ||
1792 | ], | ||
1793 | "time": "2019-02-03T16:01:06+00:00" | ||
1794 | }, | ||
1795 | { | ||
1796 | "name": "friendsofsymfony/oauth-server-bundle", | ||
1797 | "version": "1.6.2", | ||
1798 | "source": { | ||
1799 | "type": "git", | ||
1800 | "url": "https://github.com/FriendsOfSymfony/FOSOAuthServerBundle.git", | ||
1801 | "reference": "fcaa25cc49474bdb0db7894f880976fe76ffed23" | ||
1802 | }, | ||
1803 | "dist": { | ||
1804 | "type": "zip", | ||
1805 | "url": "https://api.github.com/repos/FriendsOfSymfony/FOSOAuthServerBundle/zipball/fcaa25cc49474bdb0db7894f880976fe76ffed23", | ||
1806 | "reference": "fcaa25cc49474bdb0db7894f880976fe76ffed23", | ||
1807 | "shasum": "" | ||
1808 | }, | ||
1809 | "require": { | ||
1810 | "friendsofsymfony/oauth2-php": "~1.1", | ||
1811 | "paragonie/random_compat": "^1|^2", | ||
1812 | "php": "^5.5|^7.0", | ||
1813 | "symfony/dependency-injection": "^2.8|~3.0|^4.0", | ||
1814 | "symfony/framework-bundle": "~2.8|~3.0|^4.0", | ||
1815 | "symfony/security-bundle": "~2.8|~3.0|^4.0" | ||
1816 | }, | ||
1817 | "require-dev": { | ||
1818 | "doctrine/doctrine-bundle": "~1.0", | ||
1819 | "doctrine/mongodb-odm": "~1.0", | ||
1820 | "doctrine/orm": "~2.2", | ||
1821 | "phing/phing": "~2.4", | ||
1822 | "php-mock/php-mock-phpunit": "^1.1", | ||
1823 | "phpunit/phpunit": "~4.8|~5.0", | ||
1824 | "propel/propel1": "^1.6.5", | ||
1825 | "symfony/class-loader": "~2.8|~3.0|^4.0", | ||
1826 | "symfony/console": "~2.8|~3.0|^4.0", | ||
1827 | "symfony/form": "~2.8|~3.0|^4.0", | ||
1828 | "symfony/phpunit-bridge": "~2.8|~3.0|^4.0", | ||
1829 | "symfony/templating": "~2.8|~3.0|^4.0", | ||
1830 | "symfony/twig-bundle": "~2.8|~3.0|^4.0", | ||
1831 | "symfony/yaml": "~2.8|~3.0|^4.0", | ||
1832 | "willdurand/propel-typehintable-behavior": "^1.0.4" | ||
1833 | }, | ||
1834 | "suggest": { | ||
1835 | "doctrine/doctrine-bundle": "*", | ||
1836 | "doctrine/mongodb-odm-bundle": "*", | ||
1837 | "propel/propel-bundle": "If you want to use Propel with Symfony2, then you will have to install the PropelBundle", | ||
1838 | "symfony/console": "Needed to be able to use commands", | ||
1839 | "symfony/form": "Needed to be able to use the AuthorizeFormType", | ||
1840 | "willdurand/propel-typehintable-behavior": "The Typehintable behavior is useful to add type hints on generated methods, to be compliant with interfaces" | ||
1841 | }, | ||
1842 | "type": "symfony-bundle", | ||
1843 | "extra": { | ||
1844 | "branch-alias": { | ||
1845 | "dev-master": "1.5-dev" | ||
1846 | } | ||
1847 | }, | ||
1848 | "autoload": { | ||
1849 | "psr-4": { | ||
1850 | "FOS\\OAuthServerBundle\\": "" | ||
1851 | }, | ||
1852 | "exclude-from-classmap": [ | ||
1853 | "/Tests/" | ||
1854 | ] | ||
1855 | }, | ||
1856 | "notification-url": "https://packagist.org/downloads/", | ||
1857 | "license": [ | ||
1858 | "MIT" | ||
1859 | ], | ||
1860 | "authors": [ | ||
1861 | { | ||
1862 | "name": "Arnaud Le Blanc", | ||
1863 | "email": "arnaud.lb@gmail.com" | ||
1864 | }, | ||
1865 | { | ||
1866 | "name": "FriendsOfSymfony Community", | ||
1867 | "homepage": "https://github.com/FriendsOfSymfony/FOSOAuthServerBundle/contributors" | ||
1868 | } | ||
1869 | ], | ||
1870 | "description": "Symfony2 OAuth Server Bundle", | ||
1871 | "homepage": "http://friendsofsymfony.github.com", | ||
1872 | "keywords": [ | ||
1873 | "oauth", | ||
1874 | "oauth2", | ||
1875 | "server" | ||
1876 | ], | ||
1877 | "time": "2019-01-23T15:23:04+00:00" | ||
1878 | }, | ||
1879 | { | ||
1880 | "name": "friendsofsymfony/oauth2-php", | ||
1881 | "version": "1.2.3", | ||
1882 | "source": { | ||
1883 | "type": "git", | ||
1884 | "url": "https://github.com/FriendsOfSymfony/oauth2-php.git", | ||
1885 | "reference": "a41fef63f81ef2ef632350a6c7dc66d15baa9240" | ||
1886 | }, | ||
1887 | "dist": { | ||
1888 | "type": "zip", | ||
1889 | "url": "https://api.github.com/repos/FriendsOfSymfony/oauth2-php/zipball/a41fef63f81ef2ef632350a6c7dc66d15baa9240", | ||
1890 | "reference": "a41fef63f81ef2ef632350a6c7dc66d15baa9240", | ||
1891 | "shasum": "" | ||
1892 | }, | ||
1893 | "require": { | ||
1894 | "php": "^5.5.9|>=7.0.8", | ||
1895 | "symfony/http-foundation": "~3.0|~4.0" | ||
1896 | }, | ||
1897 | "require-dev": { | ||
1898 | "phpunit/phpunit": "~4.0" | ||
1899 | }, | ||
1900 | "type": "library", | ||
1901 | "extra": { | ||
1902 | "branch-alias": { | ||
1903 | "dev-master": "1.2.x-dev" | ||
1904 | } | ||
1905 | }, | ||
1906 | "autoload": { | ||
1907 | "psr-4": { | ||
1908 | "OAuth2\\": "lib/" | ||
1909 | } | ||
1910 | }, | ||
1911 | "notification-url": "https://packagist.org/downloads/", | ||
1912 | "license": [ | ||
1913 | "MIT" | ||
1914 | ], | ||
1915 | "authors": [ | ||
1916 | { | ||
1917 | "name": "Arnaud Le Blanc", | ||
1918 | "email": "arnaud.lb@gmail.com" | ||
1919 | }, | ||
1920 | { | ||
1921 | "name": "FriendsOfSymfony Community", | ||
1922 | "homepage": "https://github.com/FriendsOfSymfony/oauth2-php/contributors" | ||
1923 | } | ||
1924 | ], | ||
1925 | "description": "OAuth2 library", | ||
1926 | "homepage": "https://github.com/FriendsOfSymfony/oauth2-php", | ||
1927 | "keywords": [ | ||
1928 | "oauth", | ||
1929 | "oauth2" | ||
1930 | ], | ||
1931 | "time": "2018-01-30T19:58:25+00:00" | ||
1932 | }, | ||
1933 | { | ||
1934 | "name": "friendsofsymfony/rest-bundle", | ||
1935 | "version": "2.5.0", | ||
1936 | "source": { | ||
1937 | "type": "git", | ||
1938 | "url": "https://github.com/FriendsOfSymfony/FOSRestBundle.git", | ||
1939 | "reference": "a5fc73b84bdb2f0fdf58a717b322ceb6997f7bf3" | ||
1940 | }, | ||
1941 | "dist": { | ||
1942 | "type": "zip", | ||
1943 | "url": "https://api.github.com/repos/FriendsOfSymfony/FOSRestBundle/zipball/a5fc73b84bdb2f0fdf58a717b322ceb6997f7bf3", | ||
1944 | "reference": "a5fc73b84bdb2f0fdf58a717b322ceb6997f7bf3", | ||
1945 | "shasum": "" | ||
1946 | }, | ||
1947 | "require": { | ||
1948 | "doctrine/inflector": "^1.0", | ||
1949 | "php": "^5.5.9|~7.0", | ||
1950 | "psr/log": "^1.0", | ||
1951 | "symfony/config": "^3.4|^4.0", | ||
1952 | "symfony/debug": "^3.4|^4.0", | ||
1953 | "symfony/dependency-injection": "^3.4|^4.0", | ||
1954 | "symfony/event-dispatcher": "^3.4|^4.0", | ||
1955 | "symfony/finder": "^3.4|^4.0", | ||
1956 | "symfony/framework-bundle": "^3.4|^4.0", | ||
1957 | "symfony/http-foundation": "^3.4|^4.0", | ||
1958 | "symfony/http-kernel": "^3.4|^4.0", | ||
1959 | "symfony/routing": "^3.4|^4.0", | ||
1960 | "symfony/security-core": "^3.4|^4.0", | ||
1961 | "symfony/templating": "^3.4|^4.0", | ||
1962 | "willdurand/jsonp-callback-validator": "^1.0", | ||
1963 | "willdurand/negotiation": "^2.0" | ||
1964 | }, | ||
1965 | "conflict": { | ||
1966 | "jms/serializer": "<1.13.0", | ||
1967 | "jms/serializer-bundle": "<2.0.0", | ||
1968 | "sensio/framework-extra-bundle": "<3.0.13" | ||
1969 | }, | ||
1970 | "require-dev": { | ||
1971 | "jms/serializer": "^1.13|^2.0", | ||
1972 | "jms/serializer-bundle": "^2.3.1|^3.0", | ||
1973 | "phpoption/phpoption": "^1.1", | ||
1974 | "psr/http-message": "^1.0", | ||
1975 | "sensio/framework-extra-bundle": "^3.0.13|^4.0|^5.0", | ||
1976 | "symfony/asset": "^3.4|^4.0", | ||
1977 | "symfony/browser-kit": "^3.4|^4.0", | ||
1978 | "symfony/css-selector": "^3.4|^4.0", | ||
1979 | "symfony/dependency-injection": "^2.7.20|^3.0|^4.0", | ||
1980 | "symfony/expression-language": "~2.7|^3.0|^4.0", | ||
1981 | "symfony/form": "^3.4|^4.0", | ||
1982 | "symfony/phpunit-bridge": "^4.1.8", | ||
1983 | "symfony/security-bundle": "^3.4|^4.0", | ||
1984 | "symfony/serializer": "^2.7.11|^3.0.4|^4.0", | ||
1985 | "symfony/twig-bundle": "^3.4|^4.0", | ||
1986 | "symfony/validator": "^3.4|^4.0", | ||
1987 | "symfony/web-profiler-bundle": "^3.4|^4.0", | ||
1988 | "symfony/yaml": "^3.4|^4.0" | ||
1989 | }, | ||
1990 | "suggest": { | ||
1991 | "jms/serializer-bundle": "Add support for advanced serialization capabilities, recommended, requires ^2.0|^3.0", | ||
1992 | "sensio/framework-extra-bundle": "Add support for the request body converter and the view response listener, requires ^3.0", | ||
1993 | "symfony/expression-language": "Add support for using the expression language in the routing, requires ^2.7|^3.0", | ||
1994 | "symfony/serializer": "Add support for basic serialization capabilities and xml decoding, requires ^2.7|^3.0", | ||
1995 | "symfony/validator": "Add support for validation capabilities in the ParamFetcher, requires ^2.7|^3.0" | ||
1996 | }, | ||
1997 | "type": "symfony-bundle", | ||
1998 | "extra": { | ||
1999 | "branch-alias": { | ||
2000 | "dev-master": "2.5-dev" | ||
2001 | } | ||
2002 | }, | ||
2003 | "autoload": { | ||
2004 | "psr-4": { | ||
2005 | "FOS\\RestBundle\\": "" | ||
2006 | }, | ||
2007 | "exclude-from-classmap": [ | ||
2008 | "Tests/" | ||
2009 | ] | ||
2010 | }, | ||
2011 | "notification-url": "https://packagist.org/downloads/", | ||
2012 | "license": [ | ||
2013 | "MIT" | ||
2014 | ], | ||
2015 | "authors": [ | ||
2016 | { | ||
2017 | "name": "Lukas Kahwe Smith", | ||
2018 | "email": "smith@pooteeweet.org" | ||
2019 | }, | ||
2020 | { | ||
2021 | "name": "FriendsOfSymfony Community", | ||
2022 | "homepage": "https://github.com/friendsofsymfony/FOSRestBundle/contributors" | ||
2023 | }, | ||
2024 | { | ||
2025 | "name": "Konstantin Kudryashov", | ||
2026 | "email": "ever.zet@gmail.com" | ||
2027 | } | ||
2028 | ], | ||
2029 | "description": "This Bundle provides various tools to rapidly develop RESTful API's with Symfony", | ||
2030 | "homepage": "http://friendsofsymfony.github.com", | ||
2031 | "keywords": [ | ||
2032 | "rest" | ||
2033 | ], | ||
2034 | "time": "2019-01-03T13:05:12+00:00" | ||
2035 | }, | ||
2036 | { | ||
2037 | "name": "friendsofsymfony/user-bundle", | ||
2038 | "version": "v2.0.2", | ||
2039 | "source": { | ||
2040 | "type": "git", | ||
2041 | "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git", | ||
2042 | "reference": "2fc8a023d7ab482321cf7ec810ed49eab40eb50f" | ||
2043 | }, | ||
2044 | "dist": { | ||
2045 | "type": "zip", | ||
2046 | "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/2fc8a023d7ab482321cf7ec810ed49eab40eb50f", | ||
2047 | "reference": "2fc8a023d7ab482321cf7ec810ed49eab40eb50f", | ||
2048 | "shasum": "" | ||
2049 | }, | ||
2050 | "require": { | ||
2051 | "paragonie/random_compat": "^1 || ^2", | ||
2052 | "php": "^5.5.9 || ^7.0", | ||
2053 | "symfony/form": "^2.7 || ^3.0", | ||
2054 | "symfony/framework-bundle": "^2.7 || ^3.0", | ||
2055 | "symfony/security-bundle": "^2.7 || ^3.0", | ||
2056 | "symfony/templating": "^2.7 || ^3.0", | ||
2057 | "symfony/twig-bundle": "^2.7 || ^3.0", | ||
2058 | "twig/twig": "^1.28 || ^2.0" | ||
2059 | }, | ||
2060 | "conflict": { | ||
2061 | "doctrine/doctrine-bundle": "<1.3", | ||
2062 | "symfony/doctrine-bridge": "<2.7" | ||
2063 | }, | ||
2064 | "require-dev": { | ||
2065 | "doctrine/doctrine-bundle": "^1.3", | ||
2066 | "friendsofphp/php-cs-fixer": "^1.11", | ||
2067 | "phpunit/phpunit": "~4.8|~5.0", | ||
2068 | "swiftmailer/swiftmailer": "^4.3 || ^5.0 || ^6.0", | ||
2069 | "symfony/console": "^2.7 || ^3.0", | ||
2070 | "symfony/phpunit-bridge": "^2.7 || ^3.0", | ||
2071 | "symfony/validator": "^2.7 || ^3.0", | ||
2072 | "symfony/yaml": "^2.7 || ^3.0" | ||
2073 | }, | ||
2074 | "type": "symfony-bundle", | ||
2075 | "extra": { | ||
2076 | "branch-alias": { | ||
2077 | "dev-master": "2.0.x-dev" | ||
2078 | } | ||
2079 | }, | ||
2080 | "autoload": { | ||
2081 | "psr-4": { | ||
2082 | "FOS\\UserBundle\\": "" | ||
2083 | }, | ||
2084 | "exclude-from-classmap": [ | ||
2085 | "/Tests/" | ||
2086 | ] | ||
2087 | }, | ||
2088 | "notification-url": "https://packagist.org/downloads/", | ||
2089 | "license": [ | ||
2090 | "MIT" | ||
2091 | ], | ||
2092 | "authors": [ | ||
2093 | { | ||
2094 | "name": "Christophe Coevoet", | ||
2095 | "email": "stof@notk.org" | ||
2096 | }, | ||
2097 | { | ||
2098 | "name": "FriendsOfSymfony Community", | ||
2099 | "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors" | ||
2100 | }, | ||
2101 | { | ||
2102 | "name": "Thibault Duplessis", | ||
2103 | "email": "thibault.duplessis@gmail.com" | ||
2104 | } | ||
2105 | ], | ||
2106 | "description": "Symfony FOSUserBundle", | ||
2107 | "homepage": "http://friendsofsymfony.github.com", | ||
2108 | "keywords": [ | ||
2109 | "User management" | ||
2110 | ], | ||
2111 | "time": "2017-11-29T17:01:21+00:00" | ||
2112 | }, | ||
2113 | { | ||
2114 | "name": "gedmo/doctrine-extensions", | ||
2115 | "version": "v2.4.37", | ||
2116 | "source": { | ||
2117 | "type": "git", | ||
2118 | "url": "https://github.com/Atlantic18/DoctrineExtensions.git", | ||
2119 | "reference": "5dd471f656e46d815f063bf3f12c667649ec7ffb" | ||
2120 | }, | ||
2121 | "dist": { | ||
2122 | "type": "zip", | ||
2123 | "url": "https://api.github.com/repos/Atlantic18/DoctrineExtensions/zipball/5dd471f656e46d815f063bf3f12c667649ec7ffb", | ||
2124 | "reference": "5dd471f656e46d815f063bf3f12c667649ec7ffb", | ||
2125 | "shasum": "" | ||
2126 | }, | ||
2127 | "require": { | ||
2128 | "behat/transliterator": "~1.2", | ||
2129 | "doctrine/common": "~2.4", | ||
2130 | "php": ">=5.3.2" | ||
2131 | }, | ||
2132 | "conflict": { | ||
2133 | "doctrine/annotations": "<1.2" | ||
2134 | }, | ||
2135 | "require-dev": { | ||
2136 | "doctrine/common": ">=2.5.0", | ||
2137 | "doctrine/mongodb-odm": ">=1.0.2", | ||
2138 | "doctrine/orm": ">=2.5.0", | ||
2139 | "phpunit/phpunit": "^4.8.35|^5.7|^6.5", | ||
2140 | "symfony/yaml": "~2.6|~3.0|~4.0" | ||
2141 | }, | ||
2142 | "suggest": { | ||
2143 | "doctrine/mongodb-odm": "to use the extensions with the MongoDB ODM", | ||
2144 | "doctrine/orm": "to use the extensions with the ORM" | ||
2145 | }, | ||
2146 | "type": "library", | ||
2147 | "extra": { | ||
2148 | "branch-alias": { | ||
2149 | "dev-master": "2.4.x-dev" | ||
2150 | } | ||
2151 | }, | ||
2152 | "autoload": { | ||
2153 | "psr-4": { | ||
2154 | "Gedmo\\": "lib/Gedmo" | ||
2155 | } | ||
2156 | }, | ||
2157 | "notification-url": "https://packagist.org/downloads/", | ||
2158 | "license": [ | ||
2159 | "MIT" | ||
2160 | ], | ||
2161 | "authors": [ | ||
2162 | { | ||
2163 | "name": "David Buchmann", | ||
2164 | "email": "david@liip.ch" | ||
2165 | }, | ||
2166 | { | ||
2167 | "name": "Gediminas Morkevicius", | ||
2168 | "email": "gediminas.morkevicius@gmail.com" | ||
2169 | }, | ||
2170 | { | ||
2171 | "name": "Gustavo Falco", | ||
2172 | "email": "comfortablynumb84@gmail.com" | ||
2173 | } | ||
2174 | ], | ||
2175 | "description": "Doctrine2 behavioral extensions", | ||
2176 | "homepage": "http://gediminasm.org/", | ||
2177 | "keywords": [ | ||
2178 | "Blameable", | ||
2179 | "behaviors", | ||
2180 | "doctrine2", | ||
2181 | "extensions", | ||
2182 | "gedmo", | ||
2183 | "loggable", | ||
2184 | "nestedset", | ||
2185 | "sluggable", | ||
2186 | "sortable", | ||
2187 | "timestampable", | ||
2188 | "translatable", | ||
2189 | "tree", | ||
2190 | "uploadable" | ||
2191 | ], | ||
2192 | "time": "2019-03-17T18:16:12+00:00" | ||
2193 | }, | ||
2194 | { | ||
2195 | "name": "grandt/binstring", | ||
2196 | "version": "1.0.0", | ||
2197 | "source": { | ||
2198 | "type": "git", | ||
2199 | "url": "https://github.com/Grandt/PHPBinString.git", | ||
2200 | "reference": "825fe2ac8a68190f651fc2dbc07b6edde18bc431" | ||
2201 | }, | ||
2202 | "dist": { | ||
2203 | "type": "zip", | ||
2204 | "url": "https://api.github.com/repos/Grandt/PHPBinString/zipball/825fe2ac8a68190f651fc2dbc07b6edde18bc431", | ||
2205 | "reference": "825fe2ac8a68190f651fc2dbc07b6edde18bc431", | ||
2206 | "shasum": "" | ||
2207 | }, | ||
2208 | "require": { | ||
2209 | "php": ">=5.0" | ||
2210 | }, | ||
2211 | "type": "library", | ||
2212 | "autoload": { | ||
2213 | "classmap": [ | ||
2214 | "BinString.php", | ||
2215 | "BinStringStatic.php" | ||
2216 | ] | ||
2217 | }, | ||
2218 | "notification-url": "https://packagist.org/downloads/", | ||
2219 | "license": [ | ||
2220 | "LGPL-2.1" | ||
2221 | ], | ||
2222 | "authors": [ | ||
2223 | { | ||
2224 | "name": "A. Grandt", | ||
2225 | "email": "php@grandt.com", | ||
2226 | "role": "Developer" | ||
2227 | } | ||
2228 | ], | ||
2229 | "description": "A class for working around the use of mbstring.func_override", | ||
2230 | "homepage": "https://github.com/Grandt/PHPBinString", | ||
2231 | "keywords": [ | ||
2232 | "binary strings", | ||
2233 | "mbstring" | ||
2234 | ], | ||
2235 | "time": "2015-08-13T06:14:41+00:00" | ||
2236 | }, | ||
2237 | { | ||
2238 | "name": "grandt/phpepub", | ||
2239 | "version": "dev-master", | ||
2240 | "source": { | ||
2241 | "type": "git", | ||
2242 | "url": "https://github.com/Daniel-KM/PHPePub.git", | ||
2243 | "reference": "78546d9a49d59ad9a32b13f3d95cc2f548add1c3" | ||
2244 | }, | ||
2245 | "dist": { | ||
2246 | "type": "zip", | ||
2247 | "url": "https://api.github.com/repos/Daniel-KM/PHPePub/zipball/78546d9a49d59ad9a32b13f3d95cc2f548add1c3", | ||
2248 | "reference": "78546d9a49d59ad9a32b13f3d95cc2f548add1c3", | ||
2249 | "shasum": "" | ||
2250 | }, | ||
2251 | "require": { | ||
2252 | "grandt/phpresizegif": "~1.0.3", | ||
2253 | "grandt/relativepath": "~1.0.1", | ||
2254 | "masterminds/html5": "~2.3", | ||
2255 | "php": ">=5.3.0", | ||
2256 | "phpzip/phpzip": "~2.0.7" | ||
2257 | }, | ||
2258 | "type": "library", | ||
2259 | "autoload": { | ||
2260 | "psr-4": { | ||
2261 | "PHPePub\\": "src/PHPePub" | ||
2262 | }, | ||
2263 | "classmap": [ | ||
2264 | "src/lib.uuid.php" | ||
2265 | ] | ||
2266 | }, | ||
2267 | "license": [ | ||
2268 | "LGPL-2.1" | ||
2269 | ], | ||
2270 | "authors": [ | ||
2271 | { | ||
2272 | "name": "A. Grandt", | ||
2273 | "email": "php@grandt.com", | ||
2274 | "homepage": "http://grandt.com", | ||
2275 | "role": "Developer" | ||
2276 | }, | ||
2277 | { | ||
2278 | "name": "An, Hyeong-woo", | ||
2279 | "email": "mail@mytory.net", | ||
2280 | "homepage": "https://mytory.net", | ||
2281 | "role": "Contributor" | ||
2282 | }, | ||
2283 | { | ||
2284 | "name": "Daniel Berthereau", | ||
2285 | "email": "daniel.composer@berthereau.net", | ||
2286 | "role": "Contributor" | ||
2287 | } | ||
2288 | ], | ||
2289 | "description": "Package to create and stream e-books in the ePub 2.0 and 3.0 formats.", | ||
2290 | "homepage": "https://github.com/Grandt/PHPePub", | ||
2291 | "keywords": [ | ||
2292 | "e-book", | ||
2293 | "epub" | ||
2294 | ], | ||
2295 | "support": { | ||
2296 | "source": "https://github.com/Daniel-KM/PHPePub/tree/master" | ||
2297 | }, | ||
2298 | "time": "2018-10-21T22:00:00+00:00" | ||
2299 | }, | ||
2300 | { | ||
2301 | "name": "grandt/phpresizegif", | ||
2302 | "version": "1.0.3", | ||
2303 | "source": { | ||
2304 | "type": "git", | ||
2305 | "url": "https://github.com/Grandt/PHPResizeGif.git", | ||
2306 | "reference": "775f6810fcda2fd1d8ca881d44a80c8d310ae7fe" | ||
2307 | }, | ||
2308 | "dist": { | ||
2309 | "type": "zip", | ||
2310 | "url": "https://api.github.com/repos/Grandt/PHPResizeGif/zipball/775f6810fcda2fd1d8ca881d44a80c8d310ae7fe", | ||
2311 | "reference": "775f6810fcda2fd1d8ca881d44a80c8d310ae7fe", | ||
2312 | "shasum": "" | ||
2313 | }, | ||
2314 | "require": { | ||
2315 | "grandt/binstring": ">=0.2.0", | ||
2316 | "php": ">=5.3.0" | ||
2317 | }, | ||
2318 | "type": "library", | ||
2319 | "autoload": { | ||
2320 | "psr-4": { | ||
2321 | "grandt\\ResizeGif\\": "src/ResizeGif", | ||
2322 | "grandt\\ResizeGif\\Files\\": "src/ResizeGif/Files", | ||
2323 | "grandt\\ResizeGif\\Structure\\": "src/ResizeGif/Structure", | ||
2324 | "grandt\\ResizeGif\\Debug\\": "src/ResizeGif/Debug" | ||
2325 | } | ||
2326 | }, | ||
2327 | "notification-url": "https://packagist.org/downloads/", | ||
2328 | "license": [ | ||
2329 | "LGPL-2.1" | ||
2330 | ], | ||
2331 | "authors": [ | ||
2332 | { | ||
2333 | "name": "A. Grandt", | ||
2334 | "email": "php@grandt.com", | ||
2335 | "homepage": "http://grandt.com", | ||
2336 | "role": "Developer" | ||
2337 | } | ||
2338 | ], | ||
2339 | "description": "GIF89a compliant Gif resizer, including transparency and optimized gifs with sub sized elements.", | ||
2340 | "homepage": "https://github.com/Grandt/PHPResizeGif", | ||
2341 | "keywords": [ | ||
2342 | "GIF89a", | ||
2343 | "animated gif", | ||
2344 | "gif", | ||
2345 | "resize" | ||
2346 | ], | ||
2347 | "time": "2015-05-10T10:52:24+00:00" | ||
2348 | }, | ||
2349 | { | ||
2350 | "name": "grandt/phpzipmerge", | ||
2351 | "version": "1.0.4", | ||
2352 | "source": { | ||
2353 | "type": "git", | ||
2354 | "url": "https://github.com/Grandt/PHPZipMerge.git", | ||
2355 | "reference": "0b1273d3c2dbfe244904158b1dbd65a663264fb9" | ||
2356 | }, | ||
2357 | "dist": { | ||
2358 | "type": "zip", | ||
2359 | "url": "https://api.github.com/repos/Grandt/PHPZipMerge/zipball/0b1273d3c2dbfe244904158b1dbd65a663264fb9", | ||
2360 | "reference": "0b1273d3c2dbfe244904158b1dbd65a663264fb9", | ||
2361 | "shasum": "" | ||
2362 | }, | ||
2363 | "require": { | ||
2364 | "grandt/binstring": ">=1.0.0", | ||
2365 | "grandt/relativepath": ">=1.0.1", | ||
2366 | "php": ">=5.3.0" | ||
2367 | }, | ||
2368 | "type": "library", | ||
2369 | "autoload": { | ||
2370 | "psr-4": { | ||
2371 | "ZipMerge\\": "src/ZipMerge" | ||
2372 | } | ||
2373 | }, | ||
2374 | "notification-url": "https://packagist.org/downloads/", | ||
2375 | "license": [ | ||
2376 | "LGPL-2.1" | ||
2377 | ], | ||
2378 | "authors": [ | ||
2379 | { | ||
2380 | "name": "A. Grandt", | ||
2381 | "email": "php@grandt.com", | ||
2382 | "homepage": "http://grandt.com", | ||
2383 | "role": "Developer" | ||
2384 | }, | ||
2385 | { | ||
2386 | "name": "Greg Kappatos", | ||
2387 | "homepage": "http://websiteconnect.com.au", | ||
2388 | "role": "Developer" | ||
2389 | } | ||
2390 | ], | ||
2391 | "description": "Merge and stream multiple Zip files on the fly.", | ||
2392 | "homepage": "https://github.com/Grandt/PHPZipMerge", | ||
2393 | "keywords": [ | ||
2394 | "archive", | ||
2395 | "compressed", | ||
2396 | "compression", | ||
2397 | "merge", | ||
2398 | "phpzip", | ||
2399 | "pkzip", | ||
2400 | "stream", | ||
2401 | "zip" | ||
2402 | ], | ||
2403 | "time": "2015-08-18T13:49:33+00:00" | ||
2404 | }, | ||
2405 | { | ||
2406 | "name": "grandt/relativepath", | ||
2407 | "version": "1.0.2", | ||
2408 | "source": { | ||
2409 | "type": "git", | ||
2410 | "url": "https://github.com/Grandt/PHPRelativePath.git", | ||
2411 | "reference": "19541133c24143b6295688472c54dd6ed15a5462" | ||
2412 | }, | ||
2413 | "dist": { | ||
2414 | "type": "zip", | ||
2415 | "url": "https://api.github.com/repos/Grandt/PHPRelativePath/zipball/19541133c24143b6295688472c54dd6ed15a5462", | ||
2416 | "reference": "19541133c24143b6295688472c54dd6ed15a5462", | ||
2417 | "shasum": "" | ||
2418 | }, | ||
2419 | "require": { | ||
2420 | "php": ">=5.0" | ||
2421 | }, | ||
2422 | "type": "library", | ||
2423 | "autoload": { | ||
2424 | "classmap": [ | ||
2425 | "RelativePath.php" | ||
2426 | ] | ||
2427 | }, | ||
2428 | "notification-url": "https://packagist.org/downloads/", | ||
2429 | "license": [ | ||
2430 | "LGPL-2.1" | ||
2431 | ], | ||
2432 | "authors": [ | ||
2433 | { | ||
2434 | "name": "A. Grandt", | ||
2435 | "email": "php@grandt.com", | ||
2436 | "role": "Developer" | ||
2437 | } | ||
2438 | ], | ||
2439 | "description": "A class for cleaning up/collapsing relative paths. Like real_path, but without the need for the path to exist on the filesystem.", | ||
2440 | "homepage": "https://github.com/Grandt/PHPRelativePath", | ||
2441 | "keywords": [ | ||
2442 | "file path" | ||
2443 | ], | ||
2444 | "time": "2015-05-14T08:18:23+00:00" | ||
2445 | }, | ||
2446 | { | ||
2447 | "name": "guzzlehttp/guzzle", | ||
2448 | "version": "5.3.3", | ||
2449 | "source": { | ||
2450 | "type": "git", | ||
2451 | "url": "https://github.com/guzzle/guzzle.git", | ||
2452 | "reference": "93bbdb30d59be6cd9839495306c65f2907370eb9" | ||
2453 | }, | ||
2454 | "dist": { | ||
2455 | "type": "zip", | ||
2456 | "url": "https://api.github.com/repos/guzzle/guzzle/zipball/93bbdb30d59be6cd9839495306c65f2907370eb9", | ||
2457 | "reference": "93bbdb30d59be6cd9839495306c65f2907370eb9", | ||
2458 | "shasum": "" | ||
2459 | }, | ||
2460 | "require": { | ||
2461 | "guzzlehttp/ringphp": "^1.1", | ||
2462 | "php": ">=5.4.0", | ||
2463 | "react/promise": "^2.2" | ||
2464 | }, | ||
2465 | "require-dev": { | ||
2466 | "ext-curl": "*", | ||
2467 | "phpunit/phpunit": "^4.0" | ||
2468 | }, | ||
2469 | "type": "library", | ||
2470 | "autoload": { | ||
2471 | "psr-4": { | ||
2472 | "GuzzleHttp\\": "src/" | ||
2473 | } | ||
2474 | }, | ||
2475 | "notification-url": "https://packagist.org/downloads/", | ||
2476 | "license": [ | ||
2477 | "MIT" | ||
2478 | ], | ||
2479 | "authors": [ | ||
2480 | { | ||
2481 | "name": "Michael Dowling", | ||
2482 | "email": "mtdowling@gmail.com", | ||
2483 | "homepage": "https://github.com/mtdowling" | ||
2484 | } | ||
2485 | ], | ||
2486 | "description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients", | ||
2487 | "homepage": "http://guzzlephp.org/", | ||
2488 | "keywords": [ | ||
2489 | "client", | ||
2490 | "curl", | ||
2491 | "framework", | ||
2492 | "http", | ||
2493 | "http client", | ||
2494 | "rest", | ||
2495 | "web service" | ||
2496 | ], | ||
2497 | "time": "2018-07-31T13:33:10+00:00" | ||
2498 | }, | ||
2499 | { | ||
2500 | "name": "guzzlehttp/psr7", | ||
2501 | "version": "1.5.2", | ||
2502 | "source": { | ||
2503 | "type": "git", | ||
2504 | "url": "https://github.com/guzzle/psr7.git", | ||
2505 | "reference": "9f83dded91781a01c63574e387eaa769be769115" | ||
2506 | }, | ||
2507 | "dist": { | ||
2508 | "type": "zip", | ||
2509 | "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115", | ||
2510 | "reference": "9f83dded91781a01c63574e387eaa769be769115", | ||
2511 | "shasum": "" | ||
2512 | }, | ||
2513 | "require": { | ||
2514 | "php": ">=5.4.0", | ||
2515 | "psr/http-message": "~1.0", | ||
2516 | "ralouphie/getallheaders": "^2.0.5" | ||
2517 | }, | ||
2518 | "provide": { | ||
2519 | "psr/http-message-implementation": "1.0" | ||
2520 | }, | ||
2521 | "require-dev": { | ||
2522 | "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" | ||
2523 | }, | ||
2524 | "type": "library", | ||
2525 | "extra": { | ||
2526 | "branch-alias": { | ||
2527 | "dev-master": "1.5-dev" | ||
2528 | } | ||
2529 | }, | ||
2530 | "autoload": { | ||
2531 | "psr-4": { | ||
2532 | "GuzzleHttp\\Psr7\\": "src/" | ||
2533 | }, | ||
2534 | "files": [ | ||
2535 | "src/functions_include.php" | ||
2536 | ] | ||
2537 | }, | ||
2538 | "notification-url": "https://packagist.org/downloads/", | ||
2539 | "license": [ | ||
2540 | "MIT" | ||
2541 | ], | ||
2542 | "authors": [ | ||
2543 | { | ||
2544 | "name": "Michael Dowling", | ||
2545 | "email": "mtdowling@gmail.com", | ||
2546 | "homepage": "https://github.com/mtdowling" | ||
2547 | }, | ||
2548 | { | ||
2549 | "name": "Tobias Schultze", | ||
2550 | "homepage": "https://github.com/Tobion" | ||
2551 | } | ||
2552 | ], | ||
2553 | "description": "PSR-7 message implementation that also provides common utility methods", | ||
2554 | "keywords": [ | ||
2555 | "http", | ||
2556 | "message", | ||
2557 | "psr-7", | ||
2558 | "request", | ||
2559 | "response", | ||
2560 | "stream", | ||
2561 | "uri", | ||
2562 | "url" | ||
2563 | ], | ||
2564 | "time": "2018-12-04T20:46:45+00:00" | ||
2565 | }, | ||
2566 | { | ||
2567 | "name": "guzzlehttp/ringphp", | ||
2568 | "version": "1.1.1", | ||
2569 | "source": { | ||
2570 | "type": "git", | ||
2571 | "url": "https://github.com/guzzle/RingPHP.git", | ||
2572 | "reference": "5e2a174052995663dd68e6b5ad838afd47dd615b" | ||
2573 | }, | ||
2574 | "dist": { | ||
2575 | "type": "zip", | ||
2576 | "url": "https://api.github.com/repos/guzzle/RingPHP/zipball/5e2a174052995663dd68e6b5ad838afd47dd615b", | ||
2577 | "reference": "5e2a174052995663dd68e6b5ad838afd47dd615b", | ||
2578 | "shasum": "" | ||
2579 | }, | ||
2580 | "require": { | ||
2581 | "guzzlehttp/streams": "~3.0", | ||
2582 | "php": ">=5.4.0", | ||
2583 | "react/promise": "~2.0" | ||
2584 | }, | ||
2585 | "require-dev": { | ||
2586 | "ext-curl": "*", | ||
2587 | "phpunit/phpunit": "~4.0" | ||
2588 | }, | ||
2589 | "suggest": { | ||
2590 | "ext-curl": "Guzzle will use specific adapters if cURL is present" | ||
2591 | }, | ||
2592 | "type": "library", | ||
2593 | "extra": { | ||
2594 | "branch-alias": { | ||
2595 | "dev-master": "1.1-dev" | ||
2596 | } | ||
2597 | }, | ||
2598 | "autoload": { | ||
2599 | "psr-4": { | ||
2600 | "GuzzleHttp\\Ring\\": "src/" | ||
2601 | } | ||
2602 | }, | ||
2603 | "notification-url": "https://packagist.org/downloads/", | ||
2604 | "license": [ | ||
2605 | "MIT" | ||
2606 | ], | ||
2607 | "authors": [ | ||
2608 | { | ||
2609 | "name": "Michael Dowling", | ||
2610 | "email": "mtdowling@gmail.com", | ||
2611 | "homepage": "https://github.com/mtdowling" | ||
2612 | } | ||
2613 | ], | ||
2614 | "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.", | ||
2615 | "time": "2018-07-31T13:22:33+00:00" | ||
2616 | }, | ||
2617 | { | ||
2618 | "name": "guzzlehttp/streams", | ||
2619 | "version": "3.0.0", | ||
2620 | "source": { | ||
2621 | "type": "git", | ||
2622 | "url": "https://github.com/guzzle/streams.git", | ||
2623 | "reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5" | ||
2624 | }, | ||
2625 | "dist": { | ||
2626 | "type": "zip", | ||
2627 | "url": "https://api.github.com/repos/guzzle/streams/zipball/47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5", | ||
2628 | "reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5", | ||
2629 | "shasum": "" | ||
2630 | }, | ||
2631 | "require": { | ||
2632 | "php": ">=5.4.0" | ||
2633 | }, | ||
2634 | "require-dev": { | ||
2635 | "phpunit/phpunit": "~4.0" | ||
2636 | }, | ||
2637 | "type": "library", | ||
2638 | "extra": { | ||
2639 | "branch-alias": { | ||
2640 | "dev-master": "3.0-dev" | ||
2641 | } | ||
2642 | }, | ||
2643 | "autoload": { | ||
2644 | "psr-4": { | ||
2645 | "GuzzleHttp\\Stream\\": "src/" | ||
2646 | } | ||
2647 | }, | ||
2648 | "notification-url": "https://packagist.org/downloads/", | ||
2649 | "license": [ | ||
2650 | "MIT" | ||
2651 | ], | ||
2652 | "authors": [ | ||
2653 | { | ||
2654 | "name": "Michael Dowling", | ||
2655 | "email": "mtdowling@gmail.com", | ||
2656 | "homepage": "https://github.com/mtdowling" | ||
2657 | } | ||
2658 | ], | ||
2659 | "description": "Provides a simple abstraction over streams of data", | ||
2660 | "homepage": "http://guzzlephp.org/", | ||
2661 | "keywords": [ | ||
2662 | "Guzzle", | ||
2663 | "stream" | ||
2664 | ], | ||
2665 | "time": "2014-10-12T19:18:40+00:00" | ||
2666 | }, | ||
2667 | { | ||
2668 | "name": "hoa/compiler", | ||
2669 | "version": "3.17.08.08", | ||
2670 | "source": { | ||
2671 | "type": "git", | ||
2672 | "url": "https://github.com/hoaproject/Compiler.git", | ||
2673 | "reference": "aa09caf0bf28adae6654ca6ee415ee2f522672de" | ||
2674 | }, | ||
2675 | "dist": { | ||
2676 | "type": "zip", | ||
2677 | "url": "https://api.github.com/repos/hoaproject/Compiler/zipball/aa09caf0bf28adae6654ca6ee415ee2f522672de", | ||
2678 | "reference": "aa09caf0bf28adae6654ca6ee415ee2f522672de", | ||
2679 | "shasum": "" | ||
2680 | }, | ||
2681 | "require": { | ||
2682 | "hoa/consistency": "~1.0", | ||
2683 | "hoa/exception": "~1.0", | ||
2684 | "hoa/file": "~1.0", | ||
2685 | "hoa/iterator": "~2.0", | ||
2686 | "hoa/math": "~1.0", | ||
2687 | "hoa/protocol": "~1.0", | ||
2688 | "hoa/regex": "~1.0", | ||
2689 | "hoa/visitor": "~2.0" | ||
2690 | }, | ||
2691 | "require-dev": { | ||
2692 | "hoa/json": "~2.0", | ||
2693 | "hoa/test": "~2.0" | ||
2694 | }, | ||
2695 | "type": "library", | ||
2696 | "extra": { | ||
2697 | "branch-alias": { | ||
2698 | "dev-master": "3.x-dev" | ||
2699 | } | ||
2700 | }, | ||
2701 | "autoload": { | ||
2702 | "psr-4": { | ||
2703 | "Hoa\\Compiler\\": "." | ||
2704 | } | ||
2705 | }, | ||
2706 | "notification-url": "https://packagist.org/downloads/", | ||
2707 | "license": [ | ||
2708 | "BSD-3-Clause" | ||
2709 | ], | ||
2710 | "authors": [ | ||
2711 | { | ||
2712 | "name": "Ivan Enderlin", | ||
2713 | "email": "ivan.enderlin@hoa-project.net" | ||
2714 | }, | ||
2715 | { | ||
2716 | "name": "Hoa community", | ||
2717 | "homepage": "https://hoa-project.net/" | ||
2718 | } | ||
2719 | ], | ||
2720 | "description": "The Hoa\\Compiler library.", | ||
2721 | "homepage": "https://hoa-project.net/", | ||
2722 | "keywords": [ | ||
2723 | "algebraic", | ||
2724 | "ast", | ||
2725 | "compiler", | ||
2726 | "context-free", | ||
2727 | "coverage", | ||
2728 | "exhaustive", | ||
2729 | "grammar", | ||
2730 | "isotropic", | ||
2731 | "language", | ||
2732 | "lexer", | ||
2733 | "library", | ||
2734 | "ll1", | ||
2735 | "llk", | ||
2736 | "parser", | ||
2737 | "pp", | ||
2738 | "random", | ||
2739 | "regular", | ||
2740 | "rule", | ||
2741 | "sampler", | ||
2742 | "syntax", | ||
2743 | "token", | ||
2744 | "trace", | ||
2745 | "uniform" | ||
2746 | ], | ||
2747 | "time": "2017-08-08T07:44:07+00:00" | ||
2748 | }, | ||
2749 | { | ||
2750 | "name": "hoa/consistency", | ||
2751 | "version": "1.17.05.02", | ||
2752 | "source": { | ||
2753 | "type": "git", | ||
2754 | "url": "https://github.com/hoaproject/Consistency.git", | ||
2755 | "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f" | ||
2756 | }, | ||
2757 | "dist": { | ||
2758 | "type": "zip", | ||
2759 | "url": "https://api.github.com/repos/hoaproject/Consistency/zipball/fd7d0adc82410507f332516faf655b6ed22e4c2f", | ||
2760 | "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f", | ||
2761 | "shasum": "" | ||
2762 | }, | ||
2763 | "require": { | ||
2764 | "hoa/exception": "~1.0", | ||
2765 | "php": ">=5.5.0" | ||
2766 | }, | ||
2767 | "require-dev": { | ||
2768 | "hoa/stream": "~1.0", | ||
2769 | "hoa/test": "~2.0" | ||
2770 | }, | ||
2771 | "type": "library", | ||
2772 | "extra": { | ||
2773 | "branch-alias": { | ||
2774 | "dev-master": "1.x-dev" | ||
2775 | } | ||
2776 | }, | ||
2777 | "autoload": { | ||
2778 | "psr-4": { | ||
2779 | "Hoa\\Consistency\\": "." | ||
2780 | }, | ||
2781 | "files": [ | ||
2782 | "Prelude.php" | ||
2783 | ] | ||
2784 | }, | ||
2785 | "notification-url": "https://packagist.org/downloads/", | ||
2786 | "license": [ | ||
2787 | "BSD-3-Clause" | ||
2788 | ], | ||
2789 | "authors": [ | ||
2790 | { | ||
2791 | "name": "Ivan Enderlin", | ||
2792 | "email": "ivan.enderlin@hoa-project.net" | ||
2793 | }, | ||
2794 | { | ||
2795 | "name": "Hoa community", | ||
2796 | "homepage": "https://hoa-project.net/" | ||
2797 | } | ||
2798 | ], | ||
2799 | "description": "The Hoa\\Consistency library.", | ||
2800 | "homepage": "https://hoa-project.net/", | ||
2801 | "keywords": [ | ||
2802 | "autoloader", | ||
2803 | "callable", | ||
2804 | "consistency", | ||
2805 | "entity", | ||
2806 | "flex", | ||
2807 | "keyword", | ||
2808 | "library" | ||
2809 | ], | ||
2810 | "time": "2017-05-02T12:18:12+00:00" | ||
2811 | }, | ||
2812 | { | ||
2813 | "name": "hoa/event", | ||
2814 | "version": "1.17.01.13", | ||
2815 | "source": { | ||
2816 | "type": "git", | ||
2817 | "url": "https://github.com/hoaproject/Event.git", | ||
2818 | "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54" | ||
2819 | }, | ||
2820 | "dist": { | ||
2821 | "type": "zip", | ||
2822 | "url": "https://api.github.com/repos/hoaproject/Event/zipball/6c0060dced212ffa3af0e34bb46624f990b29c54", | ||
2823 | "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54", | ||
2824 | "shasum": "" | ||
2825 | }, | ||
2826 | "require": { | ||
2827 | "hoa/consistency": "~1.0", | ||
2828 | "hoa/exception": "~1.0" | ||
2829 | }, | ||
2830 | "require-dev": { | ||
2831 | "hoa/test": "~2.0" | ||
2832 | }, | ||
2833 | "type": "library", | ||
2834 | "extra": { | ||
2835 | "branch-alias": { | ||
2836 | "dev-master": "1.x-dev" | ||
2837 | } | ||
2838 | }, | ||
2839 | "autoload": { | ||
2840 | "psr-4": { | ||
2841 | "Hoa\\Event\\": "." | ||
2842 | } | ||
2843 | }, | ||
2844 | "notification-url": "https://packagist.org/downloads/", | ||
2845 | "license": [ | ||
2846 | "BSD-3-Clause" | ||
2847 | ], | ||
2848 | "authors": [ | ||
2849 | { | ||
2850 | "name": "Ivan Enderlin", | ||
2851 | "email": "ivan.enderlin@hoa-project.net" | ||
2852 | }, | ||
2853 | { | ||
2854 | "name": "Hoa community", | ||
2855 | "homepage": "https://hoa-project.net/" | ||
2856 | } | ||
2857 | ], | ||
2858 | "description": "The Hoa\\Event library.", | ||
2859 | "homepage": "https://hoa-project.net/", | ||
2860 | "keywords": [ | ||
2861 | "event", | ||
2862 | "library", | ||
2863 | "listener", | ||
2864 | "observer" | ||
2865 | ], | ||
2866 | "time": "2017-01-13T15:30:50+00:00" | ||
2867 | }, | ||
2868 | { | ||
2869 | "name": "hoa/exception", | ||
2870 | "version": "1.17.01.16", | ||
2871 | "source": { | ||
2872 | "type": "git", | ||
2873 | "url": "https://github.com/hoaproject/Exception.git", | ||
2874 | "reference": "091727d46420a3d7468ef0595651488bfc3a458f" | ||
2875 | }, | ||
2876 | "dist": { | ||
2877 | "type": "zip", | ||
2878 | "url": "https://api.github.com/repos/hoaproject/Exception/zipball/091727d46420a3d7468ef0595651488bfc3a458f", | ||
2879 | "reference": "091727d46420a3d7468ef0595651488bfc3a458f", | ||
2880 | "shasum": "" | ||
2881 | }, | ||
2882 | "require": { | ||
2883 | "hoa/consistency": "~1.0", | ||
2884 | "hoa/event": "~1.0" | ||
2885 | }, | ||
2886 | "require-dev": { | ||
2887 | "hoa/test": "~2.0" | ||
2888 | }, | ||
2889 | "type": "library", | ||
2890 | "extra": { | ||
2891 | "branch-alias": { | ||
2892 | "dev-master": "1.x-dev" | ||
2893 | } | ||
2894 | }, | ||
2895 | "autoload": { | ||
2896 | "psr-4": { | ||
2897 | "Hoa\\Exception\\": "." | ||
2898 | } | ||
2899 | }, | ||
2900 | "notification-url": "https://packagist.org/downloads/", | ||
2901 | "license": [ | ||
2902 | "BSD-3-Clause" | ||
2903 | ], | ||
2904 | "authors": [ | ||
2905 | { | ||
2906 | "name": "Ivan Enderlin", | ||
2907 | "email": "ivan.enderlin@hoa-project.net" | ||
2908 | }, | ||
2909 | { | ||
2910 | "name": "Hoa community", | ||
2911 | "homepage": "https://hoa-project.net/" | ||
2912 | } | ||
2913 | ], | ||
2914 | "description": "The Hoa\\Exception library.", | ||
2915 | "homepage": "https://hoa-project.net/", | ||
2916 | "keywords": [ | ||
2917 | "exception", | ||
2918 | "library" | ||
2919 | ], | ||
2920 | "time": "2017-01-16T07:53:27+00:00" | ||
2921 | }, | ||
2922 | { | ||
2923 | "name": "hoa/file", | ||
2924 | "version": "1.17.07.11", | ||
2925 | "source": { | ||
2926 | "type": "git", | ||
2927 | "url": "https://github.com/hoaproject/File.git", | ||
2928 | "reference": "35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca" | ||
2929 | }, | ||
2930 | "dist": { | ||
2931 | "type": "zip", | ||
2932 | "url": "https://api.github.com/repos/hoaproject/File/zipball/35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca", | ||
2933 | "reference": "35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca", | ||
2934 | "shasum": "" | ||
2935 | }, | ||
2936 | "require": { | ||
2937 | "hoa/consistency": "~1.0", | ||
2938 | "hoa/event": "~1.0", | ||
2939 | "hoa/exception": "~1.0", | ||
2940 | "hoa/iterator": "~2.0", | ||
2941 | "hoa/stream": "~1.0" | ||
2942 | }, | ||
2943 | "require-dev": { | ||
2944 | "hoa/test": "~2.0" | ||
2945 | }, | ||
2946 | "type": "library", | ||
2947 | "extra": { | ||
2948 | "branch-alias": { | ||
2949 | "dev-master": "1.x-dev" | ||
2950 | } | ||
2951 | }, | ||
2952 | "autoload": { | ||
2953 | "psr-4": { | ||
2954 | "Hoa\\File\\": "." | ||
2955 | } | ||
2956 | }, | ||
2957 | "notification-url": "https://packagist.org/downloads/", | ||
2958 | "license": [ | ||
2959 | "BSD-3-Clause" | ||
2960 | ], | ||
2961 | "authors": [ | ||
2962 | { | ||
2963 | "name": "Ivan Enderlin", | ||
2964 | "email": "ivan.enderlin@hoa-project.net" | ||
2965 | }, | ||
2966 | { | ||
2967 | "name": "Hoa community", | ||
2968 | "homepage": "https://hoa-project.net/" | ||
2969 | } | ||
2970 | ], | ||
2971 | "description": "The Hoa\\File library.", | ||
2972 | "homepage": "https://hoa-project.net/", | ||
2973 | "keywords": [ | ||
2974 | "Socket", | ||
2975 | "directory", | ||
2976 | "file", | ||
2977 | "finder", | ||
2978 | "library", | ||
2979 | "link", | ||
2980 | "temporary" | ||
2981 | ], | ||
2982 | "time": "2017-07-11T07:42:15+00:00" | ||
2983 | }, | ||
2984 | { | ||
2985 | "name": "hoa/iterator", | ||
2986 | "version": "2.17.01.10", | ||
2987 | "source": { | ||
2988 | "type": "git", | ||
2989 | "url": "https://github.com/hoaproject/Iterator.git", | ||
2990 | "reference": "d1120ba09cb4ccd049c86d10058ab94af245f0cc" | ||
2991 | }, | ||
2992 | "dist": { | ||
2993 | "type": "zip", | ||
2994 | "url": "https://api.github.com/repos/hoaproject/Iterator/zipball/d1120ba09cb4ccd049c86d10058ab94af245f0cc", | ||
2995 | "reference": "d1120ba09cb4ccd049c86d10058ab94af245f0cc", | ||
2996 | "shasum": "" | ||
2997 | }, | ||
2998 | "require": { | ||
2999 | "hoa/consistency": "~1.0", | ||
3000 | "hoa/exception": "~1.0" | ||
3001 | }, | ||
3002 | "require-dev": { | ||
3003 | "hoa/test": "~2.0" | ||
3004 | }, | ||
3005 | "type": "library", | ||
3006 | "extra": { | ||
3007 | "branch-alias": { | ||
3008 | "dev-master": "2.x-dev" | ||
3009 | } | ||
3010 | }, | ||
3011 | "autoload": { | ||
3012 | "psr-4": { | ||
3013 | "Hoa\\Iterator\\": "." | ||
3014 | } | ||
3015 | }, | ||
3016 | "notification-url": "https://packagist.org/downloads/", | ||
3017 | "license": [ | ||
3018 | "BSD-3-Clause" | ||
3019 | ], | ||
3020 | "authors": [ | ||
3021 | { | ||
3022 | "name": "Ivan Enderlin", | ||
3023 | "email": "ivan.enderlin@hoa-project.net" | ||
3024 | }, | ||
3025 | { | ||
3026 | "name": "Hoa community", | ||
3027 | "homepage": "https://hoa-project.net/" | ||
3028 | } | ||
3029 | ], | ||
3030 | "description": "The Hoa\\Iterator library.", | ||
3031 | "homepage": "https://hoa-project.net/", | ||
3032 | "keywords": [ | ||
3033 | "iterator", | ||
3034 | "library" | ||
3035 | ], | ||
3036 | "time": "2017-01-10T10:34:47+00:00" | ||
3037 | }, | ||
3038 | { | ||
3039 | "name": "hoa/math", | ||
3040 | "version": "1.17.05.16", | ||
3041 | "source": { | ||
3042 | "type": "git", | ||
3043 | "url": "https://github.com/hoaproject/Math.git", | ||
3044 | "reference": "7150785d30f5d565704912116a462e9f5bc83a0c" | ||
3045 | }, | ||
3046 | "dist": { | ||
3047 | "type": "zip", | ||
3048 | "url": "https://api.github.com/repos/hoaproject/Math/zipball/7150785d30f5d565704912116a462e9f5bc83a0c", | ||
3049 | "reference": "7150785d30f5d565704912116a462e9f5bc83a0c", | ||
3050 | "shasum": "" | ||
3051 | }, | ||
3052 | "require": { | ||
3053 | "hoa/compiler": "~3.0", | ||
3054 | "hoa/consistency": "~1.0", | ||
3055 | "hoa/exception": "~1.0", | ||
3056 | "hoa/iterator": "~2.0", | ||
3057 | "hoa/protocol": "~1.0", | ||
3058 | "hoa/zformat": "~1.0" | ||
3059 | }, | ||
3060 | "require-dev": { | ||
3061 | "hoa/test": "~2.0" | ||
3062 | }, | ||
3063 | "type": "library", | ||
3064 | "extra": { | ||
3065 | "branch-alias": { | ||
3066 | "dev-master": "1.x-dev" | ||
3067 | } | ||
3068 | }, | ||
3069 | "autoload": { | ||
3070 | "psr-4": { | ||
3071 | "Hoa\\Math\\": "." | ||
3072 | } | ||
3073 | }, | ||
3074 | "notification-url": "https://packagist.org/downloads/", | ||
3075 | "license": [ | ||
3076 | "BSD-3-Clause" | ||
3077 | ], | ||
3078 | "authors": [ | ||
3079 | { | ||
3080 | "name": "Ivan Enderlin", | ||
3081 | "email": "ivan.enderlin@hoa-project.net" | ||
3082 | }, | ||
3083 | { | ||
3084 | "name": "Hoa community", | ||
3085 | "homepage": "https://hoa-project.net/" | ||
3086 | } | ||
3087 | ], | ||
3088 | "description": "The Hoa\\Math library.", | ||
3089 | "homepage": "https://hoa-project.net/", | ||
3090 | "keywords": [ | ||
3091 | "arrangement", | ||
3092 | "combination", | ||
3093 | "combinatorics", | ||
3094 | "counting", | ||
3095 | "library", | ||
3096 | "math", | ||
3097 | "permutation", | ||
3098 | "sampler", | ||
3099 | "set" | ||
3100 | ], | ||
3101 | "time": "2017-05-16T08:02:17+00:00" | ||
3102 | }, | ||
3103 | { | ||
3104 | "name": "hoa/protocol", | ||
3105 | "version": "1.17.01.14", | ||
3106 | "source": { | ||
3107 | "type": "git", | ||
3108 | "url": "https://github.com/hoaproject/Protocol.git", | ||
3109 | "reference": "5c2cf972151c45f373230da170ea015deecf19e2" | ||
3110 | }, | ||
3111 | "dist": { | ||
3112 | "type": "zip", | ||
3113 | "url": "https://api.github.com/repos/hoaproject/Protocol/zipball/5c2cf972151c45f373230da170ea015deecf19e2", | ||
3114 | "reference": "5c2cf972151c45f373230da170ea015deecf19e2", | ||
3115 | "shasum": "" | ||
3116 | }, | ||
3117 | "require": { | ||
3118 | "hoa/consistency": "~1.0", | ||
3119 | "hoa/exception": "~1.0" | ||
3120 | }, | ||
3121 | "require-dev": { | ||
3122 | "hoa/test": "~2.0" | ||
3123 | }, | ||
3124 | "type": "library", | ||
3125 | "extra": { | ||
3126 | "branch-alias": { | ||
3127 | "dev-master": "1.x-dev" | ||
3128 | } | ||
3129 | }, | ||
3130 | "autoload": { | ||
3131 | "psr-4": { | ||
3132 | "Hoa\\Protocol\\": "." | ||
3133 | }, | ||
3134 | "files": [ | ||
3135 | "Wrapper.php" | ||
3136 | ] | ||
3137 | }, | ||
3138 | "notification-url": "https://packagist.org/downloads/", | ||
3139 | "license": [ | ||
3140 | "BSD-3-Clause" | ||
3141 | ], | ||
3142 | "authors": [ | ||
3143 | { | ||
3144 | "name": "Ivan Enderlin", | ||
3145 | "email": "ivan.enderlin@hoa-project.net" | ||
3146 | }, | ||
3147 | { | ||
3148 | "name": "Hoa community", | ||
3149 | "homepage": "https://hoa-project.net/" | ||
3150 | } | ||
3151 | ], | ||
3152 | "description": "The Hoa\\Protocol library.", | ||
3153 | "homepage": "https://hoa-project.net/", | ||
3154 | "keywords": [ | ||
3155 | "library", | ||
3156 | "protocol", | ||
3157 | "resource", | ||
3158 | "stream", | ||
3159 | "wrapper" | ||
3160 | ], | ||
3161 | "time": "2017-01-14T12:26:10+00:00" | ||
3162 | }, | ||
3163 | { | ||
3164 | "name": "hoa/regex", | ||
3165 | "version": "1.17.01.13", | ||
3166 | "source": { | ||
3167 | "type": "git", | ||
3168 | "url": "https://github.com/hoaproject/Regex.git", | ||
3169 | "reference": "7e263a61b6fb45c1d03d8e5ef77668518abd5bec" | ||
3170 | }, | ||
3171 | "dist": { | ||
3172 | "type": "zip", | ||
3173 | "url": "https://api.github.com/repos/hoaproject/Regex/zipball/7e263a61b6fb45c1d03d8e5ef77668518abd5bec", | ||
3174 | "reference": "7e263a61b6fb45c1d03d8e5ef77668518abd5bec", | ||
3175 | "shasum": "" | ||
3176 | }, | ||
3177 | "require": { | ||
3178 | "hoa/consistency": "~1.0", | ||
3179 | "hoa/exception": "~1.0", | ||
3180 | "hoa/math": "~1.0", | ||
3181 | "hoa/protocol": "~1.0", | ||
3182 | "hoa/ustring": "~4.0", | ||
3183 | "hoa/visitor": "~2.0" | ||
3184 | }, | ||
3185 | "type": "library", | ||
3186 | "extra": { | ||
3187 | "branch-alias": { | ||
3188 | "dev-master": "1.x-dev" | ||
3189 | } | ||
3190 | }, | ||
3191 | "autoload": { | ||
3192 | "psr-4": { | ||
3193 | "Hoa\\Regex\\": "." | ||
3194 | } | ||
3195 | }, | ||
3196 | "notification-url": "https://packagist.org/downloads/", | ||
3197 | "license": [ | ||
3198 | "BSD-3-Clause" | ||
3199 | ], | ||
3200 | "authors": [ | ||
3201 | { | ||
3202 | "name": "Ivan Enderlin", | ||
3203 | "email": "ivan.enderlin@hoa-project.net" | ||
3204 | }, | ||
3205 | { | ||
3206 | "name": "Hoa community", | ||
3207 | "homepage": "https://hoa-project.net/" | ||
3208 | } | ||
3209 | ], | ||
3210 | "description": "The Hoa\\Regex library.", | ||
3211 | "homepage": "https://hoa-project.net/", | ||
3212 | "keywords": [ | ||
3213 | "compiler", | ||
3214 | "library", | ||
3215 | "regex" | ||
3216 | ], | ||
3217 | "time": "2017-01-13T16:10:24+00:00" | ||
3218 | }, | ||
3219 | { | ||
3220 | "name": "hoa/ruler", | ||
3221 | "version": "2.17.05.16", | ||
3222 | "source": { | ||
3223 | "type": "git", | ||
3224 | "url": "https://github.com/hoaproject/Ruler.git", | ||
3225 | "reference": "696835daf8336dfd490f032da7af444050e52dfc" | ||
3226 | }, | ||
3227 | "dist": { | ||
3228 | "type": "zip", | ||
3229 | "url": "https://api.github.com/repos/hoaproject/Ruler/zipball/696835daf8336dfd490f032da7af444050e52dfc", | ||
3230 | "reference": "696835daf8336dfd490f032da7af444050e52dfc", | ||
3231 | "shasum": "" | ||
3232 | }, | ||
3233 | "require": { | ||
3234 | "hoa/compiler": "~3.0", | ||
3235 | "hoa/consistency": "~1.0", | ||
3236 | "hoa/exception": "~1.0", | ||
3237 | "hoa/file": "~1.0", | ||
3238 | "hoa/protocol": "~1.0", | ||
3239 | "hoa/visitor": "~2.0" | ||
3240 | }, | ||
3241 | "require-dev": { | ||
3242 | "hoa/test": "~2.0" | ||
3243 | }, | ||
3244 | "type": "library", | ||
3245 | "extra": { | ||
3246 | "branch-alias": { | ||
3247 | "dev-master": "2.x-dev" | ||
3248 | } | ||
3249 | }, | ||
3250 | "autoload": { | ||
3251 | "psr-4": { | ||
3252 | "Hoa\\Ruler\\": "." | ||
3253 | } | ||
3254 | }, | ||
3255 | "notification-url": "https://packagist.org/downloads/", | ||
3256 | "license": [ | ||
3257 | "BSD-3-Clause" | ||
3258 | ], | ||
3259 | "authors": [ | ||
3260 | { | ||
3261 | "name": "Ivan Enderlin", | ||
3262 | "email": "ivan.enderlin@hoa-project.net" | ||
3263 | }, | ||
3264 | { | ||
3265 | "name": "Hoa community", | ||
3266 | "homepage": "https://hoa-project.net/" | ||
3267 | } | ||
3268 | ], | ||
3269 | "description": "The Hoa\\Ruler library.", | ||
3270 | "homepage": "https://hoa-project.net/", | ||
3271 | "keywords": [ | ||
3272 | "library", | ||
3273 | "ruler" | ||
3274 | ], | ||
3275 | "time": "2017-05-16T07:52:21+00:00" | ||
3276 | }, | ||
3277 | { | ||
3278 | "name": "hoa/stream", | ||
3279 | "version": "1.17.02.21", | ||
3280 | "source": { | ||
3281 | "type": "git", | ||
3282 | "url": "https://github.com/hoaproject/Stream.git", | ||
3283 | "reference": "3293cfffca2de10525df51436adf88a559151d82" | ||
3284 | }, | ||
3285 | "dist": { | ||
3286 | "type": "zip", | ||
3287 | "url": "https://api.github.com/repos/hoaproject/Stream/zipball/3293cfffca2de10525df51436adf88a559151d82", | ||
3288 | "reference": "3293cfffca2de10525df51436adf88a559151d82", | ||
3289 | "shasum": "" | ||
3290 | }, | ||
3291 | "require": { | ||
3292 | "hoa/consistency": "~1.0", | ||
3293 | "hoa/event": "~1.0", | ||
3294 | "hoa/exception": "~1.0", | ||
3295 | "hoa/protocol": "~1.0" | ||
3296 | }, | ||
3297 | "require-dev": { | ||
3298 | "hoa/test": "~2.0" | ||
3299 | }, | ||
3300 | "type": "library", | ||
3301 | "extra": { | ||
3302 | "branch-alias": { | ||
3303 | "dev-master": "1.x-dev" | ||
3304 | } | ||
3305 | }, | ||
3306 | "autoload": { | ||
3307 | "psr-4": { | ||
3308 | "Hoa\\Stream\\": "." | ||
3309 | } | ||
3310 | }, | ||
3311 | "notification-url": "https://packagist.org/downloads/", | ||
3312 | "license": [ | ||
3313 | "BSD-3-Clause" | ||
3314 | ], | ||
3315 | "authors": [ | ||
3316 | { | ||
3317 | "name": "Ivan Enderlin", | ||
3318 | "email": "ivan.enderlin@hoa-project.net" | ||
3319 | }, | ||
3320 | { | ||
3321 | "name": "Hoa community", | ||
3322 | "homepage": "https://hoa-project.net/" | ||
3323 | } | ||
3324 | ], | ||
3325 | "description": "The Hoa\\Stream library.", | ||
3326 | "homepage": "https://hoa-project.net/", | ||
3327 | "keywords": [ | ||
3328 | "Context", | ||
3329 | "bucket", | ||
3330 | "composite", | ||
3331 | "filter", | ||
3332 | "in", | ||
3333 | "library", | ||
3334 | "out", | ||
3335 | "protocol", | ||
3336 | "stream", | ||
3337 | "wrapper" | ||
3338 | ], | ||
3339 | "time": "2017-02-21T16:01:06+00:00" | ||
3340 | }, | ||
3341 | { | ||
3342 | "name": "hoa/ustring", | ||
3343 | "version": "4.17.01.16", | ||
3344 | "source": { | ||
3345 | "type": "git", | ||
3346 | "url": "https://github.com/hoaproject/Ustring.git", | ||
3347 | "reference": "e6326e2739178799b1fe3fdd92029f9517fa17a0" | ||
3348 | }, | ||
3349 | "dist": { | ||
3350 | "type": "zip", | ||
3351 | "url": "https://api.github.com/repos/hoaproject/Ustring/zipball/e6326e2739178799b1fe3fdd92029f9517fa17a0", | ||
3352 | "reference": "e6326e2739178799b1fe3fdd92029f9517fa17a0", | ||
3353 | "shasum": "" | ||
3354 | }, | ||
3355 | "require": { | ||
3356 | "hoa/consistency": "~1.0", | ||
3357 | "hoa/exception": "~1.0" | ||
3358 | }, | ||
3359 | "require-dev": { | ||
3360 | "hoa/test": "~2.0" | ||
3361 | }, | ||
3362 | "suggest": { | ||
3363 | "ext-iconv": "ext/iconv must be present (or a third implementation) to use Hoa\\Ustring::transcode().", | ||
3364 | "ext-intl": "To get a better Hoa\\Ustring::toAscii() and Hoa\\Ustring::compareTo()." | ||
3365 | }, | ||
3366 | "type": "library", | ||
3367 | "extra": { | ||
3368 | "branch-alias": { | ||
3369 | "dev-master": "4.x-dev" | ||
3370 | } | ||
3371 | }, | ||
3372 | "autoload": { | ||
3373 | "psr-4": { | ||
3374 | "Hoa\\Ustring\\": "." | ||
3375 | } | ||
3376 | }, | ||
3377 | "notification-url": "https://packagist.org/downloads/", | ||
3378 | "license": [ | ||
3379 | "BSD-3-Clause" | ||
3380 | ], | ||
3381 | "authors": [ | ||
3382 | { | ||
3383 | "name": "Ivan Enderlin", | ||
3384 | "email": "ivan.enderlin@hoa-project.net" | ||
3385 | }, | ||
3386 | { | ||
3387 | "name": "Hoa community", | ||
3388 | "homepage": "https://hoa-project.net/" | ||
3389 | } | ||
3390 | ], | ||
3391 | "description": "The Hoa\\Ustring library.", | ||
3392 | "homepage": "https://hoa-project.net/", | ||
3393 | "keywords": [ | ||
3394 | "library", | ||
3395 | "search", | ||
3396 | "string", | ||
3397 | "unicode" | ||
3398 | ], | ||
3399 | "time": "2017-01-16T07:08:25+00:00" | ||
3400 | }, | ||
3401 | { | ||
3402 | "name": "hoa/visitor", | ||
3403 | "version": "2.17.01.16", | ||
3404 | "source": { | ||
3405 | "type": "git", | ||
3406 | "url": "https://github.com/hoaproject/Visitor.git", | ||
3407 | "reference": "c18fe1cbac98ae449e0d56e87469103ba08f224a" | ||
3408 | }, | ||
3409 | "dist": { | ||
3410 | "type": "zip", | ||
3411 | "url": "https://api.github.com/repos/hoaproject/Visitor/zipball/c18fe1cbac98ae449e0d56e87469103ba08f224a", | ||
3412 | "reference": "c18fe1cbac98ae449e0d56e87469103ba08f224a", | ||
3413 | "shasum": "" | ||
3414 | }, | ||
3415 | "require": { | ||
3416 | "hoa/consistency": "~1.0" | ||
3417 | }, | ||
3418 | "require-dev": { | ||
3419 | "hoa/test": "~2.0" | ||
3420 | }, | ||
3421 | "type": "library", | ||
3422 | "extra": { | ||
3423 | "branch-alias": { | ||
3424 | "dev-master": "2.x-dev" | ||
3425 | } | ||
3426 | }, | ||
3427 | "autoload": { | ||
3428 | "psr-4": { | ||
3429 | "Hoa\\Visitor\\": "." | ||
3430 | } | ||
3431 | }, | ||
3432 | "notification-url": "https://packagist.org/downloads/", | ||
3433 | "license": [ | ||
3434 | "BSD-3-Clause" | ||
3435 | ], | ||
3436 | "authors": [ | ||
3437 | { | ||
3438 | "name": "Ivan Enderlin", | ||
3439 | "email": "ivan.enderlin@hoa-project.net" | ||
3440 | }, | ||
3441 | { | ||
3442 | "name": "Hoa community", | ||
3443 | "homepage": "https://hoa-project.net/" | ||
3444 | } | ||
3445 | ], | ||
3446 | "description": "The Hoa\\Visitor library.", | ||
3447 | "homepage": "https://hoa-project.net/", | ||
3448 | "keywords": [ | ||
3449 | "library", | ||
3450 | "structure", | ||
3451 | "visit", | ||
3452 | "visitor" | ||
3453 | ], | ||
3454 | "time": "2017-01-16T07:02:03+00:00" | ||
3455 | }, | ||
3456 | { | ||
3457 | "name": "hoa/zformat", | ||
3458 | "version": "1.17.01.10", | ||
3459 | "source": { | ||
3460 | "type": "git", | ||
3461 | "url": "https://github.com/hoaproject/Zformat.git", | ||
3462 | "reference": "522c381a2a075d4b9dbb42eb4592dd09520e4ac2" | ||
3463 | }, | ||
3464 | "dist": { | ||
3465 | "type": "zip", | ||
3466 | "url": "https://api.github.com/repos/hoaproject/Zformat/zipball/522c381a2a075d4b9dbb42eb4592dd09520e4ac2", | ||
3467 | "reference": "522c381a2a075d4b9dbb42eb4592dd09520e4ac2", | ||
3468 | "shasum": "" | ||
3469 | }, | ||
3470 | "require": { | ||
3471 | "hoa/consistency": "~1.0", | ||
3472 | "hoa/exception": "~1.0" | ||
3473 | }, | ||
3474 | "type": "library", | ||
3475 | "extra": { | ||
3476 | "branch-alias": { | ||
3477 | "dev-master": "1.x-dev" | ||
3478 | } | ||
3479 | }, | ||
3480 | "autoload": { | ||
3481 | "psr-4": { | ||
3482 | "Hoa\\Zformat\\": "." | ||
3483 | } | ||
3484 | }, | ||
3485 | "notification-url": "https://packagist.org/downloads/", | ||
3486 | "license": [ | ||
3487 | "BSD-3-Clause" | ||
3488 | ], | ||
3489 | "authors": [ | ||
3490 | { | ||
3491 | "name": "Ivan Enderlin", | ||
3492 | "email": "ivan.enderlin@hoa-project.net" | ||
3493 | }, | ||
3494 | { | ||
3495 | "name": "Hoa community", | ||
3496 | "homepage": "https://hoa-project.net/" | ||
3497 | } | ||
3498 | ], | ||
3499 | "description": "The Hoa\\Zformat library.", | ||
3500 | "homepage": "https://hoa-project.net/", | ||
3501 | "keywords": [ | ||
3502 | "library", | ||
3503 | "parameter", | ||
3504 | "zformat" | ||
3505 | ], | ||
3506 | "time": "2017-01-10T10:39:54+00:00" | ||
3507 | }, | ||
3508 | { | ||
3509 | "name": "html2text/html2text", | ||
3510 | "version": "4.2.1", | ||
3511 | "source": { | ||
3512 | "type": "git", | ||
3513 | "url": "https://github.com/mtibben/html2text.git", | ||
3514 | "reference": "f7555eaf271beea4e1098274d3ff37fbb7b21ea7" | ||
3515 | }, | ||
3516 | "dist": { | ||
3517 | "type": "zip", | ||
3518 | "url": "https://api.github.com/repos/mtibben/html2text/zipball/f7555eaf271beea4e1098274d3ff37fbb7b21ea7", | ||
3519 | "reference": "f7555eaf271beea4e1098274d3ff37fbb7b21ea7", | ||
3520 | "shasum": "" | ||
3521 | }, | ||
3522 | "require-dev": { | ||
3523 | "phpunit/phpunit": "~4" | ||
3524 | }, | ||
3525 | "suggest": { | ||
3526 | "ext-mbstring": "For best performance", | ||
3527 | "symfony/polyfill-mbstring": "If you can't install ext-mbstring" | ||
3528 | }, | ||
3529 | "type": "library", | ||
3530 | "autoload": { | ||
3531 | "psr-4": { | ||
3532 | "Html2Text\\": [ | ||
3533 | "src/", | ||
3534 | "test/" | ||
3535 | ] | ||
3536 | } | ||
3537 | }, | ||
3538 | "notification-url": "https://packagist.org/downloads/", | ||
3539 | "license": [ | ||
3540 | "GPL-2.0-or-later" | ||
3541 | ], | ||
3542 | "description": "Converts HTML to formatted plain text", | ||
3543 | "time": "2018-08-13T12:05:08+00:00" | ||
3544 | }, | ||
3545 | { | ||
3546 | "name": "incenteev/composer-parameter-handler", | ||
3547 | "version": "v2.1.3", | ||
3548 | "source": { | ||
3549 | "type": "git", | ||
3550 | "url": "https://github.com/Incenteev/ParameterHandler.git", | ||
3551 | "reference": "933c45a34814f27f2345c11c37d46b3ca7303550" | ||
3552 | }, | ||
3553 | "dist": { | ||
3554 | "type": "zip", | ||
3555 | "url": "https://api.github.com/repos/Incenteev/ParameterHandler/zipball/933c45a34814f27f2345c11c37d46b3ca7303550", | ||
3556 | "reference": "933c45a34814f27f2345c11c37d46b3ca7303550", | ||
3557 | "shasum": "" | ||
3558 | }, | ||
3559 | "require": { | ||
3560 | "php": ">=5.3.3", | ||
3561 | "symfony/yaml": "^2.3 || ^3.0 || ^4.0" | ||
3562 | }, | ||
3563 | "require-dev": { | ||
3564 | "composer/composer": "^1.0@dev", | ||
3565 | "symfony/filesystem": "^2.3 || ^3 || ^4", | ||
3566 | "symfony/phpunit-bridge": "^4.0" | ||
3567 | }, | ||
3568 | "type": "library", | ||
3569 | "extra": { | ||
3570 | "branch-alias": { | ||
3571 | "dev-master": "2.1.x-dev" | ||
3572 | } | ||
3573 | }, | ||
3574 | "autoload": { | ||
3575 | "psr-4": { | ||
3576 | "Incenteev\\ParameterHandler\\": "" | ||
3577 | } | ||
3578 | }, | ||
3579 | "notification-url": "https://packagist.org/downloads/", | ||
3580 | "license": [ | ||
3581 | "MIT" | ||
3582 | ], | ||
3583 | "authors": [ | ||
3584 | { | ||
3585 | "name": "Christophe Coevoet", | ||
3586 | "email": "stof@notk.org" | ||
3587 | } | ||
3588 | ], | ||
3589 | "description": "Composer script handling your ignored parameter file", | ||
3590 | "homepage": "https://github.com/Incenteev/ParameterHandler", | ||
3591 | "keywords": [ | ||
3592 | "parameters management" | ||
3593 | ], | ||
3594 | "time": "2018-02-13T18:05:56+00:00" | ||
3595 | }, | ||
3596 | { | ||
3597 | "name": "j0k3r/graby", | ||
3598 | "version": "2.0.0", | ||
3599 | "source": { | ||
3600 | "type": "git", | ||
3601 | "url": "https://github.com/j0k3r/graby.git", | ||
3602 | "reference": "e09fa58eb1b0a760869c6e3031db1ae175e362e4" | ||
3603 | }, | ||
3604 | "dist": { | ||
3605 | "type": "zip", | ||
3606 | "url": "https://api.github.com/repos/j0k3r/graby/zipball/e09fa58eb1b0a760869c6e3031db1ae175e362e4", | ||
3607 | "reference": "e09fa58eb1b0a760869c6e3031db1ae175e362e4", | ||
3608 | "shasum": "" | ||
3609 | }, | ||
3610 | "require": { | ||
3611 | "ext-curl": "*", | ||
3612 | "ext-tidy": "*", | ||
3613 | "fossar/htmlawed": "^1.2.4", | ||
3614 | "guzzlehttp/psr7": "^1.5", | ||
3615 | "j0k3r/graby-site-config": "^1.0", | ||
3616 | "j0k3r/httplug-ssrf-plugin": "^2.0", | ||
3617 | "j0k3r/php-readability": "^1.1", | ||
3618 | "monolog/monolog": "^1.13.1", | ||
3619 | "php": ">=7.1", | ||
3620 | "php-http/client-common": "^2.0", | ||
3621 | "php-http/discovery": "^1.0", | ||
3622 | "php-http/httplug": "^2.0", | ||
3623 | "php-http/message": "^1.7", | ||
3624 | "psr/http-message": "^1.0", | ||
3625 | "simplepie/simplepie": "^1.3.1", | ||
3626 | "smalot/pdfparser": "~0.11", | ||
3627 | "symfony/options-resolver": "~2.6|~3.0|~4.0", | ||
3628 | "true/punycode": "~2.1", | ||
3629 | "wallabag/tcpdf": "^6.2.26" | ||
3630 | }, | ||
3631 | "require-dev": { | ||
3632 | "friendsofphp/php-cs-fixer": "~2.14", | ||
3633 | "php-coveralls/php-coveralls": "^2.0", | ||
3634 | "php-http/guzzle6-adapter": "^2.0", | ||
3635 | "php-http/mock-client": "^1.2", | ||
3636 | "phpstan/phpstan": "^0.11", | ||
3637 | "phpstan/phpstan-phpunit": "^0.11", | ||
3638 | "symfony/phpunit-bridge": "~2.6|~3.0|~4.0" | ||
3639 | }, | ||
3640 | "type": "library", | ||
3641 | "extra": { | ||
3642 | "branch-alias": { | ||
3643 | "dev-2.0": "2.0-dev" | ||
3644 | } | ||
3645 | }, | ||
3646 | "autoload": { | ||
3647 | "psr-4": { | ||
3648 | "Graby\\": "src/" | ||
3649 | } | ||
3650 | }, | ||
3651 | "notification-url": "https://packagist.org/downloads/", | ||
3652 | "license": [ | ||
3653 | "MIT" | ||
3654 | ], | ||
3655 | "authors": [ | ||
3656 | { | ||
3657 | "name": "Jeremy Benoist", | ||
3658 | "email": "jeremy.benoist@gmail.com", | ||
3659 | "role": "Developer" | ||
3660 | }, | ||
3661 | { | ||
3662 | "name": "FiveFilters.org", | ||
3663 | "email": "fivefilters@fivefilters.org", | ||
3664 | "role": "Developer (original version)" | ||
3665 | } | ||
3666 | ], | ||
3667 | "description": "Graby helps you extract article content from web pages", | ||
3668 | "time": "2019-05-22T12:45:02+00:00" | ||
3669 | }, | ||
3670 | { | ||
3671 | "name": "j0k3r/graby-site-config", | ||
3672 | "version": "1.0.84", | ||
3673 | "source": { | ||
3674 | "type": "git", | ||
3675 | "url": "https://github.com/j0k3r/graby-site-config.git", | ||
3676 | "reference": "37ae71639d3844d022ea402a1f87af7e28d12cac" | ||
3677 | }, | ||
3678 | "dist": { | ||
3679 | "type": "zip", | ||
3680 | "url": "https://api.github.com/repos/j0k3r/graby-site-config/zipball/37ae71639d3844d022ea402a1f87af7e28d12cac", | ||
3681 | "reference": "37ae71639d3844d022ea402a1f87af7e28d12cac", | ||
3682 | "shasum": "" | ||
3683 | }, | ||
3684 | "require": { | ||
3685 | "symfony/finder": "~2.6|~3.0|~4.0" | ||
3686 | }, | ||
3687 | "require-dev": { | ||
3688 | "liip/rmt": "1.2.*", | ||
3689 | "symfony/phpunit-bridge": "^3.2" | ||
3690 | }, | ||
3691 | "type": "library", | ||
3692 | "autoload": { | ||
3693 | "psr-4": { | ||
3694 | "GrabySiteConfig\\SiteConfig\\": "src/" | ||
3695 | } | ||
3696 | }, | ||
3697 | "notification-url": "https://packagist.org/downloads/", | ||
3698 | "license": [ | ||
3699 | "CC0-1.0" | ||
3700 | ], | ||
3701 | "authors": [ | ||
3702 | { | ||
3703 | "name": "Jeremy Benoist", | ||
3704 | "email": "jeremy.benoist@gmail.com" | ||
3705 | } | ||
3706 | ], | ||
3707 | "description": "Graby site config files", | ||
3708 | "time": "2019-05-23T07:28:03+00:00" | ||
3709 | }, | ||
3710 | { | ||
3711 | "name": "j0k3r/httplug-ssrf-plugin", | ||
3712 | "version": "v2.0.0", | ||
3713 | "source": { | ||
3714 | "type": "git", | ||
3715 | "url": "https://github.com/j0k3r/httplug-ssrf-plugin.git", | ||
3716 | "reference": "ea8599016240d2a49b91e267550ea3eb243ddd74" | ||
3717 | }, | ||
3718 | "dist": { | ||
3719 | "type": "zip", | ||
3720 | "url": "https://api.github.com/repos/j0k3r/httplug-ssrf-plugin/zipball/ea8599016240d2a49b91e267550ea3eb243ddd74", | ||
3721 | "reference": "ea8599016240d2a49b91e267550ea3eb243ddd74", | ||
3722 | "shasum": "" | ||
3723 | }, | ||
3724 | "require": { | ||
3725 | "php": "^7.1", | ||
3726 | "php-http/client-common": "^2.0", | ||
3727 | "php-http/discovery": "^1.5", | ||
3728 | "php-http/message": "^1.7", | ||
3729 | "php-http/message-factory": "^1.0.2" | ||
3730 | }, | ||
3731 | "require-dev": { | ||
3732 | "friendsofphp/php-cs-fixer": "^2.14", | ||
3733 | "guzzlehttp/psr7": "^1.0", | ||
3734 | "php-http/guzzle6-adapter": "^2.0", | ||
3735 | "php-http/mock-client": "^1.0", | ||
3736 | "phpstan/phpstan": "^0.11", | ||
3737 | "phpstan/phpstan-phpunit": "^0.11", | ||
3738 | "symfony/phpunit-bridge": "~3.4.19|~4.0" | ||
3739 | }, | ||
3740 | "type": "library", | ||
3741 | "extra": { | ||
3742 | "branch-alias": { | ||
3743 | "dev-master": "2.0-dev" | ||
3744 | } | ||
3745 | }, | ||
3746 | "autoload": { | ||
3747 | "psr-4": { | ||
3748 | "Graby\\HttpClient\\Plugin\\ServerSideRequestForgeryProtection\\": "src/" | ||
3749 | } | ||
3750 | }, | ||
3751 | "notification-url": "https://packagist.org/downloads/", | ||
3752 | "license": [ | ||
3753 | "MIT" | ||
3754 | ], | ||
3755 | "authors": [ | ||
3756 | { | ||
3757 | "name": "Jeremy Benoist", | ||
3758 | "email": "jeremy.benoist@gmail.com" | ||
3759 | }, | ||
3760 | { | ||
3761 | "name": "aaa2000", | ||
3762 | "email": "adev2000@gmail.com" | ||
3763 | }, | ||
3764 | { | ||
3765 | "name": "Jack W", | ||
3766 | "email": "jack@fin1te.net", | ||
3767 | "role": "Developer (SafeCurl original version)" | ||
3768 | } | ||
3769 | ], | ||
3770 | "description": "Server-Side Request Forgery (SSRF) protection plugin for HTTPlug", | ||
3771 | "homepage": "https://github.com/j0k3r/httplug-ssrf-plugin", | ||
3772 | "keywords": [ | ||
3773 | "http", | ||
3774 | "httplug", | ||
3775 | "plugin", | ||
3776 | "security", | ||
3777 | "ssrf" | ||
3778 | ], | ||
3779 | "time": "2019-02-06T10:58:53+00:00" | ||
3780 | }, | ||
3781 | { | ||
3782 | "name": "j0k3r/php-readability", | ||
3783 | "version": "1.2.3", | ||
3784 | "source": { | ||
3785 | "type": "git", | ||
3786 | "url": "https://github.com/j0k3r/php-readability.git", | ||
3787 | "reference": "f808c1b0a21ae98ae6fd5bd623671c406efd74d0" | ||
3788 | }, | ||
3789 | "dist": { | ||
3790 | "type": "zip", | ||
3791 | "url": "https://api.github.com/repos/j0k3r/php-readability/zipball/f808c1b0a21ae98ae6fd5bd623671c406efd74d0", | ||
3792 | "reference": "f808c1b0a21ae98ae6fd5bd623671c406efd74d0", | ||
3793 | "shasum": "" | ||
3794 | }, | ||
3795 | "require": { | ||
3796 | "electrolinux/php-html5lib": "^0.1.0", | ||
3797 | "ext-mbstring": "*", | ||
3798 | "php": ">=5.6.0", | ||
3799 | "psr/log": "^1.0" | ||
3800 | }, | ||
3801 | "require-dev": { | ||
3802 | "friendsofphp/php-cs-fixer": "^2.14", | ||
3803 | "monolog/monolog": "^1.24", | ||
3804 | "php-coveralls/php-coveralls": "^2.1", | ||
3805 | "symfony/phpunit-bridge": "^4.2.3" | ||
3806 | }, | ||
3807 | "suggest": { | ||
3808 | "ext-tidy": "Used to clean up given HTML and to avoid problems with bad HTML structure." | ||
3809 | }, | ||
3810 | "type": "library", | ||
3811 | "autoload": { | ||
3812 | "psr-4": { | ||
3813 | "Readability\\": "src/" | ||
3814 | } | ||
3815 | }, | ||
3816 | "notification-url": "https://packagist.org/downloads/", | ||
3817 | "license": [ | ||
3818 | "Apache-2.0" | ||
3819 | ], | ||
3820 | "authors": [ | ||
3821 | { | ||
3822 | "name": "Keyvan Minoukadeh", | ||
3823 | "email": "keyvan@keyvan.net", | ||
3824 | "homepage": "http://keyvan.net", | ||
3825 | "role": "Developer (ported original JS code to PHP)" | ||
3826 | }, | ||
3827 | { | ||
3828 | "name": "Arc90", | ||
3829 | "homepage": "http://arc90.com", | ||
3830 | "role": "Developer (original JS version)" | ||
3831 | }, | ||
3832 | { | ||
3833 | "name": "Jeremy Benoist", | ||
3834 | "email": "jeremy.benoist@gmail.com", | ||
3835 | "homepage": "http://www.j0k3r.net", | ||
3836 | "role": "Developer" | ||
3837 | }, | ||
3838 | { | ||
3839 | "name": "DitherSky", | ||
3840 | "homepage": "https://github.com/Dither", | ||
3841 | "role": "Developer (https://github.com/Dither/full-text-rss)" | ||
3842 | } | ||
3843 | ], | ||
3844 | "description": "Automatic article extraction from HTML", | ||
3845 | "keywords": [ | ||
3846 | "article", | ||
3847 | "article extraction", | ||
3848 | "content", | ||
3849 | "content extraction", | ||
3850 | "extraction", | ||
3851 | "html" | ||
3852 | ], | ||
3853 | "time": "2019-05-11T20:07:19+00:00" | ||
3854 | }, | ||
3855 | { | ||
3856 | "name": "javibravo/simpleue", | ||
3857 | "version": "2.1.0", | ||
3858 | "source": { | ||
3859 | "type": "git", | ||
3860 | "url": "https://github.com/javibravo/simpleue.git", | ||
3861 | "reference": "b12ccea0631cd3f6128ab91178fc5363f6e14ff6" | ||
3862 | }, | ||
3863 | "dist": { | ||
3864 | "type": "zip", | ||
3865 | "url": "https://api.github.com/repos/javibravo/simpleue/zipball/b12ccea0631cd3f6128ab91178fc5363f6e14ff6", | ||
3866 | "reference": "b12ccea0631cd3f6128ab91178fc5363f6e14ff6", | ||
3867 | "shasum": "" | ||
3868 | }, | ||
3869 | "require": { | ||
3870 | "php": ">=5.5", | ||
3871 | "psr/log": "~1.0" | ||
3872 | }, | ||
3873 | "require-dev": { | ||
3874 | "aws/aws-sdk-php": "^3.9", | ||
3875 | "pda/pheanstalk": "^3.1", | ||
3876 | "phpunit/phpunit": "4.0.*", | ||
3877 | "predis/predis": "^1.0" | ||
3878 | }, | ||
3879 | "suggest": { | ||
3880 | "aws/aws-sdk-php": "Allow work with AWS Simple Queue Service (SQS) queues", | ||
3881 | "ext-redis": "Allow work with Redis Locker", | ||
3882 | "pda/pheanstalk": "Allow work with Beanstalkd queues", | ||
3883 | "predis/predis": "Allow work with Redis queues" | ||
3884 | }, | ||
3885 | "type": "library", | ||
3886 | "autoload": { | ||
3887 | "psr-4": { | ||
3888 | "Simpleue\\": "src/Simpleue" | ||
3889 | } | ||
3890 | }, | ||
3891 | "notification-url": "https://packagist.org/downloads/", | ||
3892 | "license": [ | ||
3893 | "MIT" | ||
3894 | ], | ||
3895 | "authors": [ | ||
3896 | { | ||
3897 | "name": "Javier Bravo", | ||
3898 | "email": "javibravo85@gmail.com" | ||
3899 | } | ||
3900 | ], | ||
3901 | "description": "Php package to manage queue tasks in a simple way", | ||
3902 | "homepage": "http://github.com/javibravo/simpleue", | ||
3903 | "keywords": [ | ||
3904 | "job", | ||
3905 | "queue", | ||
3906 | "redis", | ||
3907 | "sqs", | ||
3908 | "task" | ||
3909 | ], | ||
3910 | "time": "2017-11-15T13:41:13+00:00" | ||
3911 | }, | ||
3912 | { | ||
3913 | "name": "jdorn/sql-formatter", | ||
3914 | "version": "v1.2.17", | ||
3915 | "source": { | ||
3916 | "type": "git", | ||
3917 | "url": "https://github.com/jdorn/sql-formatter.git", | ||
3918 | "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc" | ||
3919 | }, | ||
3920 | "dist": { | ||
3921 | "type": "zip", | ||
3922 | "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc", | ||
3923 | "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc", | ||
3924 | "shasum": "" | ||
3925 | }, | ||
3926 | "require": { | ||
3927 | "php": ">=5.2.4" | ||
3928 | }, | ||
3929 | "require-dev": { | ||
3930 | "phpunit/phpunit": "3.7.*" | ||
3931 | }, | ||
3932 | "type": "library", | ||
3933 | "extra": { | ||
3934 | "branch-alias": { | ||
3935 | "dev-master": "1.3.x-dev" | ||
3936 | } | ||
3937 | }, | ||
3938 | "autoload": { | ||
3939 | "classmap": [ | ||
3940 | "lib" | ||
3941 | ] | ||
3942 | }, | ||
3943 | "notification-url": "https://packagist.org/downloads/", | ||
3944 | "license": [ | ||
3945 | "MIT" | ||
3946 | ], | ||
3947 | "authors": [ | ||
3948 | { | ||
3949 | "name": "Jeremy Dorn", | ||
3950 | "email": "jeremy@jeremydorn.com", | ||
3951 | "homepage": "http://jeremydorn.com/" | ||
3952 | } | ||
3953 | ], | ||
3954 | "description": "a PHP SQL highlighting library", | ||
3955 | "homepage": "https://github.com/jdorn/sql-formatter/", | ||
3956 | "keywords": [ | ||
3957 | "highlight", | ||
3958 | "sql" | ||
3959 | ], | ||
3960 | "time": "2014-01-12T16:20:24+00:00" | ||
3961 | }, | ||
3962 | { | ||
3963 | "name": "jms/metadata", | ||
3964 | "version": "1.7.0", | ||
3965 | "source": { | ||
3966 | "type": "git", | ||
3967 | "url": "https://github.com/schmittjoh/metadata.git", | ||
3968 | "reference": "e5854ab1aa643623dc64adde718a8eec32b957a8" | ||
3969 | }, | ||
3970 | "dist": { | ||
3971 | "type": "zip", | ||
3972 | "url": "https://api.github.com/repos/schmittjoh/metadata/zipball/e5854ab1aa643623dc64adde718a8eec32b957a8", | ||
3973 | "reference": "e5854ab1aa643623dc64adde718a8eec32b957a8", | ||
3974 | "shasum": "" | ||
3975 | }, | ||
3976 | "require": { | ||
3977 | "php": ">=5.3.0" | ||
3978 | }, | ||
3979 | "require-dev": { | ||
3980 | "doctrine/cache": "~1.0", | ||
3981 | "symfony/cache": "~3.1" | ||
3982 | }, | ||
3983 | "type": "library", | ||
3984 | "extra": { | ||
3985 | "branch-alias": { | ||
3986 | "dev-master": "1.5.x-dev" | ||
3987 | } | ||
3988 | }, | ||
3989 | "autoload": { | ||
3990 | "psr-0": { | ||
3991 | "Metadata\\": "src/" | ||
3992 | } | ||
3993 | }, | ||
3994 | "notification-url": "https://packagist.org/downloads/", | ||
3995 | "license": [ | ||
3996 | "MIT" | ||
3997 | ], | ||
3998 | "authors": [ | ||
3999 | { | ||
4000 | "name": "Asmir Mustafic", | ||
4001 | "email": "goetas@gmail.com" | ||
4002 | }, | ||
4003 | { | ||
4004 | "name": "Johannes M. Schmitt", | ||
4005 | "email": "schmittjoh@gmail.com" | ||
4006 | } | ||
4007 | ], | ||
4008 | "description": "Class/method/property metadata management in PHP", | ||
4009 | "keywords": [ | ||
4010 | "annotations", | ||
4011 | "metadata", | ||
4012 | "xml", | ||
4013 | "yaml" | ||
4014 | ], | ||
4015 | "time": "2018-10-26T12:40:10+00:00" | ||
4016 | }, | ||
4017 | { | ||
4018 | "name": "jms/parser-lib", | ||
4019 | "version": "1.0.0", | ||
4020 | "source": { | ||
4021 | "type": "git", | ||
4022 | "url": "https://github.com/schmittjoh/parser-lib.git", | ||
4023 | "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d" | ||
4024 | }, | ||
4025 | "dist": { | ||
4026 | "type": "zip", | ||
4027 | "url": "https://api.github.com/repos/schmittjoh/parser-lib/zipball/c509473bc1b4866415627af0e1c6cc8ac97fa51d", | ||
4028 | "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d", | ||
4029 | "shasum": "" | ||
4030 | }, | ||
4031 | "require": { | ||
4032 | "phpoption/phpoption": ">=0.9,<2.0-dev" | ||
4033 | }, | ||
4034 | "type": "library", | ||
4035 | "extra": { | ||
4036 | "branch-alias": { | ||
4037 | "dev-master": "1.0-dev" | ||
4038 | } | ||
4039 | }, | ||
4040 | "autoload": { | ||
4041 | "psr-0": { | ||
4042 | "JMS\\": "src/" | ||
4043 | } | ||
4044 | }, | ||
4045 | "notification-url": "https://packagist.org/downloads/", | ||
4046 | "license": [ | ||
4047 | "Apache2" | ||
4048 | ], | ||
4049 | "description": "A library for easily creating recursive-descent parsers.", | ||
4050 | "time": "2012-11-18T18:08:43+00:00" | ||
4051 | }, | ||
4052 | { | ||
4053 | "name": "jms/serializer", | ||
4054 | "version": "1.14.0", | ||
4055 | "source": { | ||
4056 | "type": "git", | ||
4057 | "url": "https://github.com/schmittjoh/serializer.git", | ||
4058 | "reference": "ee96d57024af9a7716d56fcbe3aa94b3d030f3ca" | ||
4059 | }, | ||
4060 | "dist": { | ||
4061 | "type": "zip", | ||
4062 | "url": "https://api.github.com/repos/schmittjoh/serializer/zipball/ee96d57024af9a7716d56fcbe3aa94b3d030f3ca", | ||
4063 | "reference": "ee96d57024af9a7716d56fcbe3aa94b3d030f3ca", | ||
4064 | "shasum": "" | ||
4065 | }, | ||
4066 | "require": { | ||
4067 | "doctrine/annotations": "^1.0", | ||
4068 | "doctrine/instantiator": "^1.0.3", | ||
4069 | "jms/metadata": "^1.3", | ||
4070 | "jms/parser-lib": "1.*", | ||
4071 | "php": "^5.5|^7.0", | ||
4072 | "phpcollection/phpcollection": "~0.1", | ||
4073 | "phpoption/phpoption": "^1.1" | ||
4074 | }, | ||
4075 | "conflict": { | ||
4076 | "twig/twig": "<1.12" | ||
4077 | }, | ||
4078 | "require-dev": { | ||
4079 | "doctrine/orm": "~2.1", | ||
4080 | "doctrine/phpcr-odm": "^1.3|^2.0", | ||
4081 | "ext-pdo_sqlite": "*", | ||
4082 | "jackalope/jackalope-doctrine-dbal": "^1.1.5", | ||
4083 | "phpunit/phpunit": "^4.8|^5.0", | ||
4084 | "propel/propel1": "~1.7", | ||
4085 | "psr/container": "^1.0", | ||
4086 | "symfony/dependency-injection": "^2.7|^3.3|^4.0", | ||
4087 | "symfony/expression-language": "^2.6|^3.0", | ||
4088 | "symfony/filesystem": "^2.1", | ||
4089 | "symfony/form": "~2.1|^3.0", | ||
4090 | "symfony/translation": "^2.1|^3.0", | ||
4091 | "symfony/validator": "^2.2|^3.0", | ||
4092 | "symfony/yaml": "^2.1|^3.0", | ||
4093 | "twig/twig": "~1.12|~2.0" | ||
4094 | }, | ||
4095 | "suggest": { | ||
4096 | "doctrine/cache": "Required if you like to use cache functionality.", | ||
4097 | "doctrine/collections": "Required if you like to use doctrine collection types as ArrayCollection.", | ||
4098 | "symfony/yaml": "Required if you'd like to serialize data to YAML format." | ||
4099 | }, | ||
4100 | "type": "library", | ||
4101 | "extra": { | ||
4102 | "branch-alias": { | ||
4103 | "dev-1.x": "1.14-dev" | ||
4104 | } | ||
4105 | }, | ||
4106 | "autoload": { | ||
4107 | "psr-0": { | ||
4108 | "JMS\\Serializer": "src/" | ||
4109 | } | ||
4110 | }, | ||
4111 | "notification-url": "https://packagist.org/downloads/", | ||
4112 | "license": [ | ||
4113 | "MIT" | ||
4114 | ], | ||
4115 | "authors": [ | ||
4116 | { | ||
4117 | "name": "Asmir Mustafic", | ||
4118 | "email": "goetas@gmail.com" | ||
4119 | }, | ||
4120 | { | ||
4121 | "name": "Johannes M. Schmitt", | ||
4122 | "email": "schmittjoh@gmail.com" | ||
4123 | } | ||
4124 | ], | ||
4125 | "description": "Library for (de-)serializing data of any complexity; supports XML, JSON, and YAML.", | ||
4126 | "homepage": "http://jmsyst.com/libs/serializer", | ||
4127 | "keywords": [ | ||
4128 | "deserialization", | ||
4129 | "jaxb", | ||
4130 | "json", | ||
4131 | "serialization", | ||
4132 | "xml" | ||
4133 | ], | ||
4134 | "time": "2019-04-17T08:12:16+00:00" | ||
4135 | }, | ||
4136 | { | ||
4137 | "name": "jms/serializer-bundle", | ||
4138 | "version": "2.4.4", | ||
4139 | "source": { | ||
4140 | "type": "git", | ||
4141 | "url": "https://github.com/schmittjoh/JMSSerializerBundle.git", | ||
4142 | "reference": "92ee808c64c1c180775a0e57d00e3be0674668fb" | ||
4143 | }, | ||
4144 | "dist": { | ||
4145 | "type": "zip", | ||
4146 | "url": "https://api.github.com/repos/schmittjoh/JMSSerializerBundle/zipball/92ee808c64c1c180775a0e57d00e3be0674668fb", | ||
4147 | "reference": "92ee808c64c1c180775a0e57d00e3be0674668fb", | ||
4148 | "shasum": "" | ||
4149 | }, | ||
4150 | "require": { | ||
4151 | "jms/serializer": "^1.10", | ||
4152 | "php": "^5.4|^7.0", | ||
4153 | "phpoption/phpoption": "^1.1.0", | ||
4154 | "symfony/framework-bundle": "~2.3|~3.0|~4.0" | ||
4155 | }, | ||
4156 | "require-dev": { | ||
4157 | "doctrine/orm": "*", | ||
4158 | "phpunit/phpunit": "^4.8.35|^5.4.3|^6.0", | ||
4159 | "symfony/expression-language": "~2.6|~3.0|~4.0", | ||
4160 | "symfony/finder": "^2.3|^3.0|^4.0", | ||
4161 | "symfony/form": "*", | ||
4162 | "symfony/stopwatch": "*", | ||
4163 | "symfony/twig-bundle": "*", | ||
4164 | "symfony/validator": "*", | ||
4165 | "symfony/yaml": "*" | ||
4166 | }, | ||
4167 | "suggest": { | ||
4168 | "jms/di-extra-bundle": "Required to get lazy loading (de)serialization visitors, ~1.3", | ||
4169 | "symfony/finder": "Required for cache warmup, supported versions ^2.3|^3.0|^4.0" | ||
4170 | }, | ||
4171 | "type": "symfony-bundle", | ||
4172 | "extra": { | ||
4173 | "branch-alias": { | ||
4174 | "dev-master": "2.4-dev" | ||
4175 | } | ||
4176 | }, | ||
4177 | "autoload": { | ||
4178 | "psr-4": { | ||
4179 | "JMS\\SerializerBundle\\": "" | ||
4180 | }, | ||
4181 | "exclude-from-classmap": [ | ||
4182 | "/Tests/" | ||
4183 | ] | ||
4184 | }, | ||
4185 | "notification-url": "https://packagist.org/downloads/", | ||
4186 | "license": [ | ||
4187 | "MIT" | ||
4188 | ], | ||
4189 | "authors": [ | ||
4190 | { | ||
4191 | "name": "Asmir Mustafic", | ||
4192 | "email": "goetas@gmail.com" | ||
4193 | }, | ||
4194 | { | ||
4195 | "name": "Johannes M. Schmitt", | ||
4196 | "email": "schmittjoh@gmail.com" | ||
4197 | } | ||
4198 | ], | ||
4199 | "description": "Allows you to easily serialize, and deserialize data of any complexity", | ||
4200 | "homepage": "http://jmsyst.com/bundles/JMSSerializerBundle", | ||
4201 | "keywords": [ | ||
4202 | "deserialization", | ||
4203 | "jaxb", | ||
4204 | "json", | ||
4205 | "serialization", | ||
4206 | "xml" | ||
4207 | ], | ||
4208 | "time": "2019-03-30T10:26:09+00:00" | ||
4209 | }, | ||
4210 | { | ||
4211 | "name": "kphoen/rulerz", | ||
4212 | "version": "0.21.1", | ||
4213 | "source": { | ||
4214 | "type": "git", | ||
4215 | "url": "https://github.com/K-Phoen/rulerz.git", | ||
4216 | "reference": "d28a1bd59b4e66cc9fcdeee965f13f685eb9ce41" | ||
4217 | }, | ||
4218 | "dist": { | ||
4219 | "type": "zip", | ||
4220 | "url": "https://api.github.com/repos/K-Phoen/rulerz/zipball/d28a1bd59b4e66cc9fcdeee965f13f685eb9ce41", | ||
4221 | "reference": "d28a1bd59b4e66cc9fcdeee965f13f685eb9ce41", | ||
4222 | "shasum": "" | ||
4223 | }, | ||
4224 | "require": { | ||
4225 | "hoa/ruler": "~2.0", | ||
4226 | "php": ">=7.1", | ||
4227 | "symfony/property-access": "~3.0|~4.0" | ||
4228 | }, | ||
4229 | "require-dev": { | ||
4230 | "behat/behat": "~3.0", | ||
4231 | "coduo/phpspec-data-provider-extension": "~1.0,!=1.0.2", | ||
4232 | "doctrine/orm": "~2.4", | ||
4233 | "elasticsearch/elasticsearch": "~1.0", | ||
4234 | "illuminate/database": "~5.0", | ||
4235 | "kphoen/rusty": "dev-master", | ||
4236 | "liip/rmt": "^1.2", | ||
4237 | "mikey179/vfsstream": "~1.4", | ||
4238 | "phpspec/phpspec": "~2.0,>=2.4-dev", | ||
4239 | "pomm-project/cli": "~2.0@dev", | ||
4240 | "pomm-project/foundation": "~2.0@dev", | ||
4241 | "pomm-project/model-manager": "~2.0.@dev", | ||
4242 | "ruflin/elastica": "~1.0", | ||
4243 | "solarium/solarium": "~3.0", | ||
4244 | "vlucas/phpdotenv": "~2.1" | ||
4245 | }, | ||
4246 | "suggest": { | ||
4247 | "doctrine/orm": "To execute rules as Doctrine queries", | ||
4248 | "elasticsearch/elasticsearch": "To execute rules as Elasticsearch queries", | ||
4249 | "kphoen/rulerz-spec-builder": "If you want a specification builder", | ||
4250 | "pomm-project/model-manager": "To execute rules as Pomm queries", | ||
4251 | "solarium/solarium": "To execute rules as Solr queries" | ||
4252 | }, | ||
4253 | "type": "library", | ||
4254 | "extra": { | ||
4255 | "branch-alias": { | ||
4256 | "dev-master": "1.0.x-dev" | ||
4257 | } | ||
4258 | }, | ||
4259 | "autoload": { | ||
4260 | "psr-4": { | ||
4261 | "RulerZ\\": "src/" | ||
4262 | } | ||
4263 | }, | ||
4264 | "notification-url": "https://packagist.org/downloads/", | ||
4265 | "license": [ | ||
4266 | "MIT" | ||
4267 | ], | ||
4268 | "authors": [ | ||
4269 | { | ||
4270 | "name": "Kévin Gomez", | ||
4271 | "email": "contact@kevingomez.fr" | ||
4272 | } | ||
4273 | ], | ||
4274 | "description": "Powerful implementation of the Specification pattern", | ||
4275 | "homepage": "https://github.com/K-Phoen/RulerZ", | ||
4276 | "keywords": [ | ||
4277 | "doctrine", | ||
4278 | "specification" | ||
4279 | ], | ||
4280 | "time": "2018-09-18T15:15:42+00:00" | ||
4281 | }, | ||
4282 | { | ||
4283 | "name": "kphoen/rulerz-bridge", | ||
4284 | "version": "1.1.1", | ||
4285 | "source": { | ||
4286 | "type": "git", | ||
4287 | "url": "https://github.com/K-Phoen/rulerz-bridge.git", | ||
4288 | "reference": "fdad5856b669d59b5e4bda47c4e927a0485bf7a0" | ||
4289 | }, | ||
4290 | "dist": { | ||
4291 | "type": "zip", | ||
4292 | "url": "https://api.github.com/repos/K-Phoen/rulerz-bridge/zipball/fdad5856b669d59b5e4bda47c4e927a0485bf7a0", | ||
4293 | "reference": "fdad5856b669d59b5e4bda47c4e927a0485bf7a0", | ||
4294 | "shasum": "" | ||
4295 | }, | ||
4296 | "require": { | ||
4297 | "kphoen/rulerz": "~0.19,>=0.19.3|^1.0", | ||
4298 | "php": ">=7.1", | ||
4299 | "symfony/form": "^3.0|^4.0", | ||
4300 | "symfony/validator": "^3.0|^4.0" | ||
4301 | }, | ||
4302 | "require-dev": { | ||
4303 | "liip/rmt": "^1.2", | ||
4304 | "phpunit/phpunit": "~7.1", | ||
4305 | "symfony/phpunit-bridge": "^3.0|^4.0" | ||
4306 | }, | ||
4307 | "type": "symfony-bridge", | ||
4308 | "autoload": { | ||
4309 | "psr-4": { | ||
4310 | "Symfony\\Bridge\\RulerZ\\": "" | ||
4311 | }, | ||
4312 | "exclude-from-classmap": [ | ||
4313 | "/Tests/" | ||
4314 | ] | ||
4315 | }, | ||
4316 | "notification-url": "https://packagist.org/downloads/", | ||
4317 | "license": [ | ||
4318 | "MIT" | ||
4319 | ], | ||
4320 | "authors": [ | ||
4321 | { | ||
4322 | "name": "Kévin Gomez", | ||
4323 | "email": "contact@kevingomez.fr" | ||
4324 | } | ||
4325 | ], | ||
4326 | "description": "Symfony RulerZ Bridge", | ||
4327 | "homepage": "https://github.com/K-Phoen/rulerz-bridge", | ||
4328 | "keywords": [ | ||
4329 | "Bridge", | ||
4330 | "doctrine", | ||
4331 | "ruler", | ||
4332 | "rulerz", | ||
4333 | "specification", | ||
4334 | "symfony" | ||
4335 | ], | ||
4336 | "time": "2018-10-01T14:17:27+00:00" | ||
4337 | }, | ||
4338 | { | ||
4339 | "name": "kphoen/rulerz-bundle", | ||
4340 | "version": "0.15.0", | ||
4341 | "source": { | ||
4342 | "type": "git", | ||
4343 | "url": "https://github.com/K-Phoen/RulerZBundle.git", | ||
4344 | "reference": "f25f2eddfd311047f0f0ece2684b1f6463cc41ad" | ||
4345 | }, | ||
4346 | "dist": { | ||
4347 | "type": "zip", | ||
4348 | "url": "https://api.github.com/repos/K-Phoen/RulerZBundle/zipball/f25f2eddfd311047f0f0ece2684b1f6463cc41ad", | ||
4349 | "reference": "f25f2eddfd311047f0f0ece2684b1f6463cc41ad", | ||
4350 | "shasum": "" | ||
4351 | }, | ||
4352 | "require": { | ||
4353 | "kphoen/rulerz": "~0.17,>=0.19.3", | ||
4354 | "kphoen/rulerz-bridge": "^1.0", | ||
4355 | "php": ">=7.1", | ||
4356 | "symfony/framework-bundle": "^3.0|^4.0" | ||
4357 | }, | ||
4358 | "require-dev": { | ||
4359 | "liip/rmt": "^1.2", | ||
4360 | "matthiasnoback/symfony-dependency-injection-test": "^3.0", | ||
4361 | "mikey179/vfsstream": "^1.6", | ||
4362 | "phpunit/phpunit": "^7.1", | ||
4363 | "symfony/phpunit-bridge": "^3.0|^4.0" | ||
4364 | }, | ||
4365 | "type": "symfony-bundle", | ||
4366 | "autoload": { | ||
4367 | "psr-4": { | ||
4368 | "KPhoen\\RulerZBundle\\": "" | ||
4369 | }, | ||
4370 | "exclude-from-classmap": [ | ||
4371 | "/Tests/" | ||
4372 | ] | ||
4373 | }, | ||
4374 | "notification-url": "https://packagist.org/downloads/", | ||
4375 | "license": [ | ||
4376 | "MIT" | ||
4377 | ], | ||
4378 | "authors": [ | ||
4379 | { | ||
4380 | "name": "Kévin Gomez", | ||
4381 | "email": "contact@kevingomez.fr" | ||
4382 | } | ||
4383 | ], | ||
4384 | "description": "Symfony2 Bundle for RulerZ", | ||
4385 | "homepage": "https://github.com/K-Phoen/RulerZBundle", | ||
4386 | "keywords": [ | ||
4387 | "doctrine", | ||
4388 | "ruler", | ||
4389 | "rulerz", | ||
4390 | "specification" | ||
4391 | ], | ||
4392 | "time": "2018-09-17T09:02:32+00:00" | ||
4393 | }, | ||
4394 | { | ||
4395 | "name": "lcobucci/jwt", | ||
4396 | "version": "3.3.1", | ||
4397 | "source": { | ||
4398 | "type": "git", | ||
4399 | "url": "https://github.com/lcobucci/jwt.git", | ||
4400 | "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18" | ||
4401 | }, | ||
4402 | "dist": { | ||
4403 | "type": "zip", | ||
4404 | "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18", | ||
4405 | "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18", | ||
4406 | "shasum": "" | ||
4407 | }, | ||
4408 | "require": { | ||
4409 | "ext-mbstring": "*", | ||
4410 | "ext-openssl": "*", | ||
4411 | "php": "^5.6 || ^7.0" | ||
4412 | }, | ||
4413 | "require-dev": { | ||
4414 | "mikey179/vfsstream": "~1.5", | ||
4415 | "phpmd/phpmd": "~2.2", | ||
4416 | "phpunit/php-invoker": "~1.1", | ||
4417 | "phpunit/phpunit": "^5.7 || ^7.3", | ||
4418 | "squizlabs/php_codesniffer": "~2.3" | ||
4419 | }, | ||
4420 | "type": "library", | ||
4421 | "extra": { | ||
4422 | "branch-alias": { | ||
4423 | "dev-master": "3.1-dev" | ||
4424 | } | ||
4425 | }, | ||
4426 | "autoload": { | ||
4427 | "psr-4": { | ||
4428 | "Lcobucci\\JWT\\": "src" | ||
4429 | } | ||
4430 | }, | ||
4431 | "notification-url": "https://packagist.org/downloads/", | ||
4432 | "license": [ | ||
4433 | "BSD-3-Clause" | ||
4434 | ], | ||
4435 | "authors": [ | ||
4436 | { | ||
4437 | "name": "Luís Otávio Cobucci Oblonczyk", | ||
4438 | "email": "lcobucci@gmail.com", | ||
4439 | "role": "Developer" | ||
4440 | } | ||
4441 | ], | ||
4442 | "description": "A simple library to work with JSON Web Token and JSON Web Signature", | ||
4443 | "keywords": [ | ||
4444 | "JWS", | ||
4445 | "jwt" | ||
4446 | ], | ||
4447 | "time": "2019-05-24T18:30:49+00:00" | ||
4448 | }, | ||
4449 | { | ||
4450 | "name": "lexik/form-filter-bundle", | ||
4451 | "version": "v5.0.10", | ||
4452 | "source": { | ||
4453 | "type": "git", | ||
4454 | "url": "https://github.com/lexik/LexikFormFilterBundle.git", | ||
4455 | "reference": "92df0638173979dc906bda7a33a10b98429d2057" | ||
4456 | }, | ||
4457 | "dist": { | ||
4458 | "type": "zip", | ||
4459 | "url": "https://api.github.com/repos/lexik/LexikFormFilterBundle/zipball/92df0638173979dc906bda7a33a10b98429d2057", | ||
4460 | "reference": "92df0638173979dc906bda7a33a10b98429d2057", | ||
4461 | "shasum": "" | ||
4462 | }, | ||
4463 | "require": { | ||
4464 | "doctrine/orm": "^2.4.8", | ||
4465 | "php": ">=5.5.9", | ||
4466 | "symfony/form": "~2.8|~3.0|^4.0", | ||
4467 | "symfony/framework-bundle": "~2.8|~3.0|^4.0" | ||
4468 | }, | ||
4469 | "require-dev": { | ||
4470 | "doctrine/mongodb-odm-bundle": "^3.0", | ||
4471 | "phpunit/phpunit": "~5.0|^7.5" | ||
4472 | }, | ||
4473 | "suggest": { | ||
4474 | "alcaeus/mongo-php-adapter": "Install this package if using the PHP 7 MongoDB Driver" | ||
4475 | }, | ||
4476 | "type": "symfony-bundle", | ||
4477 | "extra": { | ||
4478 | "branch-alias": { | ||
4479 | "dev-master": "5.x.x-dev" | ||
4480 | } | ||
4481 | }, | ||
4482 | "autoload": { | ||
4483 | "psr-4": { | ||
4484 | "Lexik\\Bundle\\FormFilterBundle\\": "" | ||
4485 | } | ||
4486 | }, | ||
4487 | "notification-url": "https://packagist.org/downloads/", | ||
4488 | "license": [ | ||
4489 | "MIT" | ||
4490 | ], | ||
4491 | "authors": [ | ||
4492 | { | ||
4493 | "name": "Dev Lexik", | ||
4494 | "email": "dev@lexik.fr" | ||
4495 | }, | ||
4496 | { | ||
4497 | "name": "Cedric Girard", | ||
4498 | "email": "c.girard@lexik.fr" | ||
4499 | } | ||
4500 | ], | ||
4501 | "description": "This bundle aim to provide classes to build some form filters and then build a doctrine query from this form filter.", | ||
4502 | "homepage": "https://github.com/lexik/LexikFormFilterBundle", | ||
4503 | "keywords": [ | ||
4504 | "bundle", | ||
4505 | "doctrine", | ||
4506 | "filter", | ||
4507 | "form", | ||
4508 | "symfony" | ||
4509 | ], | ||
4510 | "time": "2019-04-17T17:58:44+00:00" | ||
4511 | }, | ||
4512 | { | ||
4513 | "name": "liip/theme-bundle", | ||
4514 | "version": "1.6.1", | ||
4515 | "source": { | ||
4516 | "type": "git", | ||
4517 | "url": "https://github.com/liip/LiipThemeBundle.git", | ||
4518 | "reference": "f40637ce0523a4e0968e203c09a46acfa4b95d4d" | ||
4519 | }, | ||
4520 | "dist": { | ||
4521 | "type": "zip", | ||
4522 | "url": "https://api.github.com/repos/liip/LiipThemeBundle/zipball/f40637ce0523a4e0968e203c09a46acfa4b95d4d", | ||
4523 | "reference": "f40637ce0523a4e0968e203c09a46acfa4b95d4d", | ||
4524 | "shasum": "" | ||
4525 | }, | ||
4526 | "require": { | ||
4527 | "php": "^5.3.9|^7.0", | ||
4528 | "psr/log": "~1.0", | ||
4529 | "symfony/finder": "^2.7|^3.0|^4.0", | ||
4530 | "symfony/framework-bundle": "^2.7|^3.0|^4.0", | ||
4531 | "symfony/templating": "^2.7|^3.0|^4.0", | ||
4532 | "symfony/twig-bundle": "^2.7|^3.0|^4.0", | ||
4533 | "twig/twig": "^1.27|^2.0" | ||
4534 | }, | ||
4535 | "conflict": { | ||
4536 | "sebastian/comparator": "1.2.3" | ||
4537 | }, | ||
4538 | "require-dev": { | ||
4539 | "phpunit/phpunit": "^4.8.35|^6.0", | ||
4540 | "symfony/console": "^2.7|^3.0|^4.0", | ||
4541 | "symfony/expression-language": "^2.7|^3.0|^4.0" | ||
4542 | }, | ||
4543 | "type": "symfony-bundle", | ||
4544 | "extra": { | ||
4545 | "branch-alias": { | ||
4546 | "dev-master": "1.4-dev" | ||
4547 | } | ||
4548 | }, | ||
4549 | "autoload": { | ||
4550 | "psr-4": { | ||
4551 | "Liip\\ThemeBundle\\": "" | ||
4552 | } | ||
4553 | }, | ||
4554 | "notification-url": "https://packagist.org/downloads/", | ||
4555 | "license": [ | ||
4556 | "MIT" | ||
4557 | ], | ||
4558 | "authors": [ | ||
4559 | { | ||
4560 | "name": "Community contributions", | ||
4561 | "homepage": "https://github.com/liip/LiipThemeBundle/contributors" | ||
4562 | }, | ||
4563 | { | ||
4564 | "name": "Liip AG", | ||
4565 | "homepage": "http://www.liip.ch/" | ||
4566 | } | ||
4567 | ], | ||
4568 | "description": "Provides theming support for #Symfony2 Bundles", | ||
4569 | "keywords": [ | ||
4570 | "themes", | ||
4571 | "theming" | ||
4572 | ], | ||
4573 | "time": "2018-10-08T07:20:20+00:00" | ||
4574 | }, | ||
4575 | { | ||
4576 | "name": "masterminds/html5", | ||
4577 | "version": "2.6.0", | ||
4578 | "source": { | ||
4579 | "type": "git", | ||
4580 | "url": "https://github.com/Masterminds/html5-php.git", | ||
4581 | "reference": "c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad" | ||
4582 | }, | ||
4583 | "dist": { | ||
4584 | "type": "zip", | ||
4585 | "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad", | ||
4586 | "reference": "c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad", | ||
4587 | "shasum": "" | ||
4588 | }, | ||
4589 | "require": { | ||
4590 | "ext-ctype": "*", | ||
4591 | "ext-dom": "*", | ||
4592 | "ext-libxml": "*", | ||
4593 | "php": ">=5.3.0" | ||
4594 | }, | ||
4595 | "require-dev": { | ||
4596 | "phpunit/phpunit": "^4.8.35", | ||
4597 | "sami/sami": "~2.0", | ||
4598 | "satooshi/php-coveralls": "1.0.*" | ||
4599 | }, | ||
4600 | "type": "library", | ||
4601 | "extra": { | ||
4602 | "branch-alias": { | ||
4603 | "dev-master": "2.6-dev" | ||
4604 | } | ||
4605 | }, | ||
4606 | "autoload": { | ||
4607 | "psr-4": { | ||
4608 | "Masterminds\\": "src" | ||
4609 | } | ||
4610 | }, | ||
4611 | "notification-url": "https://packagist.org/downloads/", | ||
4612 | "license": [ | ||
4613 | "MIT" | ||
4614 | ], | ||
4615 | "authors": [ | ||
4616 | { | ||
4617 | "name": "Matt Butcher", | ||
4618 | "email": "technosophos@gmail.com" | ||
4619 | }, | ||
4620 | { | ||
4621 | "name": "Asmir Mustafic", | ||
4622 | "email": "goetas@gmail.com" | ||
4623 | }, | ||
4624 | { | ||
4625 | "name": "Matt Farina", | ||
4626 | "email": "matt@mattfarina.com" | ||
4627 | } | ||
4628 | ], | ||
4629 | "description": "An HTML5 parser and serializer.", | ||
4630 | "homepage": "http://masterminds.github.io/html5-php", | ||
4631 | "keywords": [ | ||
4632 | "HTML5", | ||
4633 | "dom", | ||
4634 | "html", | ||
4635 | "parser", | ||
4636 | "querypath", | ||
4637 | "serializer", | ||
4638 | "xml" | ||
4639 | ], | ||
4640 | "time": "2019-03-10T11:41:28+00:00" | ||
4641 | }, | ||
4642 | { | ||
4643 | "name": "mgargano/simplehtmldom", | ||
4644 | "version": "1.5", | ||
4645 | "source": { | ||
4646 | "type": "git", | ||
4647 | "url": "https://github.com/matgargano/simplehtmldom.git", | ||
4648 | "reference": "37fb0d7c1bda45c5a4cf14fdef56c1edf6aa42be" | ||
4649 | }, | ||
4650 | "dist": { | ||
4651 | "type": "zip", | ||
4652 | "url": "https://api.github.com/repos/matgargano/simplehtmldom/zipball/37fb0d7c1bda45c5a4cf14fdef56c1edf6aa42be", | ||
4653 | "reference": "37fb0d7c1bda45c5a4cf14fdef56c1edf6aa42be", | ||
4654 | "shasum": "" | ||
4655 | }, | ||
4656 | "require": { | ||
4657 | "php": ">=5.3.0" | ||
4658 | }, | ||
4659 | "type": "library", | ||
4660 | "autoload": { | ||
4661 | "psr-0": { | ||
4662 | "SimpleHtmlDom": "src/" | ||
4663 | }, | ||
4664 | "files": [ | ||
4665 | "src/simple_html_dom.php" | ||
4666 | ] | ||
4667 | }, | ||
4668 | "notification-url": "https://packagist.org/downloads/", | ||
4669 | "license": [ | ||
4670 | "The MIT License" | ||
4671 | ], | ||
4672 | "authors": [ | ||
4673 | { | ||
4674 | "name": "S.C. Chen", | ||
4675 | "email": "me578022@gmail.com" | ||
4676 | } | ||
4677 | ], | ||
4678 | "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", | ||
4679 | "homepage": "http://simplehtmldom.sourceforge.net/", | ||
4680 | "keywords": [ | ||
4681 | "Simple", | ||
4682 | "dom", | ||
4683 | "html" | ||
4684 | ], | ||
4685 | "time": "2014-01-05T18:17:34+00:00" | ||
4686 | }, | ||
4687 | { | ||
4688 | "name": "michelf/php-markdown", | ||
4689 | "version": "1.8.0", | ||
4690 | "source": { | ||
4691 | "type": "git", | ||
4692 | "url": "https://github.com/michelf/php-markdown.git", | ||
4693 | "reference": "01ab082b355bf188d907b9929cd99b2923053495" | ||
4694 | }, | ||
4695 | "dist": { | ||
4696 | "type": "zip", | ||
4697 | "url": "https://api.github.com/repos/michelf/php-markdown/zipball/01ab082b355bf188d907b9929cd99b2923053495", | ||
4698 | "reference": "01ab082b355bf188d907b9929cd99b2923053495", | ||
4699 | "shasum": "" | ||
4700 | }, | ||
4701 | "require": { | ||
4702 | "php": ">=5.3.0" | ||
4703 | }, | ||
4704 | "type": "library", | ||
4705 | "autoload": { | ||
4706 | "psr-4": { | ||
4707 | "Michelf\\": "Michelf/" | ||
4708 | } | ||
4709 | }, | ||
4710 | "notification-url": "https://packagist.org/downloads/", | ||
4711 | "license": [ | ||
4712 | "BSD-3-Clause" | ||
4713 | ], | ||
4714 | "authors": [ | ||
4715 | { | ||
4716 | "name": "Michel Fortin", | ||
4717 | "email": "michel.fortin@michelf.ca", | ||
4718 | "homepage": "https://michelf.ca/", | ||
4719 | "role": "Developer" | ||
4720 | }, | ||
4721 | { | ||
4722 | "name": "John Gruber", | ||
4723 | "homepage": "https://daringfireball.net/" | ||
4724 | } | ||
4725 | ], | ||
4726 | "description": "PHP Markdown", | ||
4727 | "homepage": "https://michelf.ca/projects/php-markdown/", | ||
4728 | "keywords": [ | ||
4729 | "markdown" | ||
4730 | ], | ||
4731 | "time": "2018-01-15T00:49:33+00:00" | ||
4732 | }, | ||
4733 | { | ||
4734 | "name": "mnapoli/piwik-twig-extension", | ||
4735 | "version": "1.0.0", | ||
4736 | "source": { | ||
4737 | "type": "git", | ||
4738 | "url": "https://github.com/mnapoli/PiwikTwigExtension.git", | ||
4739 | "reference": "5171ab7221830a9d377add03dd60dbe6bd7b331f" | ||
4740 | }, | ||
4741 | "dist": { | ||
4742 | "type": "zip", | ||
4743 | "url": "https://api.github.com/repos/mnapoli/PiwikTwigExtension/zipball/5171ab7221830a9d377add03dd60dbe6bd7b331f", | ||
4744 | "reference": "5171ab7221830a9d377add03dd60dbe6bd7b331f", | ||
4745 | "shasum": "" | ||
4746 | }, | ||
4747 | "require": { | ||
4748 | "php": ">=5.4", | ||
4749 | "twig/twig": "~1.10" | ||
4750 | }, | ||
4751 | "require-dev": { | ||
4752 | "phpunit/phpunit": "~4.0" | ||
4753 | }, | ||
4754 | "type": "library", | ||
4755 | "autoload": { | ||
4756 | "psr-4": { | ||
4757 | "PiwikTwigExtension\\": "src/" | ||
4758 | } | ||
4759 | }, | ||
4760 | "notification-url": "https://packagist.org/downloads/", | ||
4761 | "license": [ | ||
4762 | "MIT" | ||
4763 | ], | ||
4764 | "time": "2014-09-16T06:51:19+00:00" | ||
4765 | }, | ||
4766 | { | ||
4767 | "name": "monolog/monolog", | ||
4768 | "version": "1.24.0", | ||
4769 | "source": { | ||
4770 | "type": "git", | ||
4771 | "url": "https://github.com/Seldaek/monolog.git", | ||
4772 | "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266" | ||
4773 | }, | ||
4774 | "dist": { | ||
4775 | "type": "zip", | ||
4776 | "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266", | ||
4777 | "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266", | ||
4778 | "shasum": "" | ||
4779 | }, | ||
4780 | "require": { | ||
4781 | "php": ">=5.3.0", | ||
4782 | "psr/log": "~1.0" | ||
4783 | }, | ||
4784 | "provide": { | ||
4785 | "psr/log-implementation": "1.0.0" | ||
4786 | }, | ||
4787 | "require-dev": { | ||
4788 | "aws/aws-sdk-php": "^2.4.9 || ^3.0", | ||
4789 | "doctrine/couchdb": "~1.0@dev", | ||
4790 | "graylog2/gelf-php": "~1.0", | ||
4791 | "jakub-onderka/php-parallel-lint": "0.9", | ||
4792 | "php-amqplib/php-amqplib": "~2.4", | ||
4793 | "php-console/php-console": "^3.1.3", | ||
4794 | "phpunit/phpunit": "~4.5", | ||
4795 | "phpunit/phpunit-mock-objects": "2.3.0", | ||
4796 | "ruflin/elastica": ">=0.90 <3.0", | ||
4797 | "sentry/sentry": "^0.13", | ||
4798 | "swiftmailer/swiftmailer": "^5.3|^6.0" | ||
4799 | }, | ||
4800 | "suggest": { | ||
4801 | "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", | ||
4802 | "doctrine/couchdb": "Allow sending log messages to a CouchDB server", | ||
4803 | "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", | ||
4804 | "ext-mongo": "Allow sending log messages to a MongoDB server", | ||
4805 | "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", | ||
4806 | "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", | ||
4807 | "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", | ||
4808 | "php-console/php-console": "Allow sending log messages to Google Chrome", | ||
4809 | "rollbar/rollbar": "Allow sending log messages to Rollbar", | ||
4810 | "ruflin/elastica": "Allow sending log messages to an Elastic Search server", | ||
4811 | "sentry/sentry": "Allow sending log messages to a Sentry server" | ||
4812 | }, | ||
4813 | "type": "library", | ||
4814 | "extra": { | ||
4815 | "branch-alias": { | ||
4816 | "dev-master": "2.0.x-dev" | ||
4817 | } | ||
4818 | }, | ||
4819 | "autoload": { | ||
4820 | "psr-4": { | ||
4821 | "Monolog\\": "src/Monolog" | ||
4822 | } | ||
4823 | }, | ||
4824 | "notification-url": "https://packagist.org/downloads/", | ||
4825 | "license": [ | ||
4826 | "MIT" | ||
4827 | ], | ||
4828 | "authors": [ | ||
4829 | { | ||
4830 | "name": "Jordi Boggiano", | ||
4831 | "email": "j.boggiano@seld.be", | ||
4832 | "homepage": "http://seld.be" | ||
4833 | } | ||
4834 | ], | ||
4835 | "description": "Sends your logs to files, sockets, inboxes, databases and various web services", | ||
4836 | "homepage": "http://github.com/Seldaek/monolog", | ||
4837 | "keywords": [ | ||
4838 | "log", | ||
4839 | "logging", | ||
4840 | "psr-3" | ||
4841 | ], | ||
4842 | "time": "2018-11-05T09:00:11+00:00" | ||
4843 | }, | ||
4844 | { | ||
4845 | "name": "nelmio/api-doc-bundle", | ||
4846 | "version": "2.13.3", | ||
4847 | "target-dir": "Nelmio/ApiDocBundle", | ||
4848 | "source": { | ||
4849 | "type": "git", | ||
4850 | "url": "https://github.com/nelmio/NelmioApiDocBundle.git", | ||
4851 | "reference": "f0a606b6362c363043e01aa079bee2b0b5eb47a2" | ||
4852 | }, | ||
4853 | "dist": { | ||
4854 | "type": "zip", | ||
4855 | "url": "https://api.github.com/repos/nelmio/NelmioApiDocBundle/zipball/f0a606b6362c363043e01aa079bee2b0b5eb47a2", | ||
4856 | "reference": "f0a606b6362c363043e01aa079bee2b0b5eb47a2", | ||
4857 | "shasum": "" | ||
4858 | }, | ||
4859 | "require": { | ||
4860 | "michelf/php-markdown": "~1.4", | ||
4861 | "php": ">=5.4", | ||
4862 | "symfony/console": "~2.3|~3.0|~4.0", | ||
4863 | "symfony/framework-bundle": "~2.3|~3.0|~4.0", | ||
4864 | "symfony/twig-bundle": "~2.3|~3.0|~4.0" | ||
4865 | }, | ||
4866 | "conflict": { | ||
4867 | "jms/serializer": "<0.12", | ||
4868 | "jms/serializer-bundle": "<0.11", | ||
4869 | "symfony/symfony": "~2.7.8", | ||
4870 | "twig/twig": "<1.12" | ||
4871 | }, | ||
4872 | "require-dev": { | ||
4873 | "doctrine/doctrine-bundle": "~1.5", | ||
4874 | "doctrine/orm": "~2.3", | ||
4875 | "dunglas/api-bundle": "~1.0", | ||
4876 | "friendsofsymfony/rest-bundle": "~1.0|~2.0", | ||
4877 | "jms/serializer-bundle": ">=0.11", | ||
4878 | "sensio/framework-extra-bundle": "~3.0", | ||
4879 | "symfony/browser-kit": "~2.3|~3.0|~4.0", | ||
4880 | "symfony/css-selector": "~2.3|~3.0|~4.0", | ||
4881 | "symfony/finder": "~2.3|~3.0|~4.0", | ||
4882 | "symfony/form": "~2.3|~3.0|~4.0", | ||
4883 | "symfony/phpunit-bridge": "~2.7|~3.0|~4.0", | ||
4884 | "symfony/serializer": "~2.7|~3.0|~4.0", | ||
4885 | "symfony/validator": "~2.3|~3.0|~4.0", | ||
4886 | "symfony/yaml": "~2.3|~3.0|~4.0" | ||
4887 | }, | ||
4888 | "suggest": { | ||
4889 | "dunglas/api-bundle": "For making use of resources definitions of DunglasApiBundle.", | ||
4890 | "friendsofsymfony/rest-bundle": "For making use of REST information in the doc.", | ||
4891 | "jms/serializer": "For making use of serializer information in the doc.", | ||
4892 | "symfony/form": "For using form definitions as input.", | ||
4893 | "symfony/validator": "For making use of validator information in the doc." | ||
4894 | }, | ||
4895 | "type": "symfony-bundle", | ||
4896 | "extra": { | ||
4897 | "branch-alias": { | ||
4898 | "dev-2.x": "2.13-dev" | ||
4899 | } | ||
4900 | }, | ||
4901 | "autoload": { | ||
4902 | "psr-0": { | ||
4903 | "Nelmio\\ApiDocBundle": "" | ||
4904 | } | ||
4905 | }, | ||
4906 | "notification-url": "https://packagist.org/downloads/", | ||
4907 | "license": [ | ||
4908 | "MIT" | ||
4909 | ], | ||
4910 | "authors": [ | ||
4911 | { | ||
4912 | "name": "Nelmio", | ||
4913 | "homepage": "http://nelm.io" | ||
4914 | }, | ||
4915 | { | ||
4916 | "name": "Symfony Community", | ||
4917 | "homepage": "https://github.com/nelmio/NelmioApiDocBundle/contributors" | ||
4918 | } | ||
4919 | ], | ||
4920 | "description": "Generates documentation for your REST API from annotations", | ||
4921 | "keywords": [ | ||
4922 | "api", | ||
4923 | "doc", | ||
4924 | "documentation", | ||
4925 | "rest" | ||
4926 | ], | ||
4927 | "time": "2017-12-05T06:14:09+00:00" | ||
4928 | }, | ||
4929 | { | ||
4930 | "name": "nelmio/cors-bundle", | ||
4931 | "version": "1.5.5", | ||
4932 | "source": { | ||
4933 | "type": "git", | ||
4934 | "url": "https://github.com/nelmio/NelmioCorsBundle.git", | ||
4935 | "reference": "adabee944e6fe52ee566caf1770a29355b1e8d83" | ||
4936 | }, | ||
4937 | "dist": { | ||
4938 | "type": "zip", | ||
4939 | "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/adabee944e6fe52ee566caf1770a29355b1e8d83", | ||
4940 | "reference": "adabee944e6fe52ee566caf1770a29355b1e8d83", | ||
4941 | "shasum": "" | ||
4942 | }, | ||
4943 | "require": { | ||
4944 | "symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0" | ||
4945 | }, | ||
4946 | "require-dev": { | ||
4947 | "matthiasnoback/symfony-dependency-injection-test": "^1.0 || ^2.0", | ||
4948 | "mockery/mockery": "^0.9 || ^1.0", | ||
4949 | "symfony/phpunit-bridge": "^2.7 || ^3.0 || ^4.0" | ||
4950 | }, | ||
4951 | "type": "symfony-bundle", | ||
4952 | "extra": { | ||
4953 | "branch-alias": { | ||
4954 | "dev-master": "1.5.x-dev" | ||
4955 | } | ||
4956 | }, | ||
4957 | "autoload": { | ||
4958 | "psr-4": { | ||
4959 | "Nelmio\\CorsBundle\\": "" | ||
4960 | }, | ||
4961 | "exclude-from-classmap": [ | ||
4962 | "/Tests/" | ||
4963 | ] | ||
4964 | }, | ||
4965 | "notification-url": "https://packagist.org/downloads/", | ||
4966 | "license": [ | ||
4967 | "MIT" | ||
4968 | ], | ||
4969 | "authors": [ | ||
4970 | { | ||
4971 | "name": "Nelmio", | ||
4972 | "homepage": "http://nelm.io" | ||
4973 | }, | ||
4974 | { | ||
4975 | "name": "Symfony Community", | ||
4976 | "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors" | ||
4977 | } | ||
4978 | ], | ||
4979 | "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony2 application", | ||
4980 | "keywords": [ | ||
4981 | "api", | ||
4982 | "cors", | ||
4983 | "crossdomain" | ||
4984 | ], | ||
4985 | "time": "2019-02-27T13:13:15+00:00" | ||
4986 | }, | ||
4987 | { | ||
4988 | "name": "ocramius/package-versions", | ||
4989 | "version": "1.4.0", | ||
4990 | "source": { | ||
4991 | "type": "git", | ||
4992 | "url": "https://github.com/Ocramius/PackageVersions.git", | ||
4993 | "reference": "a4d4b60d0e60da2487bd21a2c6ac089f85570dbb" | ||
4994 | }, | ||
4995 | "dist": { | ||
4996 | "type": "zip", | ||
4997 | "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/a4d4b60d0e60da2487bd21a2c6ac089f85570dbb", | ||
4998 | "reference": "a4d4b60d0e60da2487bd21a2c6ac089f85570dbb", | ||
4999 | "shasum": "" | ||
5000 | }, | ||
5001 | "require": { | ||
5002 | "composer-plugin-api": "^1.0.0", | ||
5003 | "php": "^7.1.0" | ||
5004 | }, | ||
5005 | "require-dev": { | ||
5006 | "composer/composer": "^1.6.3", | ||
5007 | "doctrine/coding-standard": "^5.0.1", | ||
5008 | "ext-zip": "*", | ||
5009 | "infection/infection": "^0.7.1", | ||
5010 | "phpunit/phpunit": "^7.0.0" | ||
5011 | }, | ||
5012 | "type": "composer-plugin", | ||
5013 | "extra": { | ||
5014 | "class": "PackageVersions\\Installer", | ||
5015 | "branch-alias": { | ||
5016 | "dev-master": "2.0.x-dev" | ||
5017 | } | ||
5018 | }, | ||
5019 | "autoload": { | ||
5020 | "psr-4": { | ||
5021 | "PackageVersions\\": "src/PackageVersions" | ||
5022 | } | ||
5023 | }, | ||
5024 | "notification-url": "https://packagist.org/downloads/", | ||
5025 | "license": [ | ||
5026 | "MIT" | ||
5027 | ], | ||
5028 | "authors": [ | ||
5029 | { | ||
5030 | "name": "Marco Pivetta", | ||
5031 | "email": "ocramius@gmail.com" | ||
5032 | } | ||
5033 | ], | ||
5034 | "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", | ||
5035 | "time": "2019-02-21T12:16:21+00:00" | ||
5036 | }, | ||
5037 | { | ||
5038 | "name": "ocramius/proxy-manager", | ||
5039 | "version": "2.1.1", | ||
5040 | "source": { | ||
5041 | "type": "git", | ||
5042 | "url": "https://github.com/Ocramius/ProxyManager.git", | ||
5043 | "reference": "e18ac876b2e4819c76349de8f78ccc8ef1554cd7" | ||
5044 | }, | ||
5045 | "dist": { | ||
5046 | "type": "zip", | ||
5047 | "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/e18ac876b2e4819c76349de8f78ccc8ef1554cd7", | ||
5048 | "reference": "e18ac876b2e4819c76349de8f78ccc8ef1554cd7", | ||
5049 | "shasum": "" | ||
5050 | }, | ||
5051 | "require": { | ||
5052 | "ocramius/package-versions": "^1.1.1", | ||
5053 | "php": "^7.1.0", | ||
5054 | "zendframework/zend-code": "^3.1.0" | ||
5055 | }, | ||
5056 | "require-dev": { | ||
5057 | "couscous/couscous": "^1.5.2", | ||
5058 | "ext-phar": "*", | ||
5059 | "humbug/humbug": "dev-master@DEV", | ||
5060 | "nikic/php-parser": "^3.0.4", | ||
5061 | "phpbench/phpbench": "^0.12.2", | ||
5062 | "phpstan/phpstan": "^0.6.4", | ||
5063 | "phpunit/phpunit": "^5.6.4", | ||
5064 | "phpunit/phpunit-mock-objects": "^3.4.1", | ||
5065 | "squizlabs/php_codesniffer": "^2.7.0" | ||
5066 | }, | ||
5067 | "suggest": { | ||
5068 | "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects", | ||
5069 | "zendframework/zend-json": "To have the JsonRpc adapter (Remote Object feature)", | ||
5070 | "zendframework/zend-soap": "To have the Soap adapter (Remote Object feature)", | ||
5071 | "zendframework/zend-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)" | ||
5072 | }, | ||
5073 | "type": "library", | ||
5074 | "extra": { | ||
5075 | "branch-alias": { | ||
5076 | "dev-master": "3.0.x-dev" | ||
5077 | } | ||
5078 | }, | ||
5079 | "autoload": { | ||
5080 | "psr-0": { | ||
5081 | "ProxyManager\\": "src" | ||
5082 | } | ||
5083 | }, | ||
5084 | "notification-url": "https://packagist.org/downloads/", | ||
5085 | "license": [ | ||
5086 | "MIT" | ||
5087 | ], | ||
5088 | "authors": [ | ||
5089 | { | ||
5090 | "name": "Marco Pivetta", | ||
5091 | "email": "ocramius@gmail.com", | ||
5092 | "homepage": "http://ocramius.github.io/" | ||
5093 | } | ||
5094 | ], | ||
5095 | "description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies", | ||
5096 | "homepage": "https://github.com/Ocramius/ProxyManager", | ||
5097 | "keywords": [ | ||
5098 | "aop", | ||
5099 | "lazy loading", | ||
5100 | "proxy", | ||
5101 | "proxy pattern", | ||
5102 | "service proxies" | ||
5103 | ], | ||
5104 | "time": "2017-05-04T11:12:50+00:00" | ||
5105 | }, | ||
5106 | { | ||
5107 | "name": "pagerfanta/pagerfanta", | ||
5108 | "version": "v2.1.2", | ||
5109 | "source": { | ||
5110 | "type": "git", | ||
5111 | "url": "https://github.com/whiteoctober/Pagerfanta.git", | ||
5112 | "reference": "45a85ad426316ae37f2d007022e5b4c95bc3aef4" | ||
5113 | }, | ||
5114 | "dist": { | ||
5115 | "type": "zip", | ||
5116 | "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/45a85ad426316ae37f2d007022e5b4c95bc3aef4", | ||
5117 | "reference": "45a85ad426316ae37f2d007022e5b4c95bc3aef4", | ||
5118 | "shasum": "" | ||
5119 | }, | ||
5120 | "require": { | ||
5121 | "php": "^7.0" | ||
5122 | }, | ||
5123 | "require-dev": { | ||
5124 | "doctrine/orm": "~2.3", | ||
5125 | "doctrine/phpcr-odm": "1.*", | ||
5126 | "jackalope/jackalope-doctrine-dbal": "1.*", | ||
5127 | "jmikola/geojson": "~1.0", | ||
5128 | "mandango/mandango": "~1.0@dev", | ||
5129 | "mandango/mondator": "~1.0@dev", | ||
5130 | "phpunit/phpunit": "^6.5", | ||
5131 | "propel/propel": "~2.0@dev", | ||
5132 | "propel/propel1": "~1.6", | ||
5133 | "ruflin/elastica": "~1.3", | ||
5134 | "solarium/solarium": "~3.1" | ||
5135 | }, | ||
5136 | "suggest": { | ||
5137 | "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.", | ||
5138 | "doctrine/orm": "To use the DoctrineORMAdapter.", | ||
5139 | "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0", | ||
5140 | "mandango/mandango": "To use the MandangoAdapter.", | ||
5141 | "propel/propel": "To use the Propel2Adapter", | ||
5142 | "propel/propel1": "To use the PropelAdapter", | ||
5143 | "solarium/solarium": "To use the SolariumAdapter." | ||
5144 | }, | ||
5145 | "type": "library", | ||
5146 | "extra": { | ||
5147 | "branch-alias": { | ||
5148 | "dev-master": "1.0.x-dev" | ||
5149 | } | ||
5150 | }, | ||
5151 | "autoload": { | ||
5152 | "psr-4": { | ||
5153 | "Pagerfanta\\": "src/Pagerfanta/" | ||
5154 | } | ||
5155 | }, | ||
5156 | "notification-url": "https://packagist.org/downloads/", | ||
5157 | "license": [ | ||
5158 | "MIT" | ||
5159 | ], | ||
5160 | "authors": [ | ||
5161 | { | ||
5162 | "name": "Pablo Díez", | ||
5163 | "email": "pablodip@gmail.com" | ||
5164 | } | ||
5165 | ], | ||
5166 | "description": "Pagination for PHP", | ||
5167 | "keywords": [ | ||
5168 | "page", | ||
5169 | "pagination", | ||
5170 | "paginator", | ||
5171 | "paging" | ||
5172 | ], | ||
5173 | "time": "2019-04-02T08:50:39+00:00" | ||
5174 | }, | ||
5175 | { | ||
5176 | "name": "paragonie/random_compat", | ||
5177 | "version": "v2.0.18", | ||
5178 | "source": { | ||
5179 | "type": "git", | ||
5180 | "url": "https://github.com/paragonie/random_compat.git", | ||
5181 | "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db" | ||
5182 | }, | ||
5183 | "dist": { | ||
5184 | "type": "zip", | ||
5185 | "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db", | ||
5186 | "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db", | ||
5187 | "shasum": "" | ||
5188 | }, | ||
5189 | "require": { | ||
5190 | "php": ">=5.2.0" | ||
5191 | }, | ||
5192 | "require-dev": { | ||
5193 | "phpunit/phpunit": "4.*|5.*" | ||
5194 | }, | ||
5195 | "suggest": { | ||
5196 | "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." | ||
5197 | }, | ||
5198 | "type": "library", | ||
5199 | "autoload": { | ||
5200 | "files": [ | ||
5201 | "lib/random.php" | ||
5202 | ] | ||
5203 | }, | ||
5204 | "notification-url": "https://packagist.org/downloads/", | ||
5205 | "license": [ | ||
5206 | "MIT" | ||
5207 | ], | ||
5208 | "authors": [ | ||
5209 | { | ||
5210 | "name": "Paragon Initiative Enterprises", | ||
5211 | "email": "security@paragonie.com", | ||
5212 | "homepage": "https://paragonie.com" | ||
5213 | } | ||
5214 | ], | ||
5215 | "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", | ||
5216 | "keywords": [ | ||
5217 | "csprng", | ||
5218 | "polyfill", | ||
5219 | "pseudorandom", | ||
5220 | "random" | ||
5221 | ], | ||
5222 | "time": "2019-01-03T20:59:08+00:00" | ||
5223 | }, | ||
5224 | { | ||
5225 | "name": "php-amqplib/php-amqplib", | ||
5226 | "version": "v2.9.2", | ||
5227 | "source": { | ||
5228 | "type": "git", | ||
5229 | "url": "https://github.com/php-amqplib/php-amqplib.git", | ||
5230 | "reference": "76faddcd668dabb8d4f7c00e86b8a9decd781a59" | ||
5231 | }, | ||
5232 | "dist": { | ||
5233 | "type": "zip", | ||
5234 | "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/76faddcd668dabb8d4f7c00e86b8a9decd781a59", | ||
5235 | "reference": "76faddcd668dabb8d4f7c00e86b8a9decd781a59", | ||
5236 | "shasum": "" | ||
5237 | }, | ||
5238 | "require": { | ||
5239 | "ext-bcmath": "*", | ||
5240 | "ext-sockets": "*", | ||
5241 | "php": ">=5.4.0" | ||
5242 | }, | ||
5243 | "replace": { | ||
5244 | "videlalvaro/php-amqplib": "self.version" | ||
5245 | }, | ||
5246 | "require-dev": { | ||
5247 | "ext-curl": "*", | ||
5248 | "nategood/httpful": "^0.2.20", | ||
5249 | "phpdocumentor/phpdocumentor": "^2.9", | ||
5250 | "phpunit/phpunit": "^4.8", | ||
5251 | "squizlabs/php_codesniffer": "^2.5" | ||
5252 | }, | ||
5253 | "type": "library", | ||
5254 | "extra": { | ||
5255 | "branch-alias": { | ||
5256 | "dev-master": "2.8-dev" | ||
5257 | } | ||
5258 | }, | ||
5259 | "autoload": { | ||
5260 | "psr-4": { | ||
5261 | "PhpAmqpLib\\": "PhpAmqpLib/" | ||
5262 | } | ||
5263 | }, | ||
5264 | "notification-url": "https://packagist.org/downloads/", | ||
5265 | "license": [ | ||
5266 | "LGPL-2.1-or-later" | ||
5267 | ], | ||
5268 | "authors": [ | ||
5269 | { | ||
5270 | "name": "Alvaro Videla", | ||
5271 | "role": "Original Maintainer" | ||
5272 | }, | ||
5273 | { | ||
5274 | "name": "John Kelly", | ||
5275 | "email": "johnmkelly86@gmail.com", | ||
5276 | "role": "Maintainer" | ||
5277 | }, | ||
5278 | { | ||
5279 | "name": "Raúl Araya", | ||
5280 | "email": "nubeiro@gmail.com", | ||
5281 | "role": "Maintainer" | ||
5282 | }, | ||
5283 | { | ||
5284 | "name": "Luke Bakken", | ||
5285 | "email": "luke@bakken.io", | ||
5286 | "role": "Maintainer" | ||
5287 | } | ||
5288 | ], | ||
5289 | "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.", | ||
5290 | "homepage": "https://github.com/php-amqplib/php-amqplib/", | ||
5291 | "keywords": [ | ||
5292 | "message", | ||
5293 | "queue", | ||
5294 | "rabbitmq" | ||
5295 | ], | ||
5296 | "time": "2019-04-24T15:36:21+00:00" | ||
5297 | }, | ||
5298 | { | ||
5299 | "name": "php-amqplib/rabbitmq-bundle", | ||
5300 | "version": "v1.14.4", | ||
5301 | "source": { | ||
5302 | "type": "git", | ||
5303 | "url": "https://github.com/php-amqplib/RabbitMqBundle.git", | ||
5304 | "reference": "cf67adaa4e306d8e9cb6855a72d79263b425ded8" | ||
5305 | }, | ||
5306 | "dist": { | ||
5307 | "type": "zip", | ||
5308 | "url": "https://api.github.com/repos/php-amqplib/RabbitMqBundle/zipball/cf67adaa4e306d8e9cb6855a72d79263b425ded8", | ||
5309 | "reference": "cf67adaa4e306d8e9cb6855a72d79263b425ded8", | ||
5310 | "shasum": "" | ||
5311 | }, | ||
5312 | "require": { | ||
5313 | "php": "^5.3.9|^7.0", | ||
5314 | "php-amqplib/php-amqplib": "^2.6", | ||
5315 | "psr/log": "^1.0", | ||
5316 | "symfony/config": "^2.7|^3.0|^4.0", | ||
5317 | "symfony/console": "^2.7|^3.0|^4.0", | ||
5318 | "symfony/dependency-injection": "^2.7|^3.0|^4.0", | ||
5319 | "symfony/event-dispatcher": "^2.7|^3.0|^4.0", | ||
5320 | "symfony/yaml": "^2.7|^3.0|^4.0" | ||
5321 | }, | ||
5322 | "replace": { | ||
5323 | "oldsound/rabbitmq-bundle": "self.version" | ||
5324 | }, | ||
5325 | "require-dev": { | ||
5326 | "phpunit/phpunit": "^4.8.35|^5.4.3", | ||
5327 | "symfony/debug": "^2.7|^3.0|^4.0", | ||
5328 | "symfony/serializer": "^2.7|^3.0|^4.0" | ||
5329 | }, | ||
5330 | "suggest": { | ||
5331 | "symfony/framework-bundle": "To use this lib as a full Symfony Bundle and to use the profiler data collector" | ||
5332 | }, | ||
5333 | "type": "symfony-bundle", | ||
5334 | "extra": { | ||
5335 | "branch-alias": { | ||
5336 | "dev-master": "1.10.x-dev" | ||
5337 | } | ||
5338 | }, | ||
5339 | "autoload": { | ||
5340 | "psr-4": { | ||
5341 | "OldSound\\RabbitMqBundle\\": "" | ||
5342 | }, | ||
5343 | "exclude-from-classmap": [ | ||
5344 | "/Tests/" | ||
5345 | ] | ||
5346 | }, | ||
5347 | "notification-url": "https://packagist.org/downloads/", | ||
5348 | "license": [ | ||
5349 | "MIT" | ||
5350 | ], | ||
5351 | "authors": [ | ||
5352 | { | ||
5353 | "name": "Alvaro Videla" | ||
5354 | } | ||
5355 | ], | ||
5356 | "description": "Integrates php-amqplib with Symfony & RabbitMq. Formerly oldsound/rabbitmq-bundle.", | ||
5357 | "keywords": [ | ||
5358 | "AMQP", | ||
5359 | "Symfony2", | ||
5360 | "message", | ||
5361 | "queue", | ||
5362 | "rabbitmq", | ||
5363 | "symfony", | ||
5364 | "symfony3", | ||
5365 | "symfony4" | ||
5366 | ], | ||
5367 | "time": "2018-05-02T13:12:32+00:00" | ||
5368 | }, | ||
5369 | { | ||
5370 | "name": "php-http/client-common", | ||
5371 | "version": "2.0.0", | ||
5372 | "source": { | ||
5373 | "type": "git", | ||
5374 | "url": "https://github.com/php-http/client-common.git", | ||
5375 | "reference": "2b8aa3c4910afc21146a9c8f96adb266e869517a" | ||
5376 | }, | ||
5377 | "dist": { | ||
5378 | "type": "zip", | ||
5379 | "url": "https://api.github.com/repos/php-http/client-common/zipball/2b8aa3c4910afc21146a9c8f96adb266e869517a", | ||
5380 | "reference": "2b8aa3c4910afc21146a9c8f96adb266e869517a", | ||
5381 | "shasum": "" | ||
5382 | }, | ||
5383 | "require": { | ||
5384 | "php": "^7.1", | ||
5385 | "php-http/httplug": "^2.0", | ||
5386 | "php-http/message": "^1.6", | ||
5387 | "php-http/message-factory": "^1.0", | ||
5388 | "symfony/options-resolver": " ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1" | ||
5389 | }, | ||
5390 | "require-dev": { | ||
5391 | "doctrine/instantiator": "^1.1", | ||
5392 | "guzzlehttp/psr7": "^1.4", | ||
5393 | "phpspec/phpspec": "^5.1", | ||
5394 | "phpspec/prophecy": "^1.8", | ||
5395 | "sebastian/comparator": "^3.0" | ||
5396 | }, | ||
5397 | "suggest": { | ||
5398 | "ext-json": "To detect JSON responses with the ContentTypePlugin", | ||
5399 | "ext-libxml": "To detect XML responses with the ContentTypePlugin", | ||
5400 | "php-http/cache-plugin": "PSR-6 Cache plugin", | ||
5401 | "php-http/logger-plugin": "PSR-3 Logger plugin", | ||
5402 | "php-http/stopwatch-plugin": "Symfony Stopwatch plugin" | ||
5403 | }, | ||
5404 | "type": "library", | ||
5405 | "extra": { | ||
5406 | "branch-alias": { | ||
5407 | "dev-master": "2.0.x-dev" | ||
5408 | } | ||
5409 | }, | ||
5410 | "autoload": { | ||
5411 | "psr-4": { | ||
5412 | "Http\\Client\\Common\\": "src/" | ||
5413 | } | ||
5414 | }, | ||
5415 | "notification-url": "https://packagist.org/downloads/", | ||
5416 | "license": [ | ||
5417 | "MIT" | ||
5418 | ], | ||
5419 | "authors": [ | ||
5420 | { | ||
5421 | "name": "Márk Sági-Kazár", | ||
5422 | "email": "mark.sagikazar@gmail.com" | ||
5423 | } | ||
5424 | ], | ||
5425 | "description": "Common HTTP Client implementations and tools for HTTPlug", | ||
5426 | "homepage": "http://httplug.io", | ||
5427 | "keywords": [ | ||
5428 | "client", | ||
5429 | "common", | ||
5430 | "http", | ||
5431 | "httplug" | ||
5432 | ], | ||
5433 | "time": "2019-02-03T16:49:09+00:00" | ||
5434 | }, | ||
5435 | { | ||
5436 | "name": "php-http/discovery", | ||
5437 | "version": "1.6.1", | ||
5438 | "source": { | ||
5439 | "type": "git", | ||
5440 | "url": "https://github.com/php-http/discovery.git", | ||
5441 | "reference": "684855f2c2e9d0a61868b8f8d6bd0295c8a4b651" | ||
5442 | }, | ||
5443 | "dist": { | ||
5444 | "type": "zip", | ||
5445 | "url": "https://api.github.com/repos/php-http/discovery/zipball/684855f2c2e9d0a61868b8f8d6bd0295c8a4b651", | ||
5446 | "reference": "684855f2c2e9d0a61868b8f8d6bd0295c8a4b651", | ||
5447 | "shasum": "" | ||
5448 | }, | ||
5449 | "require": { | ||
5450 | "php": "^5.5 || ^7.0" | ||
5451 | }, | ||
5452 | "conflict": { | ||
5453 | "nyholm/psr7": "<1.0" | ||
5454 | }, | ||
5455 | "require-dev": { | ||
5456 | "php-http/httplug": "^1.0 || ^2.0", | ||
5457 | "php-http/message-factory": "^1.0", | ||
5458 | "phpspec/phpspec": "^2.4", | ||
5459 | "puli/composer-plugin": "1.0.0-beta10" | ||
5460 | }, | ||
5461 | "suggest": { | ||
5462 | "php-http/message": "Allow to use Guzzle, Diactoros or Slim Framework factories", | ||
5463 | "puli/composer-plugin": "Sets up Puli which is recommended for Discovery to work. Check http://docs.php-http.org/en/latest/discovery.html for more details." | ||
5464 | }, | ||
5465 | "type": "library", | ||
5466 | "extra": { | ||
5467 | "branch-alias": { | ||
5468 | "dev-master": "1.5-dev" | ||
5469 | } | ||
5470 | }, | ||
5471 | "autoload": { | ||
5472 | "psr-4": { | ||
5473 | "Http\\Discovery\\": "src/" | ||
5474 | } | ||
5475 | }, | ||
5476 | "notification-url": "https://packagist.org/downloads/", | ||
5477 | "license": [ | ||
5478 | "MIT" | ||
5479 | ], | ||
5480 | "authors": [ | ||
5481 | { | ||
5482 | "name": "Márk Sági-Kazár", | ||
5483 | "email": "mark.sagikazar@gmail.com" | ||
5484 | } | ||
5485 | ], | ||
5486 | "description": "Finds installed HTTPlug implementations and PSR-7 message factories", | ||
5487 | "homepage": "http://php-http.org", | ||
5488 | "keywords": [ | ||
5489 | "adapter", | ||
5490 | "client", | ||
5491 | "discovery", | ||
5492 | "factory", | ||
5493 | "http", | ||
5494 | "message", | ||
5495 | "psr7" | ||
5496 | ], | ||
5497 | "time": "2019-02-23T07:42:53+00:00" | ||
5498 | }, | ||
5499 | { | ||
5500 | "name": "php-http/guzzle5-adapter", | ||
5501 | "version": "2.0.0", | ||
5502 | "source": { | ||
5503 | "type": "git", | ||
5504 | "url": "https://github.com/php-http/guzzle5-adapter.git", | ||
5505 | "reference": "cce48360b1f8a3467bd94e853e6107aa4532008e" | ||
5506 | }, | ||
5507 | "dist": { | ||
5508 | "type": "zip", | ||
5509 | "url": "https://api.github.com/repos/php-http/guzzle5-adapter/zipball/cce48360b1f8a3467bd94e853e6107aa4532008e", | ||
5510 | "reference": "cce48360b1f8a3467bd94e853e6107aa4532008e", | ||
5511 | "shasum": "" | ||
5512 | }, | ||
5513 | "require": { | ||
5514 | "guzzlehttp/guzzle": "^5.1", | ||
5515 | "php": "^7.0", | ||
5516 | "php-http/discovery": "^1.0", | ||
5517 | "php-http/httplug": "^2.0" | ||
5518 | }, | ||
5519 | "provide": { | ||
5520 | "php-http/client-implementation": "1.0", | ||
5521 | "psr/http-client-implementation": "1.0" | ||
5522 | }, | ||
5523 | "require-dev": { | ||
5524 | "ext-curl": "*", | ||
5525 | "guzzlehttp/ringphp": "^1.1", | ||
5526 | "php-http/client-integration-tests": "^2.0", | ||
5527 | "phpunit/phpunit": "^6.0 || ^7.0" | ||
5528 | }, | ||
5529 | "type": "library", | ||
5530 | "extra": { | ||
5531 | "branch-alias": { | ||
5532 | "dev-master": "2.0-dev" | ||
5533 | } | ||
5534 | }, | ||
5535 | "autoload": { | ||
5536 | "psr-4": { | ||
5537 | "Http\\Adapter\\Guzzle5\\": "src/" | ||
5538 | } | ||
5539 | }, | ||
5540 | "notification-url": "https://packagist.org/downloads/", | ||
5541 | "license": [ | ||
5542 | "MIT" | ||
5543 | ], | ||
5544 | "authors": [ | ||
5545 | { | ||
5546 | "name": "Eric GELOEN", | ||
5547 | "email": "geloen.eric@gmail.com" | ||
5548 | }, | ||
5549 | { | ||
5550 | "name": "Márk Sági-Kazár", | ||
5551 | "email": "mark.sagikazar@gmail.com" | ||
5552 | } | ||
5553 | ], | ||
5554 | "description": "Guzzle 5 HTTP Adapter", | ||
5555 | "homepage": "http://httplug.io", | ||
5556 | "keywords": [ | ||
5557 | "Guzzle", | ||
5558 | "http" | ||
5559 | ], | ||
5560 | "time": "2019-02-05T12:28:45+00:00" | ||
5561 | }, | ||
5562 | { | ||
5563 | "name": "php-http/httplug", | ||
5564 | "version": "v2.0.0", | ||
5565 | "source": { | ||
5566 | "type": "git", | ||
5567 | "url": "https://github.com/php-http/httplug.git", | ||
5568 | "reference": "b3842537338c949f2469557ef4ad4bdc47b58603" | ||
5569 | }, | ||
5570 | "dist": { | ||
5571 | "type": "zip", | ||
5572 | "url": "https://api.github.com/repos/php-http/httplug/zipball/b3842537338c949f2469557ef4ad4bdc47b58603", | ||
5573 | "reference": "b3842537338c949f2469557ef4ad4bdc47b58603", | ||
5574 | "shasum": "" | ||
5575 | }, | ||
5576 | "require": { | ||
5577 | "php": "^7.0", | ||
5578 | "php-http/promise": "^1.0", | ||
5579 | "psr/http-client": "^1.0", | ||
5580 | "psr/http-message": "^1.0" | ||
5581 | }, | ||
5582 | "require-dev": { | ||
5583 | "henrikbjorn/phpspec-code-coverage": "^1.0", | ||
5584 | "phpspec/phpspec": "^2.4" | ||
5585 | }, | ||
5586 | "type": "library", | ||
5587 | "extra": { | ||
5588 | "branch-alias": { | ||
5589 | "dev-master": "2.0.x-dev" | ||
5590 | } | ||
5591 | }, | ||
5592 | "autoload": { | ||
5593 | "psr-4": { | ||
5594 | "Http\\Client\\": "src/" | ||
5595 | } | ||
5596 | }, | ||
5597 | "notification-url": "https://packagist.org/downloads/", | ||
5598 | "license": [ | ||
5599 | "MIT" | ||
5600 | ], | ||
5601 | "authors": [ | ||
5602 | { | ||
5603 | "name": "Eric GELOEN", | ||
5604 | "email": "geloen.eric@gmail.com" | ||
5605 | }, | ||
5606 | { | ||
5607 | "name": "Márk Sági-Kazár", | ||
5608 | "email": "mark.sagikazar@gmail.com" | ||
5609 | } | ||
5610 | ], | ||
5611 | "description": "HTTPlug, the HTTP client abstraction for PHP", | ||
5612 | "homepage": "http://httplug.io", | ||
5613 | "keywords": [ | ||
5614 | "client", | ||
5615 | "http" | ||
5616 | ], | ||
5617 | "time": "2018-10-31T09:14:44+00:00" | ||
5618 | }, | ||
5619 | { | ||
5620 | "name": "php-http/httplug-bundle", | ||
5621 | "version": "1.15.2", | ||
5622 | "source": { | ||
5623 | "type": "git", | ||
5624 | "url": "https://github.com/php-http/HttplugBundle.git", | ||
5625 | "reference": "35d281804a90f0359aa9da5b5b1f55c18aeafaf8" | ||
5626 | }, | ||
5627 | "dist": { | ||
5628 | "type": "zip", | ||
5629 | "url": "https://api.github.com/repos/php-http/HttplugBundle/zipball/35d281804a90f0359aa9da5b5b1f55c18aeafaf8", | ||
5630 | "reference": "35d281804a90f0359aa9da5b5b1f55c18aeafaf8", | ||
5631 | "shasum": "" | ||
5632 | }, | ||
5633 | "require": { | ||
5634 | "php": "^5.5 || ^7.0", | ||
5635 | "php-http/client-common": "^1.9 || ^2.0", | ||
5636 | "php-http/client-implementation": "^1.0", | ||
5637 | "php-http/discovery": "^1.0", | ||
5638 | "php-http/httplug": "^1.0 || ^2.0", | ||
5639 | "php-http/logger-plugin": "^1.1", | ||
5640 | "php-http/message": "^1.4", | ||
5641 | "php-http/message-factory": "^1.0.2", | ||
5642 | "php-http/stopwatch-plugin": "^1.2", | ||
5643 | "psr/http-message": "^1.0", | ||
5644 | "symfony/config": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1", | ||
5645 | "symfony/dependency-injection": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1", | ||
5646 | "symfony/event-dispatcher": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1", | ||
5647 | "symfony/http-kernel": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1", | ||
5648 | "symfony/options-resolver": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1" | ||
5649 | }, | ||
5650 | "conflict": { | ||
5651 | "php-http/guzzle6-adapter": "<1.1" | ||
5652 | }, | ||
5653 | "require-dev": { | ||
5654 | "guzzlehttp/psr7": "^1.0", | ||
5655 | "matthiasnoback/symfony-dependency-injection-test": "^1.1 || ^2.3", | ||
5656 | "nyholm/nsa": "^1.1", | ||
5657 | "php-http/cache-plugin": "^1.6", | ||
5658 | "php-http/guzzle6-adapter": "^1.1.1 || ^2.0.1", | ||
5659 | "php-http/mock-client": "^1.2", | ||
5660 | "php-http/promise": "^1.0", | ||
5661 | "polishsymfonycommunity/symfony-mocker-container": "^1.0", | ||
5662 | "symfony/browser-kit": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1", | ||
5663 | "symfony/cache": "^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1", | ||
5664 | "symfony/dom-crawler": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1", | ||
5665 | "symfony/framework-bundle": "^2.8.1 || ^3.0.1 || ^4.0", | ||
5666 | "symfony/http-foundation": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1", | ||
5667 | "symfony/phpunit-bridge": "^3.4 || ^4.2", | ||
5668 | "symfony/stopwatch": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1", | ||
5669 | "symfony/twig-bundle": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1", | ||
5670 | "symfony/web-profiler-bundle": "^2.8.49 || ^3.0.9 || ^3.1.10 || ^3.2.14 || ^3.3.18 || ^3.4.20 || ^4.0.15 || ^4.1.9 || ^4.2.1", | ||
5671 | "twig/twig": "^1.36 || ^2.6" | ||
5672 | }, | ||
5673 | "suggest": { | ||
5674 | "php-http/cache-plugin": "To configure clients that cache responses", | ||
5675 | "php-http/mock-client": "Add this to your require-dev section to mock HTTP responses easily", | ||
5676 | "twig/twig": "Add this to your require-dev section when using the WebProfilerBundle" | ||
5677 | }, | ||
5678 | "type": "symfony-bundle", | ||
5679 | "extra": { | ||
5680 | "branch-alias": { | ||
5681 | "dev-master": "1.x-dev" | ||
5682 | } | ||
5683 | }, | ||
5684 | "autoload": { | ||
5685 | "psr-4": { | ||
5686 | "Http\\HttplugBundle\\": "src/" | ||
5687 | }, | ||
5688 | "exclude-from-classmap": [ | ||
5689 | "/Tests/Resources/MyPsr18TestClient.php" | ||
5690 | ] | ||
5691 | }, | ||
5692 | "notification-url": "https://packagist.org/downloads/", | ||
5693 | "license": [ | ||
5694 | "MIT" | ||
5695 | ], | ||
5696 | "authors": [ | ||
5697 | { | ||
5698 | "name": "David Buchmann", | ||
5699 | "email": "mail@davidbu.ch" | ||
5700 | }, | ||
5701 | { | ||
5702 | "name": "Tobias Nyholm", | ||
5703 | "email": "tobias.nyholm@gmail.com" | ||
5704 | } | ||
5705 | ], | ||
5706 | "description": "Symfony integration for HTTPlug", | ||
5707 | "homepage": "http://httplug.io", | ||
5708 | "keywords": [ | ||
5709 | "adapter", | ||
5710 | "bundle", | ||
5711 | "discovery", | ||
5712 | "factory", | ||
5713 | "http", | ||
5714 | "httplug", | ||
5715 | "message", | ||
5716 | "php-http" | ||
5717 | ], | ||
5718 | "time": "2019-04-18T14:01:25+00:00" | ||
5719 | }, | ||
5720 | { | ||
5721 | "name": "php-http/logger-plugin", | ||
5722 | "version": "1.1.0", | ||
5723 | "source": { | ||
5724 | "type": "git", | ||
5725 | "url": "https://github.com/php-http/logger-plugin.git", | ||
5726 | "reference": "c1c6e90717ce350319b7b8bc489f1db35bb523fd" | ||
5727 | }, | ||
5728 | "dist": { | ||
5729 | "type": "zip", | ||
5730 | "url": "https://api.github.com/repos/php-http/logger-plugin/zipball/c1c6e90717ce350319b7b8bc489f1db35bb523fd", | ||
5731 | "reference": "c1c6e90717ce350319b7b8bc489f1db35bb523fd", | ||
5732 | "shasum": "" | ||
5733 | }, | ||
5734 | "require": { | ||
5735 | "php": "^5.4 || ^7.0", | ||
5736 | "php-http/client-common": "^1.9 || ^2.0", | ||
5737 | "php-http/message": "^1.0", | ||
5738 | "psr/log": "^1.0" | ||
5739 | }, | ||
5740 | "require-dev": { | ||
5741 | "henrikbjorn/phpspec-code-coverage": "^1.0", | ||
5742 | "phpspec/phpspec": "^2.5" | ||
5743 | }, | ||
5744 | "type": "library", | ||
5745 | "extra": { | ||
5746 | "branch-alias": { | ||
5747 | "dev-master": "1.1-dev" | ||
5748 | } | ||
5749 | }, | ||
5750 | "autoload": { | ||
5751 | "psr-4": { | ||
5752 | "Http\\Client\\Common\\Plugin\\": "src/" | ||
5753 | } | ||
5754 | }, | ||
5755 | "notification-url": "https://packagist.org/downloads/", | ||
5756 | "license": [ | ||
5757 | "MIT" | ||
5758 | ], | ||
5759 | "authors": [ | ||
5760 | { | ||
5761 | "name": "Márk Sági-Kazár", | ||
5762 | "email": "mark.sagikazar@gmail.com" | ||
5763 | } | ||
5764 | ], | ||
5765 | "description": "PSR-3 Logger plugin for HTTPlug", | ||
5766 | "homepage": "http://httplug.io", | ||
5767 | "keywords": [ | ||
5768 | "http", | ||
5769 | "httplug", | ||
5770 | "logger", | ||
5771 | "plugin" | ||
5772 | ], | ||
5773 | "time": "2019-01-30T11:48:21+00:00" | ||
5774 | }, | ||
5775 | { | ||
5776 | "name": "php-http/message", | ||
5777 | "version": "1.7.2", | ||
5778 | "source": { | ||
5779 | "type": "git", | ||
5780 | "url": "https://github.com/php-http/message.git", | ||
5781 | "reference": "b159ffe570dffd335e22ef0b91a946eacb182fa1" | ||
5782 | }, | ||
5783 | "dist": { | ||
5784 | "type": "zip", | ||
5785 | "url": "https://api.github.com/repos/php-http/message/zipball/b159ffe570dffd335e22ef0b91a946eacb182fa1", | ||
5786 | "reference": "b159ffe570dffd335e22ef0b91a946eacb182fa1", | ||
5787 | "shasum": "" | ||
5788 | }, | ||
5789 | "require": { | ||
5790 | "clue/stream-filter": "^1.4", | ||
5791 | "php": "^5.4 || ^7.0", | ||
5792 | "php-http/message-factory": "^1.0.2", | ||
5793 | "psr/http-message": "^1.0" | ||
5794 | }, | ||
5795 | "provide": { | ||
5796 | "php-http/message-factory-implementation": "1.0" | ||
5797 | }, | ||
5798 | "require-dev": { | ||
5799 | "akeneo/phpspec-skip-example-extension": "^1.0", | ||
5800 | "coduo/phpspec-data-provider-extension": "^1.0", | ||
5801 | "ext-zlib": "*", | ||
5802 | "guzzlehttp/psr7": "^1.0", | ||
5803 | "henrikbjorn/phpspec-code-coverage": "^1.0", | ||
5804 | "phpspec/phpspec": "^2.4", | ||
5805 | "slim/slim": "^3.0", | ||
5806 | "zendframework/zend-diactoros": "^1.0" | ||
5807 | }, | ||
5808 | "suggest": { | ||
5809 | "ext-zlib": "Used with compressor/decompressor streams", | ||
5810 | "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories", | ||
5811 | "slim/slim": "Used with Slim Framework PSR-7 implementation", | ||
5812 | "zendframework/zend-diactoros": "Used with Diactoros Factories" | ||
5813 | }, | ||
5814 | "type": "library", | ||
5815 | "extra": { | ||
5816 | "branch-alias": { | ||
5817 | "dev-master": "1.6-dev" | ||
5818 | } | ||
5819 | }, | ||
5820 | "autoload": { | ||
5821 | "psr-4": { | ||
5822 | "Http\\Message\\": "src/" | ||
5823 | }, | ||
5824 | "files": [ | ||
5825 | "src/filters.php" | ||
5826 | ] | ||
5827 | }, | ||
5828 | "notification-url": "https://packagist.org/downloads/", | ||
5829 | "license": [ | ||
5830 | "MIT" | ||
5831 | ], | ||
5832 | "authors": [ | ||
5833 | { | ||
5834 | "name": "Márk Sági-Kazár", | ||
5835 | "email": "mark.sagikazar@gmail.com" | ||
5836 | } | ||
5837 | ], | ||
5838 | "description": "HTTP Message related tools", | ||
5839 | "homepage": "http://php-http.org", | ||
5840 | "keywords": [ | ||
5841 | "http", | ||
5842 | "message", | ||
5843 | "psr-7" | ||
5844 | ], | ||
5845 | "time": "2018-11-01T09:32:41+00:00" | ||
5846 | }, | ||
5847 | { | ||
5848 | "name": "php-http/message-factory", | ||
5849 | "version": "v1.0.2", | ||
5850 | "source": { | ||
5851 | "type": "git", | ||
5852 | "url": "https://github.com/php-http/message-factory.git", | ||
5853 | "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1" | ||
5854 | }, | ||
5855 | "dist": { | ||
5856 | "type": "zip", | ||
5857 | "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1", | ||
5858 | "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1", | ||
5859 | "shasum": "" | ||
5860 | }, | ||
5861 | "require": { | ||
5862 | "php": ">=5.4", | ||
5863 | "psr/http-message": "^1.0" | ||
5864 | }, | ||
5865 | "type": "library", | ||
5866 | "extra": { | ||
5867 | "branch-alias": { | ||
5868 | "dev-master": "1.0-dev" | ||
5869 | } | ||
5870 | }, | ||
5871 | "autoload": { | ||
5872 | "psr-4": { | ||
5873 | "Http\\Message\\": "src/" | ||
5874 | } | ||
5875 | }, | ||
5876 | "notification-url": "https://packagist.org/downloads/", | ||
5877 | "license": [ | ||
5878 | "MIT" | ||
5879 | ], | ||
5880 | "authors": [ | ||
5881 | { | ||
5882 | "name": "Márk Sági-Kazár", | ||
5883 | "email": "mark.sagikazar@gmail.com" | ||
5884 | } | ||
5885 | ], | ||
5886 | "description": "Factory interfaces for PSR-7 HTTP Message", | ||
5887 | "homepage": "http://php-http.org", | ||
5888 | "keywords": [ | ||
5889 | "factory", | ||
5890 | "http", | ||
5891 | "message", | ||
5892 | "stream", | ||
5893 | "uri" | ||
5894 | ], | ||
5895 | "time": "2015-12-19T14:08:53+00:00" | ||
5896 | }, | ||
5897 | { | ||
5898 | "name": "php-http/promise", | ||
5899 | "version": "v1.0.0", | ||
5900 | "source": { | ||
5901 | "type": "git", | ||
5902 | "url": "https://github.com/php-http/promise.git", | ||
5903 | "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980" | ||
5904 | }, | ||
5905 | "dist": { | ||
5906 | "type": "zip", | ||
5907 | "url": "https://api.github.com/repos/php-http/promise/zipball/dc494cdc9d7160b9a09bd5573272195242ce7980", | ||
5908 | "reference": "dc494cdc9d7160b9a09bd5573272195242ce7980", | ||
5909 | "shasum": "" | ||
5910 | }, | ||
5911 | "require-dev": { | ||
5912 | "henrikbjorn/phpspec-code-coverage": "^1.0", | ||
5913 | "phpspec/phpspec": "^2.4" | ||
5914 | }, | ||
5915 | "type": "library", | ||
5916 | "extra": { | ||
5917 | "branch-alias": { | ||
5918 | "dev-master": "1.1-dev" | ||
5919 | } | ||
5920 | }, | ||
5921 | "autoload": { | ||
5922 | "psr-4": { | ||
5923 | "Http\\Promise\\": "src/" | ||
5924 | } | ||
5925 | }, | ||
5926 | "notification-url": "https://packagist.org/downloads/", | ||
5927 | "license": [ | ||
5928 | "MIT" | ||
5929 | ], | ||
5930 | "authors": [ | ||
5931 | { | ||
5932 | "name": "Márk Sági-Kazár", | ||
5933 | "email": "mark.sagikazar@gmail.com" | ||
5934 | }, | ||
5935 | { | ||
5936 | "name": "Joel Wurtz", | ||
5937 | "email": "joel.wurtz@gmail.com" | ||
5938 | } | ||
5939 | ], | ||
5940 | "description": "Promise used for asynchronous HTTP requests", | ||
5941 | "homepage": "http://httplug.io", | ||
5942 | "keywords": [ | ||
5943 | "promise" | ||
5944 | ], | ||
5945 | "time": "2016-01-26T13:27:02+00:00" | ||
5946 | }, | ||
5947 | { | ||
5948 | "name": "php-http/stopwatch-plugin", | ||
5949 | "version": "1.2.0", | ||
5950 | "source": { | ||
5951 | "type": "git", | ||
5952 | "url": "https://github.com/php-http/stopwatch-plugin.git", | ||
5953 | "reference": "520419dd18755a1e7b29077e677fbeb16b6629e7" | ||
5954 | }, | ||
5955 | "dist": { | ||
5956 | "type": "zip", | ||
5957 | "url": "https://api.github.com/repos/php-http/stopwatch-plugin/zipball/520419dd18755a1e7b29077e677fbeb16b6629e7", | ||
5958 | "reference": "520419dd18755a1e7b29077e677fbeb16b6629e7", | ||
5959 | "shasum": "" | ||
5960 | }, | ||
5961 | "require": { | ||
5962 | "php": "^5.4 || ^7.0", | ||
5963 | "php-http/client-common": "^1.9 || ^2.0", | ||
5964 | "symfony/stopwatch": "^2.7 || ^3.0 || ^4.0" | ||
5965 | }, | ||
5966 | "require-dev": { | ||
5967 | "phpspec/phpspec": "^2.5 || ^3.0 || ^4.0" | ||
5968 | }, | ||
5969 | "type": "library", | ||
5970 | "extra": { | ||
5971 | "branch-alias": { | ||
5972 | "dev-master": "1.2-dev" | ||
5973 | } | ||
5974 | }, | ||
5975 | "autoload": { | ||
5976 | "psr-4": { | ||
5977 | "Http\\Client\\Common\\Plugin\\": "src/" | ||
5978 | } | ||
5979 | }, | ||
5980 | "notification-url": "https://packagist.org/downloads/", | ||
5981 | "license": [ | ||
5982 | "MIT" | ||
5983 | ], | ||
5984 | "authors": [ | ||
5985 | { | ||
5986 | "name": "Márk Sági-Kazár", | ||
5987 | "email": "mark.sagikazar@gmail.com" | ||
5988 | } | ||
5989 | ], | ||
5990 | "description": "Symfony Stopwatch plugin for HTTPlug", | ||
5991 | "homepage": "http://httplug.io", | ||
5992 | "keywords": [ | ||
5993 | "http", | ||
5994 | "httplug", | ||
5995 | "plugin", | ||
5996 | "stopwatch" | ||
5997 | ], | ||
5998 | "time": "2019-01-30T12:01:37+00:00" | ||
5999 | }, | ||
6000 | { | ||
6001 | "name": "phpcollection/phpcollection", | ||
6002 | "version": "0.5.0", | ||
6003 | "source": { | ||
6004 | "type": "git", | ||
6005 | "url": "https://github.com/schmittjoh/php-collection.git", | ||
6006 | "reference": "f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6" | ||
6007 | }, | ||
6008 | "dist": { | ||
6009 | "type": "zip", | ||
6010 | "url": "https://api.github.com/repos/schmittjoh/php-collection/zipball/f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6", | ||
6011 | "reference": "f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6", | ||
6012 | "shasum": "" | ||
6013 | }, | ||
6014 | "require": { | ||
6015 | "phpoption/phpoption": "1.*" | ||
6016 | }, | ||
6017 | "type": "library", | ||
6018 | "extra": { | ||
6019 | "branch-alias": { | ||
6020 | "dev-master": "0.4-dev" | ||
6021 | } | ||
6022 | }, | ||
6023 | "autoload": { | ||
6024 | "psr-0": { | ||
6025 | "PhpCollection": "src/" | ||
6026 | } | ||
6027 | }, | ||
6028 | "notification-url": "https://packagist.org/downloads/", | ||
6029 | "license": [ | ||
6030 | "Apache2" | ||
6031 | ], | ||
6032 | "authors": [ | ||
6033 | { | ||
6034 | "name": "Johannes M. Schmitt", | ||
6035 | "email": "schmittjoh@gmail.com" | ||
6036 | } | ||
6037 | ], | ||
6038 | "description": "General-Purpose Collection Library for PHP", | ||
6039 | "keywords": [ | ||
6040 | "collection", | ||
6041 | "list", | ||
6042 | "map", | ||
6043 | "sequence", | ||
6044 | "set" | ||
6045 | ], | ||
6046 | "time": "2015-05-17T12:39:23+00:00" | ||
6047 | }, | ||
6048 | { | ||
6049 | "name": "phpoption/phpoption", | ||
6050 | "version": "1.5.0", | ||
6051 | "source": { | ||
6052 | "type": "git", | ||
6053 | "url": "https://github.com/schmittjoh/php-option.git", | ||
6054 | "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed" | ||
6055 | }, | ||
6056 | "dist": { | ||
6057 | "type": "zip", | ||
6058 | "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed", | ||
6059 | "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed", | ||
6060 | "shasum": "" | ||
6061 | }, | ||
6062 | "require": { | ||
6063 | "php": ">=5.3.0" | ||
6064 | }, | ||
6065 | "require-dev": { | ||
6066 | "phpunit/phpunit": "4.7.*" | ||
6067 | }, | ||
6068 | "type": "library", | ||
6069 | "extra": { | ||
6070 | "branch-alias": { | ||
6071 | "dev-master": "1.3-dev" | ||
6072 | } | ||
6073 | }, | ||
6074 | "autoload": { | ||
6075 | "psr-0": { | ||
6076 | "PhpOption\\": "src/" | ||
6077 | } | ||
6078 | }, | ||
6079 | "notification-url": "https://packagist.org/downloads/", | ||
6080 | "license": [ | ||
6081 | "Apache2" | ||
6082 | ], | ||
6083 | "authors": [ | ||
6084 | { | ||
6085 | "name": "Johannes M. Schmitt", | ||
6086 | "email": "schmittjoh@gmail.com" | ||
6087 | } | ||
6088 | ], | ||
6089 | "description": "Option Type for PHP", | ||
6090 | "keywords": [ | ||
6091 | "language", | ||
6092 | "option", | ||
6093 | "php", | ||
6094 | "type" | ||
6095 | ], | ||
6096 | "time": "2015-07-25T16:39:46+00:00" | ||
6097 | }, | ||
6098 | { | ||
6099 | "name": "phpzip/phpzip", | ||
6100 | "version": "2.0.8", | ||
6101 | "source": { | ||
6102 | "type": "git", | ||
6103 | "url": "https://github.com/Grandt/PHPZip.git", | ||
6104 | "reference": "936f93d656f68e29c231a39e19fd59a636fe7e47" | ||
6105 | }, | ||
6106 | "dist": { | ||
6107 | "type": "zip", | ||
6108 | "url": "https://api.github.com/repos/Grandt/PHPZip/zipball/936f93d656f68e29c231a39e19fd59a636fe7e47", | ||
6109 | "reference": "936f93d656f68e29c231a39e19fd59a636fe7e47", | ||
6110 | "shasum": "" | ||
6111 | }, | ||
6112 | "require": { | ||
6113 | "grandt/binstring": ">=1.0.0", | ||
6114 | "grandt/phpzipmerge": ">=1.0.4", | ||
6115 | "grandt/relativepath": ">=1.0.2", | ||
6116 | "php": ">=5.3.0" | ||
6117 | }, | ||
6118 | "type": "library", | ||
6119 | "autoload": { | ||
6120 | "psr-4": { | ||
6121 | "PHPZip\\Zip\\": "src/Zip" | ||
6122 | } | ||
6123 | }, | ||
6124 | "notification-url": "https://packagist.org/downloads/", | ||
6125 | "license": [ | ||
6126 | "LGPL-2.1" | ||
6127 | ], | ||
6128 | "authors": [ | ||
6129 | { | ||
6130 | "name": "Adam Schmalhofer", | ||
6131 | "email": "Adam.Schmalhofer@gmx.de", | ||
6132 | "role": "Developer" | ||
6133 | }, | ||
6134 | { | ||
6135 | "name": "A. Grandt", | ||
6136 | "email": "php@grandt.com", | ||
6137 | "homepage": "http://grandt.com", | ||
6138 | "role": "Developer" | ||
6139 | }, | ||
6140 | { | ||
6141 | "name": "Greg Kappatos", | ||
6142 | "homepage": "http://websiteconnect.com.au", | ||
6143 | "role": "Developer" | ||
6144 | } | ||
6145 | ], | ||
6146 | "description": "Package to create and stream archives of compressed files in ZIP format with PHP 5.3+", | ||
6147 | "homepage": "https://github.com/Grandt/PHPZip", | ||
6148 | "keywords": [ | ||
6149 | "archive", | ||
6150 | "compressed", | ||
6151 | "compression", | ||
6152 | "phpzip", | ||
6153 | "pkzip", | ||
6154 | "stream", | ||
6155 | "zip" | ||
6156 | ], | ||
6157 | "time": "2015-11-16T16:30:51+00:00" | ||
6158 | }, | ||
6159 | { | ||
6160 | "name": "pragmarx/random", | ||
6161 | "version": "v0.2.2", | ||
6162 | "source": { | ||
6163 | "type": "git", | ||
6164 | "url": "https://github.com/antonioribeiro/random.git", | ||
6165 | "reference": "daf08a189c5d2d40d1a827db46364d3a741a51b7" | ||
6166 | }, | ||
6167 | "dist": { | ||
6168 | "type": "zip", | ||
6169 | "url": "https://api.github.com/repos/antonioribeiro/random/zipball/daf08a189c5d2d40d1a827db46364d3a741a51b7", | ||
6170 | "reference": "daf08a189c5d2d40d1a827db46364d3a741a51b7", | ||
6171 | "shasum": "" | ||
6172 | }, | ||
6173 | "require": { | ||
6174 | "php": ">=7.0" | ||
6175 | }, | ||
6176 | "require-dev": { | ||
6177 | "fzaninotto/faker": "~1.7", | ||
6178 | "phpunit/phpunit": "~6.4", | ||
6179 | "pragmarx/trivia": "~0.1", | ||
6180 | "squizlabs/php_codesniffer": "^2.3" | ||
6181 | }, | ||
6182 | "suggest": { | ||
6183 | "fzaninotto/faker": "Allows you to get dozens of randomized types", | ||
6184 | "pragmarx/trivia": "For the trivia database" | ||
6185 | }, | ||
6186 | "type": "library", | ||
6187 | "extra": { | ||
6188 | "branch-alias": { | ||
6189 | "dev-master": "1.0-dev" | ||
6190 | } | ||
6191 | }, | ||
6192 | "autoload": { | ||
6193 | "psr-4": { | ||
6194 | "PragmaRX\\Random\\": "src" | ||
6195 | } | ||
6196 | }, | ||
6197 | "notification-url": "https://packagist.org/downloads/", | ||
6198 | "license": [ | ||
6199 | "MIT" | ||
6200 | ], | ||
6201 | "authors": [ | ||
6202 | { | ||
6203 | "name": "Antonio Carlos Ribeiro", | ||
6204 | "email": "acr@antoniocarlosribeiro.com", | ||
6205 | "homepage": "https://antoniocarlosribeiro.com", | ||
6206 | "role": "Developer" | ||
6207 | } | ||
6208 | ], | ||
6209 | "description": "Create random chars, numbers, strings", | ||
6210 | "homepage": "https://github.com/antonioribeiro/random", | ||
6211 | "keywords": [ | ||
6212 | "Randomize", | ||
6213 | "faker", | ||
6214 | "pragmarx", | ||
6215 | "random", | ||
6216 | "random number", | ||
6217 | "random pattern", | ||
6218 | "random string" | ||
6219 | ], | ||
6220 | "time": "2017-11-21T05:26:22+00:00" | ||
6221 | }, | ||
6222 | { | ||
6223 | "name": "pragmarx/recovery", | ||
6224 | "version": "v0.1.0", | ||
6225 | "source": { | ||
6226 | "type": "git", | ||
6227 | "url": "https://github.com/antonioribeiro/recovery.git", | ||
6228 | "reference": "e16573a1ae5345cc3b100eec6d0296a1a15a90fe" | ||
6229 | }, | ||
6230 | "dist": { | ||
6231 | "type": "zip", | ||
6232 | "url": "https://api.github.com/repos/antonioribeiro/recovery/zipball/e16573a1ae5345cc3b100eec6d0296a1a15a90fe", | ||
6233 | "reference": "e16573a1ae5345cc3b100eec6d0296a1a15a90fe", | ||
6234 | "shasum": "" | ||
6235 | }, | ||
6236 | "require": { | ||
6237 | "php": "~7.0", | ||
6238 | "pragmarx/random": "~0.1" | ||
6239 | }, | ||
6240 | "require-dev": { | ||
6241 | "phpunit/phpunit": ">=5.4.3", | ||
6242 | "squizlabs/php_codesniffer": "^2.3", | ||
6243 | "tightenco/collect": "^5" | ||
6244 | }, | ||
6245 | "suggest": { | ||
6246 | "tightenco/collect": "Allows to generate recovery codes as collections" | ||
6247 | }, | ||
6248 | "type": "library", | ||
6249 | "extra": { | ||
6250 | "branch-alias": { | ||
6251 | "dev-master": "1.0-dev" | ||
6252 | } | ||
6253 | }, | ||
6254 | "autoload": { | ||
6255 | "psr-4": { | ||
6256 | "PragmaRX\\Recovery\\": "src" | ||
6257 | } | ||
6258 | }, | ||
6259 | "notification-url": "https://packagist.org/downloads/", | ||
6260 | "license": [ | ||
6261 | "MIT" | ||
6262 | ], | ||
6263 | "authors": [ | ||
6264 | { | ||
6265 | "name": "Antonio Carlos Ribeiro", | ||
6266 | "email": "acr@antoniocarlosribeiro.com", | ||
6267 | "homepage": "https://antoniocarlosribeiro.com", | ||
6268 | "role": "Developer" | ||
6269 | } | ||
6270 | ], | ||
6271 | "description": "Create recovery codes for two factor auth", | ||
6272 | "homepage": "https://github.com/antonioribeiro/recovery", | ||
6273 | "keywords": [ | ||
6274 | "2fa", | ||
6275 | "account recovery", | ||
6276 | "auth", | ||
6277 | "backup codes", | ||
6278 | "google2fa", | ||
6279 | "pragmarx", | ||
6280 | "recovery", | ||
6281 | "recovery codes", | ||
6282 | "two factor auth" | ||
6283 | ], | ||
6284 | "time": "2017-09-19T16:58:00+00:00" | ||
6285 | }, | ||
6286 | { | ||
6287 | "name": "predis/predis", | ||
6288 | "version": "v1.1.x-dev", | ||
6289 | "source": { | ||
6290 | "type": "git", | ||
6291 | "url": "https://github.com/nrk/predis.git", | ||
6292 | "reference": "111d100ee389d624036b46b35ed0c9ac59c71313" | ||
6293 | }, | ||
6294 | "dist": { | ||
6295 | "type": "zip", | ||
6296 | "url": "https://api.github.com/repos/nrk/predis/zipball/111d100ee389d624036b46b35ed0c9ac59c71313", | ||
6297 | "reference": "111d100ee389d624036b46b35ed0c9ac59c71313", | ||
6298 | "shasum": "" | ||
6299 | }, | ||
6300 | "require": { | ||
6301 | "php": ">=5.3.9" | ||
6302 | }, | ||
6303 | "require-dev": { | ||
6304 | "phpunit/phpunit": "~4.8" | ||
6305 | }, | ||
6306 | "suggest": { | ||
6307 | "ext-curl": "Allows access to Webdis when paired with phpiredis", | ||
6308 | "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol" | ||
6309 | }, | ||
6310 | "type": "library", | ||
6311 | "autoload": { | ||
6312 | "psr-4": { | ||
6313 | "Predis\\": "src/" | ||
6314 | } | ||
6315 | }, | ||
6316 | "notification-url": "https://packagist.org/downloads/", | ||
6317 | "license": [ | ||
6318 | "MIT" | ||
6319 | ], | ||
6320 | "authors": [ | ||
6321 | { | ||
6322 | "name": "Daniele Alessandri", | ||
6323 | "email": "suppakilla@gmail.com", | ||
6324 | "homepage": "http://clorophilla.net" | ||
6325 | } | ||
6326 | ], | ||
6327 | "description": "Flexible and feature-complete Redis client for PHP and HHVM", | ||
6328 | "homepage": "http://github.com/nrk/predis", | ||
6329 | "keywords": [ | ||
6330 | "nosql", | ||
6331 | "predis", | ||
6332 | "redis" | ||
6333 | ], | ||
6334 | "time": "2017-07-12T14:39:17+00:00" | ||
6335 | }, | ||
6336 | { | ||
6337 | "name": "psr/cache", | ||
6338 | "version": "1.0.1", | ||
6339 | "source": { | ||
6340 | "type": "git", | ||
6341 | "url": "https://github.com/php-fig/cache.git", | ||
6342 | "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8" | ||
6343 | }, | ||
6344 | "dist": { | ||
6345 | "type": "zip", | ||
6346 | "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8", | ||
6347 | "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8", | ||
6348 | "shasum": "" | ||
6349 | }, | ||
6350 | "require": { | ||
6351 | "php": ">=5.3.0" | ||
6352 | }, | ||
6353 | "type": "library", | ||
6354 | "extra": { | ||
6355 | "branch-alias": { | ||
6356 | "dev-master": "1.0.x-dev" | ||
6357 | } | ||
6358 | }, | ||
6359 | "autoload": { | ||
6360 | "psr-4": { | ||
6361 | "Psr\\Cache\\": "src/" | ||
6362 | } | ||
6363 | }, | ||
6364 | "notification-url": "https://packagist.org/downloads/", | ||
6365 | "license": [ | ||
6366 | "MIT" | ||
6367 | ], | ||
6368 | "authors": [ | ||
6369 | { | ||
6370 | "name": "PHP-FIG", | ||
6371 | "homepage": "http://www.php-fig.org/" | ||
6372 | } | ||
6373 | ], | ||
6374 | "description": "Common interface for caching libraries", | ||
6375 | "keywords": [ | ||
6376 | "cache", | ||
6377 | "psr", | ||
6378 | "psr-6" | ||
6379 | ], | ||
6380 | "time": "2016-08-06T20:24:11+00:00" | ||
6381 | }, | ||
6382 | { | ||
6383 | "name": "psr/container", | ||
6384 | "version": "1.0.0", | ||
6385 | "source": { | ||
6386 | "type": "git", | ||
6387 | "url": "https://github.com/php-fig/container.git", | ||
6388 | "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" | ||
6389 | }, | ||
6390 | "dist": { | ||
6391 | "type": "zip", | ||
6392 | "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", | ||
6393 | "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", | ||
6394 | "shasum": "" | ||
6395 | }, | ||
6396 | "require": { | ||
6397 | "php": ">=5.3.0" | ||
6398 | }, | ||
6399 | "type": "library", | ||
6400 | "extra": { | ||
6401 | "branch-alias": { | ||
6402 | "dev-master": "1.0.x-dev" | ||
6403 | } | ||
6404 | }, | ||
6405 | "autoload": { | ||
6406 | "psr-4": { | ||
6407 | "Psr\\Container\\": "src/" | ||
6408 | } | ||
6409 | }, | ||
6410 | "notification-url": "https://packagist.org/downloads/", | ||
6411 | "license": [ | ||
6412 | "MIT" | ||
6413 | ], | ||
6414 | "authors": [ | ||
6415 | { | ||
6416 | "name": "PHP-FIG", | ||
6417 | "homepage": "http://www.php-fig.org/" | ||
6418 | } | ||
6419 | ], | ||
6420 | "description": "Common Container Interface (PHP FIG PSR-11)", | ||
6421 | "homepage": "https://github.com/php-fig/container", | ||
6422 | "keywords": [ | ||
6423 | "PSR-11", | ||
6424 | "container", | ||
6425 | "container-interface", | ||
6426 | "container-interop", | ||
6427 | "psr" | ||
6428 | ], | ||
6429 | "time": "2017-02-14T16:28:37+00:00" | ||
6430 | }, | ||
6431 | { | ||
6432 | "name": "psr/http-client", | ||
6433 | "version": "1.0.0", | ||
6434 | "source": { | ||
6435 | "type": "git", | ||
6436 | "url": "https://github.com/php-fig/http-client.git", | ||
6437 | "reference": "496a823ef742b632934724bf769560c2a5c7c44e" | ||
6438 | }, | ||
6439 | "dist": { | ||
6440 | "type": "zip", | ||
6441 | "url": "https://api.github.com/repos/php-fig/http-client/zipball/496a823ef742b632934724bf769560c2a5c7c44e", | ||
6442 | "reference": "496a823ef742b632934724bf769560c2a5c7c44e", | ||
6443 | "shasum": "" | ||
6444 | }, | ||
6445 | "require": { | ||
6446 | "php": "^7.0", | ||
6447 | "psr/http-message": "^1.0" | ||
6448 | }, | ||
6449 | "type": "library", | ||
6450 | "extra": { | ||
6451 | "branch-alias": { | ||
6452 | "dev-master": "1.0.x-dev" | ||
6453 | } | ||
6454 | }, | ||
6455 | "autoload": { | ||
6456 | "psr-4": { | ||
6457 | "Psr\\Http\\Client\\": "src/" | ||
6458 | } | ||
6459 | }, | ||
6460 | "notification-url": "https://packagist.org/downloads/", | ||
6461 | "license": [ | ||
6462 | "MIT" | ||
6463 | ], | ||
6464 | "authors": [ | ||
6465 | { | ||
6466 | "name": "PHP-FIG", | ||
6467 | "homepage": "http://www.php-fig.org/" | ||
6468 | } | ||
6469 | ], | ||
6470 | "description": "Common interface for HTTP clients", | ||
6471 | "homepage": "https://github.com/php-fig/http-client", | ||
6472 | "keywords": [ | ||
6473 | "http", | ||
6474 | "http-client", | ||
6475 | "psr", | ||
6476 | "psr-18" | ||
6477 | ], | ||
6478 | "time": "2018-10-30T23:29:13+00:00" | ||
6479 | }, | ||
6480 | { | ||
6481 | "name": "psr/http-message", | ||
6482 | "version": "1.0.1", | ||
6483 | "source": { | ||
6484 | "type": "git", | ||
6485 | "url": "https://github.com/php-fig/http-message.git", | ||
6486 | "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" | ||
6487 | }, | ||
6488 | "dist": { | ||
6489 | "type": "zip", | ||
6490 | "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", | ||
6491 | "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", | ||
6492 | "shasum": "" | ||
6493 | }, | ||
6494 | "require": { | ||
6495 | "php": ">=5.3.0" | ||
6496 | }, | ||
6497 | "type": "library", | ||
6498 | "extra": { | ||
6499 | "branch-alias": { | ||
6500 | "dev-master": "1.0.x-dev" | ||
6501 | } | ||
6502 | }, | ||
6503 | "autoload": { | ||
6504 | "psr-4": { | ||
6505 | "Psr\\Http\\Message\\": "src/" | ||
6506 | } | ||
6507 | }, | ||
6508 | "notification-url": "https://packagist.org/downloads/", | ||
6509 | "license": [ | ||
6510 | "MIT" | ||
6511 | ], | ||
6512 | "authors": [ | ||
6513 | { | ||
6514 | "name": "PHP-FIG", | ||
6515 | "homepage": "http://www.php-fig.org/" | ||
6516 | } | ||
6517 | ], | ||
6518 | "description": "Common interface for HTTP messages", | ||
6519 | "homepage": "https://github.com/php-fig/http-message", | ||
6520 | "keywords": [ | ||
6521 | "http", | ||
6522 | "http-message", | ||
6523 | "psr", | ||
6524 | "psr-7", | ||
6525 | "request", | ||
6526 | "response" | ||
6527 | ], | ||
6528 | "time": "2016-08-06T14:39:51+00:00" | ||
6529 | }, | ||
6530 | { | ||
6531 | "name": "psr/link", | ||
6532 | "version": "1.0.0", | ||
6533 | "source": { | ||
6534 | "type": "git", | ||
6535 | "url": "https://github.com/php-fig/link.git", | ||
6536 | "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562" | ||
6537 | }, | ||
6538 | "dist": { | ||
6539 | "type": "zip", | ||
6540 | "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562", | ||
6541 | "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562", | ||
6542 | "shasum": "" | ||
6543 | }, | ||
6544 | "require": { | ||
6545 | "php": ">=5.3.0" | ||
6546 | }, | ||
6547 | "type": "library", | ||
6548 | "extra": { | ||
6549 | "branch-alias": { | ||
6550 | "dev-master": "1.0.x-dev" | ||
6551 | } | ||
6552 | }, | ||
6553 | "autoload": { | ||
6554 | "psr-4": { | ||
6555 | "Psr\\Link\\": "src/" | ||
6556 | } | ||
6557 | }, | ||
6558 | "notification-url": "https://packagist.org/downloads/", | ||
6559 | "license": [ | ||
6560 | "MIT" | ||
6561 | ], | ||
6562 | "authors": [ | ||
6563 | { | ||
6564 | "name": "PHP-FIG", | ||
6565 | "homepage": "http://www.php-fig.org/" | ||
6566 | } | ||
6567 | ], | ||
6568 | "description": "Common interfaces for HTTP links", | ||
6569 | "keywords": [ | ||
6570 | "http", | ||
6571 | "http-link", | ||
6572 | "link", | ||
6573 | "psr", | ||
6574 | "psr-13", | ||
6575 | "rest" | ||
6576 | ], | ||
6577 | "time": "2016-10-28T16:06:13+00:00" | ||
6578 | }, | ||
6579 | { | ||
6580 | "name": "psr/log", | ||
6581 | "version": "1.1.0", | ||
6582 | "source": { | ||
6583 | "type": "git", | ||
6584 | "url": "https://github.com/php-fig/log.git", | ||
6585 | "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd" | ||
6586 | }, | ||
6587 | "dist": { | ||
6588 | "type": "zip", | ||
6589 | "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", | ||
6590 | "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", | ||
6591 | "shasum": "" | ||
6592 | }, | ||
6593 | "require": { | ||
6594 | "php": ">=5.3.0" | ||
6595 | }, | ||
6596 | "type": "library", | ||
6597 | "extra": { | ||
6598 | "branch-alias": { | ||
6599 | "dev-master": "1.0.x-dev" | ||
6600 | } | ||
6601 | }, | ||
6602 | "autoload": { | ||
6603 | "psr-4": { | ||
6604 | "Psr\\Log\\": "Psr/Log/" | ||
6605 | } | ||
6606 | }, | ||
6607 | "notification-url": "https://packagist.org/downloads/", | ||
6608 | "license": [ | ||
6609 | "MIT" | ||
6610 | ], | ||
6611 | "authors": [ | ||
6612 | { | ||
6613 | "name": "PHP-FIG", | ||
6614 | "homepage": "http://www.php-fig.org/" | ||
6615 | } | ||
6616 | ], | ||
6617 | "description": "Common interface for logging libraries", | ||
6618 | "homepage": "https://github.com/php-fig/log", | ||
6619 | "keywords": [ | ||
6620 | "log", | ||
6621 | "psr", | ||
6622 | "psr-3" | ||
6623 | ], | ||
6624 | "time": "2018-11-20T15:27:04+00:00" | ||
6625 | }, | ||
6626 | { | ||
6627 | "name": "psr/simple-cache", | ||
6628 | "version": "1.0.1", | ||
6629 | "source": { | ||
6630 | "type": "git", | ||
6631 | "url": "https://github.com/php-fig/simple-cache.git", | ||
6632 | "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" | ||
6633 | }, | ||
6634 | "dist": { | ||
6635 | "type": "zip", | ||
6636 | "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", | ||
6637 | "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", | ||
6638 | "shasum": "" | ||
6639 | }, | ||
6640 | "require": { | ||
6641 | "php": ">=5.3.0" | ||
6642 | }, | ||
6643 | "type": "library", | ||
6644 | "extra": { | ||
6645 | "branch-alias": { | ||
6646 | "dev-master": "1.0.x-dev" | ||
6647 | } | ||
6648 | }, | ||
6649 | "autoload": { | ||
6650 | "psr-4": { | ||
6651 | "Psr\\SimpleCache\\": "src/" | ||
6652 | } | ||
6653 | }, | ||
6654 | "notification-url": "https://packagist.org/downloads/", | ||
6655 | "license": [ | ||
6656 | "MIT" | ||
6657 | ], | ||
6658 | "authors": [ | ||
6659 | { | ||
6660 | "name": "PHP-FIG", | ||
6661 | "homepage": "http://www.php-fig.org/" | ||
6662 | } | ||
6663 | ], | ||
6664 | "description": "Common interfaces for simple caching", | ||
6665 | "keywords": [ | ||
6666 | "cache", | ||
6667 | "caching", | ||
6668 | "psr", | ||
6669 | "psr-16", | ||
6670 | "simple-cache" | ||
6671 | ], | ||
6672 | "time": "2017-10-23T01:57:42+00:00" | ||
6673 | }, | ||
6674 | { | ||
6675 | "name": "ralouphie/getallheaders", | ||
6676 | "version": "2.0.5", | ||
6677 | "source": { | ||
6678 | "type": "git", | ||
6679 | "url": "https://github.com/ralouphie/getallheaders.git", | ||
6680 | "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa" | ||
6681 | }, | ||
6682 | "dist": { | ||
6683 | "type": "zip", | ||
6684 | "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa", | ||
6685 | "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa", | ||
6686 | "shasum": "" | ||
6687 | }, | ||
6688 | "require": { | ||
6689 | "php": ">=5.3" | ||
6690 | }, | ||
6691 | "require-dev": { | ||
6692 | "phpunit/phpunit": "~3.7.0", | ||
6693 | "satooshi/php-coveralls": ">=1.0" | ||
6694 | }, | ||
6695 | "type": "library", | ||
6696 | "autoload": { | ||
6697 | "files": [ | ||
6698 | "src/getallheaders.php" | ||
6699 | ] | ||
6700 | }, | ||
6701 | "notification-url": "https://packagist.org/downloads/", | ||
6702 | "license": [ | ||
6703 | "MIT" | ||
6704 | ], | ||
6705 | "authors": [ | ||
6706 | { | ||
6707 | "name": "Ralph Khattar", | ||
6708 | "email": "ralph.khattar@gmail.com" | ||
6709 | } | ||
6710 | ], | ||
6711 | "description": "A polyfill for getallheaders.", | ||
6712 | "time": "2016-02-11T07:05:27+00:00" | ||
6713 | }, | ||
6714 | { | ||
6715 | "name": "react/promise", | ||
6716 | "version": "v2.7.1", | ||
6717 | "source": { | ||
6718 | "type": "git", | ||
6719 | "url": "https://github.com/reactphp/promise.git", | ||
6720 | "reference": "31ffa96f8d2ed0341a57848cbb84d88b89dd664d" | ||
6721 | }, | ||
6722 | "dist": { | ||
6723 | "type": "zip", | ||
6724 | "url": "https://api.github.com/repos/reactphp/promise/zipball/31ffa96f8d2ed0341a57848cbb84d88b89dd664d", | ||
6725 | "reference": "31ffa96f8d2ed0341a57848cbb84d88b89dd664d", | ||
6726 | "shasum": "" | ||
6727 | }, | ||
6728 | "require": { | ||
6729 | "php": ">=5.4.0" | ||
6730 | }, | ||
6731 | "require-dev": { | ||
6732 | "phpunit/phpunit": "~4.8" | ||
6733 | }, | ||
6734 | "type": "library", | ||
6735 | "autoload": { | ||
6736 | "psr-4": { | ||
6737 | "React\\Promise\\": "src/" | ||
6738 | }, | ||
6739 | "files": [ | ||
6740 | "src/functions_include.php" | ||
6741 | ] | ||
6742 | }, | ||
6743 | "notification-url": "https://packagist.org/downloads/", | ||
6744 | "license": [ | ||
6745 | "MIT" | ||
6746 | ], | ||
6747 | "authors": [ | ||
6748 | { | ||
6749 | "name": "Jan Sorgalla", | ||
6750 | "email": "jsorgalla@gmail.com" | ||
6751 | } | ||
6752 | ], | ||
6753 | "description": "A lightweight implementation of CommonJS Promises/A for PHP", | ||
6754 | "keywords": [ | ||
6755 | "promise", | ||
6756 | "promises" | ||
6757 | ], | ||
6758 | "time": "2019-01-07T21:25:54+00:00" | ||
6759 | }, | ||
6760 | { | ||
6761 | "name": "scheb/two-factor-bundle", | ||
6762 | "version": "v3.19.0", | ||
6763 | "source": { | ||
6764 | "type": "git", | ||
6765 | "url": "https://github.com/scheb/two-factor-bundle.git", | ||
6766 | "reference": "4bc6023401a4c7e50dbd9c66f55cc8df9f77e69c" | ||
6767 | }, | ||
6768 | "dist": { | ||
6769 | "type": "zip", | ||
6770 | "url": "https://api.github.com/repos/scheb/two-factor-bundle/zipball/4bc6023401a4c7e50dbd9c66f55cc8df9f77e69c", | ||
6771 | "reference": "4bc6023401a4c7e50dbd9c66f55cc8df9f77e69c", | ||
6772 | "shasum": "" | ||
6773 | }, | ||
6774 | "require": { | ||
6775 | "lcobucci/jwt": "^3.2", | ||
6776 | "php": "^7.1.3", | ||
6777 | "sonata-project/google-authenticator": "^2.2", | ||
6778 | "symfony/config": "^3.4|^4.0", | ||
6779 | "symfony/dependency-injection": "^3.4|^4.0", | ||
6780 | "symfony/event-dispatcher": "^3.4|^4.0", | ||
6781 | "symfony/framework-bundle": "^3.4|^4.0", | ||
6782 | "symfony/http-foundation": "^3.4|^4.0", | ||
6783 | "symfony/http-kernel": "^3.4|^4.0", | ||
6784 | "symfony/property-access": "^3.4|^4.0", | ||
6785 | "symfony/security-bundle": "^3.4|^4.0", | ||
6786 | "symfony/twig-bundle": "^3.4|^4.0" | ||
6787 | }, | ||
6788 | "require-dev": { | ||
6789 | "doctrine/lexer": "^1.0.1", | ||
6790 | "doctrine/orm": "^2.6", | ||
6791 | "phpunit/phpunit": "^7.0|^8.0", | ||
6792 | "swiftmailer/swiftmailer": "^6.0", | ||
6793 | "symfony/yaml": "^3.4|^4.0" | ||
6794 | }, | ||
6795 | "type": "symfony-bundle", | ||
6796 | "autoload": { | ||
6797 | "psr-4": { | ||
6798 | "Scheb\\TwoFactorBundle\\": "" | ||
6799 | } | ||
6800 | }, | ||
6801 | "notification-url": "https://packagist.org/downloads/", | ||
6802 | "license": [ | ||
6803 | "MIT" | ||
6804 | ], | ||
6805 | "authors": [ | ||
6806 | { | ||
6807 | "name": "Christian Scheb", | ||
6808 | "email": "me@christianscheb.de" | ||
6809 | } | ||
6810 | ], | ||
6811 | "description": "Provides two-factor authentication for Symfony applications", | ||
6812 | "homepage": "https://github.com/scheb/two-factor-bundle", | ||
6813 | "keywords": [ | ||
6814 | "Authentication", | ||
6815 | "security", | ||
6816 | "symfony", | ||
6817 | "two-factor", | ||
6818 | "two-step" | ||
6819 | ], | ||
6820 | "time": "2019-05-03T12:46:19+00:00" | ||
6821 | }, | ||
6822 | { | ||
6823 | "name": "sensio/distribution-bundle", | ||
6824 | "version": "v5.0.24", | ||
6825 | "source": { | ||
6826 | "type": "git", | ||
6827 | "url": "https://github.com/sensiolabs/SensioDistributionBundle.git", | ||
6828 | "reference": "59eac70f15f97ee945924948a6f5e2f6f86b7a4b" | ||
6829 | }, | ||
6830 | "dist": { | ||
6831 | "type": "zip", | ||
6832 | "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/59eac70f15f97ee945924948a6f5e2f6f86b7a4b", | ||
6833 | "reference": "59eac70f15f97ee945924948a6f5e2f6f86b7a4b", | ||
6834 | "shasum": "" | ||
6835 | }, | ||
6836 | "require": { | ||
6837 | "php": ">=5.3.9", | ||
6838 | "sensiolabs/security-checker": "~5.0", | ||
6839 | "symfony/class-loader": "~2.3|~3.0", | ||
6840 | "symfony/config": "~2.3|~3.0", | ||
6841 | "symfony/dependency-injection": "~2.3|~3.0", | ||
6842 | "symfony/filesystem": "~2.3|~3.0", | ||
6843 | "symfony/http-kernel": "~2.3|~3.0", | ||
6844 | "symfony/process": "~2.3|~3.0" | ||
6845 | }, | ||
6846 | "type": "symfony-bundle", | ||
6847 | "extra": { | ||
6848 | "branch-alias": { | ||
6849 | "dev-master": "5.0.x-dev" | ||
6850 | } | ||
6851 | }, | ||
6852 | "autoload": { | ||
6853 | "psr-4": { | ||
6854 | "Sensio\\Bundle\\DistributionBundle\\": "" | ||
6855 | } | ||
6856 | }, | ||
6857 | "notification-url": "https://packagist.org/downloads/", | ||
6858 | "license": [ | ||
6859 | "MIT" | ||
6860 | ], | ||
6861 | "authors": [ | ||
6862 | { | ||
6863 | "name": "Fabien Potencier", | ||
6864 | "email": "fabien@symfony.com" | ||
6865 | } | ||
6866 | ], | ||
6867 | "description": "Base bundle for Symfony Distributions", | ||
6868 | "keywords": [ | ||
6869 | "configuration", | ||
6870 | "distribution" | ||
6871 | ], | ||
6872 | "time": "2018-12-14T17:36:15+00:00" | ||
6873 | }, | ||
6874 | { | ||
6875 | "name": "sensio/framework-extra-bundle", | ||
6876 | "version": "v5.3.1", | ||
6877 | "source": { | ||
6878 | "type": "git", | ||
6879 | "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git", | ||
6880 | "reference": "5f75c4658b03301cba17baa15a840b57b72b4262" | ||
6881 | }, | ||
6882 | "dist": { | ||
6883 | "type": "zip", | ||
6884 | "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/5f75c4658b03301cba17baa15a840b57b72b4262", | ||
6885 | "reference": "5f75c4658b03301cba17baa15a840b57b72b4262", | ||
6886 | "shasum": "" | ||
6887 | }, | ||
6888 | "require": { | ||
6889 | "doctrine/annotations": "^1.0", | ||
6890 | "doctrine/persistence": "^1.0", | ||
6891 | "php": ">=7.1.3", | ||
6892 | "symfony/config": "^3.4|^4.2", | ||
6893 | "symfony/dependency-injection": "^3.4|^4.2", | ||
6894 | "symfony/framework-bundle": "^3.4|^4.2", | ||
6895 | "symfony/http-kernel": "^3.4|^4.2" | ||
6896 | }, | ||
6897 | "require-dev": { | ||
6898 | "doctrine/doctrine-bundle": "^1.6", | ||
6899 | "doctrine/orm": "^2.5", | ||
6900 | "nyholm/psr7": "^1.1", | ||
6901 | "symfony/browser-kit": "^3.4|^4.2", | ||
6902 | "symfony/dom-crawler": "^3.4|^4.2", | ||
6903 | "symfony/expression-language": "^3.4|^4.2", | ||
6904 | "symfony/finder": "^3.4|^4.2", | ||
6905 | "symfony/monolog-bridge": "^3.0|^4.0", | ||
6906 | "symfony/monolog-bundle": "^3.2", | ||
6907 | "symfony/phpunit-bridge": "^3.4.19|^4.1.8", | ||
6908 | "symfony/psr-http-message-bridge": "^1.1", | ||
6909 | "symfony/security-bundle": "^3.4|^4.2", | ||
6910 | "symfony/twig-bundle": "^3.4|^4.2", | ||
6911 | "symfony/yaml": "^3.4|^4.2", | ||
6912 | "twig/twig": "~1.12|~2.0" | ||
6913 | }, | ||
6914 | "suggest": { | ||
6915 | "symfony/expression-language": "", | ||
6916 | "symfony/psr-http-message-bridge": "To use the PSR-7 converters", | ||
6917 | "symfony/security-bundle": "" | ||
6918 | }, | ||
6919 | "type": "symfony-bundle", | ||
6920 | "extra": { | ||
6921 | "branch-alias": { | ||
6922 | "dev-master": "5.3.x-dev" | ||
6923 | } | ||
6924 | }, | ||
6925 | "autoload": { | ||
6926 | "psr-4": { | ||
6927 | "Sensio\\Bundle\\FrameworkExtraBundle\\": "" | ||
6928 | } | ||
6929 | }, | ||
6930 | "notification-url": "https://packagist.org/downloads/", | ||
6931 | "license": [ | ||
6932 | "MIT" | ||
6933 | ], | ||
6934 | "authors": [ | ||
6935 | { | ||
6936 | "name": "Fabien Potencier", | ||
6937 | "email": "fabien@symfony.com" | ||
6938 | } | ||
6939 | ], | ||
6940 | "description": "This bundle provides a way to configure your controllers with annotations", | ||
6941 | "keywords": [ | ||
6942 | "annotations", | ||
6943 | "controllers" | ||
6944 | ], | ||
6945 | "time": "2019-04-10T06:00:20+00:00" | ||
6946 | }, | ||
6947 | { | ||
6948 | "name": "sensiolabs/security-checker", | ||
6949 | "version": "v5.0.3", | ||
6950 | "source": { | ||
6951 | "type": "git", | ||
6952 | "url": "https://github.com/sensiolabs/security-checker.git", | ||
6953 | "reference": "46be3f58adac13084497961e10eed9a7fb4d44d1" | ||
6954 | }, | ||
6955 | "dist": { | ||
6956 | "type": "zip", | ||
6957 | "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/46be3f58adac13084497961e10eed9a7fb4d44d1", | ||
6958 | "reference": "46be3f58adac13084497961e10eed9a7fb4d44d1", | ||
6959 | "shasum": "" | ||
6960 | }, | ||
6961 | "require": { | ||
6962 | "composer/ca-bundle": "^1.0", | ||
6963 | "php": ">=5.5.9", | ||
6964 | "symfony/console": "~2.7|~3.0|~4.0" | ||
6965 | }, | ||
6966 | "bin": [ | ||
6967 | "security-checker" | ||
6968 | ], | ||
6969 | "type": "library", | ||
6970 | "extra": { | ||
6971 | "branch-alias": { | ||
6972 | "dev-master": "5.0-dev" | ||
6973 | } | ||
6974 | }, | ||
6975 | "autoload": { | ||
6976 | "psr-4": { | ||
6977 | "SensioLabs\\Security\\": "SensioLabs/Security" | ||
6978 | } | ||
6979 | }, | ||
6980 | "notification-url": "https://packagist.org/downloads/", | ||
6981 | "license": [ | ||
6982 | "MIT" | ||
6983 | ], | ||
6984 | "authors": [ | ||
6985 | { | ||
6986 | "name": "Fabien Potencier", | ||
6987 | "email": "fabien.potencier@gmail.com" | ||
6988 | } | ||
6989 | ], | ||
6990 | "description": "A security checker for your composer.lock", | ||
6991 | "time": "2018-12-19T17:14:59+00:00" | ||
6992 | }, | ||
6993 | { | ||
6994 | "name": "simplepie/simplepie", | ||
6995 | "version": "1.5.2", | ||
6996 | "source": { | ||
6997 | "type": "git", | ||
6998 | "url": "https://github.com/simplepie/simplepie.git", | ||
6999 | "reference": "0e8fe72132dad765d25db4cabc69a91139af1263" | ||
7000 | }, | ||
7001 | "dist": { | ||
7002 | "type": "zip", | ||
7003 | "url": "https://api.github.com/repos/simplepie/simplepie/zipball/0e8fe72132dad765d25db4cabc69a91139af1263", | ||
7004 | "reference": "0e8fe72132dad765d25db4cabc69a91139af1263", | ||
7005 | "shasum": "" | ||
7006 | }, | ||
7007 | "require": { | ||
7008 | "ext-pcre": "*", | ||
7009 | "ext-xml": "*", | ||
7010 | "ext-xmlreader": "*", | ||
7011 | "php": ">=5.6.0" | ||
7012 | }, | ||
7013 | "require-dev": { | ||
7014 | "phpunit/phpunit": "~5.4.3 || ~6.5" | ||
7015 | }, | ||
7016 | "suggest": { | ||
7017 | "ext-curl": "", | ||
7018 | "ext-iconv": "", | ||
7019 | "ext-intl": "", | ||
7020 | "ext-mbstring": "", | ||
7021 | "mf2/mf2": "Microformat module that allows for parsing HTML for microformats" | ||
7022 | }, | ||
7023 | "type": "library", | ||
7024 | "autoload": { | ||
7025 | "psr-0": { | ||
7026 | "SimplePie": "library" | ||
7027 | } | ||
7028 | }, | ||
7029 | "notification-url": "https://packagist.org/downloads/", | ||
7030 | "license": [ | ||
7031 | "BSD-3-Clause" | ||
7032 | ], | ||
7033 | "authors": [ | ||
7034 | { | ||
7035 | "name": "Ryan Parman", | ||
7036 | "homepage": "http://ryanparman.com/", | ||
7037 | "role": "Creator, alumnus developer" | ||
7038 | }, | ||
7039 | { | ||
7040 | "name": "Geoffrey Sneddon", | ||
7041 | "homepage": "http://gsnedders.com/", | ||
7042 | "role": "Alumnus developer" | ||
7043 | }, | ||
7044 | { | ||
7045 | "name": "Ryan McCue", | ||
7046 | "email": "me@ryanmccue.info", | ||
7047 | "homepage": "http://ryanmccue.info/", | ||
7048 | "role": "Developer" | ||
7049 | } | ||
7050 | ], | ||
7051 | "description": "A simple Atom/RSS parsing library for PHP", | ||
7052 | "homepage": "http://simplepie.org/", | ||
7053 | "keywords": [ | ||
7054 | "atom", | ||
7055 | "feeds", | ||
7056 | "rss" | ||
7057 | ], | ||
7058 | "time": "2018-08-02T05:43:58+00:00" | ||
7059 | }, | ||
7060 | { | ||
7061 | "name": "smalot/pdfparser", | ||
7062 | "version": "v0.14.0", | ||
7063 | "source": { | ||
7064 | "type": "git", | ||
7065 | "url": "https://github.com/smalot/pdfparser.git", | ||
7066 | "reference": "ec72a99028ba5e21a0acad92047b85e128cbf81f" | ||
7067 | }, | ||
7068 | "dist": { | ||
7069 | "type": "zip", | ||
7070 | "url": "https://api.github.com/repos/smalot/pdfparser/zipball/ec72a99028ba5e21a0acad92047b85e128cbf81f", | ||
7071 | "reference": "ec72a99028ba5e21a0acad92047b85e128cbf81f", | ||
7072 | "shasum": "" | ||
7073 | }, | ||
7074 | "require": { | ||
7075 | "ext-mbstring": "*", | ||
7076 | "ext-zlib": "*", | ||
7077 | "php": ">=5.3.0", | ||
7078 | "tecnickcom/tcpdf": "~6.0" | ||
7079 | }, | ||
7080 | "require-dev": { | ||
7081 | "atoum/atoum": "^2.8 | ^3.0" | ||
7082 | }, | ||
7083 | "type": "library", | ||
7084 | "autoload": { | ||
7085 | "psr-0": { | ||
7086 | "Smalot\\PdfParser\\": "src/" | ||
7087 | } | ||
7088 | }, | ||
7089 | "notification-url": "https://packagist.org/downloads/", | ||
7090 | "license": [ | ||
7091 | "LGPL-3.0" | ||
7092 | ], | ||
7093 | "authors": [ | ||
7094 | { | ||
7095 | "name": "Sebastien MALOT", | ||
7096 | "email": "sebastien@malot.fr" | ||
7097 | } | ||
7098 | ], | ||
7099 | "description": "Pdf parser library. Can read and extract information from pdf file.", | ||
7100 | "homepage": "http://www.pdfparser.org", | ||
7101 | "keywords": [ | ||
7102 | "extract", | ||
7103 | "parse", | ||
7104 | "parser", | ||
7105 | "pdf", | ||
7106 | "text" | ||
7107 | ], | ||
7108 | "time": "2019-01-23T09:14:37+00:00" | ||
7109 | }, | ||
7110 | { | ||
7111 | "name": "sonata-project/google-authenticator", | ||
7112 | "version": "2.2.0", | ||
7113 | "source": { | ||
7114 | "type": "git", | ||
7115 | "url": "https://github.com/sonata-project/GoogleAuthenticator.git", | ||
7116 | "reference": "feda53899b26af24e3db2fe7a3e5f053ca483762" | ||
7117 | }, | ||
7118 | "dist": { | ||
7119 | "type": "zip", | ||
7120 | "url": "https://api.github.com/repos/sonata-project/GoogleAuthenticator/zipball/feda53899b26af24e3db2fe7a3e5f053ca483762", | ||
7121 | "reference": "feda53899b26af24e3db2fe7a3e5f053ca483762", | ||
7122 | "shasum": "" | ||
7123 | }, | ||
7124 | "require": { | ||
7125 | "php": "^7.1" | ||
7126 | }, | ||
7127 | "require-dev": { | ||
7128 | "symfony/phpunit-bridge": "^4.0" | ||
7129 | }, | ||
7130 | "type": "library", | ||
7131 | "extra": { | ||
7132 | "branch-alias": { | ||
7133 | "dev-master": "2.x-dev" | ||
7134 | } | ||
7135 | }, | ||
7136 | "autoload": { | ||
7137 | "psr-4": { | ||
7138 | "Google\\Authenticator\\": "src/", | ||
7139 | "Sonata\\GoogleAuthenticator\\": "src/" | ||
7140 | } | ||
7141 | }, | ||
7142 | "notification-url": "https://packagist.org/downloads/", | ||
7143 | "license": [ | ||
7144 | "MIT" | ||
7145 | ], | ||
7146 | "authors": [ | ||
7147 | { | ||
7148 | "name": "Christian Stocker", | ||
7149 | "email": "me@chregu.tv" | ||
7150 | }, | ||
7151 | { | ||
7152 | "name": "Andre DeMarre", | ||
7153 | "homepage": "http://www.devnetwork.net/viewtopic.php?f=50&t=94989" | ||
7154 | }, | ||
7155 | { | ||
7156 | "name": "Thomas Rabaix", | ||
7157 | "email": "thomas.rabaix@gmail.com" | ||
7158 | } | ||
7159 | ], | ||
7160 | "description": "Library to integrate Google Authenticator into a PHP project", | ||
7161 | "homepage": "https://github.com/sonata-project/GoogleAuthenticator", | ||
7162 | "keywords": [ | ||
7163 | "google authenticator" | ||
7164 | ], | ||
7165 | "time": "2018-07-18T22:08:02+00:00" | ||
7166 | }, | ||
7167 | { | ||
7168 | "name": "stof/doctrine-extensions-bundle", | ||
7169 | "version": "v1.3.0", | ||
7170 | "source": { | ||
7171 | "type": "git", | ||
7172 | "url": "https://github.com/stof/StofDoctrineExtensionsBundle.git", | ||
7173 | "reference": "46db71ec7ffee9122eca3cdddd4ef8d84bae269c" | ||
7174 | }, | ||
7175 | "dist": { | ||
7176 | "type": "zip", | ||
7177 | "url": "https://api.github.com/repos/stof/StofDoctrineExtensionsBundle/zipball/46db71ec7ffee9122eca3cdddd4ef8d84bae269c", | ||
7178 | "reference": "46db71ec7ffee9122eca3cdddd4ef8d84bae269c", | ||
7179 | "shasum": "" | ||
7180 | }, | ||
7181 | "require": { | ||
7182 | "gedmo/doctrine-extensions": "^2.3.4", | ||
7183 | "php": ">=5.3.2", | ||
7184 | "symfony/framework-bundle": "~2.7|~3.2|~4.0" | ||
7185 | }, | ||
7186 | "require-dev": { | ||
7187 | "symfony/phpunit-bridge": "^4.0", | ||
7188 | "symfony/security-bundle": "^2.7 || ^3.2 || ^4.0" | ||
7189 | }, | ||
7190 | "suggest": { | ||
7191 | "doctrine/doctrine-bundle": "to use the ORM extensions", | ||
7192 | "doctrine/mongodb-odm-bundle": "to use the MongoDB ODM extensions" | ||
7193 | }, | ||
7194 | "type": "symfony-bundle", | ||
7195 | "extra": { | ||
7196 | "branch-alias": { | ||
7197 | "dev-master": "1.3.x-dev" | ||
7198 | } | ||
7199 | }, | ||
7200 | "autoload": { | ||
7201 | "psr-4": { | ||
7202 | "Stof\\DoctrineExtensionsBundle\\": "" | ||
7203 | } | ||
7204 | }, | ||
7205 | "notification-url": "https://packagist.org/downloads/", | ||
7206 | "license": [ | ||
7207 | "MIT" | ||
7208 | ], | ||
7209 | "authors": [ | ||
7210 | { | ||
7211 | "name": "Christophe Coevoet", | ||
7212 | "email": "stof@notk.org" | ||
7213 | } | ||
7214 | ], | ||
7215 | "description": "Integration of the gedmo/doctrine-extensions with Symfony2", | ||
7216 | "homepage": "https://github.com/stof/StofDoctrineExtensionsBundle", | ||
7217 | "keywords": [ | ||
7218 | "behaviors", | ||
7219 | "doctrine2", | ||
7220 | "extensions", | ||
7221 | "gedmo", | ||
7222 | "loggable", | ||
7223 | "nestedset", | ||
7224 | "sluggable", | ||
7225 | "sortable", | ||
7226 | "timestampable", | ||
7227 | "translatable", | ||
7228 | "tree" | ||
7229 | ], | ||
7230 | "time": "2017-12-24T16:06:50+00:00" | ||
7231 | }, | ||
7232 | { | ||
7233 | "name": "swiftmailer/swiftmailer", | ||
7234 | "version": "v6.2.1", | ||
7235 | "source": { | ||
7236 | "type": "git", | ||
7237 | "url": "https://github.com/swiftmailer/swiftmailer.git", | ||
7238 | "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a" | ||
7239 | }, | ||
7240 | "dist": { | ||
7241 | "type": "zip", | ||
7242 | "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a", | ||
7243 | "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a", | ||
7244 | "shasum": "" | ||
7245 | }, | ||
7246 | "require": { | ||
7247 | "egulias/email-validator": "~2.0", | ||
7248 | "php": ">=7.0.0", | ||
7249 | "symfony/polyfill-iconv": "^1.0", | ||
7250 | "symfony/polyfill-intl-idn": "^1.10", | ||
7251 | "symfony/polyfill-mbstring": "^1.0" | ||
7252 | }, | ||
7253 | "require-dev": { | ||
7254 | "mockery/mockery": "~0.9.1", | ||
7255 | "symfony/phpunit-bridge": "^3.4.19|^4.1.8" | ||
7256 | }, | ||
7257 | "suggest": { | ||
7258 | "ext-intl": "Needed to support internationalized email addresses", | ||
7259 | "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed" | ||
7260 | }, | ||
7261 | "type": "library", | ||
7262 | "extra": { | ||
7263 | "branch-alias": { | ||
7264 | "dev-master": "6.2-dev" | ||
7265 | } | ||
7266 | }, | ||
7267 | "autoload": { | ||
7268 | "files": [ | ||
7269 | "lib/swift_required.php" | ||
7270 | ] | ||
7271 | }, | ||
7272 | "notification-url": "https://packagist.org/downloads/", | ||
7273 | "license": [ | ||
7274 | "MIT" | ||
7275 | ], | ||
7276 | "authors": [ | ||
7277 | { | ||
7278 | "name": "Chris Corbyn" | ||
7279 | }, | ||
7280 | { | ||
7281 | "name": "Fabien Potencier", | ||
7282 | "email": "fabien@symfony.com" | ||
7283 | } | ||
7284 | ], | ||
7285 | "description": "Swiftmailer, free feature-rich PHP mailer", | ||
7286 | "homepage": "https://swiftmailer.symfony.com", | ||
7287 | "keywords": [ | ||
7288 | "email", | ||
7289 | "mail", | ||
7290 | "mailer" | ||
7291 | ], | ||
7292 | "time": "2019-04-21T09:21:45+00:00" | ||
7293 | }, | ||
7294 | { | ||
7295 | "name": "symfony/monolog-bundle", | ||
7296 | "version": "v3.3.1", | ||
7297 | "source": { | ||
7298 | "type": "git", | ||
7299 | "url": "https://github.com/symfony/monolog-bundle.git", | ||
7300 | "reference": "572e143afc03419a75ab002c80a2fd99299195ff" | ||
7301 | }, | ||
7302 | "dist": { | ||
7303 | "type": "zip", | ||
7304 | "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/572e143afc03419a75ab002c80a2fd99299195ff", | ||
7305 | "reference": "572e143afc03419a75ab002c80a2fd99299195ff", | ||
7306 | "shasum": "" | ||
7307 | }, | ||
7308 | "require": { | ||
7309 | "monolog/monolog": "~1.22", | ||
7310 | "php": ">=5.6", | ||
7311 | "symfony/config": "~2.7|~3.3|~4.0", | ||
7312 | "symfony/dependency-injection": "~2.7|~3.4.10|^4.0.10", | ||
7313 | "symfony/http-kernel": "~2.7|~3.3|~4.0", | ||
7314 | "symfony/monolog-bridge": "~2.7|~3.3|~4.0" | ||
7315 | }, | ||
7316 | "require-dev": { | ||
7317 | "symfony/console": "~2.7|~3.3|~4.0", | ||
7318 | "symfony/phpunit-bridge": "^3.3|^4.0", | ||
7319 | "symfony/yaml": "~2.7|~3.3|~4.0" | ||
7320 | }, | ||
7321 | "type": "symfony-bundle", | ||
7322 | "extra": { | ||
7323 | "branch-alias": { | ||
7324 | "dev-master": "3.x-dev" | ||
7325 | } | ||
7326 | }, | ||
7327 | "autoload": { | ||
7328 | "psr-4": { | ||
7329 | "Symfony\\Bundle\\MonologBundle\\": "" | ||
7330 | }, | ||
7331 | "exclude-from-classmap": [ | ||
7332 | "/Tests/" | ||
7333 | ] | ||
7334 | }, | ||
7335 | "notification-url": "https://packagist.org/downloads/", | ||
7336 | "license": [ | ||
7337 | "MIT" | ||
7338 | ], | ||
7339 | "authors": [ | ||
7340 | { | ||
7341 | "name": "Symfony Community", | ||
7342 | "homepage": "http://symfony.com/contributors" | ||
7343 | }, | ||
7344 | { | ||
7345 | "name": "Fabien Potencier", | ||
7346 | "email": "fabien@symfony.com" | ||
7347 | } | ||
7348 | ], | ||
7349 | "description": "Symfony MonologBundle", | ||
7350 | "homepage": "http://symfony.com", | ||
7351 | "keywords": [ | ||
7352 | "log", | ||
7353 | "logging" | ||
7354 | ], | ||
7355 | "time": "2018-11-04T09:58:13+00:00" | ||
7356 | }, | ||
7357 | { | ||
7358 | "name": "symfony/polyfill-apcu", | ||
7359 | "version": "v1.11.0", | ||
7360 | "source": { | ||
7361 | "type": "git", | ||
7362 | "url": "https://github.com/symfony/polyfill-apcu.git", | ||
7363 | "reference": "a502face1da6a53289480166f24de2c3c68e5c3c" | ||
7364 | }, | ||
7365 | "dist": { | ||
7366 | "type": "zip", | ||
7367 | "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/a502face1da6a53289480166f24de2c3c68e5c3c", | ||
7368 | "reference": "a502face1da6a53289480166f24de2c3c68e5c3c", | ||
7369 | "shasum": "" | ||
7370 | }, | ||
7371 | "require": { | ||
7372 | "php": ">=5.3.3" | ||
7373 | }, | ||
7374 | "type": "library", | ||
7375 | "extra": { | ||
7376 | "branch-alias": { | ||
7377 | "dev-master": "1.11-dev" | ||
7378 | } | ||
7379 | }, | ||
7380 | "autoload": { | ||
7381 | "psr-4": { | ||
7382 | "Symfony\\Polyfill\\Apcu\\": "" | ||
7383 | }, | ||
7384 | "files": [ | ||
7385 | "bootstrap.php" | ||
7386 | ] | ||
7387 | }, | ||
7388 | "notification-url": "https://packagist.org/downloads/", | ||
7389 | "license": [ | ||
7390 | "MIT" | ||
7391 | ], | ||
7392 | "authors": [ | ||
7393 | { | ||
7394 | "name": "Nicolas Grekas", | ||
7395 | "email": "p@tchwork.com" | ||
7396 | }, | ||
7397 | { | ||
7398 | "name": "Symfony Community", | ||
7399 | "homepage": "https://symfony.com/contributors" | ||
7400 | } | ||
7401 | ], | ||
7402 | "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions", | ||
7403 | "homepage": "https://symfony.com", | ||
7404 | "keywords": [ | ||
7405 | "apcu", | ||
7406 | "compatibility", | ||
7407 | "polyfill", | ||
7408 | "portable", | ||
7409 | "shim" | ||
7410 | ], | ||
7411 | "time": "2019-02-06T07:57:58+00:00" | ||
7412 | }, | ||
7413 | { | ||
7414 | "name": "symfony/polyfill-ctype", | ||
7415 | "version": "v1.11.0", | ||
7416 | "source": { | ||
7417 | "type": "git", | ||
7418 | "url": "https://github.com/symfony/polyfill-ctype.git", | ||
7419 | "reference": "82ebae02209c21113908c229e9883c419720738a" | ||
7420 | }, | ||
7421 | "dist": { | ||
7422 | "type": "zip", | ||
7423 | "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a", | ||
7424 | "reference": "82ebae02209c21113908c229e9883c419720738a", | ||
7425 | "shasum": "" | ||
7426 | }, | ||
7427 | "require": { | ||
7428 | "php": ">=5.3.3" | ||
7429 | }, | ||
7430 | "suggest": { | ||
7431 | "ext-ctype": "For best performance" | ||
7432 | }, | ||
7433 | "type": "library", | ||
7434 | "extra": { | ||
7435 | "branch-alias": { | ||
7436 | "dev-master": "1.11-dev" | ||
7437 | } | ||
7438 | }, | ||
7439 | "autoload": { | ||
7440 | "psr-4": { | ||
7441 | "Symfony\\Polyfill\\Ctype\\": "" | ||
7442 | }, | ||
7443 | "files": [ | ||
7444 | "bootstrap.php" | ||
7445 | ] | ||
7446 | }, | ||
7447 | "notification-url": "https://packagist.org/downloads/", | ||
7448 | "license": [ | ||
7449 | "MIT" | ||
7450 | ], | ||
7451 | "authors": [ | ||
7452 | { | ||
7453 | "name": "Symfony Community", | ||
7454 | "homepage": "https://symfony.com/contributors" | ||
7455 | }, | ||
7456 | { | ||
7457 | "name": "Gert de Pagter", | ||
7458 | "email": "backendtea@gmail.com" | ||
7459 | } | ||
7460 | ], | ||
7461 | "description": "Symfony polyfill for ctype functions", | ||
7462 | "homepage": "https://symfony.com", | ||
7463 | "keywords": [ | ||
7464 | "compatibility", | ||
7465 | "ctype", | ||
7466 | "polyfill", | ||
7467 | "portable" | ||
7468 | ], | ||
7469 | "time": "2019-02-06T07:57:58+00:00" | ||
7470 | }, | ||
7471 | { | ||
7472 | "name": "symfony/polyfill-iconv", | ||
7473 | "version": "v1.11.0", | ||
7474 | "source": { | ||
7475 | "type": "git", | ||
7476 | "url": "https://github.com/symfony/polyfill-iconv.git", | ||
7477 | "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7" | ||
7478 | }, | ||
7479 | "dist": { | ||
7480 | "type": "zip", | ||
7481 | "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7", | ||
7482 | "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7", | ||
7483 | "shasum": "" | ||
7484 | }, | ||
7485 | "require": { | ||
7486 | "php": ">=5.3.3" | ||
7487 | }, | ||
7488 | "suggest": { | ||
7489 | "ext-iconv": "For best performance" | ||
7490 | }, | ||
7491 | "type": "library", | ||
7492 | "extra": { | ||
7493 | "branch-alias": { | ||
7494 | "dev-master": "1.11-dev" | ||
7495 | } | ||
7496 | }, | ||
7497 | "autoload": { | ||
7498 | "psr-4": { | ||
7499 | "Symfony\\Polyfill\\Iconv\\": "" | ||
7500 | }, | ||
7501 | "files": [ | ||
7502 | "bootstrap.php" | ||
7503 | ] | ||
7504 | }, | ||
7505 | "notification-url": "https://packagist.org/downloads/", | ||
7506 | "license": [ | ||
7507 | "MIT" | ||
7508 | ], | ||
7509 | "authors": [ | ||
7510 | { | ||
7511 | "name": "Nicolas Grekas", | ||
7512 | "email": "p@tchwork.com" | ||
7513 | }, | ||
7514 | { | ||
7515 | "name": "Symfony Community", | ||
7516 | "homepage": "https://symfony.com/contributors" | ||
7517 | } | ||
7518 | ], | ||
7519 | "description": "Symfony polyfill for the Iconv extension", | ||
7520 | "homepage": "https://symfony.com", | ||
7521 | "keywords": [ | ||
7522 | "compatibility", | ||
7523 | "iconv", | ||
7524 | "polyfill", | ||
7525 | "portable", | ||
7526 | "shim" | ||
7527 | ], | ||
7528 | "time": "2019-02-06T07:57:58+00:00" | ||
7529 | }, | ||
7530 | { | ||
7531 | "name": "symfony/polyfill-intl-icu", | ||
7532 | "version": "v1.11.0", | ||
7533 | "source": { | ||
7534 | "type": "git", | ||
7535 | "url": "https://github.com/symfony/polyfill-intl-icu.git", | ||
7536 | "reference": "999878a3a09d73cae157b0cf89bb6fb2cc073057" | ||
7537 | }, | ||
7538 | "dist": { | ||
7539 | "type": "zip", | ||
7540 | "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/999878a3a09d73cae157b0cf89bb6fb2cc073057", | ||
7541 | "reference": "999878a3a09d73cae157b0cf89bb6fb2cc073057", | ||
7542 | "shasum": "" | ||
7543 | }, | ||
7544 | "require": { | ||
7545 | "php": ">=5.3.3", | ||
7546 | "symfony/intl": "~2.3|~3.0|~4.0" | ||
7547 | }, | ||
7548 | "suggest": { | ||
7549 | "ext-intl": "For best performance" | ||
7550 | }, | ||
7551 | "type": "library", | ||
7552 | "extra": { | ||
7553 | "branch-alias": { | ||
7554 | "dev-master": "1.9-dev" | ||
7555 | } | ||
7556 | }, | ||
7557 | "autoload": { | ||
7558 | "files": [ | ||
7559 | "bootstrap.php" | ||
7560 | ] | ||
7561 | }, | ||
7562 | "notification-url": "https://packagist.org/downloads/", | ||
7563 | "license": [ | ||
7564 | "MIT" | ||
7565 | ], | ||
7566 | "authors": [ | ||
7567 | { | ||
7568 | "name": "Nicolas Grekas", | ||
7569 | "email": "p@tchwork.com" | ||
7570 | }, | ||
7571 | { | ||
7572 | "name": "Symfony Community", | ||
7573 | "homepage": "https://symfony.com/contributors" | ||
7574 | } | ||
7575 | ], | ||
7576 | "description": "Symfony polyfill for intl's ICU-related data and classes", | ||
7577 | "homepage": "https://symfony.com", | ||
7578 | "keywords": [ | ||
7579 | "compatibility", | ||
7580 | "icu", | ||
7581 | "intl", | ||
7582 | "polyfill", | ||
7583 | "portable", | ||
7584 | "shim" | ||
7585 | ], | ||
7586 | "time": "2019-01-07T19:39:47+00:00" | ||
7587 | }, | ||
7588 | { | ||
7589 | "name": "symfony/polyfill-intl-idn", | ||
7590 | "version": "v1.11.0", | ||
7591 | "source": { | ||
7592 | "type": "git", | ||
7593 | "url": "https://github.com/symfony/polyfill-intl-idn.git", | ||
7594 | "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af" | ||
7595 | }, | ||
7596 | "dist": { | ||
7597 | "type": "zip", | ||
7598 | "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c766e95bec706cdd89903b1eda8afab7d7a6b7af", | ||
7599 | "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af", | ||
7600 | "shasum": "" | ||
7601 | }, | ||
7602 | "require": { | ||
7603 | "php": ">=5.3.3", | ||
7604 | "symfony/polyfill-mbstring": "^1.3", | ||
7605 | "symfony/polyfill-php72": "^1.9" | ||
7606 | }, | ||
7607 | "suggest": { | ||
7608 | "ext-intl": "For best performance" | ||
7609 | }, | ||
7610 | "type": "library", | ||
7611 | "extra": { | ||
7612 | "branch-alias": { | ||
7613 | "dev-master": "1.9-dev" | ||
7614 | } | ||
7615 | }, | ||
7616 | "autoload": { | ||
7617 | "psr-4": { | ||
7618 | "Symfony\\Polyfill\\Intl\\Idn\\": "" | ||
7619 | }, | ||
7620 | "files": [ | ||
7621 | "bootstrap.php" | ||
7622 | ] | ||
7623 | }, | ||
7624 | "notification-url": "https://packagist.org/downloads/", | ||
7625 | "license": [ | ||
7626 | "MIT" | ||
7627 | ], | ||
7628 | "authors": [ | ||
7629 | { | ||
7630 | "name": "Symfony Community", | ||
7631 | "homepage": "https://symfony.com/contributors" | ||
7632 | }, | ||
7633 | { | ||
7634 | "name": "Laurent Bassin", | ||
7635 | "email": "laurent@bassin.info" | ||
7636 | } | ||
7637 | ], | ||
7638 | "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", | ||
7639 | "homepage": "https://symfony.com", | ||
7640 | "keywords": [ | ||
7641 | "compatibility", | ||
7642 | "idn", | ||
7643 | "intl", | ||
7644 | "polyfill", | ||
7645 | "portable", | ||
7646 | "shim" | ||
7647 | ], | ||
7648 | "time": "2019-03-04T13:44:35+00:00" | ||
7649 | }, | ||
7650 | { | ||
7651 | "name": "symfony/polyfill-mbstring", | ||
7652 | "version": "v1.11.0", | ||
7653 | "source": { | ||
7654 | "type": "git", | ||
7655 | "url": "https://github.com/symfony/polyfill-mbstring.git", | ||
7656 | "reference": "fe5e94c604826c35a32fa832f35bd036b6799609" | ||
7657 | }, | ||
7658 | "dist": { | ||
7659 | "type": "zip", | ||
7660 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609", | ||
7661 | "reference": "fe5e94c604826c35a32fa832f35bd036b6799609", | ||
7662 | "shasum": "" | ||
7663 | }, | ||
7664 | "require": { | ||
7665 | "php": ">=5.3.3" | ||
7666 | }, | ||
7667 | "suggest": { | ||
7668 | "ext-mbstring": "For best performance" | ||
7669 | }, | ||
7670 | "type": "library", | ||
7671 | "extra": { | ||
7672 | "branch-alias": { | ||
7673 | "dev-master": "1.11-dev" | ||
7674 | } | ||
7675 | }, | ||
7676 | "autoload": { | ||
7677 | "psr-4": { | ||
7678 | "Symfony\\Polyfill\\Mbstring\\": "" | ||
7679 | }, | ||
7680 | "files": [ | ||
7681 | "bootstrap.php" | ||
7682 | ] | ||
7683 | }, | ||
7684 | "notification-url": "https://packagist.org/downloads/", | ||
7685 | "license": [ | ||
7686 | "MIT" | ||
7687 | ], | ||
7688 | "authors": [ | ||
7689 | { | ||
7690 | "name": "Nicolas Grekas", | ||
7691 | "email": "p@tchwork.com" | ||
7692 | }, | ||
7693 | { | ||
7694 | "name": "Symfony Community", | ||
7695 | "homepage": "https://symfony.com/contributors" | ||
7696 | } | ||
7697 | ], | ||
7698 | "description": "Symfony polyfill for the Mbstring extension", | ||
7699 | "homepage": "https://symfony.com", | ||
7700 | "keywords": [ | ||
7701 | "compatibility", | ||
7702 | "mbstring", | ||
7703 | "polyfill", | ||
7704 | "portable", | ||
7705 | "shim" | ||
7706 | ], | ||
7707 | "time": "2019-02-06T07:57:58+00:00" | ||
7708 | }, | ||
7709 | { | ||
7710 | "name": "symfony/polyfill-php56", | ||
7711 | "version": "v1.11.0", | ||
7712 | "source": { | ||
7713 | "type": "git", | ||
7714 | "url": "https://github.com/symfony/polyfill-php56.git", | ||
7715 | "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42" | ||
7716 | }, | ||
7717 | "dist": { | ||
7718 | "type": "zip", | ||
7719 | "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/f4dddbc5c3471e1b700a147a20ae17cdb72dbe42", | ||
7720 | "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42", | ||
7721 | "shasum": "" | ||
7722 | }, | ||
7723 | "require": { | ||
7724 | "php": ">=5.3.3", | ||
7725 | "symfony/polyfill-util": "~1.0" | ||
7726 | }, | ||
7727 | "type": "library", | ||
7728 | "extra": { | ||
7729 | "branch-alias": { | ||
7730 | "dev-master": "1.11-dev" | ||
7731 | } | ||
7732 | }, | ||
7733 | "autoload": { | ||
7734 | "psr-4": { | ||
7735 | "Symfony\\Polyfill\\Php56\\": "" | ||
7736 | }, | ||
7737 | "files": [ | ||
7738 | "bootstrap.php" | ||
7739 | ] | ||
7740 | }, | ||
7741 | "notification-url": "https://packagist.org/downloads/", | ||
7742 | "license": [ | ||
7743 | "MIT" | ||
7744 | ], | ||
7745 | "authors": [ | ||
7746 | { | ||
7747 | "name": "Nicolas Grekas", | ||
7748 | "email": "p@tchwork.com" | ||
7749 | }, | ||
7750 | { | ||
7751 | "name": "Symfony Community", | ||
7752 | "homepage": "https://symfony.com/contributors" | ||
7753 | } | ||
7754 | ], | ||
7755 | "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", | ||
7756 | "homepage": "https://symfony.com", | ||
7757 | "keywords": [ | ||
7758 | "compatibility", | ||
7759 | "polyfill", | ||
7760 | "portable", | ||
7761 | "shim" | ||
7762 | ], | ||
7763 | "time": "2019-02-06T07:57:58+00:00" | ||
7764 | }, | ||
7765 | { | ||
7766 | "name": "symfony/polyfill-php70", | ||
7767 | "version": "v1.11.0", | ||
7768 | "source": { | ||
7769 | "type": "git", | ||
7770 | "url": "https://github.com/symfony/polyfill-php70.git", | ||
7771 | "reference": "bc4858fb611bda58719124ca079baff854149c89" | ||
7772 | }, | ||
7773 | "dist": { | ||
7774 | "type": "zip", | ||
7775 | "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89", | ||
7776 | "reference": "bc4858fb611bda58719124ca079baff854149c89", | ||
7777 | "shasum": "" | ||
7778 | }, | ||
7779 | "require": { | ||
7780 | "paragonie/random_compat": "~1.0|~2.0|~9.99", | ||
7781 | "php": ">=5.3.3" | ||
7782 | }, | ||
7783 | "type": "library", | ||
7784 | "extra": { | ||
7785 | "branch-alias": { | ||
7786 | "dev-master": "1.11-dev" | ||
7787 | } | ||
7788 | }, | ||
7789 | "autoload": { | ||
7790 | "psr-4": { | ||
7791 | "Symfony\\Polyfill\\Php70\\": "" | ||
7792 | }, | ||
7793 | "files": [ | ||
7794 | "bootstrap.php" | ||
7795 | ], | ||
7796 | "classmap": [ | ||
7797 | "Resources/stubs" | ||
7798 | ] | ||
7799 | }, | ||
7800 | "notification-url": "https://packagist.org/downloads/", | ||
7801 | "license": [ | ||
7802 | "MIT" | ||
7803 | ], | ||
7804 | "authors": [ | ||
7805 | { | ||
7806 | "name": "Nicolas Grekas", | ||
7807 | "email": "p@tchwork.com" | ||
7808 | }, | ||
7809 | { | ||
7810 | "name": "Symfony Community", | ||
7811 | "homepage": "https://symfony.com/contributors" | ||
7812 | } | ||
7813 | ], | ||
7814 | "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", | ||
7815 | "homepage": "https://symfony.com", | ||
7816 | "keywords": [ | ||
7817 | "compatibility", | ||
7818 | "polyfill", | ||
7819 | "portable", | ||
7820 | "shim" | ||
7821 | ], | ||
7822 | "time": "2019-02-06T07:57:58+00:00" | ||
7823 | }, | ||
7824 | { | ||
7825 | "name": "symfony/polyfill-php72", | ||
7826 | "version": "v1.11.0", | ||
7827 | "source": { | ||
7828 | "type": "git", | ||
7829 | "url": "https://github.com/symfony/polyfill-php72.git", | ||
7830 | "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c" | ||
7831 | }, | ||
7832 | "dist": { | ||
7833 | "type": "zip", | ||
7834 | "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c", | ||
7835 | "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c", | ||
7836 | "shasum": "" | ||
7837 | }, | ||
7838 | "require": { | ||
7839 | "php": ">=5.3.3" | ||
7840 | }, | ||
7841 | "type": "library", | ||
7842 | "extra": { | ||
7843 | "branch-alias": { | ||
7844 | "dev-master": "1.11-dev" | ||
7845 | } | ||
7846 | }, | ||
7847 | "autoload": { | ||
7848 | "psr-4": { | ||
7849 | "Symfony\\Polyfill\\Php72\\": "" | ||
7850 | }, | ||
7851 | "files": [ | ||
7852 | "bootstrap.php" | ||
7853 | ] | ||
7854 | }, | ||
7855 | "notification-url": "https://packagist.org/downloads/", | ||
7856 | "license": [ | ||
7857 | "MIT" | ||
7858 | ], | ||
7859 | "authors": [ | ||
7860 | { | ||
7861 | "name": "Nicolas Grekas", | ||
7862 | "email": "p@tchwork.com" | ||
7863 | }, | ||
7864 | { | ||
7865 | "name": "Symfony Community", | ||
7866 | "homepage": "https://symfony.com/contributors" | ||
7867 | } | ||
7868 | ], | ||
7869 | "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", | ||
7870 | "homepage": "https://symfony.com", | ||
7871 | "keywords": [ | ||
7872 | "compatibility", | ||
7873 | "polyfill", | ||
7874 | "portable", | ||
7875 | "shim" | ||
7876 | ], | ||
7877 | "time": "2019-02-06T07:57:58+00:00" | ||
7878 | }, | ||
7879 | { | ||
7880 | "name": "symfony/polyfill-util", | ||
7881 | "version": "v1.11.0", | ||
7882 | "source": { | ||
7883 | "type": "git", | ||
7884 | "url": "https://github.com/symfony/polyfill-util.git", | ||
7885 | "reference": "b46c6cae28a3106735323f00a0c38eccf2328897" | ||
7886 | }, | ||
7887 | "dist": { | ||
7888 | "type": "zip", | ||
7889 | "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/b46c6cae28a3106735323f00a0c38eccf2328897", | ||
7890 | "reference": "b46c6cae28a3106735323f00a0c38eccf2328897", | ||
7891 | "shasum": "" | ||
7892 | }, | ||
7893 | "require": { | ||
7894 | "php": ">=5.3.3" | ||
7895 | }, | ||
7896 | "type": "library", | ||
7897 | "extra": { | ||
7898 | "branch-alias": { | ||
7899 | "dev-master": "1.11-dev" | ||
7900 | } | ||
7901 | }, | ||
7902 | "autoload": { | ||
7903 | "psr-4": { | ||
7904 | "Symfony\\Polyfill\\Util\\": "" | ||
7905 | } | ||
7906 | }, | ||
7907 | "notification-url": "https://packagist.org/downloads/", | ||
7908 | "license": [ | ||
7909 | "MIT" | ||
7910 | ], | ||
7911 | "authors": [ | ||
7912 | { | ||
7913 | "name": "Nicolas Grekas", | ||
7914 | "email": "p@tchwork.com" | ||
7915 | }, | ||
7916 | { | ||
7917 | "name": "Symfony Community", | ||
7918 | "homepage": "https://symfony.com/contributors" | ||
7919 | } | ||
7920 | ], | ||
7921 | "description": "Symfony utilities for portability of PHP codes", | ||
7922 | "homepage": "https://symfony.com", | ||
7923 | "keywords": [ | ||
7924 | "compat", | ||
7925 | "compatibility", | ||
7926 | "polyfill", | ||
7927 | "shim" | ||
7928 | ], | ||
7929 | "time": "2019-02-08T14:16:39+00:00" | ||
7930 | }, | ||
7931 | { | ||
7932 | "name": "symfony/swiftmailer-bundle", | ||
7933 | "version": "v3.2.6", | ||
7934 | "source": { | ||
7935 | "type": "git", | ||
7936 | "url": "https://github.com/symfony/swiftmailer-bundle.git", | ||
7937 | "reference": "7a83160b50a2479d37eb74ba71577380b9afe4f5" | ||
7938 | }, | ||
7939 | "dist": { | ||
7940 | "type": "zip", | ||
7941 | "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/7a83160b50a2479d37eb74ba71577380b9afe4f5", | ||
7942 | "reference": "7a83160b50a2479d37eb74ba71577380b9afe4f5", | ||
7943 | "shasum": "" | ||
7944 | }, | ||
7945 | "require": { | ||
7946 | "php": ">=7.0.0", | ||
7947 | "swiftmailer/swiftmailer": "^6.1.3", | ||
7948 | "symfony/config": "~2.8|~3.3|~4.0", | ||
7949 | "symfony/dependency-injection": "~2.7|~3.3|~4.0", | ||
7950 | "symfony/http-kernel": "~2.7|~3.3|~4.0" | ||
7951 | }, | ||
7952 | "require-dev": { | ||
7953 | "symfony/console": "~2.7|~3.3|~4.0", | ||
7954 | "symfony/framework-bundle": "~2.7|~3.3|~4.0", | ||
7955 | "symfony/phpunit-bridge": "~3.3|~4.0", | ||
7956 | "symfony/yaml": "~2.7|~3.3|~4.0" | ||
7957 | }, | ||
7958 | "suggest": { | ||
7959 | "psr/log": "Allows logging" | ||
7960 | }, | ||
7961 | "type": "symfony-bundle", | ||
7962 | "extra": { | ||
7963 | "branch-alias": { | ||
7964 | "dev-master": "3.2-dev" | ||
7965 | } | ||
7966 | }, | ||
7967 | "autoload": { | ||
7968 | "psr-4": { | ||
7969 | "Symfony\\Bundle\\SwiftmailerBundle\\": "" | ||
7970 | }, | ||
7971 | "exclude-from-classmap": [ | ||
7972 | "/Tests/" | ||
7973 | ] | ||
7974 | }, | ||
7975 | "notification-url": "https://packagist.org/downloads/", | ||
7976 | "license": [ | ||
7977 | "MIT" | ||
7978 | ], | ||
7979 | "authors": [ | ||
7980 | { | ||
7981 | "name": "Symfony Community", | ||
7982 | "homepage": "http://symfony.com/contributors" | ||
7983 | }, | ||
7984 | { | ||
7985 | "name": "Fabien Potencier", | ||
7986 | "email": "fabien@symfony.com" | ||
7987 | } | ||
7988 | ], | ||
7989 | "description": "Symfony SwiftmailerBundle", | ||
7990 | "homepage": "http://symfony.com", | ||
7991 | "time": "2019-04-18T15:52:54+00:00" | ||
7992 | }, | ||
7993 | { | ||
7994 | "name": "symfony/symfony", | ||
7995 | "version": "v3.4.28", | ||
7996 | "source": { | ||
7997 | "type": "git", | ||
7998 | "url": "https://github.com/symfony/symfony.git", | ||
7999 | "reference": "5e05ffeb1c2e538127e5a33b419edb8b2904b99e" | ||
8000 | }, | ||
8001 | "dist": { | ||
8002 | "type": "zip", | ||
8003 | "url": "https://api.github.com/repos/symfony/symfony/zipball/5e05ffeb1c2e538127e5a33b419edb8b2904b99e", | ||
8004 | "reference": "5e05ffeb1c2e538127e5a33b419edb8b2904b99e", | ||
8005 | "shasum": "" | ||
8006 | }, | ||
8007 | "require": { | ||
8008 | "doctrine/common": "~2.4", | ||
8009 | "ext-xml": "*", | ||
8010 | "fig/link-util": "^1.0", | ||
8011 | "php": "^5.5.9|>=7.0.8", | ||
8012 | "psr/cache": "~1.0", | ||
8013 | "psr/container": "^1.0", | ||
8014 | "psr/link": "^1.0", | ||
8015 | "psr/log": "~1.0", | ||
8016 | "psr/simple-cache": "^1.0", | ||
8017 | "symfony/polyfill-apcu": "~1.1", | ||
8018 | "symfony/polyfill-ctype": "~1.8", | ||
8019 | "symfony/polyfill-intl-icu": "~1.0", | ||
8020 | "symfony/polyfill-mbstring": "~1.0", | ||
8021 | "symfony/polyfill-php56": "~1.0", | ||
8022 | "symfony/polyfill-php70": "~1.6", | ||
8023 | "twig/twig": "^1.40|^2.9" | ||
8024 | }, | ||
8025 | "conflict": { | ||
8026 | "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2", | ||
8027 | "phpdocumentor/type-resolver": "<0.3.0", | ||
8028 | "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" | ||
8029 | }, | ||
8030 | "provide": { | ||
8031 | "psr/cache-implementation": "1.0", | ||
8032 | "psr/container-implementation": "1.0", | ||
8033 | "psr/log-implementation": "1.0", | ||
8034 | "psr/simple-cache-implementation": "1.0" | ||
8035 | }, | ||
8036 | "replace": { | ||
8037 | "symfony/asset": "self.version", | ||
8038 | "symfony/browser-kit": "self.version", | ||
8039 | "symfony/cache": "self.version", | ||
8040 | "symfony/class-loader": "self.version", | ||
8041 | "symfony/config": "self.version", | ||
8042 | "symfony/console": "self.version", | ||
8043 | "symfony/css-selector": "self.version", | ||
8044 | "symfony/debug": "self.version", | ||
8045 | "symfony/debug-bundle": "self.version", | ||
8046 | "symfony/dependency-injection": "self.version", | ||
8047 | "symfony/doctrine-bridge": "self.version", | ||
8048 | "symfony/dom-crawler": "self.version", | ||
8049 | "symfony/dotenv": "self.version", | ||
8050 | "symfony/event-dispatcher": "self.version", | ||
8051 | "symfony/expression-language": "self.version", | ||
8052 | "symfony/filesystem": "self.version", | ||
8053 | "symfony/finder": "self.version", | ||
8054 | "symfony/form": "self.version", | ||
8055 | "symfony/framework-bundle": "self.version", | ||
8056 | "symfony/http-foundation": "self.version", | ||
8057 | "symfony/http-kernel": "self.version", | ||
8058 | "symfony/inflector": "self.version", | ||
8059 | "symfony/intl": "self.version", | ||
8060 | "symfony/ldap": "self.version", | ||
8061 | "symfony/lock": "self.version", | ||
8062 | "symfony/monolog-bridge": "self.version", | ||
8063 | "symfony/options-resolver": "self.version", | ||
8064 | "symfony/process": "self.version", | ||
8065 | "symfony/property-access": "self.version", | ||
8066 | "symfony/property-info": "self.version", | ||
8067 | "symfony/proxy-manager-bridge": "self.version", | ||
8068 | "symfony/routing": "self.version", | ||
8069 | "symfony/security": "self.version", | ||
8070 | "symfony/security-bundle": "self.version", | ||
8071 | "symfony/security-core": "self.version", | ||
8072 | "symfony/security-csrf": "self.version", | ||
8073 | "symfony/security-guard": "self.version", | ||
8074 | "symfony/security-http": "self.version", | ||
8075 | "symfony/serializer": "self.version", | ||
8076 | "symfony/stopwatch": "self.version", | ||
8077 | "symfony/templating": "self.version", | ||
8078 | "symfony/translation": "self.version", | ||
8079 | "symfony/twig-bridge": "self.version", | ||
8080 | "symfony/twig-bundle": "self.version", | ||
8081 | "symfony/validator": "self.version", | ||
8082 | "symfony/var-dumper": "self.version", | ||
8083 | "symfony/web-link": "self.version", | ||
8084 | "symfony/web-profiler-bundle": "self.version", | ||
8085 | "symfony/web-server-bundle": "self.version", | ||
8086 | "symfony/workflow": "self.version", | ||
8087 | "symfony/yaml": "self.version" | ||
8088 | }, | ||
8089 | "require-dev": { | ||
8090 | "cache/integration-tests": "dev-master", | ||
8091 | "doctrine/annotations": "~1.0", | ||
8092 | "doctrine/cache": "~1.6", | ||
8093 | "doctrine/data-fixtures": "1.0.*", | ||
8094 | "doctrine/dbal": "~2.4", | ||
8095 | "doctrine/doctrine-bundle": "~1.4", | ||
8096 | "doctrine/orm": "~2.4,>=2.4.5", | ||
8097 | "egulias/email-validator": "~1.2,>=1.2.8|~2.0", | ||
8098 | "monolog/monolog": "~1.11", | ||
8099 | "ocramius/proxy-manager": "~0.4|~1.0|~2.0", | ||
8100 | "phpdocumentor/reflection-docblock": "^3.0|^4.0", | ||
8101 | "predis/predis": "~1.0", | ||
8102 | "symfony/phpunit-bridge": "~3.4|~4.0", | ||
8103 | "symfony/security-acl": "~2.8|~3.0" | ||
8104 | }, | ||
8105 | "type": "library", | ||
8106 | "extra": { | ||
8107 | "branch-alias": { | ||
8108 | "dev-master": "3.4-dev" | ||
8109 | } | ||
8110 | }, | ||
8111 | "autoload": { | ||
8112 | "psr-4": { | ||
8113 | "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/", | ||
8114 | "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/", | ||
8115 | "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/", | ||
8116 | "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/", | ||
8117 | "Symfony\\Bundle\\": "src/Symfony/Bundle/", | ||
8118 | "Symfony\\Component\\": "src/Symfony/Component/" | ||
8119 | }, | ||
8120 | "classmap": [ | ||
8121 | "src/Symfony/Component/Intl/Resources/stubs" | ||
8122 | ], | ||
8123 | "exclude-from-classmap": [ | ||
8124 | "**/Tests/" | ||
8125 | ] | ||
8126 | }, | ||
8127 | "notification-url": "https://packagist.org/downloads/", | ||
8128 | "license": [ | ||
8129 | "MIT" | ||
8130 | ], | ||
8131 | "authors": [ | ||
8132 | { | ||
8133 | "name": "Fabien Potencier", | ||
8134 | "email": "fabien@symfony.com" | ||
8135 | }, | ||
8136 | { | ||
8137 | "name": "Symfony Community", | ||
8138 | "homepage": "https://symfony.com/contributors" | ||
8139 | } | ||
8140 | ], | ||
8141 | "description": "The Symfony PHP framework", | ||
8142 | "homepage": "https://symfony.com", | ||
8143 | "keywords": [ | ||
8144 | "framework" | ||
8145 | ], | ||
8146 | "time": "2019-05-28T09:24:58+00:00" | ||
8147 | }, | ||
8148 | { | ||
8149 | "name": "true/punycode", | ||
8150 | "version": "v2.1.1", | ||
8151 | "source": { | ||
8152 | "type": "git", | ||
8153 | "url": "https://github.com/true/php-punycode.git", | ||
8154 | "reference": "a4d0c11a36dd7f4e7cd7096076cab6d3378a071e" | ||
8155 | }, | ||
8156 | "dist": { | ||
8157 | "type": "zip", | ||
8158 | "url": "https://api.github.com/repos/true/php-punycode/zipball/a4d0c11a36dd7f4e7cd7096076cab6d3378a071e", | ||
8159 | "reference": "a4d0c11a36dd7f4e7cd7096076cab6d3378a071e", | ||
8160 | "shasum": "" | ||
8161 | }, | ||
8162 | "require": { | ||
8163 | "php": ">=5.3.0", | ||
8164 | "symfony/polyfill-mbstring": "^1.3" | ||
8165 | }, | ||
8166 | "require-dev": { | ||
8167 | "phpunit/phpunit": "~4.7", | ||
8168 | "squizlabs/php_codesniffer": "~2.0" | ||
8169 | }, | ||
8170 | "type": "library", | ||
8171 | "autoload": { | ||
8172 | "psr-4": { | ||
8173 | "TrueBV\\": "src/" | ||
8174 | } | ||
8175 | }, | ||
8176 | "notification-url": "https://packagist.org/downloads/", | ||
8177 | "license": [ | ||
8178 | "MIT" | ||
8179 | ], | ||
8180 | "authors": [ | ||
8181 | { | ||
8182 | "name": "Renan Gonçalves", | ||
8183 | "email": "renan.saddam@gmail.com" | ||
8184 | } | ||
8185 | ], | ||
8186 | "description": "A Bootstring encoding of Unicode for Internationalized Domain Names in Applications (IDNA)", | ||
8187 | "homepage": "https://github.com/true/php-punycode", | ||
8188 | "keywords": [ | ||
8189 | "idna", | ||
8190 | "punycode" | ||
8191 | ], | ||
8192 | "time": "2016-11-16T10:37:54+00:00" | ||
8193 | }, | ||
8194 | { | ||
8195 | "name": "twig/extensions", | ||
8196 | "version": "v1.5.4", | ||
8197 | "source": { | ||
8198 | "type": "git", | ||
8199 | "url": "https://github.com/twigphp/Twig-extensions.git", | ||
8200 | "reference": "57873c8b0c1be51caa47df2cdb824490beb16202" | ||
8201 | }, | ||
8202 | "dist": { | ||
8203 | "type": "zip", | ||
8204 | "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/57873c8b0c1be51caa47df2cdb824490beb16202", | ||
8205 | "reference": "57873c8b0c1be51caa47df2cdb824490beb16202", | ||
8206 | "shasum": "" | ||
8207 | }, | ||
8208 | "require": { | ||
8209 | "twig/twig": "^1.27|^2.0" | ||
8210 | }, | ||
8211 | "require-dev": { | ||
8212 | "symfony/phpunit-bridge": "^3.4", | ||
8213 | "symfony/translation": "^2.7|^3.4" | ||
8214 | }, | ||
8215 | "suggest": { | ||
8216 | "symfony/translation": "Allow the time_diff output to be translated" | ||
8217 | }, | ||
8218 | "type": "library", | ||
8219 | "extra": { | ||
8220 | "branch-alias": { | ||
8221 | "dev-master": "1.5-dev" | ||
8222 | } | ||
8223 | }, | ||
8224 | "autoload": { | ||
8225 | "psr-0": { | ||
8226 | "Twig_Extensions_": "lib/" | ||
8227 | }, | ||
8228 | "psr-4": { | ||
8229 | "Twig\\Extensions\\": "src/" | ||
8230 | } | ||
8231 | }, | ||
8232 | "notification-url": "https://packagist.org/downloads/", | ||
8233 | "license": [ | ||
8234 | "MIT" | ||
8235 | ], | ||
8236 | "authors": [ | ||
8237 | { | ||
8238 | "name": "Fabien Potencier", | ||
8239 | "email": "fabien@symfony.com" | ||
8240 | } | ||
8241 | ], | ||
8242 | "description": "Common additional features for Twig that do not directly belong in core", | ||
8243 | "keywords": [ | ||
8244 | "i18n", | ||
8245 | "text" | ||
8246 | ], | ||
8247 | "time": "2018-12-05T18:34:18+00:00" | ||
8248 | }, | ||
8249 | { | ||
8250 | "name": "twig/twig", | ||
8251 | "version": "v1.41.0", | ||
8252 | "source": { | ||
8253 | "type": "git", | ||
8254 | "url": "https://github.com/twigphp/Twig.git", | ||
8255 | "reference": "575cd5028362da591facde1ef5d7b94553c375c9" | ||
8256 | }, | ||
8257 | "dist": { | ||
8258 | "type": "zip", | ||
8259 | "url": "https://api.github.com/repos/twigphp/Twig/zipball/575cd5028362da591facde1ef5d7b94553c375c9", | ||
8260 | "reference": "575cd5028362da591facde1ef5d7b94553c375c9", | ||
8261 | "shasum": "" | ||
8262 | }, | ||
8263 | "require": { | ||
8264 | "php": ">=5.4.0", | ||
8265 | "symfony/polyfill-ctype": "^1.8" | ||
8266 | }, | ||
8267 | "require-dev": { | ||
8268 | "psr/container": "^1.0", | ||
8269 | "symfony/debug": "^2.7", | ||
8270 | "symfony/phpunit-bridge": "^3.4.19|^4.1.8" | ||
8271 | }, | ||
8272 | "type": "library", | ||
8273 | "extra": { | ||
8274 | "branch-alias": { | ||
8275 | "dev-master": "1.41-dev" | ||
8276 | } | ||
8277 | }, | ||
8278 | "autoload": { | ||
8279 | "psr-0": { | ||
8280 | "Twig_": "lib/" | ||
8281 | }, | ||
8282 | "psr-4": { | ||
8283 | "Twig\\": "src/" | ||
8284 | } | ||
8285 | }, | ||
8286 | "notification-url": "https://packagist.org/downloads/", | ||
8287 | "license": [ | ||
8288 | "BSD-3-Clause" | ||
8289 | ], | ||
8290 | "authors": [ | ||
8291 | { | ||
8292 | "name": "Fabien Potencier", | ||
8293 | "email": "fabien@symfony.com", | ||
8294 | "homepage": "http://fabien.potencier.org", | ||
8295 | "role": "Lead Developer" | ||
8296 | }, | ||
8297 | { | ||
8298 | "name": "Armin Ronacher", | ||
8299 | "email": "armin.ronacher@active-4.com", | ||
8300 | "role": "Project Founder" | ||
8301 | }, | ||
8302 | { | ||
8303 | "name": "Twig Team", | ||
8304 | "homepage": "https://twig.symfony.com/contributors", | ||
8305 | "role": "Contributors" | ||
8306 | } | ||
8307 | ], | ||
8308 | "description": "Twig, the flexible, fast, and secure template language for PHP", | ||
8309 | "homepage": "https://twig.symfony.com", | ||
8310 | "keywords": [ | ||
8311 | "templating" | ||
8312 | ], | ||
8313 | "time": "2019-05-14T11:59:08+00:00" | ||
8314 | }, | ||
8315 | { | ||
8316 | "name": "wallabag/php-mobi", | ||
8317 | "version": "1.0.1", | ||
8318 | "source": { | ||
8319 | "type": "git", | ||
8320 | "url": "https://github.com/wallabag/php-mobi.git", | ||
8321 | "reference": "1cd7d022fe6be838535d6bba917d19cc48dcf487" | ||
8322 | }, | ||
8323 | "dist": { | ||
8324 | "type": "zip", | ||
8325 | "url": "https://api.github.com/repos/wallabag/php-mobi/zipball/1cd7d022fe6be838535d6bba917d19cc48dcf487", | ||
8326 | "reference": "1cd7d022fe6be838535d6bba917d19cc48dcf487", | ||
8327 | "shasum": "" | ||
8328 | }, | ||
8329 | "require": { | ||
8330 | "php": ">=5.3.0" | ||
8331 | }, | ||
8332 | "replace": { | ||
8333 | "wallabag/phpmobi": "*" | ||
8334 | }, | ||
8335 | "type": "library", | ||
8336 | "autoload": { | ||
8337 | "files": [ | ||
8338 | "MOBIClass/MOBI.php" | ||
8339 | ] | ||
8340 | }, | ||
8341 | "notification-url": "https://packagist.org/downloads/", | ||
8342 | "license": [ | ||
8343 | "Apache-2.0" | ||
8344 | ], | ||
8345 | "authors": [ | ||
8346 | { | ||
8347 | "name": "Nicolas Lœuillet", | ||
8348 | "email": "nicolas@loeuillet.org", | ||
8349 | "homepage": "http://www.cdetc.fr" | ||
8350 | }, | ||
8351 | { | ||
8352 | "name": "Sander Kromwijk", | ||
8353 | "email": "s.kromwijk@gmail.co", | ||
8354 | "role": "Original developer" | ||
8355 | } | ||
8356 | ], | ||
8357 | "description": "A Mobipocket file (.mobi) creator in PHP.", | ||
8358 | "homepage": "https://github.com/wallabag/phpMobi", | ||
8359 | "time": "2015-10-16T08:42:42+00:00" | ||
8360 | }, | ||
8361 | { | ||
8362 | "name": "wallabag/tcpdf", | ||
8363 | "version": "6.2.26", | ||
8364 | "source": { | ||
8365 | "type": "git", | ||
8366 | "url": "https://github.com/wallabag/TCPDF.git", | ||
8367 | "reference": "bf590f0604bcef1ae6fa3145649cf997f3564477" | ||
8368 | }, | ||
8369 | "dist": { | ||
8370 | "type": "zip", | ||
8371 | "url": "https://api.github.com/repos/wallabag/TCPDF/zipball/bf590f0604bcef1ae6fa3145649cf997f3564477", | ||
8372 | "reference": "bf590f0604bcef1ae6fa3145649cf997f3564477", | ||
8373 | "shasum": "" | ||
8374 | }, | ||
8375 | "require": { | ||
8376 | "php": ">=5.3.0" | ||
8377 | }, | ||
8378 | "replace": { | ||
8379 | "tecnickcom/tcpdf": "6.2.*" | ||
8380 | }, | ||
8381 | "type": "library", | ||
8382 | "autoload": { | ||
8383 | "classmap": [ | ||
8384 | "fonts", | ||
8385 | "config", | ||
8386 | "include", | ||
8387 | "tcpdf.php", | ||
8388 | "tcpdf_parser.php", | ||
8389 | "tcpdf_import.php", | ||
8390 | "tcpdf_barcodes_1d.php", | ||
8391 | "tcpdf_barcodes_2d.php", | ||
8392 | "include/tcpdf_colors.php", | ||
8393 | "include/tcpdf_filters.php", | ||
8394 | "include/tcpdf_font_data.php", | ||
8395 | "include/tcpdf_fonts.php", | ||
8396 | "include/tcpdf_images.php", | ||
8397 | "include/tcpdf_static.php", | ||
8398 | "include/barcodes/datamatrix.php", | ||
8399 | "include/barcodes/pdf417.php", | ||
8400 | "include/barcodes/qrcode.php" | ||
8401 | ] | ||
8402 | }, | ||
8403 | "notification-url": "https://packagist.org/downloads/", | ||
8404 | "license": [ | ||
8405 | "LGPL-3.0" | ||
8406 | ], | ||
8407 | "authors": [ | ||
8408 | { | ||
8409 | "name": "Nicola Asuni", | ||
8410 | "email": "info@tecnick.com", | ||
8411 | "homepage": "http://nicolaasuni.tecnick.com", | ||
8412 | "role": "Main developer" | ||
8413 | }, | ||
8414 | { | ||
8415 | "name": "wallabag/core", | ||
8416 | "homepage": "https://www.wallabag.org", | ||
8417 | "role": "Developers" | ||
8418 | } | ||
8419 | ], | ||
8420 | "description": "Keeping a working 6.2.x TCPDF version.", | ||
8421 | "homepage": "https://www.wallabag.org/", | ||
8422 | "keywords": [ | ||
8423 | "PDFD32000-2008", | ||
8424 | "TCPDF", | ||
8425 | "barcodes", | ||
8426 | "datamatrix", | ||
8427 | "pdf", | ||
8428 | "pdf417", | ||
8429 | "qrcode" | ||
8430 | ], | ||
8431 | "time": "2018-10-25T06:56:14+00:00" | ||
8432 | }, | ||
8433 | { | ||
8434 | "name": "white-october/pagerfanta-bundle", | ||
8435 | "version": "v1.2.4", | ||
8436 | "source": { | ||
8437 | "type": "git", | ||
8438 | "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git", | ||
8439 | "reference": "19bf14bf8c72e4205c9ca97028436701fe3991a6" | ||
8440 | }, | ||
8441 | "dist": { | ||
8442 | "type": "zip", | ||
8443 | "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/19bf14bf8c72e4205c9ca97028436701fe3991a6", | ||
8444 | "reference": "19bf14bf8c72e4205c9ca97028436701fe3991a6", | ||
8445 | "shasum": "" | ||
8446 | }, | ||
8447 | "require": { | ||
8448 | "pagerfanta/pagerfanta": "^1.1.0|^2.0.0", | ||
8449 | "php": ">=5.3", | ||
8450 | "symfony/framework-bundle": "~2.3|~3.0|~4.0", | ||
8451 | "symfony/property-access": "~2.3|~3.0|~4.0", | ||
8452 | "symfony/translation": "~2.3|~3.0|~4.0", | ||
8453 | "symfony/twig-bundle": "~2.3|~3.0|~4.0" | ||
8454 | }, | ||
8455 | "require-dev": { | ||
8456 | "phpunit/phpunit": "~3.7|~4.0|^5.0", | ||
8457 | "symfony/symfony": "~2.3|~3.0|~4.0" | ||
8458 | }, | ||
8459 | "type": "symfony-bundle", | ||
8460 | "extra": { | ||
8461 | "branch-alias": { | ||
8462 | "dev-master": "1.0.x-dev" | ||
8463 | } | ||
8464 | }, | ||
8465 | "autoload": { | ||
8466 | "psr-4": { | ||
8467 | "WhiteOctober\\PagerfantaBundle\\": "" | ||
8468 | }, | ||
8469 | "exclude-from-classmap": [ | ||
8470 | "Tests/", | ||
8471 | "TestsProject/" | ||
8472 | ] | ||
8473 | }, | ||
8474 | "notification-url": "https://packagist.org/downloads/", | ||
8475 | "license": [ | ||
8476 | "MIT" | ||
8477 | ], | ||
8478 | "authors": [ | ||
8479 | { | ||
8480 | "name": "Pablo Díez", | ||
8481 | "email": "pablodip@gmail.com" | ||
8482 | } | ||
8483 | ], | ||
8484 | "description": "Bundle to use Pagerfanta with Symfony2", | ||
8485 | "keywords": [ | ||
8486 | "page", | ||
8487 | "paging" | ||
8488 | ], | ||
8489 | "time": "2019-02-14T08:42:52+00:00" | ||
8490 | }, | ||
8491 | { | ||
8492 | "name": "willdurand/hateoas", | ||
8493 | "version": "2.12.0", | ||
8494 | "source": { | ||
8495 | "type": "git", | ||
8496 | "url": "https://github.com/willdurand/Hateoas.git", | ||
8497 | "reference": "71b1af62b398dc9a870ac0b16c84bdc23a76a5c5" | ||
8498 | }, | ||
8499 | "dist": { | ||
8500 | "type": "zip", | ||
8501 | "url": "https://api.github.com/repos/willdurand/Hateoas/zipball/71b1af62b398dc9a870ac0b16c84bdc23a76a5c5", | ||
8502 | "reference": "71b1af62b398dc9a870ac0b16c84bdc23a76a5c5", | ||
8503 | "shasum": "" | ||
8504 | }, | ||
8505 | "require": { | ||
8506 | "doctrine/annotations": "~1.0", | ||
8507 | "doctrine/common": "~2.0", | ||
8508 | "jms/metadata": "~1.1", | ||
8509 | "jms/serializer": "^1.7", | ||
8510 | "php": "^5.5|^7.0", | ||
8511 | "phpoption/phpoption": ">=1.1.0,<2.0-dev", | ||
8512 | "symfony/expression-language": "~2.4 || ~3.0 || ~4.0" | ||
8513 | }, | ||
8514 | "require-dev": { | ||
8515 | "pagerfanta/pagerfanta": "~1.0", | ||
8516 | "phpunit/phpunit": "~5", | ||
8517 | "symfony/dependency-injection": "~2.4 || ~3.0 || ~4.0", | ||
8518 | "symfony/routing": "~2.4 || ~3.0 || ~4.0", | ||
8519 | "symfony/yaml": "~2.4 || ~3.0 || ~4.0", | ||
8520 | "twig/twig": "~1.12" | ||
8521 | }, | ||
8522 | "suggest": { | ||
8523 | "symfony/routing": "To use the SymfonyRouteFactory.", | ||
8524 | "symfony/yaml": "To use yaml based configuration.", | ||
8525 | "twig/twig": "To use the Twig extensions." | ||
8526 | }, | ||
8527 | "type": "library", | ||
8528 | "extra": { | ||
8529 | "branch-alias": { | ||
8530 | "dev-master": "2.12-dev" | ||
8531 | } | ||
8532 | }, | ||
8533 | "autoload": { | ||
8534 | "psr-0": { | ||
8535 | "Hateoas": "src/" | ||
8536 | } | ||
8537 | }, | ||
8538 | "notification-url": "https://packagist.org/downloads/", | ||
8539 | "license": [ | ||
8540 | "MIT" | ||
8541 | ], | ||
8542 | "authors": [ | ||
8543 | { | ||
8544 | "name": "Adrien Brault", | ||
8545 | "email": "adrien.brault@gmail.com" | ||
8546 | }, | ||
8547 | { | ||
8548 | "name": "William Durand", | ||
8549 | "email": "william.durand1@gmail.com" | ||
8550 | } | ||
8551 | ], | ||
8552 | "description": "A PHP library to support implementing representations for HATEOAS REST web services", | ||
8553 | "time": "2018-02-23T17:05:31+00:00" | ||
8554 | }, | ||
8555 | { | ||
8556 | "name": "willdurand/hateoas-bundle", | ||
8557 | "version": "1.4.0", | ||
8558 | "source": { | ||
8559 | "type": "git", | ||
8560 | "url": "https://github.com/willdurand/BazingaHateoasBundle.git", | ||
8561 | "reference": "d1f915fd4f8a7cd43a88a0ce97ffb28abe3a94fa" | ||
8562 | }, | ||
8563 | "dist": { | ||
8564 | "type": "zip", | ||
8565 | "url": "https://api.github.com/repos/willdurand/BazingaHateoasBundle/zipball/d1f915fd4f8a7cd43a88a0ce97ffb28abe3a94fa", | ||
8566 | "reference": "d1f915fd4f8a7cd43a88a0ce97ffb28abe3a94fa", | ||
8567 | "shasum": "" | ||
8568 | }, | ||
8569 | "require": { | ||
8570 | "jms/serializer-bundle": "~1.0 || ^2.0", | ||
8571 | "php": ">5.4 |^7.0", | ||
8572 | "symfony/framework-bundle": "~2.3 || ~3.0 || ~4.0", | ||
8573 | "willdurand/hateoas": "^2.10.0" | ||
8574 | }, | ||
8575 | "require-dev": { | ||
8576 | "phpunit/phpunit": "~4.5 || ~5.0", | ||
8577 | "symfony/expression-language": "~2.4 || ~3.0 || ~4.0", | ||
8578 | "symfony/stopwatch": "~2.4 || ~3.0 || ~4.0", | ||
8579 | "twig/twig": "~1.12" | ||
8580 | }, | ||
8581 | "type": "symfony-bundle", | ||
8582 | "extra": { | ||
8583 | "branch-alias": { | ||
8584 | "dev-master": "1.4-dev" | ||
8585 | } | ||
8586 | }, | ||
8587 | "autoload": { | ||
8588 | "psr-4": { | ||
8589 | "Bazinga\\Bundle\\HateoasBundle\\": "" | ||
8590 | } | ||
8591 | }, | ||
8592 | "notification-url": "https://packagist.org/downloads/", | ||
8593 | "license": [ | ||
8594 | "MIT" | ||
8595 | ], | ||
8596 | "authors": [ | ||
8597 | { | ||
8598 | "name": "William Durand", | ||
8599 | "email": "william.durand1@gmail.com" | ||
8600 | } | ||
8601 | ], | ||
8602 | "description": "Integration of Hateoas into Symfony2.", | ||
8603 | "keywords": [ | ||
8604 | "HATEOAS", | ||
8605 | "rest" | ||
8606 | ], | ||
8607 | "time": "2018-01-27T13:03:07+00:00" | ||
8608 | }, | ||
8609 | { | ||
8610 | "name": "willdurand/jsonp-callback-validator", | ||
8611 | "version": "v1.1.0", | ||
8612 | "source": { | ||
8613 | "type": "git", | ||
8614 | "url": "https://github.com/willdurand/JsonpCallbackValidator.git", | ||
8615 | "reference": "1a7d388bb521959e612ef50c5c7b1691b097e909" | ||
8616 | }, | ||
8617 | "dist": { | ||
8618 | "type": "zip", | ||
8619 | "url": "https://api.github.com/repos/willdurand/JsonpCallbackValidator/zipball/1a7d388bb521959e612ef50c5c7b1691b097e909", | ||
8620 | "reference": "1a7d388bb521959e612ef50c5c7b1691b097e909", | ||
8621 | "shasum": "" | ||
8622 | }, | ||
8623 | "require": { | ||
8624 | "php": ">=5.3.0" | ||
8625 | }, | ||
8626 | "require-dev": { | ||
8627 | "phpunit/phpunit": "~3.7" | ||
8628 | }, | ||
8629 | "type": "library", | ||
8630 | "autoload": { | ||
8631 | "psr-0": { | ||
8632 | "JsonpCallbackValidator": "src/" | ||
8633 | } | ||
8634 | }, | ||
8635 | "notification-url": "https://packagist.org/downloads/", | ||
8636 | "license": [ | ||
8637 | "MIT" | ||
8638 | ], | ||
8639 | "authors": [ | ||
8640 | { | ||
8641 | "name": "William Durand", | ||
8642 | "email": "william.durand1@gmail.com", | ||
8643 | "homepage": "http://www.willdurand.fr" | ||
8644 | } | ||
8645 | ], | ||
8646 | "description": "JSONP callback validator.", | ||
8647 | "time": "2014-01-20T22:35:06+00:00" | ||
8648 | }, | ||
8649 | { | ||
8650 | "name": "willdurand/negotiation", | ||
8651 | "version": "v2.3.1", | ||
8652 | "source": { | ||
8653 | "type": "git", | ||
8654 | "url": "https://github.com/willdurand/Negotiation.git", | ||
8655 | "reference": "03436ededa67c6e83b9b12defac15384cb399dc9" | ||
8656 | }, | ||
8657 | "dist": { | ||
8658 | "type": "zip", | ||
8659 | "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/03436ededa67c6e83b9b12defac15384cb399dc9", | ||
8660 | "reference": "03436ededa67c6e83b9b12defac15384cb399dc9", | ||
8661 | "shasum": "" | ||
8662 | }, | ||
8663 | "require": { | ||
8664 | "php": ">=5.4.0" | ||
8665 | }, | ||
8666 | "require-dev": { | ||
8667 | "phpunit/phpunit": "~4.5" | ||
8668 | }, | ||
8669 | "type": "library", | ||
8670 | "extra": { | ||
8671 | "branch-alias": { | ||
8672 | "dev-master": "2.3-dev" | ||
8673 | } | ||
8674 | }, | ||
8675 | "autoload": { | ||
8676 | "psr-4": { | ||
8677 | "Negotiation\\": "src/Negotiation" | ||
8678 | } | ||
8679 | }, | ||
8680 | "notification-url": "https://packagist.org/downloads/", | ||
8681 | "license": [ | ||
8682 | "MIT" | ||
8683 | ], | ||
8684 | "authors": [ | ||
8685 | { | ||
8686 | "name": "William Durand", | ||
8687 | "email": "will+git@drnd.me" | ||
8688 | } | ||
8689 | ], | ||
8690 | "description": "Content Negotiation tools for PHP provided as a standalone library.", | ||
8691 | "homepage": "http://williamdurand.fr/Negotiation/", | ||
8692 | "keywords": [ | ||
8693 | "accept", | ||
8694 | "content", | ||
8695 | "format", | ||
8696 | "header", | ||
8697 | "negotiation" | ||
8698 | ], | ||
8699 | "time": "2017-05-14T17:21:12+00:00" | ||
8700 | }, | ||
8701 | { | ||
8702 | "name": "zendframework/zend-code", | ||
8703 | "version": "3.3.1", | ||
8704 | "source": { | ||
8705 | "type": "git", | ||
8706 | "url": "https://github.com/zendframework/zend-code.git", | ||
8707 | "reference": "c21db169075c6ec4b342149f446e7b7b724f95eb" | ||
8708 | }, | ||
8709 | "dist": { | ||
8710 | "type": "zip", | ||
8711 | "url": "https://api.github.com/repos/zendframework/zend-code/zipball/c21db169075c6ec4b342149f446e7b7b724f95eb", | ||
8712 | "reference": "c21db169075c6ec4b342149f446e7b7b724f95eb", | ||
8713 | "shasum": "" | ||
8714 | }, | ||
8715 | "require": { | ||
8716 | "php": "^7.1", | ||
8717 | "zendframework/zend-eventmanager": "^2.6 || ^3.0" | ||
8718 | }, | ||
8719 | "require-dev": { | ||
8720 | "doctrine/annotations": "~1.0", | ||
8721 | "ext-phar": "*", | ||
8722 | "phpunit/phpunit": "^6.2.3", | ||
8723 | "zendframework/zend-coding-standard": "^1.0.0", | ||
8724 | "zendframework/zend-stdlib": "^2.7 || ^3.0" | ||
8725 | }, | ||
8726 | "suggest": { | ||
8727 | "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features", | ||
8728 | "zendframework/zend-stdlib": "Zend\\Stdlib component" | ||
8729 | }, | ||
8730 | "type": "library", | ||
8731 | "extra": { | ||
8732 | "branch-alias": { | ||
8733 | "dev-master": "3.3.x-dev", | ||
8734 | "dev-develop": "3.4.x-dev" | ||
8735 | } | ||
8736 | }, | ||
8737 | "autoload": { | ||
8738 | "psr-4": { | ||
8739 | "Zend\\Code\\": "src/" | ||
8740 | } | ||
8741 | }, | ||
8742 | "notification-url": "https://packagist.org/downloads/", | ||
8743 | "license": [ | ||
8744 | "BSD-3-Clause" | ||
8745 | ], | ||
8746 | "description": "provides facilities to generate arbitrary code using an object oriented interface", | ||
8747 | "homepage": "https://github.com/zendframework/zend-code", | ||
8748 | "keywords": [ | ||
8749 | "code", | ||
8750 | "zf2" | ||
8751 | ], | ||
8752 | "time": "2018-08-13T20:36:59+00:00" | ||
8753 | }, | ||
8754 | { | ||
8755 | "name": "zendframework/zend-eventmanager", | ||
8756 | "version": "3.2.1", | ||
8757 | "source": { | ||
8758 | "type": "git", | ||
8759 | "url": "https://github.com/zendframework/zend-eventmanager.git", | ||
8760 | "reference": "a5e2583a211f73604691586b8406ff7296a946dd" | ||
8761 | }, | ||
8762 | "dist": { | ||
8763 | "type": "zip", | ||
8764 | "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/a5e2583a211f73604691586b8406ff7296a946dd", | ||
8765 | "reference": "a5e2583a211f73604691586b8406ff7296a946dd", | ||
8766 | "shasum": "" | ||
8767 | }, | ||
8768 | "require": { | ||
8769 | "php": "^5.6 || ^7.0" | ||
8770 | }, | ||
8771 | "require-dev": { | ||
8772 | "athletic/athletic": "^0.1", | ||
8773 | "container-interop/container-interop": "^1.1.0", | ||
8774 | "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2", | ||
8775 | "zendframework/zend-coding-standard": "~1.0.0", | ||
8776 | "zendframework/zend-stdlib": "^2.7.3 || ^3.0" | ||
8777 | }, | ||
8778 | "suggest": { | ||
8779 | "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature", | ||
8780 | "zendframework/zend-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature" | ||
8781 | }, | ||
8782 | "type": "library", | ||
8783 | "extra": { | ||
8784 | "branch-alias": { | ||
8785 | "dev-master": "3.2-dev", | ||
8786 | "dev-develop": "3.3-dev" | ||
8787 | } | ||
8788 | }, | ||
8789 | "autoload": { | ||
8790 | "psr-4": { | ||
8791 | "Zend\\EventManager\\": "src/" | ||
8792 | } | ||
8793 | }, | ||
8794 | "notification-url": "https://packagist.org/downloads/", | ||
8795 | "license": [ | ||
8796 | "BSD-3-Clause" | ||
8797 | ], | ||
8798 | "description": "Trigger and listen to events within a PHP application", | ||
8799 | "homepage": "https://github.com/zendframework/zend-eventmanager", | ||
8800 | "keywords": [ | ||
8801 | "event", | ||
8802 | "eventmanager", | ||
8803 | "events", | ||
8804 | "zf2" | ||
8805 | ], | ||
8806 | "time": "2018-04-25T15:33:34+00:00" | ||
8807 | } | ||
8808 | ], | ||
8809 | "packages-dev": [ | ||
8810 | { | ||
8811 | "name": "composer/semver", | ||
8812 | "version": "1.5.0", | ||
8813 | "source": { | ||
8814 | "type": "git", | ||
8815 | "url": "https://github.com/composer/semver.git", | ||
8816 | "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e" | ||
8817 | }, | ||
8818 | "dist": { | ||
8819 | "type": "zip", | ||
8820 | "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e", | ||
8821 | "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e", | ||
8822 | "shasum": "" | ||
8823 | }, | ||
8824 | "require": { | ||
8825 | "php": "^5.3.2 || ^7.0" | ||
8826 | }, | ||
8827 | "require-dev": { | ||
8828 | "phpunit/phpunit": "^4.5 || ^5.0.5", | ||
8829 | "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0" | ||
8830 | }, | ||
8831 | "type": "library", | ||
8832 | "extra": { | ||
8833 | "branch-alias": { | ||
8834 | "dev-master": "1.x-dev" | ||
8835 | } | ||
8836 | }, | ||
8837 | "autoload": { | ||
8838 | "psr-4": { | ||
8839 | "Composer\\Semver\\": "src" | ||
8840 | } | ||
8841 | }, | ||
8842 | "notification-url": "https://packagist.org/downloads/", | ||
8843 | "license": [ | ||
8844 | "MIT" | ||
8845 | ], | ||
8846 | "authors": [ | ||
8847 | { | ||
8848 | "name": "Nils Adermann", | ||
8849 | "email": "naderman@naderman.de", | ||
8850 | "homepage": "http://www.naderman.de" | ||
8851 | }, | ||
8852 | { | ||
8853 | "name": "Jordi Boggiano", | ||
8854 | "email": "j.boggiano@seld.be", | ||
8855 | "homepage": "http://seld.be" | ||
8856 | }, | ||
8857 | { | ||
8858 | "name": "Rob Bast", | ||
8859 | "email": "rob.bast@gmail.com", | ||
8860 | "homepage": "http://robbast.nl" | ||
8861 | } | ||
8862 | ], | ||
8863 | "description": "Semver library that offers utilities, version constraint parsing and validation.", | ||
8864 | "keywords": [ | ||
8865 | "semantic", | ||
8866 | "semver", | ||
8867 | "validation", | ||
8868 | "versioning" | ||
8869 | ], | ||
8870 | "time": "2019-03-19T17:25:45+00:00" | ||
8871 | }, | ||
8872 | { | ||
8873 | "name": "composer/xdebug-handler", | ||
8874 | "version": "1.3.3", | ||
8875 | "source": { | ||
8876 | "type": "git", | ||
8877 | "url": "https://github.com/composer/xdebug-handler.git", | ||
8878 | "reference": "46867cbf8ca9fb8d60c506895449eb799db1184f" | ||
8879 | }, | ||
8880 | "dist": { | ||
8881 | "type": "zip", | ||
8882 | "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/46867cbf8ca9fb8d60c506895449eb799db1184f", | ||
8883 | "reference": "46867cbf8ca9fb8d60c506895449eb799db1184f", | ||
8884 | "shasum": "" | ||
8885 | }, | ||
8886 | "require": { | ||
8887 | "php": "^5.3.2 || ^7.0", | ||
8888 | "psr/log": "^1.0" | ||
8889 | }, | ||
8890 | "require-dev": { | ||
8891 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5" | ||
8892 | }, | ||
8893 | "type": "library", | ||
8894 | "autoload": { | ||
8895 | "psr-4": { | ||
8896 | "Composer\\XdebugHandler\\": "src" | ||
8897 | } | ||
8898 | }, | ||
8899 | "notification-url": "https://packagist.org/downloads/", | ||
8900 | "license": [ | ||
8901 | "MIT" | ||
8902 | ], | ||
8903 | "authors": [ | ||
8904 | { | ||
8905 | "name": "John Stevenson", | ||
8906 | "email": "john-stevenson@blueyonder.co.uk" | ||
8907 | } | ||
8908 | ], | ||
8909 | "description": "Restarts a process without xdebug.", | ||
8910 | "keywords": [ | ||
8911 | "Xdebug", | ||
8912 | "performance" | ||
8913 | ], | ||
8914 | "time": "2019-05-27T17:52:04+00:00" | ||
8915 | }, | ||
8916 | { | ||
8917 | "name": "dama/doctrine-test-bundle", | ||
8918 | "version": "v5.0.3", | ||
8919 | "source": { | ||
8920 | "type": "git", | ||
8921 | "url": "https://github.com/dmaicher/doctrine-test-bundle.git", | ||
8922 | "reference": "29882b0d1a815f4819126ef714931bb24a31cbaa" | ||
8923 | }, | ||
8924 | "dist": { | ||
8925 | "type": "zip", | ||
8926 | "url": "https://api.github.com/repos/dmaicher/doctrine-test-bundle/zipball/29882b0d1a815f4819126ef714931bb24a31cbaa", | ||
8927 | "reference": "29882b0d1a815f4819126ef714931bb24a31cbaa", | ||
8928 | "shasum": "" | ||
8929 | }, | ||
8930 | "require": { | ||
8931 | "doctrine/dbal": "~2.5", | ||
8932 | "doctrine/doctrine-bundle": "~1.4", | ||
8933 | "php": "^7.1", | ||
8934 | "symfony/framework-bundle": "~2.7|~3.0|~4.0" | ||
8935 | }, | ||
8936 | "require-dev": { | ||
8937 | "phpunit/phpunit": "~6.0|~7.0|~8.0", | ||
8938 | "symfony/phpunit-bridge": "~2.8|~3.0|~4.0", | ||
8939 | "symfony/yaml": "~2.8|~3.0|~4.0" | ||
8940 | }, | ||
8941 | "type": "symfony-bundle", | ||
8942 | "extra": { | ||
8943 | "branch-alias": { | ||
8944 | "dev-master": "5.1.x-dev" | ||
8945 | } | ||
8946 | }, | ||
8947 | "autoload": { | ||
8948 | "psr-4": { | ||
8949 | "DAMA\\DoctrineTestBundle\\": "src/DAMA/DoctrineTestBundle" | ||
8950 | } | ||
8951 | }, | ||
8952 | "notification-url": "https://packagist.org/downloads/", | ||
8953 | "license": [ | ||
8954 | "MIT" | ||
8955 | ], | ||
8956 | "authors": [ | ||
8957 | { | ||
8958 | "name": "David Maicher", | ||
8959 | "email": "mail@dmaicher.de" | ||
8960 | } | ||
8961 | ], | ||
8962 | "description": "Symfony bundle to isolate doctrine database tests and improve test performance", | ||
8963 | "keywords": [ | ||
8964 | "Symfony 3", | ||
8965 | "Symfony 4", | ||
8966 | "doctrine", | ||
8967 | "isolation", | ||
8968 | "performance", | ||
8969 | "symfony", | ||
8970 | "symfony 2", | ||
8971 | "tests" | ||
8972 | ], | ||
8973 | "time": "2019-03-22T10:34:17+00:00" | ||
8974 | }, | ||
8975 | { | ||
8976 | "name": "doctrine/data-fixtures", | ||
8977 | "version": "v1.3.1", | ||
8978 | "source": { | ||
8979 | "type": "git", | ||
8980 | "url": "https://github.com/doctrine/data-fixtures.git", | ||
8981 | "reference": "3a1e2c3c600e615a2dffe56d4ca0875cc5233e0a" | ||
8982 | }, | ||
8983 | "dist": { | ||
8984 | "type": "zip", | ||
8985 | "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/3a1e2c3c600e615a2dffe56d4ca0875cc5233e0a", | ||
8986 | "reference": "3a1e2c3c600e615a2dffe56d4ca0875cc5233e0a", | ||
8987 | "shasum": "" | ||
8988 | }, | ||
8989 | "require": { | ||
8990 | "doctrine/common": "~2.2", | ||
8991 | "php": "^7.1" | ||
8992 | }, | ||
8993 | "conflict": { | ||
8994 | "doctrine/phpcr-odm": "<1.3.0" | ||
8995 | }, | ||
8996 | "require-dev": { | ||
8997 | "doctrine/dbal": "^2.5.4", | ||
8998 | "doctrine/orm": "^2.5.4", | ||
8999 | "phpunit/phpunit": "^7.0" | ||
9000 | }, | ||
9001 | "suggest": { | ||
9002 | "alcaeus/mongo-php-adapter": "For using MongoDB ODM with PHP 7", | ||
9003 | "doctrine/mongodb-odm": "For loading MongoDB ODM fixtures", | ||
9004 | "doctrine/orm": "For loading ORM fixtures", | ||
9005 | "doctrine/phpcr-odm": "For loading PHPCR ODM fixtures" | ||
9006 | }, | ||
9007 | "type": "library", | ||
9008 | "extra": { | ||
9009 | "branch-alias": { | ||
9010 | "dev-master": "1.3.x-dev" | ||
9011 | } | ||
9012 | }, | ||
9013 | "autoload": { | ||
9014 | "psr-4": { | ||
9015 | "Doctrine\\Common\\DataFixtures\\": "lib/Doctrine/Common/DataFixtures" | ||
9016 | } | ||
9017 | }, | ||
9018 | "notification-url": "https://packagist.org/downloads/", | ||
9019 | "license": [ | ||
9020 | "MIT" | ||
9021 | ], | ||
9022 | "authors": [ | ||
9023 | { | ||
9024 | "name": "Jonathan Wage", | ||
9025 | "email": "jonwage@gmail.com" | ||
9026 | } | ||
9027 | ], | ||
9028 | "description": "Data Fixtures for all Doctrine Object Managers", | ||
9029 | "homepage": "http://www.doctrine-project.org", | ||
9030 | "keywords": [ | ||
9031 | "database" | ||
9032 | ], | ||
9033 | "time": "2018-03-20T09:06:36+00:00" | ||
9034 | }, | ||
9035 | { | ||
9036 | "name": "doctrine/doctrine-fixtures-bundle", | ||
9037 | "version": "3.1.0", | ||
9038 | "source": { | ||
9039 | "type": "git", | ||
9040 | "url": "https://github.com/doctrine/DoctrineFixturesBundle.git", | ||
9041 | "reference": "f016565b251c2dfa32a8d6da44d1650dc9ec1498" | ||
9042 | }, | ||
9043 | "dist": { | ||
9044 | "type": "zip", | ||
9045 | "url": "https://api.github.com/repos/doctrine/DoctrineFixturesBundle/zipball/f016565b251c2dfa32a8d6da44d1650dc9ec1498", | ||
9046 | "reference": "f016565b251c2dfa32a8d6da44d1650dc9ec1498", | ||
9047 | "shasum": "" | ||
9048 | }, | ||
9049 | "require": { | ||
9050 | "doctrine/data-fixtures": "^1.3", | ||
9051 | "doctrine/doctrine-bundle": "^1.6", | ||
9052 | "php": "^7.1", | ||
9053 | "symfony/doctrine-bridge": "~3.4|^4.1", | ||
9054 | "symfony/framework-bundle": "^3.4|^4.1" | ||
9055 | }, | ||
9056 | "require-dev": { | ||
9057 | "doctrine/coding-standard": "^5.0", | ||
9058 | "phpunit/phpunit": "^7.4", | ||
9059 | "symfony/phpunit-bridge": "^4.1" | ||
9060 | }, | ||
9061 | "type": "symfony-bundle", | ||
9062 | "extra": { | ||
9063 | "branch-alias": { | ||
9064 | "dev-master": "3.1.x-dev" | ||
9065 | } | ||
9066 | }, | ||
9067 | "autoload": { | ||
9068 | "psr-4": { | ||
9069 | "Doctrine\\Bundle\\FixturesBundle\\": "" | ||
9070 | } | ||
9071 | }, | ||
9072 | "notification-url": "https://packagist.org/downloads/", | ||
9073 | "license": [ | ||
9074 | "MIT" | ||
9075 | ], | ||
9076 | "authors": [ | ||
9077 | { | ||
9078 | "name": "Symfony Community", | ||
9079 | "homepage": "http://symfony.com/contributors" | ||
9080 | }, | ||
9081 | { | ||
9082 | "name": "Doctrine Project", | ||
9083 | "homepage": "http://www.doctrine-project.org" | ||
9084 | }, | ||
9085 | { | ||
9086 | "name": "Fabien Potencier", | ||
9087 | "email": "fabien@symfony.com" | ||
9088 | } | ||
9089 | ], | ||
9090 | "description": "Symfony DoctrineFixturesBundle", | ||
9091 | "homepage": "http://www.doctrine-project.org", | ||
9092 | "keywords": [ | ||
9093 | "Fixture", | ||
9094 | "persistence" | ||
9095 | ], | ||
9096 | "time": "2018-12-21T10:10:51+00:00" | ||
9097 | }, | ||
9098 | { | ||
9099 | "name": "friendsofphp/php-cs-fixer", | ||
9100 | "version": "v2.15.0", | ||
9101 | "source": { | ||
9102 | "type": "git", | ||
9103 | "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git", | ||
9104 | "reference": "adfab51ae979ee8b0fcbc55aa231ec2786cb1f91" | ||
9105 | }, | ||
9106 | "dist": { | ||
9107 | "type": "zip", | ||
9108 | "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/adfab51ae979ee8b0fcbc55aa231ec2786cb1f91", | ||
9109 | "reference": "adfab51ae979ee8b0fcbc55aa231ec2786cb1f91", | ||
9110 | "shasum": "" | ||
9111 | }, | ||
9112 | "require": { | ||
9113 | "composer/semver": "^1.4", | ||
9114 | "composer/xdebug-handler": "^1.2", | ||
9115 | "doctrine/annotations": "^1.2", | ||
9116 | "ext-json": "*", | ||
9117 | "ext-tokenizer": "*", | ||
9118 | "php": "^5.6 || ^7.0", | ||
9119 | "php-cs-fixer/diff": "^1.3", | ||
9120 | "symfony/console": "^3.4.17 || ^4.1.6", | ||
9121 | "symfony/event-dispatcher": "^3.0 || ^4.0", | ||
9122 | "symfony/filesystem": "^3.0 || ^4.0", | ||
9123 | "symfony/finder": "^3.0 || ^4.0", | ||
9124 | "symfony/options-resolver": "^3.0 || ^4.0", | ||
9125 | "symfony/polyfill-php70": "^1.0", | ||
9126 | "symfony/polyfill-php72": "^1.4", | ||
9127 | "symfony/process": "^3.0 || ^4.0", | ||
9128 | "symfony/stopwatch": "^3.0 || ^4.0" | ||
9129 | }, | ||
9130 | "require-dev": { | ||
9131 | "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0", | ||
9132 | "justinrainbow/json-schema": "^5.0", | ||
9133 | "keradus/cli-executor": "^1.2", | ||
9134 | "mikey179/vfsstream": "^1.6", | ||
9135 | "php-coveralls/php-coveralls": "^2.1", | ||
9136 | "php-cs-fixer/accessible-object": "^1.0", | ||
9137 | "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.1", | ||
9138 | "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.1", | ||
9139 | "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1", | ||
9140 | "phpunitgoodpractices/traits": "^1.8", | ||
9141 | "symfony/phpunit-bridge": "^4.0" | ||
9142 | }, | ||
9143 | "suggest": { | ||
9144 | "ext-mbstring": "For handling non-UTF8 characters in cache signature.", | ||
9145 | "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.", | ||
9146 | "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.", | ||
9147 | "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible." | ||
9148 | }, | ||
9149 | "bin": [ | ||
9150 | "php-cs-fixer" | ||
9151 | ], | ||
9152 | "type": "application", | ||
9153 | "extra": { | ||
9154 | "branch-alias": { | ||
9155 | "dev-master": "2.15-dev" | ||
9156 | } | ||
9157 | }, | ||
9158 | "autoload": { | ||
9159 | "psr-4": { | ||
9160 | "PhpCsFixer\\": "src/" | ||
9161 | }, | ||
9162 | "classmap": [ | ||
9163 | "tests/Test/AbstractFixerTestCase.php", | ||
9164 | "tests/Test/AbstractIntegrationCaseFactory.php", | ||
9165 | "tests/Test/AbstractIntegrationTestCase.php", | ||
9166 | "tests/Test/Assert/AssertTokensTrait.php", | ||
9167 | "tests/Test/IntegrationCase.php", | ||
9168 | "tests/Test/IntegrationCaseFactory.php", | ||
9169 | "tests/Test/IntegrationCaseFactoryInterface.php", | ||
9170 | "tests/Test/InternalIntegrationCaseFactory.php", | ||
9171 | "tests/TestCase.php" | ||
9172 | ] | ||
9173 | }, | ||
9174 | "notification-url": "https://packagist.org/downloads/", | ||
9175 | "license": [ | ||
9176 | "MIT" | ||
9177 | ], | ||
9178 | "authors": [ | ||
9179 | { | ||
9180 | "name": "Dariusz Rumiński", | ||
9181 | "email": "dariusz.ruminski@gmail.com" | ||
9182 | }, | ||
9183 | { | ||
9184 | "name": "Fabien Potencier", | ||
9185 | "email": "fabien@symfony.com" | ||
9186 | } | ||
9187 | ], | ||
9188 | "description": "A tool to automatically fix PHP code style", | ||
9189 | "time": "2019-05-06T07:13:51+00:00" | ||
9190 | }, | ||
9191 | { | ||
9192 | "name": "jean85/pretty-package-versions", | ||
9193 | "version": "1.2", | ||
9194 | "source": { | ||
9195 | "type": "git", | ||
9196 | "url": "https://github.com/Jean85/pretty-package-versions.git", | ||
9197 | "reference": "75c7effcf3f77501d0e0caa75111aff4daa0dd48" | ||
9198 | }, | ||
9199 | "dist": { | ||
9200 | "type": "zip", | ||
9201 | "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/75c7effcf3f77501d0e0caa75111aff4daa0dd48", | ||
9202 | "reference": "75c7effcf3f77501d0e0caa75111aff4daa0dd48", | ||
9203 | "shasum": "" | ||
9204 | }, | ||
9205 | "require": { | ||
9206 | "ocramius/package-versions": "^1.2.0", | ||
9207 | "php": "^7.0" | ||
9208 | }, | ||
9209 | "require-dev": { | ||
9210 | "phpunit/phpunit": "^6.0" | ||
9211 | }, | ||
9212 | "type": "library", | ||
9213 | "extra": { | ||
9214 | "branch-alias": { | ||
9215 | "dev-master": "1.x-dev" | ||
9216 | } | ||
9217 | }, | ||
9218 | "autoload": { | ||
9219 | "psr-4": { | ||
9220 | "Jean85\\": "src/" | ||
9221 | } | ||
9222 | }, | ||
9223 | "notification-url": "https://packagist.org/downloads/", | ||
9224 | "license": [ | ||
9225 | "MIT" | ||
9226 | ], | ||
9227 | "authors": [ | ||
9228 | { | ||
9229 | "name": "Alessandro Lai", | ||
9230 | "email": "alessandro.lai85@gmail.com" | ||
9231 | } | ||
9232 | ], | ||
9233 | "description": "A wrapper for ocramius/package-versions to get pretty versions strings", | ||
9234 | "keywords": [ | ||
9235 | "composer", | ||
9236 | "package", | ||
9237 | "release", | ||
9238 | "versions" | ||
9239 | ], | ||
9240 | "time": "2018-06-13T13:22:40+00:00" | ||
9241 | }, | ||
9242 | { | ||
9243 | "name": "m6web/redis-mock", | ||
9244 | "version": "v4.3.0", | ||
9245 | "source": { | ||
9246 | "type": "git", | ||
9247 | "url": "https://github.com/M6Web/RedisMock.git", | ||
9248 | "reference": "6d9351a4cde39c5f2e5589caea729b8bd2b12808" | ||
9249 | }, | ||
9250 | "dist": { | ||
9251 | "type": "zip", | ||
9252 | "url": "https://api.github.com/repos/M6Web/RedisMock/zipball/6d9351a4cde39c5f2e5589caea729b8bd2b12808", | ||
9253 | "reference": "6d9351a4cde39c5f2e5589caea729b8bd2b12808", | ||
9254 | "shasum": "" | ||
9255 | }, | ||
9256 | "require": { | ||
9257 | "php": ">=7.1.0" | ||
9258 | }, | ||
9259 | "require-dev": { | ||
9260 | "atoum/atoum": "master-dev", | ||
9261 | "predis/predis": "~1.1" | ||
9262 | }, | ||
9263 | "type": "library", | ||
9264 | "autoload": { | ||
9265 | "psr-0": { | ||
9266 | "M6Web\\Component\\RedisMock": "src/" | ||
9267 | } | ||
9268 | }, | ||
9269 | "notification-url": "https://packagist.org/downloads/", | ||
9270 | "license": [ | ||
9271 | "MIT" | ||
9272 | ], | ||
9273 | "authors": [ | ||
9274 | { | ||
9275 | "name": "M6Web", | ||
9276 | "email": "opensource@m6web.fr", | ||
9277 | "homepage": "http://tech.m6web.fr/" | ||
9278 | } | ||
9279 | ], | ||
9280 | "description": "Library providing a PHP mock for Redis", | ||
9281 | "keywords": [ | ||
9282 | "mock", | ||
9283 | "redis" | ||
9284 | ], | ||
9285 | "time": "2019-05-22T08:35:44+00:00" | ||
9286 | }, | ||
9287 | { | ||
9288 | "name": "nette/bootstrap", | ||
9289 | "version": "v3.0.0", | ||
9290 | "source": { | ||
9291 | "type": "git", | ||
9292 | "url": "https://github.com/nette/bootstrap.git", | ||
9293 | "reference": "e1075af05c211915e03e0c86542f3ba5433df4a3" | ||
9294 | }, | ||
9295 | "dist": { | ||
9296 | "type": "zip", | ||
9297 | "url": "https://api.github.com/repos/nette/bootstrap/zipball/e1075af05c211915e03e0c86542f3ba5433df4a3", | ||
9298 | "reference": "e1075af05c211915e03e0c86542f3ba5433df4a3", | ||
9299 | "shasum": "" | ||
9300 | }, | ||
9301 | "require": { | ||
9302 | "nette/di": "^3.0", | ||
9303 | "nette/utils": "^3.0", | ||
9304 | "php": ">=7.1" | ||
9305 | }, | ||
9306 | "require-dev": { | ||
9307 | "latte/latte": "^2.2", | ||
9308 | "nette/application": "^3.0", | ||
9309 | "nette/caching": "^3.0", | ||
9310 | "nette/database": "^3.0", | ||
9311 | "nette/forms": "^3.0", | ||
9312 | "nette/http": "^3.0", | ||
9313 | "nette/mail": "^3.0", | ||
9314 | "nette/robot-loader": "^3.0", | ||
9315 | "nette/safe-stream": "^2.2", | ||
9316 | "nette/security": "^3.0", | ||
9317 | "nette/tester": "^2.0", | ||
9318 | "tracy/tracy": "^2.6" | ||
9319 | }, | ||
9320 | "suggest": { | ||
9321 | "nette/robot-loader": "to use Configurator::createRobotLoader()", | ||
9322 | "tracy/tracy": "to use Configurator::enableTracy()" | ||
9323 | }, | ||
9324 | "type": "library", | ||
9325 | "extra": { | ||
9326 | "branch-alias": { | ||
9327 | "dev-master": "3.0-dev" | ||
9328 | } | ||
9329 | }, | ||
9330 | "autoload": { | ||
9331 | "classmap": [ | ||
9332 | "src/" | ||
9333 | ] | ||
9334 | }, | ||
9335 | "notification-url": "https://packagist.org/downloads/", | ||
9336 | "license": [ | ||
9337 | "BSD-3-Clause", | ||
9338 | "GPL-2.0", | ||
9339 | "GPL-3.0" | ||
9340 | ], | ||
9341 | "authors": [ | ||
9342 | { | ||
9343 | "name": "David Grudl", | ||
9344 | "homepage": "https://davidgrudl.com" | ||
9345 | }, | ||
9346 | { | ||
9347 | "name": "Nette Community", | ||
9348 | "homepage": "https://nette.org/contributors" | ||
9349 | } | ||
9350 | ], | ||
9351 | "description": "🅱 Nette Bootstrap: the simple way to configure and bootstrap your Nette application.", | ||
9352 | "homepage": "https://nette.org", | ||
9353 | "keywords": [ | ||
9354 | "bootstrapping", | ||
9355 | "configurator", | ||
9356 | "nette" | ||
9357 | ], | ||
9358 | "time": "2019-03-26T12:59:07+00:00" | ||
9359 | }, | ||
9360 | { | ||
9361 | "name": "nette/di", | ||
9362 | "version": "v3.0.0", | ||
9363 | "source": { | ||
9364 | "type": "git", | ||
9365 | "url": "https://github.com/nette/di.git", | ||
9366 | "reference": "19d83539245aaacb59470828919182411061841f" | ||
9367 | }, | ||
9368 | "dist": { | ||
9369 | "type": "zip", | ||
9370 | "url": "https://api.github.com/repos/nette/di/zipball/19d83539245aaacb59470828919182411061841f", | ||
9371 | "reference": "19d83539245aaacb59470828919182411061841f", | ||
9372 | "shasum": "" | ||
9373 | }, | ||
9374 | "require": { | ||
9375 | "ext-tokenizer": "*", | ||
9376 | "nette/neon": "^3.0", | ||
9377 | "nette/php-generator": "^3.2.2", | ||
9378 | "nette/robot-loader": "^3.2", | ||
9379 | "nette/schema": "^1.0", | ||
9380 | "nette/utils": "^3.0", | ||
9381 | "php": ">=7.1" | ||
9382 | }, | ||
9383 | "conflict": { | ||
9384 | "nette/bootstrap": "<3.0" | ||
9385 | }, | ||
9386 | "require-dev": { | ||
9387 | "nette/tester": "^2.2", | ||
9388 | "tracy/tracy": "^2.3" | ||
9389 | }, | ||
9390 | "type": "library", | ||
9391 | "extra": { | ||
9392 | "branch-alias": { | ||
9393 | "dev-master": "3.0-dev" | ||
9394 | } | ||
9395 | }, | ||
9396 | "autoload": { | ||
9397 | "classmap": [ | ||
9398 | "src/" | ||
9399 | ], | ||
9400 | "files": [ | ||
9401 | "src/compatibility.php" | ||
9402 | ] | ||
9403 | }, | ||
9404 | "notification-url": "https://packagist.org/downloads/", | ||
9405 | "license": [ | ||
9406 | "BSD-3-Clause", | ||
9407 | "GPL-2.0", | ||
9408 | "GPL-3.0" | ||
9409 | ], | ||
9410 | "authors": [ | ||
9411 | { | ||
9412 | "name": "David Grudl", | ||
9413 | "homepage": "https://davidgrudl.com" | ||
9414 | }, | ||
9415 | { | ||
9416 | "name": "Nette Community", | ||
9417 | "homepage": "https://nette.org/contributors" | ||
9418 | } | ||
9419 | ], | ||
9420 | "description": "💎 Nette Dependency Injection Container: Flexible, compiled and full-featured DIC with perfectly usable autowiring and support for all new PHP 7.1 features.", | ||
9421 | "homepage": "https://nette.org", | ||
9422 | "keywords": [ | ||
9423 | "compiled", | ||
9424 | "di", | ||
9425 | "dic", | ||
9426 | "factory", | ||
9427 | "ioc", | ||
9428 | "nette", | ||
9429 | "static" | ||
9430 | ], | ||
9431 | "time": "2019-04-03T19:35:46+00:00" | ||
9432 | }, | ||
9433 | { | ||
9434 | "name": "nette/finder", | ||
9435 | "version": "v2.5.0", | ||
9436 | "source": { | ||
9437 | "type": "git", | ||
9438 | "url": "https://github.com/nette/finder.git", | ||
9439 | "reference": "6be1b83ea68ac558aff189d640abe242e0306fe2" | ||
9440 | }, | ||
9441 | "dist": { | ||
9442 | "type": "zip", | ||
9443 | "url": "https://api.github.com/repos/nette/finder/zipball/6be1b83ea68ac558aff189d640abe242e0306fe2", | ||
9444 | "reference": "6be1b83ea68ac558aff189d640abe242e0306fe2", | ||
9445 | "shasum": "" | ||
9446 | }, | ||
9447 | "require": { | ||
9448 | "nette/utils": "^2.4 || ~3.0.0", | ||
9449 | "php": ">=7.1" | ||
9450 | }, | ||
9451 | "conflict": { | ||
9452 | "nette/nette": "<2.2" | ||
9453 | }, | ||
9454 | "require-dev": { | ||
9455 | "nette/tester": "^2.0", | ||
9456 | "tracy/tracy": "^2.3" | ||
9457 | }, | ||
9458 | "type": "library", | ||
9459 | "extra": { | ||
9460 | "branch-alias": { | ||
9461 | "dev-master": "2.5-dev" | ||
9462 | } | ||
9463 | }, | ||
9464 | "autoload": { | ||
9465 | "classmap": [ | ||
9466 | "src/" | ||
9467 | ] | ||
9468 | }, | ||
9469 | "notification-url": "https://packagist.org/downloads/", | ||
9470 | "license": [ | ||
9471 | "BSD-3-Clause", | ||
9472 | "GPL-2.0", | ||
9473 | "GPL-3.0" | ||
9474 | ], | ||
9475 | "authors": [ | ||
9476 | { | ||
9477 | "name": "David Grudl", | ||
9478 | "homepage": "https://davidgrudl.com" | ||
9479 | }, | ||
9480 | { | ||
9481 | "name": "Nette Community", | ||
9482 | "homepage": "https://nette.org/contributors" | ||
9483 | } | ||
9484 | ], | ||
9485 | "description": "? Nette Finder: find files and directories with an intuitive API.", | ||
9486 | "homepage": "https://nette.org", | ||
9487 | "keywords": [ | ||
9488 | "filesystem", | ||
9489 | "glob", | ||
9490 | "iterator", | ||
9491 | "nette" | ||
9492 | ], | ||
9493 | "time": "2019-02-28T18:13:25+00:00" | ||
9494 | }, | ||
9495 | { | ||
9496 | "name": "nette/neon", | ||
9497 | "version": "v3.0.0", | ||
9498 | "source": { | ||
9499 | "type": "git", | ||
9500 | "url": "https://github.com/nette/neon.git", | ||
9501 | "reference": "cbff32059cbdd8720deccf9e9eace6ee516f02eb" | ||
9502 | }, | ||
9503 | "dist": { | ||
9504 | "type": "zip", | ||
9505 | "url": "https://api.github.com/repos/nette/neon/zipball/cbff32059cbdd8720deccf9e9eace6ee516f02eb", | ||
9506 | "reference": "cbff32059cbdd8720deccf9e9eace6ee516f02eb", | ||
9507 | "shasum": "" | ||
9508 | }, | ||
9509 | "require": { | ||
9510 | "ext-iconv": "*", | ||
9511 | "ext-json": "*", | ||
9512 | "php": ">=7.0" | ||
9513 | }, | ||
9514 | "require-dev": { | ||
9515 | "nette/tester": "^2.0", | ||
9516 | "tracy/tracy": "^2.3" | ||
9517 | }, | ||
9518 | "type": "library", | ||
9519 | "extra": { | ||
9520 | "branch-alias": { | ||
9521 | "dev-master": "3.0-dev" | ||
9522 | } | ||
9523 | }, | ||
9524 | "autoload": { | ||
9525 | "classmap": [ | ||
9526 | "src/" | ||
9527 | ] | ||
9528 | }, | ||
9529 | "notification-url": "https://packagist.org/downloads/", | ||
9530 | "license": [ | ||
9531 | "BSD-3-Clause", | ||
9532 | "GPL-2.0", | ||
9533 | "GPL-3.0" | ||
9534 | ], | ||
9535 | "authors": [ | ||
9536 | { | ||
9537 | "name": "David Grudl", | ||
9538 | "homepage": "https://davidgrudl.com" | ||
9539 | }, | ||
9540 | { | ||
9541 | "name": "Nette Community", | ||
9542 | "homepage": "https://nette.org/contributors" | ||
9543 | } | ||
9544 | ], | ||
9545 | "description": "? Nette NEON: encodes and decodes NEON file format.", | ||
9546 | "homepage": "http://ne-on.org", | ||
9547 | "keywords": [ | ||
9548 | "export", | ||
9549 | "import", | ||
9550 | "neon", | ||
9551 | "nette", | ||
9552 | "yaml" | ||
9553 | ], | ||
9554 | "time": "2019-02-05T21:30:40+00:00" | ||
9555 | }, | ||
9556 | { | ||
9557 | "name": "nette/php-generator", | ||
9558 | "version": "v3.2.2", | ||
9559 | "source": { | ||
9560 | "type": "git", | ||
9561 | "url": "https://github.com/nette/php-generator.git", | ||
9562 | "reference": "acff8b136fad84b860a626d133e791f95781f9f5" | ||
9563 | }, | ||
9564 | "dist": { | ||
9565 | "type": "zip", | ||
9566 | "url": "https://api.github.com/repos/nette/php-generator/zipball/acff8b136fad84b860a626d133e791f95781f9f5", | ||
9567 | "reference": "acff8b136fad84b860a626d133e791f95781f9f5", | ||
9568 | "shasum": "" | ||
9569 | }, | ||
9570 | "require": { | ||
9571 | "nette/utils": "^2.4.2 || ~3.0.0", | ||
9572 | "php": ">=7.1" | ||
9573 | }, | ||
9574 | "require-dev": { | ||
9575 | "nette/tester": "^2.0", | ||
9576 | "tracy/tracy": "^2.3" | ||
9577 | }, | ||
9578 | "type": "library", | ||
9579 | "extra": { | ||
9580 | "branch-alias": { | ||
9581 | "dev-master": "3.2-dev" | ||
9582 | } | ||
9583 | }, | ||
9584 | "autoload": { | ||
9585 | "classmap": [ | ||
9586 | "src/" | ||
9587 | ] | ||
9588 | }, | ||
9589 | "notification-url": "https://packagist.org/downloads/", | ||
9590 | "license": [ | ||
9591 | "BSD-3-Clause", | ||
9592 | "GPL-2.0", | ||
9593 | "GPL-3.0" | ||
9594 | ], | ||
9595 | "authors": [ | ||
9596 | { | ||
9597 | "name": "David Grudl", | ||
9598 | "homepage": "https://davidgrudl.com" | ||
9599 | }, | ||
9600 | { | ||
9601 | "name": "Nette Community", | ||
9602 | "homepage": "https://nette.org/contributors" | ||
9603 | } | ||
9604 | ], | ||
9605 | "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.3 features.", | ||
9606 | "homepage": "https://nette.org", | ||
9607 | "keywords": [ | ||
9608 | "code", | ||
9609 | "nette", | ||
9610 | "php", | ||
9611 | "scaffolding" | ||
9612 | ], | ||
9613 | "time": "2019-03-15T03:41:13+00:00" | ||
9614 | }, | ||
9615 | { | ||
9616 | "name": "nette/robot-loader", | ||
9617 | "version": "v3.2.0", | ||
9618 | "source": { | ||
9619 | "type": "git", | ||
9620 | "url": "https://github.com/nette/robot-loader.git", | ||
9621 | "reference": "0712a0e39ae7956d6a94c0ab6ad41aa842544b5c" | ||
9622 | }, | ||
9623 | "dist": { | ||
9624 | "type": "zip", | ||
9625 | "url": "https://api.github.com/repos/nette/robot-loader/zipball/0712a0e39ae7956d6a94c0ab6ad41aa842544b5c", | ||
9626 | "reference": "0712a0e39ae7956d6a94c0ab6ad41aa842544b5c", | ||
9627 | "shasum": "" | ||
9628 | }, | ||
9629 | "require": { | ||
9630 | "ext-tokenizer": "*", | ||
9631 | "nette/finder": "^2.5", | ||
9632 | "nette/utils": "^3.0", | ||
9633 | "php": ">=7.1" | ||
9634 | }, | ||
9635 | "require-dev": { | ||
9636 | "nette/tester": "^2.0", | ||
9637 | "tracy/tracy": "^2.3" | ||
9638 | }, | ||
9639 | "type": "library", | ||
9640 | "extra": { | ||
9641 | "branch-alias": { | ||
9642 | "dev-master": "3.2-dev" | ||
9643 | } | ||
9644 | }, | ||
9645 | "autoload": { | ||
9646 | "classmap": [ | ||
9647 | "src/" | ||
9648 | ] | ||
9649 | }, | ||
9650 | "notification-url": "https://packagist.org/downloads/", | ||
9651 | "license": [ | ||
9652 | "BSD-3-Clause", | ||
9653 | "GPL-2.0", | ||
9654 | "GPL-3.0" | ||
9655 | ], | ||
9656 | "authors": [ | ||
9657 | { | ||
9658 | "name": "David Grudl", | ||
9659 | "homepage": "https://davidgrudl.com" | ||
9660 | }, | ||
9661 | { | ||
9662 | "name": "Nette Community", | ||
9663 | "homepage": "https://nette.org/contributors" | ||
9664 | } | ||
9665 | ], | ||
9666 | "description": "? Nette RobotLoader: high performance and comfortable autoloader that will search and autoload classes within your application.", | ||
9667 | "homepage": "https://nette.org", | ||
9668 | "keywords": [ | ||
9669 | "autoload", | ||
9670 | "class", | ||
9671 | "interface", | ||
9672 | "nette", | ||
9673 | "trait" | ||
9674 | ], | ||
9675 | "time": "2019-03-08T21:57:24+00:00" | ||
9676 | }, | ||
9677 | { | ||
9678 | "name": "nette/schema", | ||
9679 | "version": "v1.0.0", | ||
9680 | "source": { | ||
9681 | "type": "git", | ||
9682 | "url": "https://github.com/nette/schema.git", | ||
9683 | "reference": "6241d8d4da39e825dd6cb5bfbe4242912f4d7e4d" | ||
9684 | }, | ||
9685 | "dist": { | ||
9686 | "type": "zip", | ||
9687 | "url": "https://api.github.com/repos/nette/schema/zipball/6241d8d4da39e825dd6cb5bfbe4242912f4d7e4d", | ||
9688 | "reference": "6241d8d4da39e825dd6cb5bfbe4242912f4d7e4d", | ||
9689 | "shasum": "" | ||
9690 | }, | ||
9691 | "require": { | ||
9692 | "nette/utils": "^3.0.1", | ||
9693 | "php": ">=7.1" | ||
9694 | }, | ||
9695 | "require-dev": { | ||
9696 | "nette/tester": "^2.2", | ||
9697 | "tracy/tracy": "^2.3" | ||
9698 | }, | ||
9699 | "type": "library", | ||
9700 | "extra": { | ||
9701 | "branch-alias": { | ||
9702 | "dev-master": "1.0-dev" | ||
9703 | } | ||
9704 | }, | ||
9705 | "autoload": { | ||
9706 | "classmap": [ | ||
9707 | "src/" | ||
9708 | ] | ||
9709 | }, | ||
9710 | "notification-url": "https://packagist.org/downloads/", | ||
9711 | "license": [ | ||
9712 | "BSD-3-Clause", | ||
9713 | "GPL-2.0", | ||
9714 | "GPL-3.0" | ||
9715 | ], | ||
9716 | "authors": [ | ||
9717 | { | ||
9718 | "name": "David Grudl", | ||
9719 | "homepage": "https://davidgrudl.com" | ||
9720 | }, | ||
9721 | { | ||
9722 | "name": "Nette Community", | ||
9723 | "homepage": "https://nette.org/contributors" | ||
9724 | } | ||
9725 | ], | ||
9726 | "description": "📐 Nette Schema: validating data structures against a given Schema.", | ||
9727 | "homepage": "https://nette.org", | ||
9728 | "keywords": [ | ||
9729 | "config", | ||
9730 | "nette" | ||
9731 | ], | ||
9732 | "time": "2019-04-03T15:53:25+00:00" | ||
9733 | }, | ||
9734 | { | ||
9735 | "name": "nette/utils", | ||
9736 | "version": "v3.0.1", | ||
9737 | "source": { | ||
9738 | "type": "git", | ||
9739 | "url": "https://github.com/nette/utils.git", | ||
9740 | "reference": "bd961f49b211997202bda1d0fbc410905be370d4" | ||
9741 | }, | ||
9742 | "dist": { | ||
9743 | "type": "zip", | ||
9744 | "url": "https://api.github.com/repos/nette/utils/zipball/bd961f49b211997202bda1d0fbc410905be370d4", | ||
9745 | "reference": "bd961f49b211997202bda1d0fbc410905be370d4", | ||
9746 | "shasum": "" | ||
9747 | }, | ||
9748 | "require": { | ||
9749 | "php": ">=7.1" | ||
9750 | }, | ||
9751 | "require-dev": { | ||
9752 | "nette/tester": "~2.0", | ||
9753 | "tracy/tracy": "^2.3" | ||
9754 | }, | ||
9755 | "suggest": { | ||
9756 | "ext-gd": "to use Image", | ||
9757 | "ext-iconv": "to use Strings::webalize() and toAscii()", | ||
9758 | "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", | ||
9759 | "ext-json": "to use Nette\\Utils\\Json", | ||
9760 | "ext-mbstring": "to use Strings::lower() etc...", | ||
9761 | "ext-xml": "to use Strings::length() etc. when mbstring is not available" | ||
9762 | }, | ||
9763 | "type": "library", | ||
9764 | "extra": { | ||
9765 | "branch-alias": { | ||
9766 | "dev-master": "3.0-dev" | ||
9767 | } | ||
9768 | }, | ||
9769 | "autoload": { | ||
9770 | "classmap": [ | ||
9771 | "src/" | ||
9772 | ] | ||
9773 | }, | ||
9774 | "notification-url": "https://packagist.org/downloads/", | ||
9775 | "license": [ | ||
9776 | "BSD-3-Clause", | ||
9777 | "GPL-2.0", | ||
9778 | "GPL-3.0" | ||
9779 | ], | ||
9780 | "authors": [ | ||
9781 | { | ||
9782 | "name": "David Grudl", | ||
9783 | "homepage": "https://davidgrudl.com" | ||
9784 | }, | ||
9785 | { | ||
9786 | "name": "Nette Community", | ||
9787 | "homepage": "https://nette.org/contributors" | ||
9788 | } | ||
9789 | ], | ||
9790 | "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", | ||
9791 | "homepage": "https://nette.org", | ||
9792 | "keywords": [ | ||
9793 | "array", | ||
9794 | "core", | ||
9795 | "datetime", | ||
9796 | "images", | ||
9797 | "json", | ||
9798 | "nette", | ||
9799 | "paginator", | ||
9800 | "password", | ||
9801 | "slugify", | ||
9802 | "string", | ||
9803 | "unicode", | ||
9804 | "utf-8", | ||
9805 | "utility", | ||
9806 | "validation" | ||
9807 | ], | ||
9808 | "time": "2019-03-22T01:00:30+00:00" | ||
9809 | }, | ||
9810 | { | ||
9811 | "name": "nikic/php-parser", | ||
9812 | "version": "v4.2.2", | ||
9813 | "source": { | ||
9814 | "type": "git", | ||
9815 | "url": "https://github.com/nikic/PHP-Parser.git", | ||
9816 | "reference": "1bd73cc04c3843ad8d6b0bfc0956026a151fc420" | ||
9817 | }, | ||
9818 | "dist": { | ||
9819 | "type": "zip", | ||
9820 | "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bd73cc04c3843ad8d6b0bfc0956026a151fc420", | ||
9821 | "reference": "1bd73cc04c3843ad8d6b0bfc0956026a151fc420", | ||
9822 | "shasum": "" | ||
9823 | }, | ||
9824 | "require": { | ||
9825 | "ext-tokenizer": "*", | ||
9826 | "php": ">=7.0" | ||
9827 | }, | ||
9828 | "require-dev": { | ||
9829 | "phpunit/phpunit": "^6.5 || ^7.0" | ||
9830 | }, | ||
9831 | "bin": [ | ||
9832 | "bin/php-parse" | ||
9833 | ], | ||
9834 | "type": "library", | ||
9835 | "extra": { | ||
9836 | "branch-alias": { | ||
9837 | "dev-master": "4.2-dev" | ||
9838 | } | ||
9839 | }, | ||
9840 | "autoload": { | ||
9841 | "psr-4": { | ||
9842 | "PhpParser\\": "lib/PhpParser" | ||
9843 | } | ||
9844 | }, | ||
9845 | "notification-url": "https://packagist.org/downloads/", | ||
9846 | "license": [ | ||
9847 | "BSD-3-Clause" | ||
9848 | ], | ||
9849 | "authors": [ | ||
9850 | { | ||
9851 | "name": "Nikita Popov" | ||
9852 | } | ||
9853 | ], | ||
9854 | "description": "A PHP parser written in PHP", | ||
9855 | "keywords": [ | ||
9856 | "parser", | ||
9857 | "php" | ||
9858 | ], | ||
9859 | "time": "2019-05-25T20:07:01+00:00" | ||
9860 | }, | ||
9861 | { | ||
9862 | "name": "php-cs-fixer/diff", | ||
9863 | "version": "v1.3.0", | ||
9864 | "source": { | ||
9865 | "type": "git", | ||
9866 | "url": "https://github.com/PHP-CS-Fixer/diff.git", | ||
9867 | "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756" | ||
9868 | }, | ||
9869 | "dist": { | ||
9870 | "type": "zip", | ||
9871 | "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/78bb099e9c16361126c86ce82ec4405ebab8e756", | ||
9872 | "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756", | ||
9873 | "shasum": "" | ||
9874 | }, | ||
9875 | "require": { | ||
9876 | "php": "^5.6 || ^7.0" | ||
9877 | }, | ||
9878 | "require-dev": { | ||
9879 | "phpunit/phpunit": "^5.7.23 || ^6.4.3", | ||
9880 | "symfony/process": "^3.3" | ||
9881 | }, | ||
9882 | "type": "library", | ||
9883 | "autoload": { | ||
9884 | "classmap": [ | ||
9885 | "src/" | ||
9886 | ] | ||
9887 | }, | ||
9888 | "notification-url": "https://packagist.org/downloads/", | ||
9889 | "license": [ | ||
9890 | "BSD-3-Clause" | ||
9891 | ], | ||
9892 | "authors": [ | ||
9893 | { | ||
9894 | "name": "Kore Nordmann", | ||
9895 | "email": "mail@kore-nordmann.de" | ||
9896 | }, | ||
9897 | { | ||
9898 | "name": "Sebastian Bergmann", | ||
9899 | "email": "sebastian@phpunit.de" | ||
9900 | }, | ||
9901 | { | ||
9902 | "name": "SpacePossum" | ||
9903 | } | ||
9904 | ], | ||
9905 | "description": "sebastian/diff v2 backport support for PHP5.6", | ||
9906 | "homepage": "https://github.com/PHP-CS-Fixer", | ||
9907 | "keywords": [ | ||
9908 | "diff" | ||
9909 | ], | ||
9910 | "time": "2018-02-15T16:58:55+00:00" | ||
9911 | }, | ||
9912 | { | ||
9913 | "name": "php-http/mock-client", | ||
9914 | "version": "1.3.0", | ||
9915 | "source": { | ||
9916 | "type": "git", | ||
9917 | "url": "https://github.com/php-http/mock-client.git", | ||
9918 | "reference": "d364c4a2847229dd37237d0083887889d3bd8564" | ||
9919 | }, | ||
9920 | "dist": { | ||
9921 | "type": "zip", | ||
9922 | "url": "https://api.github.com/repos/php-http/mock-client/zipball/d364c4a2847229dd37237d0083887889d3bd8564", | ||
9923 | "reference": "d364c4a2847229dd37237d0083887889d3bd8564", | ||
9924 | "shasum": "" | ||
9925 | }, | ||
9926 | "require": { | ||
9927 | "php": "^5.5 || ^7.0", | ||
9928 | "php-http/client-common": "^1.9 || ^2.0", | ||
9929 | "php-http/discovery": "^1.0", | ||
9930 | "php-http/httplug": "^1.0 || ^2.0", | ||
9931 | "php-http/message-factory": "^1.0" | ||
9932 | }, | ||
9933 | "provide": { | ||
9934 | "php-http/async-client-implementation": "1.0", | ||
9935 | "php-http/client-implementation": "1.0" | ||
9936 | }, | ||
9937 | "require-dev": { | ||
9938 | "henrikbjorn/phpspec-code-coverage": "^1.0", | ||
9939 | "phpspec/phpspec": "^2.4" | ||
9940 | }, | ||
9941 | "type": "library", | ||
9942 | "extra": { | ||
9943 | "branch-alias": { | ||
9944 | "dev-master": "1.3-dev" | ||
9945 | } | ||
9946 | }, | ||
9947 | "autoload": { | ||
9948 | "psr-4": { | ||
9949 | "Http\\Mock\\": "src/" | ||
9950 | } | ||
9951 | }, | ||
9952 | "notification-url": "https://packagist.org/downloads/", | ||
9953 | "license": [ | ||
9954 | "MIT" | ||
9955 | ], | ||
9956 | "authors": [ | ||
9957 | { | ||
9958 | "name": "David de Boer", | ||
9959 | "email": "david@ddeboer.nl" | ||
9960 | } | ||
9961 | ], | ||
9962 | "description": "Mock HTTP client", | ||
9963 | "homepage": "http://httplug.io", | ||
9964 | "keywords": [ | ||
9965 | "client", | ||
9966 | "http", | ||
9967 | "mock", | ||
9968 | "psr7" | ||
9969 | ], | ||
9970 | "time": "2019-02-21T08:51:08+00:00" | ||
9971 | }, | ||
9972 | { | ||
9973 | "name": "phpstan/phpdoc-parser", | ||
9974 | "version": "0.3.4", | ||
9975 | "source": { | ||
9976 | "type": "git", | ||
9977 | "url": "https://github.com/phpstan/phpdoc-parser.git", | ||
9978 | "reference": "ab518a5fc8f1d90f58bd2c5552ba915e2c477b66" | ||
9979 | }, | ||
9980 | "dist": { | ||
9981 | "type": "zip", | ||
9982 | "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/ab518a5fc8f1d90f58bd2c5552ba915e2c477b66", | ||
9983 | "reference": "ab518a5fc8f1d90f58bd2c5552ba915e2c477b66", | ||
9984 | "shasum": "" | ||
9985 | }, | ||
9986 | "require": { | ||
9987 | "php": "~7.1" | ||
9988 | }, | ||
9989 | "require-dev": { | ||
9990 | "consistence/coding-standard": "^3.5", | ||
9991 | "jakub-onderka/php-parallel-lint": "^0.9.2", | ||
9992 | "phing/phing": "^2.16.0", | ||
9993 | "phpstan/phpstan": "^0.10", | ||
9994 | "phpunit/phpunit": "^6.3", | ||
9995 | "slevomat/coding-standard": "^4.7.2", | ||
9996 | "squizlabs/php_codesniffer": "^3.3.2", | ||
9997 | "symfony/process": "^3.4 || ^4.0" | ||
9998 | }, | ||
9999 | "type": "library", | ||
10000 | "extra": { | ||
10001 | "branch-alias": { | ||
10002 | "dev-master": "0.3-dev" | ||
10003 | } | ||
10004 | }, | ||
10005 | "autoload": { | ||
10006 | "psr-4": { | ||
10007 | "PHPStan\\PhpDocParser\\": [ | ||
10008 | "src/" | ||
10009 | ] | ||
10010 | } | ||
10011 | }, | ||
10012 | "notification-url": "https://packagist.org/downloads/", | ||
10013 | "license": [ | ||
10014 | "MIT" | ||
10015 | ], | ||
10016 | "description": "PHPDoc parser with support for nullable, intersection and generic types", | ||
10017 | "time": "2019-05-28T11:40:00+00:00" | ||
10018 | }, | ||
10019 | { | ||
10020 | "name": "phpstan/phpstan", | ||
10021 | "version": "0.11.8", | ||
10022 | "source": { | ||
10023 | "type": "git", | ||
10024 | "url": "https://github.com/phpstan/phpstan.git", | ||
10025 | "reference": "fcf0081bf3a254ddacffa03e78be87842d0c09c9" | ||
10026 | }, | ||
10027 | "dist": { | ||
10028 | "type": "zip", | ||
10029 | "url": "https://api.github.com/repos/phpstan/phpstan/zipball/fcf0081bf3a254ddacffa03e78be87842d0c09c9", | ||
10030 | "reference": "fcf0081bf3a254ddacffa03e78be87842d0c09c9", | ||
10031 | "shasum": "" | ||
10032 | }, | ||
10033 | "require": { | ||
10034 | "composer/xdebug-handler": "^1.3.0", | ||
10035 | "jean85/pretty-package-versions": "^1.0.3", | ||
10036 | "nette/bootstrap": "^2.4 || ^3.0", | ||
10037 | "nette/di": "^2.4.7 || ^3.0", | ||
10038 | "nette/robot-loader": "^3.0.1", | ||
10039 | "nette/schema": "^1.0", | ||
10040 | "nette/utils": "^2.4.5 || ^3.0", | ||
10041 | "nikic/php-parser": "^4.0.2", | ||
10042 | "php": "~7.1", | ||
10043 | "phpstan/phpdoc-parser": "^0.3.4", | ||
10044 | "symfony/console": "~3.2 || ~4.0", | ||
10045 | "symfony/finder": "~3.2 || ~4.0" | ||
10046 | }, | ||
10047 | "conflict": { | ||
10048 | "symfony/console": "3.4.16 || 4.1.5" | ||
10049 | }, | ||
10050 | "require-dev": { | ||
10051 | "brianium/paratest": "^2.0", | ||
10052 | "consistence/coding-standard": "^3.5", | ||
10053 | "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4", | ||
10054 | "ext-intl": "*", | ||
10055 | "ext-mysqli": "*", | ||
10056 | "ext-soap": "*", | ||
10057 | "ext-zip": "*", | ||
10058 | "jakub-onderka/php-parallel-lint": "^1.0", | ||
10059 | "localheinz/composer-normalize": "^1.1.0", | ||
10060 | "phing/phing": "^2.16.0", | ||
10061 | "phpstan/phpstan-deprecation-rules": "^0.11", | ||
10062 | "phpstan/phpstan-php-parser": "^0.11", | ||
10063 | "phpstan/phpstan-phpunit": "^0.11", | ||
10064 | "phpstan/phpstan-strict-rules": "^0.11", | ||
10065 | "phpunit/phpunit": "^7.0", | ||
10066 | "slevomat/coding-standard": "^4.7.2", | ||
10067 | "squizlabs/php_codesniffer": "^3.3.2" | ||
10068 | }, | ||
10069 | "bin": [ | ||
10070 | "bin/phpstan" | ||
10071 | ], | ||
10072 | "type": "library", | ||
10073 | "extra": { | ||
10074 | "branch-alias": { | ||
10075 | "dev-master": "0.11-dev" | ||
10076 | } | ||
10077 | }, | ||
10078 | "autoload": { | ||
10079 | "psr-4": { | ||
10080 | "PHPStan\\": [ | ||
10081 | "src/", | ||
10082 | "build/PHPStan" | ||
10083 | ] | ||
10084 | } | ||
10085 | }, | ||
10086 | "notification-url": "https://packagist.org/downloads/", | ||
10087 | "license": [ | ||
10088 | "MIT" | ||
10089 | ], | ||
10090 | "description": "PHPStan - PHP Static Analysis Tool", | ||
10091 | "time": "2019-05-28T19:58:33+00:00" | ||
10092 | }, | ||
10093 | { | ||
10094 | "name": "phpstan/phpstan-doctrine", | ||
10095 | "version": "0.11.5", | ||
10096 | "source": { | ||
10097 | "type": "git", | ||
10098 | "url": "https://github.com/phpstan/phpstan-doctrine.git", | ||
10099 | "reference": "3c68697365f0b71e357d773d91a6c77f3f9e143a" | ||
10100 | }, | ||
10101 | "dist": { | ||
10102 | "type": "zip", | ||
10103 | "url": "https://api.github.com/repos/phpstan/phpstan-doctrine/zipball/3c68697365f0b71e357d773d91a6c77f3f9e143a", | ||
10104 | "reference": "3c68697365f0b71e357d773d91a6c77f3f9e143a", | ||
10105 | "shasum": "" | ||
10106 | }, | ||
10107 | "require": { | ||
10108 | "nikic/php-parser": "^4.0", | ||
10109 | "php": "~7.1", | ||
10110 | "phpstan/phpdoc-parser": "^0.3", | ||
10111 | "phpstan/phpstan": "^0.11.7" | ||
10112 | }, | ||
10113 | "conflict": { | ||
10114 | "doctrine/collections": "<1.0", | ||
10115 | "doctrine/common": "<2.7", | ||
10116 | "doctrine/mongodb-odm": "<1.2", | ||
10117 | "doctrine/orm": "<2.5" | ||
10118 | }, | ||
10119 | "require-dev": { | ||
10120 | "consistence/coding-standard": "^3.8", | ||
10121 | "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4", | ||
10122 | "doctrine/collections": "^1.0", | ||
10123 | "doctrine/common": "^2.7", | ||
10124 | "doctrine/mongodb-odm": "^1.2", | ||
10125 | "doctrine/orm": "^2.5", | ||
10126 | "jakub-onderka/php-parallel-lint": "^1.0", | ||
10127 | "phing/phing": "^2.16.0", | ||
10128 | "phpstan/phpstan-phpunit": "^0.11", | ||
10129 | "phpstan/phpstan-strict-rules": "^0.11", | ||
10130 | "phpunit/phpunit": "^7.0", | ||
10131 | "slevomat/coding-standard": "^5.0.4" | ||
10132 | }, | ||
10133 | "type": "phpstan-extension", | ||
10134 | "extra": { | ||
10135 | "branch-alias": { | ||
10136 | "dev-master": "0.11-dev" | ||
10137 | }, | ||
10138 | "phpstan": { | ||
10139 | "includes": [ | ||
10140 | "extension.neon", | ||
10141 | "rules.neon" | ||
10142 | ] | ||
10143 | } | ||
10144 | }, | ||
10145 | "autoload": { | ||
10146 | "psr-4": { | ||
10147 | "PHPStan\\": "src/" | ||
10148 | } | ||
10149 | }, | ||
10150 | "notification-url": "https://packagist.org/downloads/", | ||
10151 | "license": [ | ||
10152 | "MIT" | ||
10153 | ], | ||
10154 | "description": "Doctrine extensions for PHPStan", | ||
10155 | "time": "2019-05-29T06:01:20+00:00" | ||
10156 | }, | ||
10157 | { | ||
10158 | "name": "phpstan/phpstan-phpunit", | ||
10159 | "version": "0.11.2", | ||
10160 | "source": { | ||
10161 | "type": "git", | ||
10162 | "url": "https://github.com/phpstan/phpstan-phpunit.git", | ||
10163 | "reference": "fbf2ad56c3b13189d29655e226c9b1da47c2fad9" | ||
10164 | }, | ||
10165 | "dist": { | ||
10166 | "type": "zip", | ||
10167 | "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/fbf2ad56c3b13189d29655e226c9b1da47c2fad9", | ||
10168 | "reference": "fbf2ad56c3b13189d29655e226c9b1da47c2fad9", | ||
10169 | "shasum": "" | ||
10170 | }, | ||
10171 | "require": { | ||
10172 | "nikic/php-parser": "^4.0", | ||
10173 | "php": "~7.1", | ||
10174 | "phpstan/phpdoc-parser": "^0.3", | ||
10175 | "phpstan/phpstan": "^0.11.4" | ||
10176 | }, | ||
10177 | "conflict": { | ||
10178 | "phpunit/phpunit": "<7.0" | ||
10179 | }, | ||
10180 | "require-dev": { | ||
10181 | "consistence/coding-standard": "^3.0.1", | ||
10182 | "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4", | ||
10183 | "jakub-onderka/php-parallel-lint": "^1.0", | ||
10184 | "phing/phing": "^2.16.0", | ||
10185 | "phpstan/phpstan-strict-rules": "^0.11", | ||
10186 | "phpunit/phpunit": "^7.0", | ||
10187 | "satooshi/php-coveralls": "^1.0", | ||
10188 | "slevomat/coding-standard": "^4.5.2" | ||
10189 | }, | ||
10190 | "type": "phpstan-extension", | ||
10191 | "extra": { | ||
10192 | "branch-alias": { | ||
10193 | "dev-master": "0.11-dev" | ||
10194 | }, | ||
10195 | "phpstan": { | ||
10196 | "includes": [ | ||
10197 | "extension.neon", | ||
10198 | "rules.neon" | ||
10199 | ] | ||
10200 | } | ||
10201 | }, | ||
10202 | "autoload": { | ||
10203 | "psr-4": { | ||
10204 | "PHPStan\\": "src/" | ||
10205 | } | ||
10206 | }, | ||
10207 | "notification-url": "https://packagist.org/downloads/", | ||
10208 | "license": [ | ||
10209 | "MIT" | ||
10210 | ], | ||
10211 | "description": "PHPUnit extensions and rules for PHPStan", | ||
10212 | "time": "2019-05-17T17:50:16+00:00" | ||
10213 | }, | ||
10214 | { | ||
10215 | "name": "phpstan/phpstan-symfony", | ||
10216 | "version": "0.11.6", | ||
10217 | "source": { | ||
10218 | "type": "git", | ||
10219 | "url": "https://github.com/phpstan/phpstan-symfony.git", | ||
10220 | "reference": "c7be3054c21fd472a52b1c38eb129c3f93776084" | ||
10221 | }, | ||
10222 | "dist": { | ||
10223 | "type": "zip", | ||
10224 | "url": "https://api.github.com/repos/phpstan/phpstan-symfony/zipball/c7be3054c21fd472a52b1c38eb129c3f93776084", | ||
10225 | "reference": "c7be3054c21fd472a52b1c38eb129c3f93776084", | ||
10226 | "shasum": "" | ||
10227 | }, | ||
10228 | "require": { | ||
10229 | "ext-simplexml": "*", | ||
10230 | "nikic/php-parser": "^4.0", | ||
10231 | "php": "^7.1", | ||
10232 | "phpstan/phpstan": "^0.11.7" | ||
10233 | }, | ||
10234 | "conflict": { | ||
10235 | "symfony/framework-bundle": "<3.0" | ||
10236 | }, | ||
10237 | "require-dev": { | ||
10238 | "consistence/coding-standard": "^3.0.1", | ||
10239 | "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4", | ||
10240 | "jakub-onderka/php-parallel-lint": "^1.0", | ||
10241 | "nette/di": "^3.0-stable", | ||
10242 | "phing/phing": "^2.16.0", | ||
10243 | "phpstan/phpstan-phpunit": "^0.11", | ||
10244 | "phpstan/phpstan-strict-rules": "^0.11", | ||
10245 | "phpunit/phpunit": "^7.0", | ||
10246 | "slevomat/coding-standard": "^4.5.2", | ||
10247 | "squizlabs/php_codesniffer": "^3.3.2", | ||
10248 | "symfony/console": "^3.0 || ^4.0", | ||
10249 | "symfony/framework-bundle": "^3.0 || ^4.0", | ||
10250 | "symfony/messenger": "^4.2", | ||
10251 | "symfony/serializer": "^3.0 || ^4.0" | ||
10252 | }, | ||
10253 | "type": "phpstan-extension", | ||
10254 | "extra": { | ||
10255 | "branch-alias": { | ||
10256 | "dev-master": "0.11-dev" | ||
10257 | }, | ||
10258 | "phpstan": { | ||
10259 | "includes": [ | ||
10260 | "extension.neon" | ||
10261 | ] | ||
10262 | } | ||
10263 | }, | ||
10264 | "autoload": { | ||
10265 | "psr-4": { | ||
10266 | "PHPStan\\": "src/" | ||
10267 | } | ||
10268 | }, | ||
10269 | "notification-url": "https://packagist.org/downloads/", | ||
10270 | "license": [ | ||
10271 | "MIT" | ||
10272 | ], | ||
10273 | "authors": [ | ||
10274 | { | ||
10275 | "name": "Lukáš Unger", | ||
10276 | "email": "looky.msc@gmail.com", | ||
10277 | "homepage": "https://lookyman.net" | ||
10278 | } | ||
10279 | ], | ||
10280 | "description": "Symfony Framework extensions and rules for PHPStan", | ||
10281 | "time": "2019-05-19T17:40:25+00:00" | ||
10282 | }, | ||
10283 | { | ||
10284 | "name": "sensio/generator-bundle", | ||
10285 | "version": "v3.1.7", | ||
10286 | "source": { | ||
10287 | "type": "git", | ||
10288 | "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git", | ||
10289 | "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65" | ||
10290 | }, | ||
10291 | "dist": { | ||
10292 | "type": "zip", | ||
10293 | "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/28cbaa244bd0816fd8908b93f90380bcd7b67a65", | ||
10294 | "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65", | ||
10295 | "shasum": "" | ||
10296 | }, | ||
10297 | "require": { | ||
10298 | "symfony/console": "~2.7|~3.0", | ||
10299 | "symfony/framework-bundle": "~2.7|~3.0", | ||
10300 | "symfony/process": "~2.7|~3.0", | ||
10301 | "symfony/yaml": "~2.7|~3.0", | ||
10302 | "twig/twig": "^1.28.2|^2.0" | ||
10303 | }, | ||
10304 | "require-dev": { | ||
10305 | "doctrine/orm": "~2.4", | ||
10306 | "symfony/doctrine-bridge": "~2.7|~3.0", | ||
10307 | "symfony/filesystem": "~2.7|~3.0", | ||
10308 | "symfony/phpunit-bridge": "^3.3" | ||
10309 | }, | ||
10310 | "type": "symfony-bundle", | ||
10311 | "extra": { | ||
10312 | "branch-alias": { | ||
10313 | "dev-master": "3.1.x-dev" | ||
10314 | } | ||
10315 | }, | ||
10316 | "autoload": { | ||
10317 | "psr-4": { | ||
10318 | "Sensio\\Bundle\\GeneratorBundle\\": "" | ||
10319 | }, | ||
10320 | "exclude-from-classmap": [ | ||
10321 | "/Tests/" | ||
10322 | ] | ||
10323 | }, | ||
10324 | "notification-url": "https://packagist.org/downloads/", | ||
10325 | "license": [ | ||
10326 | "MIT" | ||
10327 | ], | ||
10328 | "authors": [ | ||
10329 | { | ||
10330 | "name": "Fabien Potencier", | ||
10331 | "email": "fabien@symfony.com" | ||
10332 | } | ||
10333 | ], | ||
10334 | "description": "This bundle generates code for you", | ||
10335 | "time": "2017-12-07T15:36:41+00:00" | ||
10336 | }, | ||
10337 | { | ||
10338 | "name": "symfony/phpunit-bridge", | ||
10339 | "version": "v4.2.9", | ||
10340 | "source": { | ||
10341 | "type": "git", | ||
10342 | "url": "https://github.com/symfony/phpunit-bridge.git", | ||
10343 | "reference": "31f2e3c10bc9bd955ca1ae3e4da2bb489205714a" | ||
10344 | }, | ||
10345 | "dist": { | ||
10346 | "type": "zip", | ||
10347 | "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/31f2e3c10bc9bd955ca1ae3e4da2bb489205714a", | ||
10348 | "reference": "31f2e3c10bc9bd955ca1ae3e4da2bb489205714a", | ||
10349 | "shasum": "" | ||
10350 | }, | ||
10351 | "require": { | ||
10352 | "php": ">=5.3.3" | ||
10353 | }, | ||
10354 | "conflict": { | ||
10355 | "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" | ||
10356 | }, | ||
10357 | "suggest": { | ||
10358 | "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader" | ||
10359 | }, | ||
10360 | "bin": [ | ||
10361 | "bin/simple-phpunit" | ||
10362 | ], | ||
10363 | "type": "symfony-bridge", | ||
10364 | "extra": { | ||
10365 | "branch-alias": { | ||
10366 | "dev-master": "4.2-dev" | ||
10367 | }, | ||
10368 | "thanks": { | ||
10369 | "name": "phpunit/phpunit", | ||
10370 | "url": "https://github.com/sebastianbergmann/phpunit" | ||
10371 | } | ||
10372 | }, | ||
10373 | "autoload": { | ||
10374 | "files": [ | ||
10375 | "bootstrap.php" | ||
10376 | ], | ||
10377 | "psr-4": { | ||
10378 | "Symfony\\Bridge\\PhpUnit\\": "" | ||
10379 | }, | ||
10380 | "exclude-from-classmap": [ | ||
10381 | "/Tests/" | ||
10382 | ] | ||
10383 | }, | ||
10384 | "notification-url": "https://packagist.org/downloads/", | ||
10385 | "license": [ | ||
10386 | "MIT" | ||
10387 | ], | ||
10388 | "authors": [ | ||
10389 | { | ||
10390 | "name": "Nicolas Grekas", | ||
10391 | "email": "p@tchwork.com" | ||
10392 | }, | ||
10393 | { | ||
10394 | "name": "Symfony Community", | ||
10395 | "homepage": "https://symfony.com/contributors" | ||
10396 | } | ||
10397 | ], | ||
10398 | "description": "Symfony PHPUnit Bridge", | ||
10399 | "homepage": "https://symfony.com", | ||
10400 | "time": "2019-04-23T14:37:24+00:00" | ||
10401 | } | ||
10402 | ], | ||
10403 | "aliases": [], | ||
10404 | "minimum-stability": "dev", | ||
10405 | "stability-flags": { | ||
10406 | "grandt/phpepub": 20, | ||
10407 | "craue/config-bundle": 20, | ||
10408 | "predis/predis": 20 | ||
10409 | }, | ||
10410 | "prefer-stable": true, | ||
10411 | "prefer-lowest": false, | ||
10412 | "platform": { | ||
10413 | "php": ">=7.1.3", | ||
10414 | "ext-pcre": "*", | ||
10415 | "ext-dom": "*", | ||
10416 | "ext-curl": "*", | ||
10417 | "ext-gd": "*", | ||
10418 | "ext-session": "*", | ||
10419 | "ext-ctype": "*", | ||
10420 | "ext-hash": "*", | ||
10421 | "ext-simplexml": "*", | ||
10422 | "ext-json": "*", | ||
10423 | "ext-mbstring": "*", | ||
10424 | "ext-xml": "*", | ||
10425 | "ext-iconv": "*", | ||
10426 | "ext-tokenizer": "*", | ||
10427 | "ext-pdo": "*", | ||
10428 | "ext-tidy": "*" | ||
10429 | }, | ||
10430 | "platform-dev": [], | ||
10431 | "platform-overrides": { | ||
10432 | "php": "7.1.3" | ||
10433 | } | ||
10434 | } | ||
diff --git a/scripts/release.sh b/scripts/release.sh index ee08a688..e697e220 100755 --- a/scripts/release.sh +++ b/scripts/release.sh | |||
@@ -9,8 +9,8 @@ ENV=$4 | |||
9 | 9 | ||
10 | rm -rf $TMP_FOLDER/$RELEASE_FOLDER | 10 | rm -rf $TMP_FOLDER/$RELEASE_FOLDER |
11 | mkdir $TMP_FOLDER/$RELEASE_FOLDER | 11 | mkdir $TMP_FOLDER/$RELEASE_FOLDER |
12 | git clone git@github.com:wallabag/wallabag.git -b release-$VERSION $TMP_FOLDER/$RELEASE_FOLDER/$VERSION | 12 | git clone git@github.com:wallabag/wallabag.git $TMP_FOLDER/$RELEASE_FOLDER/$VERSION |
13 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && SYMFONY_ENV=$ENV COMPOSER_MEMORY_LIMIT=-1 composer up -n --no-dev | 13 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && SYMFONY_ENV=$ENV COMPOSER_MEMORY_LIMIT=-1 composer install -n --no-dev |
14 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console wallabag:install --env=$ENV -n | 14 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console wallabag:install --env=$ENV -n |
15 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console assets:install --env=$ENV --symlink --relative | 15 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console assets:install --env=$ENV --symlink --relative |
16 | cd $TMP_FOLDER/$RELEASE_FOLDER && tar czf wallabag-$VERSION.tar.gz --exclude="var/cache/*" --exclude="var/logs/*" --exclude="var/sessions/*" --exclude=".git" $VERSION | 16 | cd $TMP_FOLDER/$RELEASE_FOLDER && tar czf wallabag-$VERSION.tar.gz --exclude="var/cache/*" --exclude="var/logs/*" --exclude="var/sessions/*" --exclude=".git" $VERSION |