Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

composer.lock.php7.2 74KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112
  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": "ea5a2f00ed1356ea36a5c84b7581bf67",
  8. "packages": [
  9. {
  10. "name": "doctrine/annotations",
  11. "version": "v1.6.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/doctrine/annotations.git",
  15. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  20. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/lexer": "1.*",
  25. "php": "^7.1"
  26. },
  27. "require-dev": {
  28. "doctrine/cache": "1.*",
  29. "phpunit/phpunit": "^6.4"
  30. },
  31. "type": "library",
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "1.6.x-dev"
  35. }
  36. },
  37. "autoload": {
  38. "psr-4": {
  39. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "MIT"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Roman Borschel",
  49. "email": "roman@code-factory.org"
  50. },
  51. {
  52. "name": "Benjamin Eberlei",
  53. "email": "kontakt@beberlei.de"
  54. },
  55. {
  56. "name": "Guilherme Blanco",
  57. "email": "guilhermeblanco@gmail.com"
  58. },
  59. {
  60. "name": "Jonathan Wage",
  61. "email": "jonwage@gmail.com"
  62. },
  63. {
  64. "name": "Johannes Schmitt",
  65. "email": "schmittjoh@gmail.com"
  66. }
  67. ],
  68. "description": "Docblock Annotations Parser",
  69. "homepage": "http://www.doctrine-project.org",
  70. "keywords": [
  71. "annotations",
  72. "docblock",
  73. "parser"
  74. ],
  75. "time": "2017-12-06T07:11:42+00:00"
  76. },
  77. {
  78. "name": "doctrine/lexer",
  79. "version": "v1.0.1",
  80. "source": {
  81. "type": "git",
  82. "url": "https://github.com/doctrine/lexer.git",
  83. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  84. },
  85. "dist": {
  86. "type": "zip",
  87. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  88. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  89. "shasum": ""
  90. },
  91. "require": {
  92. "php": ">=5.3.2"
  93. },
  94. "type": "library",
  95. "extra": {
  96. "branch-alias": {
  97. "dev-master": "1.0.x-dev"
  98. }
  99. },
  100. "autoload": {
  101. "psr-0": {
  102. "Doctrine\\Common\\Lexer\\": "lib/"
  103. }
  104. },
  105. "notification-url": "https://packagist.org/downloads/",
  106. "license": [
  107. "MIT"
  108. ],
  109. "authors": [
  110. {
  111. "name": "Roman Borschel",
  112. "email": "roman@code-factory.org"
  113. },
  114. {
  115. "name": "Guilherme Blanco",
  116. "email": "guilhermeblanco@gmail.com"
  117. },
  118. {
  119. "name": "Johannes Schmitt",
  120. "email": "schmittjoh@gmail.com"
  121. }
  122. ],
  123. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  124. "homepage": "http://www.doctrine-project.org",
  125. "keywords": [
  126. "lexer",
  127. "parser"
  128. ],
  129. "time": "2014-09-09T13:34:57+00:00"
  130. },
  131. {
  132. "name": "phpbenchmarks/benchmark-rest-data",
  133. "version": "1.0.0",
  134. "source": {
  135. "type": "git",
  136. "url": "https://github.com/phpbenchmarks/benchmark-rest-data.git",
  137. "reference": "f071a8ffcf9082f53ce1ee8b112aaacab2f32690"
  138. },
  139. "dist": {
  140. "type": "zip",
  141. "url": "https://api.github.com/repos/phpbenchmarks/benchmark-rest-data/zipball/f071a8ffcf9082f53ce1ee8b112aaacab2f32690",
  142. "reference": "f071a8ffcf9082f53ce1ee8b112aaacab2f32690",
  143. "shasum": ""
  144. },
  145. "require": {
  146. "php": ">=5.4.0"
  147. },
  148. "type": "project",
  149. "autoload": {
  150. "psr-4": {
  151. "PhpBenchmarksRestData\\": ""
  152. }
  153. },
  154. "notification-url": "https://packagist.org/downloads/",
  155. "license": [
  156. "proprietary"
  157. ],
  158. "time": "2017-10-24T01:42:51+00:00"
  159. },
  160. {
  161. "name": "phpbenchmarks/symfony-common",
  162. "version": "4.3.1",
  163. "source": {
  164. "type": "git",
  165. "url": "https://github.com/phpbenchmarks/symfony-common.git",
  166. "reference": "fe7b073c5003b17cfb65628bb531dc41fc55769c"
  167. },
  168. "dist": {
  169. "type": "zip",
  170. "url": "https://api.github.com/repos/phpbenchmarks/symfony-common/zipball/fe7b073c5003b17cfb65628bb531dc41fc55769c",
  171. "reference": "fe7b073c5003b17cfb65628bb531dc41fc55769c",
  172. "shasum": ""
  173. },
  174. "require": {
  175. "phpbenchmarks/benchmark-rest-data": "1.0.0"
  176. },
  177. "type": "project",
  178. "autoload": {
  179. "psr-4": {
  180. "PhpBenchmarksSymfony\\RestApiBundle\\": ""
  181. }
  182. },
  183. "notification-url": "https://packagist.org/downloads/",
  184. "license": [
  185. "proprietary"
  186. ],
  187. "time": "2018-11-15T14:08:30+00:00"
  188. },
  189. {
  190. "name": "phpdocumentor/reflection-common",
  191. "version": "1.0.1",
  192. "source": {
  193. "type": "git",
  194. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  195. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  196. },
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  200. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  201. "shasum": ""
  202. },
  203. "require": {
  204. "php": ">=5.5"
  205. },
  206. "require-dev": {
  207. "phpunit/phpunit": "^4.6"
  208. },
  209. "type": "library",
  210. "extra": {
  211. "branch-alias": {
  212. "dev-master": "1.0.x-dev"
  213. }
  214. },
  215. "autoload": {
  216. "psr-4": {
  217. "phpDocumentor\\Reflection\\": [
  218. "src"
  219. ]
  220. }
  221. },
  222. "notification-url": "https://packagist.org/downloads/",
  223. "license": [
  224. "MIT"
  225. ],
  226. "authors": [
  227. {
  228. "name": "Jaap van Otterdijk",
  229. "email": "opensource@ijaap.nl"
  230. }
  231. ],
  232. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  233. "homepage": "http://www.phpdoc.org",
  234. "keywords": [
  235. "FQSEN",
  236. "phpDocumentor",
  237. "phpdoc",
  238. "reflection",
  239. "static analysis"
  240. ],
  241. "time": "2017-09-11T18:02:19+00:00"
  242. },
  243. {
  244. "name": "phpdocumentor/reflection-docblock",
  245. "version": "4.3.0",
  246. "source": {
  247. "type": "git",
  248. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  249. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  250. },
  251. "dist": {
  252. "type": "zip",
  253. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  254. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  255. "shasum": ""
  256. },
  257. "require": {
  258. "php": "^7.0",
  259. "phpdocumentor/reflection-common": "^1.0.0",
  260. "phpdocumentor/type-resolver": "^0.4.0",
  261. "webmozart/assert": "^1.0"
  262. },
  263. "require-dev": {
  264. "doctrine/instantiator": "~1.0.5",
  265. "mockery/mockery": "^1.0",
  266. "phpunit/phpunit": "^6.4"
  267. },
  268. "type": "library",
  269. "extra": {
  270. "branch-alias": {
  271. "dev-master": "4.x-dev"
  272. }
  273. },
  274. "autoload": {
  275. "psr-4": {
  276. "phpDocumentor\\Reflection\\": [
  277. "src/"
  278. ]
  279. }
  280. },
  281. "notification-url": "https://packagist.org/downloads/",
  282. "license": [
  283. "MIT"
  284. ],
  285. "authors": [
  286. {
  287. "name": "Mike van Riel",
  288. "email": "me@mikevanriel.com"
  289. }
  290. ],
  291. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  292. "time": "2017-11-30T07:14:17+00:00"
  293. },
  294. {
  295. "name": "phpdocumentor/type-resolver",
  296. "version": "0.4.0",
  297. "source": {
  298. "type": "git",
  299. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  300. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  301. },
  302. "dist": {
  303. "type": "zip",
  304. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  305. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  306. "shasum": ""
  307. },
  308. "require": {
  309. "php": "^5.5 || ^7.0",
  310. "phpdocumentor/reflection-common": "^1.0"
  311. },
  312. "require-dev": {
  313. "mockery/mockery": "^0.9.4",
  314. "phpunit/phpunit": "^5.2||^4.8.24"
  315. },
  316. "type": "library",
  317. "extra": {
  318. "branch-alias": {
  319. "dev-master": "1.0.x-dev"
  320. }
  321. },
  322. "autoload": {
  323. "psr-4": {
  324. "phpDocumentor\\Reflection\\": [
  325. "src/"
  326. ]
  327. }
  328. },
  329. "notification-url": "https://packagist.org/downloads/",
  330. "license": [
  331. "MIT"
  332. ],
  333. "authors": [
  334. {
  335. "name": "Mike van Riel",
  336. "email": "me@mikevanriel.com"
  337. }
  338. ],
  339. "time": "2017-07-14T14:27:02+00:00"
  340. },
  341. {
  342. "name": "psr/cache",
  343. "version": "1.0.1",
  344. "source": {
  345. "type": "git",
  346. "url": "https://github.com/php-fig/cache.git",
  347. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  348. },
  349. "dist": {
  350. "type": "zip",
  351. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  352. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  353. "shasum": ""
  354. },
  355. "require": {
  356. "php": ">=5.3.0"
  357. },
  358. "type": "library",
  359. "extra": {
  360. "branch-alias": {
  361. "dev-master": "1.0.x-dev"
  362. }
  363. },
  364. "autoload": {
  365. "psr-4": {
  366. "Psr\\Cache\\": "src/"
  367. }
  368. },
  369. "notification-url": "https://packagist.org/downloads/",
  370. "license": [
  371. "MIT"
  372. ],
  373. "authors": [
  374. {
  375. "name": "PHP-FIG",
  376. "homepage": "http://www.php-fig.org/"
  377. }
  378. ],
  379. "description": "Common interface for caching libraries",
  380. "keywords": [
  381. "cache",
  382. "psr",
  383. "psr-6"
  384. ],
  385. "time": "2016-08-06T20:24:11+00:00"
  386. },
  387. {
  388. "name": "psr/container",
  389. "version": "1.0.0",
  390. "source": {
  391. "type": "git",
  392. "url": "https://github.com/php-fig/container.git",
  393. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  394. },
  395. "dist": {
  396. "type": "zip",
  397. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  398. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  399. "shasum": ""
  400. },
  401. "require": {
  402. "php": ">=5.3.0"
  403. },
  404. "type": "library",
  405. "extra": {
  406. "branch-alias": {
  407. "dev-master": "1.0.x-dev"
  408. }
  409. },
  410. "autoload": {
  411. "psr-4": {
  412. "Psr\\Container\\": "src/"
  413. }
  414. },
  415. "notification-url": "https://packagist.org/downloads/",
  416. "license": [
  417. "MIT"
  418. ],
  419. "authors": [
  420. {
  421. "name": "PHP-FIG",
  422. "homepage": "http://www.php-fig.org/"
  423. }
  424. ],
  425. "description": "Common Container Interface (PHP FIG PSR-11)",
  426. "homepage": "https://github.com/php-fig/container",
  427. "keywords": [
  428. "PSR-11",
  429. "container",
  430. "container-interface",
  431. "container-interop",
  432. "psr"
  433. ],
  434. "time": "2017-02-14T16:28:37+00:00"
  435. },
  436. {
  437. "name": "psr/log",
  438. "version": "1.1.0",
  439. "source": {
  440. "type": "git",
  441. "url": "https://github.com/php-fig/log.git",
  442. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  443. },
  444. "dist": {
  445. "type": "zip",
  446. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  447. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  448. "shasum": ""
  449. },
  450. "require": {
  451. "php": ">=5.3.0"
  452. },
  453. "type": "library",
  454. "extra": {
  455. "branch-alias": {
  456. "dev-master": "1.0.x-dev"
  457. }
  458. },
  459. "autoload": {
  460. "psr-4": {
  461. "Psr\\Log\\": "Psr/Log/"
  462. }
  463. },
  464. "notification-url": "https://packagist.org/downloads/",
  465. "license": [
  466. "MIT"
  467. ],
  468. "authors": [
  469. {
  470. "name": "PHP-FIG",
  471. "homepage": "http://www.php-fig.org/"
  472. }
  473. ],
  474. "description": "Common interface for logging libraries",
  475. "homepage": "https://github.com/php-fig/log",
  476. "keywords": [
  477. "log",
  478. "psr",
  479. "psr-3"
  480. ],
  481. "time": "2018-11-20T15:27:04+00:00"
  482. },
  483. {
  484. "name": "psr/simple-cache",
  485. "version": "1.0.1",
  486. "source": {
  487. "type": "git",
  488. "url": "https://github.com/php-fig/simple-cache.git",
  489. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  490. },
  491. "dist": {
  492. "type": "zip",
  493. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  494. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  495. "shasum": ""
  496. },
  497. "require": {
  498. "php": ">=5.3.0"
  499. },
  500. "type": "library",
  501. "extra": {
  502. "branch-alias": {
  503. "dev-master": "1.0.x-dev"
  504. }
  505. },
  506. "autoload": {
  507. "psr-4": {
  508. "Psr\\SimpleCache\\": "src/"
  509. }
  510. },
  511. "notification-url": "https://packagist.org/downloads/",
  512. "license": [
  513. "MIT"
  514. ],
  515. "authors": [
  516. {
  517. "name": "PHP-FIG",
  518. "homepage": "http://www.php-fig.org/"
  519. }
  520. ],
  521. "description": "Common interfaces for simple caching",
  522. "keywords": [
  523. "cache",
  524. "caching",
  525. "psr",
  526. "psr-16",
  527. "simple-cache"
  528. ],
  529. "time": "2017-10-23T01:57:42+00:00"
  530. },
  531. {
  532. "name": "symfony/cache",
  533. "version": "v4.2.1",
  534. "source": {
  535. "type": "git",
  536. "url": "https://github.com/symfony/cache.git",
  537. "reference": "5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41"
  538. },
  539. "dist": {
  540. "type": "zip",
  541. "url": "https://api.github.com/repos/symfony/cache/zipball/5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41",
  542. "reference": "5c4b50d6ba4f1c8955c3454444c1e3cfddaaad41",
  543. "shasum": ""
  544. },
  545. "require": {
  546. "php": "^7.1.3",
  547. "psr/cache": "~1.0",
  548. "psr/log": "~1.0",
  549. "psr/simple-cache": "^1.0",
  550. "symfony/contracts": "^1.0",
  551. "symfony/var-exporter": "^4.2"
  552. },
  553. "conflict": {
  554. "doctrine/dbal": "<2.5",
  555. "symfony/dependency-injection": "<3.4",
  556. "symfony/var-dumper": "<3.4"
  557. },
  558. "provide": {
  559. "psr/cache-implementation": "1.0",
  560. "psr/simple-cache-implementation": "1.0",
  561. "symfony/cache-contracts-implementation": "1.0"
  562. },
  563. "require-dev": {
  564. "cache/integration-tests": "dev-master",
  565. "doctrine/cache": "~1.6",
  566. "doctrine/dbal": "~2.5",
  567. "predis/predis": "~1.1",
  568. "symfony/config": "~4.2",
  569. "symfony/dependency-injection": "~3.4|~4.1",
  570. "symfony/var-dumper": "^4.1.1"
  571. },
  572. "type": "library",
  573. "extra": {
  574. "branch-alias": {
  575. "dev-master": "4.2-dev"
  576. }
  577. },
  578. "autoload": {
  579. "psr-4": {
  580. "Symfony\\Component\\Cache\\": ""
  581. },
  582. "exclude-from-classmap": [
  583. "/Tests/"
  584. ]
  585. },
  586. "notification-url": "https://packagist.org/downloads/",
  587. "license": [
  588. "MIT"
  589. ],
  590. "authors": [
  591. {
  592. "name": "Nicolas Grekas",
  593. "email": "p@tchwork.com"
  594. },
  595. {
  596. "name": "Symfony Community",
  597. "homepage": "https://symfony.com/contributors"
  598. }
  599. ],
  600. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  601. "homepage": "https://symfony.com",
  602. "keywords": [
  603. "caching",
  604. "psr6"
  605. ],
  606. "time": "2018-12-06T11:00:08+00:00"
  607. },
  608. {
  609. "name": "symfony/config",
  610. "version": "v4.2.1",
  611. "source": {
  612. "type": "git",
  613. "url": "https://github.com/symfony/config.git",
  614. "reference": "005d9a083d03f588677d15391a716b1ac9b887c0"
  615. },
  616. "dist": {
  617. "type": "zip",
  618. "url": "https://api.github.com/repos/symfony/config/zipball/005d9a083d03f588677d15391a716b1ac9b887c0",
  619. "reference": "005d9a083d03f588677d15391a716b1ac9b887c0",
  620. "shasum": ""
  621. },
  622. "require": {
  623. "php": "^7.1.3",
  624. "symfony/filesystem": "~3.4|~4.0",
  625. "symfony/polyfill-ctype": "~1.8"
  626. },
  627. "conflict": {
  628. "symfony/finder": "<3.4"
  629. },
  630. "require-dev": {
  631. "symfony/dependency-injection": "~3.4|~4.0",
  632. "symfony/event-dispatcher": "~3.4|~4.0",
  633. "symfony/finder": "~3.4|~4.0",
  634. "symfony/yaml": "~3.4|~4.0"
  635. },
  636. "suggest": {
  637. "symfony/yaml": "To use the yaml reference dumper"
  638. },
  639. "type": "library",
  640. "extra": {
  641. "branch-alias": {
  642. "dev-master": "4.2-dev"
  643. }
  644. },
  645. "autoload": {
  646. "psr-4": {
  647. "Symfony\\Component\\Config\\": ""
  648. },
  649. "exclude-from-classmap": [
  650. "/Tests/"
  651. ]
  652. },
  653. "notification-url": "https://packagist.org/downloads/",
  654. "license": [
  655. "MIT"
  656. ],
  657. "authors": [
  658. {
  659. "name": "Fabien Potencier",
  660. "email": "fabien@symfony.com"
  661. },
  662. {
  663. "name": "Symfony Community",
  664. "homepage": "https://symfony.com/contributors"
  665. }
  666. ],
  667. "description": "Symfony Config Component",
  668. "homepage": "https://symfony.com",
  669. "time": "2018-11-30T22:21:14+00:00"
  670. },
  671. {
  672. "name": "symfony/console",
  673. "version": "v4.2.1",
  674. "source": {
  675. "type": "git",
  676. "url": "https://github.com/symfony/console.git",
  677. "reference": "4dff24e5d01e713818805c1862d2e3f901ee7dd0"
  678. },
  679. "dist": {
  680. "type": "zip",
  681. "url": "https://api.github.com/repos/symfony/console/zipball/4dff24e5d01e713818805c1862d2e3f901ee7dd0",
  682. "reference": "4dff24e5d01e713818805c1862d2e3f901ee7dd0",
  683. "shasum": ""
  684. },
  685. "require": {
  686. "php": "^7.1.3",
  687. "symfony/contracts": "^1.0",
  688. "symfony/polyfill-mbstring": "~1.0"
  689. },
  690. "conflict": {
  691. "symfony/dependency-injection": "<3.4",
  692. "symfony/process": "<3.3"
  693. },
  694. "require-dev": {
  695. "psr/log": "~1.0",
  696. "symfony/config": "~3.4|~4.0",
  697. "symfony/dependency-injection": "~3.4|~4.0",
  698. "symfony/event-dispatcher": "~3.4|~4.0",
  699. "symfony/lock": "~3.4|~4.0",
  700. "symfony/process": "~3.4|~4.0"
  701. },
  702. "suggest": {
  703. "psr/log-implementation": "For using the console logger",
  704. "symfony/event-dispatcher": "",
  705. "symfony/lock": "",
  706. "symfony/process": ""
  707. },
  708. "type": "library",
  709. "extra": {
  710. "branch-alias": {
  711. "dev-master": "4.2-dev"
  712. }
  713. },
  714. "autoload": {
  715. "psr-4": {
  716. "Symfony\\Component\\Console\\": ""
  717. },
  718. "exclude-from-classmap": [
  719. "/Tests/"
  720. ]
  721. },
  722. "notification-url": "https://packagist.org/downloads/",
  723. "license": [
  724. "MIT"
  725. ],
  726. "authors": [
  727. {
  728. "name": "Fabien Potencier",
  729. "email": "fabien@symfony.com"
  730. },
  731. {
  732. "name": "Symfony Community",
  733. "homepage": "https://symfony.com/contributors"
  734. }
  735. ],
  736. "description": "Symfony Console Component",
  737. "homepage": "https://symfony.com",
  738. "time": "2018-11-27T07:40:44+00:00"
  739. },
  740. {
  741. "name": "symfony/contracts",
  742. "version": "v1.0.2",
  743. "source": {
  744. "type": "git",
  745. "url": "https://github.com/symfony/contracts.git",
  746. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf"
  747. },
  748. "dist": {
  749. "type": "zip",
  750. "url": "https://api.github.com/repos/symfony/contracts/zipball/1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  751. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  752. "shasum": ""
  753. },
  754. "require": {
  755. "php": "^7.1.3"
  756. },
  757. "require-dev": {
  758. "psr/cache": "^1.0",
  759. "psr/container": "^1.0"
  760. },
  761. "suggest": {
  762. "psr/cache": "When using the Cache contracts",
  763. "psr/container": "When using the Service contracts",
  764. "symfony/cache-contracts-implementation": "",
  765. "symfony/service-contracts-implementation": "",
  766. "symfony/translation-contracts-implementation": ""
  767. },
  768. "type": "library",
  769. "extra": {
  770. "branch-alias": {
  771. "dev-master": "1.0-dev"
  772. }
  773. },
  774. "autoload": {
  775. "psr-4": {
  776. "Symfony\\Contracts\\": ""
  777. },
  778. "exclude-from-classmap": [
  779. "**/Tests/"
  780. ]
  781. },
  782. "notification-url": "https://packagist.org/downloads/",
  783. "license": [
  784. "MIT"
  785. ],
  786. "authors": [
  787. {
  788. "name": "Nicolas Grekas",
  789. "email": "p@tchwork.com"
  790. },
  791. {
  792. "name": "Symfony Community",
  793. "homepage": "https://symfony.com/contributors"
  794. }
  795. ],
  796. "description": "A set of abstractions extracted out of the Symfony components",
  797. "homepage": "https://symfony.com",
  798. "keywords": [
  799. "abstractions",
  800. "contracts",
  801. "decoupling",
  802. "interfaces",
  803. "interoperability",
  804. "standards"
  805. ],
  806. "time": "2018-12-05T08:06:11+00:00"
  807. },
  808. {
  809. "name": "symfony/debug",
  810. "version": "v4.2.1",
  811. "source": {
  812. "type": "git",
  813. "url": "https://github.com/symfony/debug.git",
  814. "reference": "e0a2b92ee0b5b934f973d90c2f58e18af109d276"
  815. },
  816. "dist": {
  817. "type": "zip",
  818. "url": "https://api.github.com/repos/symfony/debug/zipball/e0a2b92ee0b5b934f973d90c2f58e18af109d276",
  819. "reference": "e0a2b92ee0b5b934f973d90c2f58e18af109d276",
  820. "shasum": ""
  821. },
  822. "require": {
  823. "php": "^7.1.3",
  824. "psr/log": "~1.0"
  825. },
  826. "conflict": {
  827. "symfony/http-kernel": "<3.4"
  828. },
  829. "require-dev": {
  830. "symfony/http-kernel": "~3.4|~4.0"
  831. },
  832. "type": "library",
  833. "extra": {
  834. "branch-alias": {
  835. "dev-master": "4.2-dev"
  836. }
  837. },
  838. "autoload": {
  839. "psr-4": {
  840. "Symfony\\Component\\Debug\\": ""
  841. },
  842. "exclude-from-classmap": [
  843. "/Tests/"
  844. ]
  845. },
  846. "notification-url": "https://packagist.org/downloads/",
  847. "license": [
  848. "MIT"
  849. ],
  850. "authors": [
  851. {
  852. "name": "Fabien Potencier",
  853. "email": "fabien@symfony.com"
  854. },
  855. {
  856. "name": "Symfony Community",
  857. "homepage": "https://symfony.com/contributors"
  858. }
  859. ],
  860. "description": "Symfony Debug Component",
  861. "homepage": "https://symfony.com",
  862. "time": "2018-11-28T18:24:18+00:00"
  863. },
  864. {
  865. "name": "symfony/dependency-injection",
  866. "version": "v4.2.1",
  867. "source": {
  868. "type": "git",
  869. "url": "https://github.com/symfony/dependency-injection.git",
  870. "reference": "e4adc57a48d3fa7f394edfffa9e954086d7740e5"
  871. },
  872. "dist": {
  873. "type": "zip",
  874. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e4adc57a48d3fa7f394edfffa9e954086d7740e5",
  875. "reference": "e4adc57a48d3fa7f394edfffa9e954086d7740e5",
  876. "shasum": ""
  877. },
  878. "require": {
  879. "php": "^7.1.3",
  880. "psr/container": "^1.0",
  881. "symfony/contracts": "^1.0"
  882. },
  883. "conflict": {
  884. "symfony/config": "<4.2",
  885. "symfony/finder": "<3.4",
  886. "symfony/proxy-manager-bridge": "<3.4",
  887. "symfony/yaml": "<3.4"
  888. },
  889. "provide": {
  890. "psr/container-implementation": "1.0",
  891. "symfony/service-contracts-implementation": "1.0"
  892. },
  893. "require-dev": {
  894. "symfony/config": "~4.2",
  895. "symfony/expression-language": "~3.4|~4.0",
  896. "symfony/yaml": "~3.4|~4.0"
  897. },
  898. "suggest": {
  899. "symfony/config": "",
  900. "symfony/expression-language": "For using expressions in service container configuration",
  901. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  902. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  903. "symfony/yaml": ""
  904. },
  905. "type": "library",
  906. "extra": {
  907. "branch-alias": {
  908. "dev-master": "4.2-dev"
  909. }
  910. },
  911. "autoload": {
  912. "psr-4": {
  913. "Symfony\\Component\\DependencyInjection\\": ""
  914. },
  915. "exclude-from-classmap": [
  916. "/Tests/"
  917. ]
  918. },
  919. "notification-url": "https://packagist.org/downloads/",
  920. "license": [
  921. "MIT"
  922. ],
  923. "authors": [
  924. {
  925. "name": "Fabien Potencier",
  926. "email": "fabien@symfony.com"
  927. },
  928. {
  929. "name": "Symfony Community",
  930. "homepage": "https://symfony.com/contributors"
  931. }
  932. ],
  933. "description": "Symfony DependencyInjection Component",
  934. "homepage": "https://symfony.com",
  935. "time": "2018-12-02T15:59:36+00:00"
  936. },
  937. {
  938. "name": "symfony/event-dispatcher",
  939. "version": "v4.2.1",
  940. "source": {
  941. "type": "git",
  942. "url": "https://github.com/symfony/event-dispatcher.git",
  943. "reference": "921f49c3158a276d27c0d770a5a347a3b718b328"
  944. },
  945. "dist": {
  946. "type": "zip",
  947. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/921f49c3158a276d27c0d770a5a347a3b718b328",
  948. "reference": "921f49c3158a276d27c0d770a5a347a3b718b328",
  949. "shasum": ""
  950. },
  951. "require": {
  952. "php": "^7.1.3",
  953. "symfony/contracts": "^1.0"
  954. },
  955. "conflict": {
  956. "symfony/dependency-injection": "<3.4"
  957. },
  958. "require-dev": {
  959. "psr/log": "~1.0",
  960. "symfony/config": "~3.4|~4.0",
  961. "symfony/dependency-injection": "~3.4|~4.0",
  962. "symfony/expression-language": "~3.4|~4.0",
  963. "symfony/stopwatch": "~3.4|~4.0"
  964. },
  965. "suggest": {
  966. "symfony/dependency-injection": "",
  967. "symfony/http-kernel": ""
  968. },
  969. "type": "library",
  970. "extra": {
  971. "branch-alias": {
  972. "dev-master": "4.2-dev"
  973. }
  974. },
  975. "autoload": {
  976. "psr-4": {
  977. "Symfony\\Component\\EventDispatcher\\": ""
  978. },
  979. "exclude-from-classmap": [
  980. "/Tests/"
  981. ]
  982. },
  983. "notification-url": "https://packagist.org/downloads/",
  984. "license": [
  985. "MIT"
  986. ],
  987. "authors": [
  988. {
  989. "name": "Fabien Potencier",
  990. "email": "fabien@symfony.com"
  991. },
  992. {
  993. "name": "Symfony Community",
  994. "homepage": "https://symfony.com/contributors"
  995. }
  996. ],
  997. "description": "Symfony EventDispatcher Component",
  998. "homepage": "https://symfony.com",
  999. "time": "2018-12-01T08:52:38+00:00"
  1000. },
  1001. {
  1002. "name": "symfony/filesystem",
  1003. "version": "v4.2.1",
  1004. "source": {
  1005. "type": "git",
  1006. "url": "https://github.com/symfony/filesystem.git",
  1007. "reference": "2f4c8b999b3b7cadb2a69390b01af70886753710"
  1008. },
  1009. "dist": {
  1010. "type": "zip",
  1011. "url": "https://api.github.com/repos/symfony/filesystem/zipball/2f4c8b999b3b7cadb2a69390b01af70886753710",
  1012. "reference": "2f4c8b999b3b7cadb2a69390b01af70886753710",
  1013. "shasum": ""
  1014. },
  1015. "require": {
  1016. "php": "^7.1.3",
  1017. "symfony/polyfill-ctype": "~1.8"
  1018. },
  1019. "type": "library",
  1020. "extra": {
  1021. "branch-alias": {
  1022. "dev-master": "4.2-dev"
  1023. }
  1024. },
  1025. "autoload": {
  1026. "psr-4": {
  1027. "Symfony\\Component\\Filesystem\\": ""
  1028. },
  1029. "exclude-from-classmap": [
  1030. "/Tests/"
  1031. ]
  1032. },
  1033. "notification-url": "https://packagist.org/downloads/",
  1034. "license": [
  1035. "MIT"
  1036. ],
  1037. "authors": [
  1038. {
  1039. "name": "Fabien Potencier",
  1040. "email": "fabien@symfony.com"
  1041. },
  1042. {
  1043. "name": "Symfony Community",
  1044. "homepage": "https://symfony.com/contributors"
  1045. }
  1046. ],
  1047. "description": "Symfony Filesystem Component",
  1048. "homepage": "https://symfony.com",
  1049. "time": "2018-11-11T19:52:12+00:00"
  1050. },
  1051. {
  1052. "name": "symfony/finder",
  1053. "version": "v4.2.1",
  1054. "source": {
  1055. "type": "git",
  1056. "url": "https://github.com/symfony/finder.git",
  1057. "reference": "e53d477d7b5c4982d0e1bfd2298dbee63d01441d"
  1058. },
  1059. "dist": {
  1060. "type": "zip",
  1061. "url": "https://api.github.com/repos/symfony/finder/zipball/e53d477d7b5c4982d0e1bfd2298dbee63d01441d",
  1062. "reference": "e53d477d7b5c4982d0e1bfd2298dbee63d01441d",
  1063. "shasum": ""
  1064. },
  1065. "require": {
  1066. "php": "^7.1.3"
  1067. },
  1068. "type": "library",
  1069. "extra": {
  1070. "branch-alias": {
  1071. "dev-master": "4.2-dev"
  1072. }
  1073. },
  1074. "autoload": {
  1075. "psr-4": {
  1076. "Symfony\\Component\\Finder\\": ""
  1077. },
  1078. "exclude-from-classmap": [
  1079. "/Tests/"
  1080. ]
  1081. },
  1082. "notification-url": "https://packagist.org/downloads/",
  1083. "license": [
  1084. "MIT"
  1085. ],
  1086. "authors": [
  1087. {
  1088. "name": "Fabien Potencier",
  1089. "email": "fabien@symfony.com"
  1090. },
  1091. {
  1092. "name": "Symfony Community",
  1093. "homepage": "https://symfony.com/contributors"
  1094. }
  1095. ],
  1096. "description": "Symfony Finder Component",
  1097. "homepage": "https://symfony.com",
  1098. "time": "2018-11-11T19:52:12+00:00"
  1099. },
  1100. {
  1101. "name": "symfony/flex",
  1102. "version": "v1.1.8",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/symfony/flex.git",
  1106. "reference": "955774ecf07b10230bb5b44e150ba078b45f68fa"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/symfony/flex/zipball/955774ecf07b10230bb5b44e150ba078b45f68fa",
  1111. "reference": "955774ecf07b10230bb5b44e150ba078b45f68fa",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "composer-plugin-api": "^1.0",
  1116. "php": "^7.0"
  1117. },
  1118. "require-dev": {
  1119. "composer/composer": "^1.0.2",
  1120. "symfony/phpunit-bridge": "^3.2.8"
  1121. },
  1122. "type": "composer-plugin",
  1123. "extra": {
  1124. "branch-alias": {
  1125. "dev-master": "1.1-dev"
  1126. },
  1127. "class": "Symfony\\Flex\\Flex"
  1128. },
  1129. "autoload": {
  1130. "psr-4": {
  1131. "Symfony\\Flex\\": "src"
  1132. }
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "authors": [
  1139. {
  1140. "name": "Fabien Potencier",
  1141. "email": "fabien.potencier@gmail.com"
  1142. }
  1143. ],
  1144. "description": "Composer plugin for Symfony",
  1145. "time": "2018-11-15T06:11:38+00:00"
  1146. },
  1147. {
  1148. "name": "symfony/framework-bundle",
  1149. "version": "v4.2.1",
  1150. "source": {
  1151. "type": "git",
  1152. "url": "https://github.com/symfony/framework-bundle.git",
  1153. "reference": "eb32d67140510f04fe9cc5fb9ad38fda09591db1"
  1154. },
  1155. "dist": {
  1156. "type": "zip",
  1157. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/eb32d67140510f04fe9cc5fb9ad38fda09591db1",
  1158. "reference": "eb32d67140510f04fe9cc5fb9ad38fda09591db1",
  1159. "shasum": ""
  1160. },
  1161. "require": {
  1162. "ext-xml": "*",
  1163. "php": "^7.1.3",
  1164. "symfony/cache": "~4.2",
  1165. "symfony/config": "~4.2",
  1166. "symfony/contracts": "^1.0.2",
  1167. "symfony/dependency-injection": "^4.2",
  1168. "symfony/event-dispatcher": "^4.1",
  1169. "symfony/filesystem": "~3.4|~4.0",
  1170. "symfony/finder": "~3.4|~4.0",
  1171. "symfony/http-foundation": "^4.1.2",
  1172. "symfony/http-kernel": "^4.2",
  1173. "symfony/polyfill-mbstring": "~1.0",
  1174. "symfony/routing": "^4.1"
  1175. },
  1176. "conflict": {
  1177. "phpdocumentor/reflection-docblock": "<3.0",
  1178. "phpdocumentor/type-resolver": "<0.2.1",
  1179. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  1180. "symfony/asset": "<3.4",
  1181. "symfony/console": "<3.4",
  1182. "symfony/dotenv": "<4.2",
  1183. "symfony/form": "<4.2",
  1184. "symfony/messenger": "<4.2",
  1185. "symfony/property-info": "<3.4",
  1186. "symfony/serializer": "<4.2",
  1187. "symfony/stopwatch": "<3.4",
  1188. "symfony/translation": "<4.2",
  1189. "symfony/twig-bridge": "<4.1.1",
  1190. "symfony/validator": "<4.1",
  1191. "symfony/workflow": "<4.1"
  1192. },
  1193. "require-dev": {
  1194. "doctrine/annotations": "~1.0",
  1195. "doctrine/cache": "~1.0",
  1196. "fig/link-util": "^1.0",
  1197. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  1198. "symfony/asset": "~3.4|~4.0",
  1199. "symfony/browser-kit": "~3.4|~4.0",
  1200. "symfony/console": "~3.4|~4.0",
  1201. "symfony/css-selector": "~3.4|~4.0",
  1202. "symfony/dom-crawler": "~3.4|~4.0",
  1203. "symfony/expression-language": "~3.4|~4.0",
  1204. "symfony/form": "^4.2",
  1205. "symfony/lock": "~3.4|~4.0",
  1206. "symfony/messenger": "^4.2",
  1207. "symfony/polyfill-intl-icu": "~1.0",
  1208. "symfony/process": "~3.4|~4.0",
  1209. "symfony/property-info": "~3.4|~4.0",
  1210. "symfony/security": "~3.4|~4.0",
  1211. "symfony/security-core": "~3.4|~4.0",
  1212. "symfony/security-csrf": "~3.4|~4.0",
  1213. "symfony/serializer": "^4.2",
  1214. "symfony/stopwatch": "~3.4|~4.0",
  1215. "symfony/templating": "~3.4|~4.0",
  1216. "symfony/translation": "~4.2",
  1217. "symfony/validator": "^4.1",
  1218. "symfony/var-dumper": "~3.4|~4.0",
  1219. "symfony/web-link": "~3.4|~4.0",
  1220. "symfony/workflow": "^4.1",
  1221. "symfony/yaml": "~3.4|~4.0",
  1222. "twig/twig": "~1.34|~2.4"
  1223. },
  1224. "suggest": {
  1225. "ext-apcu": "For best performance of the system caches",
  1226. "phpdocumentor/reflection-docblock": "For display additional information in debug:container",
  1227. "symfony/console": "For using the console commands",
  1228. "symfony/form": "For using forms",
  1229. "symfony/property-info": "For using the property_info service",
  1230. "symfony/serializer": "For using the serializer service",
  1231. "symfony/validator": "For using validation",
  1232. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  1233. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  1234. },
  1235. "type": "symfony-bundle",
  1236. "extra": {
  1237. "branch-alias": {
  1238. "dev-master": "4.2-dev"
  1239. }
  1240. },
  1241. "autoload": {
  1242. "psr-4": {
  1243. "Symfony\\Bundle\\FrameworkBundle\\": ""
  1244. },
  1245. "exclude-from-classmap": [
  1246. "/Tests/"
  1247. ]
  1248. },
  1249. "notification-url": "https://packagist.org/downloads/",
  1250. "license": [
  1251. "MIT"
  1252. ],
  1253. "authors": [
  1254. {
  1255. "name": "Fabien Potencier",
  1256. "email": "fabien@symfony.com"
  1257. },
  1258. {
  1259. "name": "Symfony Community",
  1260. "homepage": "https://symfony.com/contributors"
  1261. }
  1262. ],
  1263. "description": "Symfony FrameworkBundle",
  1264. "homepage": "https://symfony.com",
  1265. "time": "2018-12-05T08:06:11+00:00"
  1266. },
  1267. {
  1268. "name": "symfony/http-foundation",
  1269. "version": "v4.2.1",
  1270. "source": {
  1271. "type": "git",
  1272. "url": "https://github.com/symfony/http-foundation.git",
  1273. "reference": "1b31f3017fadd8cb05cf2c8aebdbf3b12a943851"
  1274. },
  1275. "dist": {
  1276. "type": "zip",
  1277. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/1b31f3017fadd8cb05cf2c8aebdbf3b12a943851",
  1278. "reference": "1b31f3017fadd8cb05cf2c8aebdbf3b12a943851",
  1279. "shasum": ""
  1280. },
  1281. "require": {
  1282. "php": "^7.1.3",
  1283. "symfony/polyfill-mbstring": "~1.1"
  1284. },
  1285. "require-dev": {
  1286. "predis/predis": "~1.0",
  1287. "symfony/expression-language": "~3.4|~4.0"
  1288. },
  1289. "type": "library",
  1290. "extra": {
  1291. "branch-alias": {
  1292. "dev-master": "4.2-dev"
  1293. }
  1294. },
  1295. "autoload": {
  1296. "psr-4": {
  1297. "Symfony\\Component\\HttpFoundation\\": ""
  1298. },
  1299. "exclude-from-classmap": [
  1300. "/Tests/"
  1301. ]
  1302. },
  1303. "notification-url": "https://packagist.org/downloads/",
  1304. "license": [
  1305. "MIT"
  1306. ],
  1307. "authors": [
  1308. {
  1309. "name": "Fabien Potencier",
  1310. "email": "fabien@symfony.com"
  1311. },
  1312. {
  1313. "name": "Symfony Community",
  1314. "homepage": "https://symfony.com/contributors"
  1315. }
  1316. ],
  1317. "description": "Symfony HttpFoundation Component",
  1318. "homepage": "https://symfony.com",
  1319. "time": "2018-11-26T10:55:26+00:00"
  1320. },
  1321. {
  1322. "name": "symfony/http-kernel",
  1323. "version": "v4.2.1",
  1324. "source": {
  1325. "type": "git",
  1326. "url": "https://github.com/symfony/http-kernel.git",
  1327. "reference": "b39ceffc0388232c309cbde3a7c3685f2ec0a624"
  1328. },
  1329. "dist": {
  1330. "type": "zip",
  1331. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b39ceffc0388232c309cbde3a7c3685f2ec0a624",
  1332. "reference": "b39ceffc0388232c309cbde3a7c3685f2ec0a624",
  1333. "shasum": ""
  1334. },
  1335. "require": {
  1336. "php": "^7.1.3",
  1337. "psr/log": "~1.0",
  1338. "symfony/contracts": "^1.0.2",
  1339. "symfony/debug": "~3.4|~4.0",
  1340. "symfony/event-dispatcher": "~4.1",
  1341. "symfony/http-foundation": "^4.1.1",
  1342. "symfony/polyfill-ctype": "~1.8"
  1343. },
  1344. "conflict": {
  1345. "symfony/config": "<3.4",
  1346. "symfony/dependency-injection": "<4.2",
  1347. "symfony/translation": "<4.2",
  1348. "symfony/var-dumper": "<4.1.1",
  1349. "twig/twig": "<1.34|<2.4,>=2"
  1350. },
  1351. "provide": {
  1352. "psr/log-implementation": "1.0"
  1353. },
  1354. "require-dev": {
  1355. "psr/cache": "~1.0",
  1356. "symfony/browser-kit": "~3.4|~4.0",
  1357. "symfony/config": "~3.4|~4.0",
  1358. "symfony/console": "~3.4|~4.0",
  1359. "symfony/css-selector": "~3.4|~4.0",
  1360. "symfony/dependency-injection": "^4.2",
  1361. "symfony/dom-crawler": "~3.4|~4.0",
  1362. "symfony/expression-language": "~3.4|~4.0",
  1363. "symfony/finder": "~3.4|~4.0",
  1364. "symfony/process": "~3.4|~4.0",
  1365. "symfony/routing": "~3.4|~4.0",
  1366. "symfony/stopwatch": "~3.4|~4.0",
  1367. "symfony/templating": "~3.4|~4.0",
  1368. "symfony/translation": "~4.2",
  1369. "symfony/var-dumper": "^4.1.1"
  1370. },
  1371. "suggest": {
  1372. "symfony/browser-kit": "",
  1373. "symfony/config": "",
  1374. "symfony/console": "",
  1375. "symfony/dependency-injection": "",
  1376. "symfony/var-dumper": ""
  1377. },
  1378. "type": "library",
  1379. "extra": {
  1380. "branch-alias": {
  1381. "dev-master": "4.2-dev"
  1382. }
  1383. },
  1384. "autoload": {
  1385. "psr-4": {
  1386. "Symfony\\Component\\HttpKernel\\": ""
  1387. },
  1388. "exclude-from-classmap": [
  1389. "/Tests/"
  1390. ]
  1391. },
  1392. "notification-url": "https://packagist.org/downloads/",
  1393. "license": [
  1394. "MIT"
  1395. ],
  1396. "authors": [
  1397. {
  1398. "name": "Fabien Potencier",
  1399. "email": "fabien@symfony.com"
  1400. },
  1401. {
  1402. "name": "Symfony Community",
  1403. "homepage": "https://symfony.com/contributors"
  1404. }
  1405. ],
  1406. "description": "Symfony HttpKernel Component",
  1407. "homepage": "https://symfony.com",
  1408. "time": "2018-12-06T17:39:52+00:00"
  1409. },
  1410. {
  1411. "name": "symfony/inflector",
  1412. "version": "v4.2.1",
  1413. "source": {
  1414. "type": "git",
  1415. "url": "https://github.com/symfony/inflector.git",
  1416. "reference": "f9a637c0359f74404d44cf0da0a3ce53bae0787e"
  1417. },
  1418. "dist": {
  1419. "type": "zip",
  1420. "url": "https://api.github.com/repos/symfony/inflector/zipball/f9a637c0359f74404d44cf0da0a3ce53bae0787e",
  1421. "reference": "f9a637c0359f74404d44cf0da0a3ce53bae0787e",
  1422. "shasum": ""
  1423. },
  1424. "require": {
  1425. "php": "^7.1.3",
  1426. "symfony/polyfill-ctype": "~1.8"
  1427. },
  1428. "type": "library",
  1429. "extra": {
  1430. "branch-alias": {
  1431. "dev-master": "4.2-dev"
  1432. }
  1433. },
  1434. "autoload": {
  1435. "psr-4": {
  1436. "Symfony\\Component\\Inflector\\": ""
  1437. },
  1438. "exclude-from-classmap": [
  1439. "/Tests/"
  1440. ]
  1441. },
  1442. "notification-url": "https://packagist.org/downloads/",
  1443. "license": [
  1444. "MIT"
  1445. ],
  1446. "authors": [
  1447. {
  1448. "name": "Bernhard Schussek",
  1449. "email": "bschussek@gmail.com"
  1450. },
  1451. {
  1452. "name": "Symfony Community",
  1453. "homepage": "https://symfony.com/contributors"
  1454. }
  1455. ],
  1456. "description": "Symfony Inflector Component",
  1457. "homepage": "https://symfony.com",
  1458. "keywords": [
  1459. "inflection",
  1460. "pluralize",
  1461. "singularize",
  1462. "string",
  1463. "symfony",
  1464. "words"
  1465. ],
  1466. "time": "2018-11-11T19:52:12+00:00"
  1467. },
  1468. {
  1469. "name": "symfony/polyfill-mbstring",
  1470. "version": "v1.10.0",
  1471. "source": {
  1472. "type": "git",
  1473. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1474. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  1475. },
  1476. "dist": {
  1477. "type": "zip",
  1478. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  1479. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  1480. "shasum": ""
  1481. },
  1482. "require": {
  1483. "php": ">=5.3.3"
  1484. },
  1485. "suggest": {
  1486. "ext-mbstring": "For best performance"
  1487. },
  1488. "type": "library",
  1489. "extra": {
  1490. "branch-alias": {
  1491. "dev-master": "1.9-dev"
  1492. }
  1493. },
  1494. "autoload": {
  1495. "psr-4": {
  1496. "Symfony\\Polyfill\\Mbstring\\": ""
  1497. },
  1498. "files": [
  1499. "bootstrap.php"
  1500. ]
  1501. },
  1502. "notification-url": "https://packagist.org/downloads/",
  1503. "license": [
  1504. "MIT"
  1505. ],
  1506. "authors": [
  1507. {
  1508. "name": "Nicolas Grekas",
  1509. "email": "p@tchwork.com"
  1510. },
  1511. {
  1512. "name": "Symfony Community",
  1513. "homepage": "https://symfony.com/contributors"
  1514. }
  1515. ],
  1516. "description": "Symfony polyfill for the Mbstring extension",
  1517. "homepage": "https://symfony.com",
  1518. "keywords": [
  1519. "compatibility",
  1520. "mbstring",
  1521. "polyfill",
  1522. "portable",
  1523. "shim"
  1524. ],
  1525. "time": "2018-09-21T13:07:52+00:00"
  1526. },
  1527. {
  1528. "name": "symfony/property-access",
  1529. "version": "v4.2.1",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/symfony/property-access.git",
  1533. "reference": "b6df4e1849f389468edb36e2e59877d4a8170723"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/symfony/property-access/zipball/b6df4e1849f389468edb36e2e59877d4a8170723",
  1538. "reference": "b6df4e1849f389468edb36e2e59877d4a8170723",
  1539. "shasum": ""
  1540. },
  1541. "require": {
  1542. "php": "^7.1.3",
  1543. "symfony/inflector": "~3.4|~4.0"
  1544. },
  1545. "require-dev": {
  1546. "symfony/cache": "~3.4|~4.0"
  1547. },
  1548. "suggest": {
  1549. "psr/cache-implementation": "To cache access methods."
  1550. },
  1551. "type": "library",
  1552. "extra": {
  1553. "branch-alias": {
  1554. "dev-master": "4.2-dev"
  1555. }
  1556. },
  1557. "autoload": {
  1558. "psr-4": {
  1559. "Symfony\\Component\\PropertyAccess\\": ""
  1560. },
  1561. "exclude-from-classmap": [
  1562. "/Tests/"
  1563. ]
  1564. },
  1565. "notification-url": "https://packagist.org/downloads/",
  1566. "license": [
  1567. "MIT"
  1568. ],
  1569. "authors": [
  1570. {
  1571. "name": "Fabien Potencier",
  1572. "email": "fabien@symfony.com"
  1573. },
  1574. {
  1575. "name": "Symfony Community",
  1576. "homepage": "https://symfony.com/contributors"
  1577. }
  1578. ],
  1579. "description": "Symfony PropertyAccess Component",
  1580. "homepage": "https://symfony.com",
  1581. "keywords": [
  1582. "access",
  1583. "array",
  1584. "extraction",
  1585. "index",
  1586. "injection",
  1587. "object",
  1588. "property",
  1589. "property path",
  1590. "reflection"
  1591. ],
  1592. "time": "2018-11-29T14:48:32+00:00"
  1593. },
  1594. {
  1595. "name": "symfony/property-info",
  1596. "version": "v4.2.1",
  1597. "source": {
  1598. "type": "git",
  1599. "url": "https://github.com/symfony/property-info.git",
  1600. "reference": "d34c76cfe2d16c594e26d0d11fabfef77b3651e5"
  1601. },
  1602. "dist": {
  1603. "type": "zip",
  1604. "url": "https://api.github.com/repos/symfony/property-info/zipball/d34c76cfe2d16c594e26d0d11fabfef77b3651e5",
  1605. "reference": "d34c76cfe2d16c594e26d0d11fabfef77b3651e5",
  1606. "shasum": ""
  1607. },
  1608. "require": {
  1609. "php": "^7.1.3",
  1610. "symfony/inflector": "~3.4|~4.0"
  1611. },
  1612. "conflict": {
  1613. "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2",
  1614. "phpdocumentor/type-resolver": "<0.3.0",
  1615. "symfony/dependency-injection": "<3.4"
  1616. },
  1617. "require-dev": {
  1618. "doctrine/annotations": "~1.0",
  1619. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  1620. "symfony/cache": "~3.4|~4.0",
  1621. "symfony/dependency-injection": "~3.4|~4.0",
  1622. "symfony/serializer": "~3.4|~4.0"
  1623. },
  1624. "suggest": {
  1625. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  1626. "psr/cache-implementation": "To cache results",
  1627. "symfony/doctrine-bridge": "To use Doctrine metadata",
  1628. "symfony/serializer": "To use Serializer metadata"
  1629. },
  1630. "type": "library",
  1631. "extra": {
  1632. "branch-alias": {
  1633. "dev-master": "4.2-dev"
  1634. }
  1635. },
  1636. "autoload": {
  1637. "psr-4": {
  1638. "Symfony\\Component\\PropertyInfo\\": ""
  1639. },
  1640. "exclude-from-classmap": [
  1641. "/Tests/"
  1642. ]
  1643. },
  1644. "notification-url": "https://packagist.org/downloads/",
  1645. "license": [
  1646. "MIT"
  1647. ],
  1648. "authors": [
  1649. {
  1650. "name": "Kévin Dunglas",
  1651. "email": "dunglas@gmail.com"
  1652. },
  1653. {
  1654. "name": "Symfony Community",
  1655. "homepage": "https://symfony.com/contributors"
  1656. }
  1657. ],
  1658. "description": "Symfony Property Info Component",
  1659. "homepage": "https://symfony.com",
  1660. "keywords": [
  1661. "doctrine",
  1662. "phpdoc",
  1663. "property",
  1664. "symfony",
  1665. "type",
  1666. "validator"
  1667. ],
  1668. "time": "2018-11-11T19:52:12+00:00"
  1669. },
  1670. {
  1671. "name": "symfony/routing",
  1672. "version": "v4.2.1",
  1673. "source": {
  1674. "type": "git",
  1675. "url": "https://github.com/symfony/routing.git",
  1676. "reference": "649460207e77da6c545326c7f53618d23ad2c866"
  1677. },
  1678. "dist": {
  1679. "type": "zip",
  1680. "url": "https://api.github.com/repos/symfony/routing/zipball/649460207e77da6c545326c7f53618d23ad2c866",
  1681. "reference": "649460207e77da6c545326c7f53618d23ad2c866",
  1682. "shasum": ""
  1683. },
  1684. "require": {
  1685. "php": "^7.1.3"
  1686. },
  1687. "conflict": {
  1688. "symfony/config": "<4.2",
  1689. "symfony/dependency-injection": "<3.4",
  1690. "symfony/yaml": "<3.4"
  1691. },
  1692. "require-dev": {
  1693. "doctrine/annotations": "~1.0",
  1694. "psr/log": "~1.0",
  1695. "symfony/config": "~4.2",
  1696. "symfony/dependency-injection": "~3.4|~4.0",
  1697. "symfony/expression-language": "~3.4|~4.0",
  1698. "symfony/http-foundation": "~3.4|~4.0",
  1699. "symfony/yaml": "~3.4|~4.0"
  1700. },
  1701. "suggest": {
  1702. "doctrine/annotations": "For using the annotation loader",
  1703. "symfony/config": "For using the all-in-one router or any loader",
  1704. "symfony/dependency-injection": "For loading routes from a service",
  1705. "symfony/expression-language": "For using expression matching",
  1706. "symfony/http-foundation": "For using a Symfony Request object",
  1707. "symfony/yaml": "For using the YAML loader"
  1708. },
  1709. "type": "library",
  1710. "extra": {
  1711. "branch-alias": {
  1712. "dev-master": "4.2-dev"
  1713. }
  1714. },
  1715. "autoload": {
  1716. "psr-4": {
  1717. "Symfony\\Component\\Routing\\": ""
  1718. },
  1719. "exclude-from-classmap": [
  1720. "/Tests/"
  1721. ]
  1722. },
  1723. "notification-url": "https://packagist.org/downloads/",
  1724. "license": [
  1725. "MIT"
  1726. ],
  1727. "authors": [
  1728. {
  1729. "name": "Fabien Potencier",
  1730. "email": "fabien@symfony.com"
  1731. },
  1732. {
  1733. "name": "Symfony Community",
  1734. "homepage": "https://symfony.com/contributors"
  1735. }
  1736. ],
  1737. "description": "Symfony Routing Component",
  1738. "homepage": "https://symfony.com",
  1739. "keywords": [
  1740. "router",
  1741. "routing",
  1742. "uri",
  1743. "url"
  1744. ],
  1745. "time": "2018-12-03T22:08:12+00:00"
  1746. },
  1747. {
  1748. "name": "symfony/serializer",
  1749. "version": "v4.2.1",
  1750. "source": {
  1751. "type": "git",
  1752. "url": "https://github.com/symfony/serializer.git",
  1753. "reference": "1452962563adc7cfa8ab1307ac1664e2a93b8d69"
  1754. },
  1755. "dist": {
  1756. "type": "zip",
  1757. "url": "https://api.github.com/repos/symfony/serializer/zipball/1452962563adc7cfa8ab1307ac1664e2a93b8d69",
  1758. "reference": "1452962563adc7cfa8ab1307ac1664e2a93b8d69",
  1759. "shasum": ""
  1760. },
  1761. "require": {
  1762. "php": "^7.1.3",
  1763. "symfony/polyfill-ctype": "~1.8"
  1764. },
  1765. "conflict": {
  1766. "phpdocumentor/type-resolver": "<0.2.1",
  1767. "symfony/dependency-injection": "<3.4",
  1768. "symfony/property-access": "<3.4",
  1769. "symfony/property-info": "<3.4",
  1770. "symfony/yaml": "<3.4"
  1771. },
  1772. "require-dev": {
  1773. "doctrine/annotations": "~1.0",
  1774. "doctrine/cache": "~1.0",
  1775. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  1776. "symfony/cache": "~3.4|~4.0",
  1777. "symfony/config": "~3.4|~4.0",
  1778. "symfony/dependency-injection": "~3.4|~4.0",
  1779. "symfony/http-foundation": "~3.4|~4.0",
  1780. "symfony/property-access": "~3.4|~4.0",
  1781. "symfony/property-info": "~3.4|~4.0",
  1782. "symfony/validator": "~3.4|~4.0",
  1783. "symfony/yaml": "~3.4|~4.0"
  1784. },
  1785. "suggest": {
  1786. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  1787. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  1788. "psr/cache-implementation": "For using the metadata cache.",
  1789. "symfony/config": "For using the XML mapping loader.",
  1790. "symfony/http-foundation": "To use the DataUriNormalizer.",
  1791. "symfony/property-access": "For using the ObjectNormalizer.",
  1792. "symfony/property-info": "To deserialize relations.",
  1793. "symfony/yaml": "For using the default YAML mapping loader."
  1794. },
  1795. "type": "library",
  1796. "extra": {
  1797. "branch-alias": {
  1798. "dev-master": "4.2-dev"
  1799. }
  1800. },
  1801. "autoload": {
  1802. "psr-4": {
  1803. "Symfony\\Component\\Serializer\\": ""
  1804. },
  1805. "exclude-from-classmap": [
  1806. "/Tests/"
  1807. ]
  1808. },
  1809. "notification-url": "https://packagist.org/downloads/",
  1810. "license": [
  1811. "MIT"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Fabien Potencier",
  1816. "email": "fabien@symfony.com"
  1817. },
  1818. {
  1819. "name": "Symfony Community",
  1820. "homepage": "https://symfony.com/contributors"
  1821. }
  1822. ],
  1823. "description": "Symfony Serializer Component",
  1824. "homepage": "https://symfony.com",
  1825. "time": "2018-12-02T13:25:28+00:00"
  1826. },
  1827. {
  1828. "name": "symfony/serializer-pack",
  1829. "version": "v1.0.2",
  1830. "source": {
  1831. "type": "git",
  1832. "url": "https://github.com/symfony/serializer-pack.git",
  1833. "reference": "c5f18ba4ff989a42d7d140b7f85406e77cd8c4b2"
  1834. },
  1835. "dist": {
  1836. "type": "zip",
  1837. "url": "https://api.github.com/repos/symfony/serializer-pack/zipball/c5f18ba4ff989a42d7d140b7f85406e77cd8c4b2",
  1838. "reference": "c5f18ba4ff989a42d7d140b7f85406e77cd8c4b2",
  1839. "shasum": ""
  1840. },
  1841. "require": {
  1842. "doctrine/annotations": "^1.0",
  1843. "php": "^7.0",
  1844. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  1845. "symfony/property-access": "*",
  1846. "symfony/property-info": "*",
  1847. "symfony/serializer": "*"
  1848. },
  1849. "type": "symfony-pack",
  1850. "notification-url": "https://packagist.org/downloads/",
  1851. "license": [
  1852. "MIT"
  1853. ],
  1854. "description": "A pack for the Symfony serializer",
  1855. "time": "2018-12-10T12:14:14+00:00"
  1856. },
  1857. {
  1858. "name": "symfony/translation",
  1859. "version": "v4.2.1",
  1860. "source": {
  1861. "type": "git",
  1862. "url": "https://github.com/symfony/translation.git",
  1863. "reference": "c0e2191e9bed845946ab3d99767513b56ca7dcd6"
  1864. },
  1865. "dist": {
  1866. "type": "zip",
  1867. "url": "https://api.github.com/repos/symfony/translation/zipball/c0e2191e9bed845946ab3d99767513b56ca7dcd6",
  1868. "reference": "c0e2191e9bed845946ab3d99767513b56ca7dcd6",
  1869. "shasum": ""
  1870. },
  1871. "require": {
  1872. "php": "^7.1.3",
  1873. "symfony/contracts": "^1.0.2",
  1874. "symfony/polyfill-mbstring": "~1.0"
  1875. },
  1876. "conflict": {
  1877. "symfony/config": "<3.4",
  1878. "symfony/dependency-injection": "<3.4",
  1879. "symfony/yaml": "<3.4"
  1880. },
  1881. "provide": {
  1882. "symfony/translation-contracts-implementation": "1.0"
  1883. },
  1884. "require-dev": {
  1885. "psr/log": "~1.0",
  1886. "symfony/config": "~3.4|~4.0",
  1887. "symfony/console": "~3.4|~4.0",
  1888. "symfony/dependency-injection": "~3.4|~4.0",
  1889. "symfony/finder": "~2.8|~3.0|~4.0",
  1890. "symfony/intl": "~3.4|~4.0",
  1891. "symfony/yaml": "~3.4|~4.0"
  1892. },
  1893. "suggest": {
  1894. "psr/log-implementation": "To use logging capability in translator",
  1895. "symfony/config": "",
  1896. "symfony/yaml": ""
  1897. },
  1898. "type": "library",
  1899. "extra": {
  1900. "branch-alias": {
  1901. "dev-master": "4.2-dev"
  1902. }
  1903. },
  1904. "autoload": {
  1905. "psr-4": {
  1906. "Symfony\\Component\\Translation\\": ""
  1907. },
  1908. "exclude-from-classmap": [
  1909. "/Tests/"
  1910. ]
  1911. },
  1912. "notification-url": "https://packagist.org/downloads/",
  1913. "license": [
  1914. "MIT"
  1915. ],
  1916. "authors": [
  1917. {
  1918. "name": "Fabien Potencier",
  1919. "email": "fabien@symfony.com"
  1920. },
  1921. {
  1922. "name": "Symfony Community",
  1923. "homepage": "https://symfony.com/contributors"
  1924. }
  1925. ],
  1926. "description": "Symfony Translation Component",
  1927. "homepage": "https://symfony.com",
  1928. "time": "2018-12-06T10:45:32+00:00"
  1929. },
  1930. {
  1931. "name": "symfony/var-exporter",
  1932. "version": "v4.2.1",
  1933. "source": {
  1934. "type": "git",
  1935. "url": "https://github.com/symfony/var-exporter.git",
  1936. "reference": "a39222e357362424b61dcde50e2f7b5a7d3306db"
  1937. },
  1938. "dist": {
  1939. "type": "zip",
  1940. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a39222e357362424b61dcde50e2f7b5a7d3306db",
  1941. "reference": "a39222e357362424b61dcde50e2f7b5a7d3306db",
  1942. "shasum": ""
  1943. },
  1944. "require": {
  1945. "php": "^7.1.3"
  1946. },
  1947. "require-dev": {
  1948. "symfony/var-dumper": "^4.1.1"
  1949. },
  1950. "type": "library",
  1951. "extra": {
  1952. "branch-alias": {
  1953. "dev-master": "4.2-dev"
  1954. }
  1955. },
  1956. "autoload": {
  1957. "psr-4": {
  1958. "Symfony\\Component\\VarExporter\\": ""
  1959. },
  1960. "exclude-from-classmap": [
  1961. "/Tests/"
  1962. ]
  1963. },
  1964. "notification-url": "https://packagist.org/downloads/",
  1965. "license": [
  1966. "MIT"
  1967. ],
  1968. "authors": [
  1969. {
  1970. "name": "Nicolas Grekas",
  1971. "email": "p@tchwork.com"
  1972. },
  1973. {
  1974. "name": "Symfony Community",
  1975. "homepage": "https://symfony.com/contributors"
  1976. }
  1977. ],
  1978. "description": "A blend of var_export() + serialize() to turn any serializable data structure to plain PHP code",
  1979. "homepage": "https://symfony.com",
  1980. "keywords": [
  1981. "clone",
  1982. "construct",
  1983. "export",
  1984. "hydrate",
  1985. "instantiate",
  1986. "serialize"
  1987. ],
  1988. "time": "2018-12-03T22:40:09+00:00"
  1989. },
  1990. {
  1991. "name": "symfony/yaml",
  1992. "version": "v4.2.1",
  1993. "source": {
  1994. "type": "git",
  1995. "url": "https://github.com/symfony/yaml.git",
  1996. "reference": "c41175c801e3edfda90f32e292619d10c27103d7"
  1997. },
  1998. "dist": {
  1999. "type": "zip",
  2000. "url": "https://api.github.com/repos/symfony/yaml/zipball/c41175c801e3edfda90f32e292619d10c27103d7",
  2001. "reference": "c41175c801e3edfda90f32e292619d10c27103d7",
  2002. "shasum": ""
  2003. },
  2004. "require": {
  2005. "php": "^7.1.3",
  2006. "symfony/polyfill-ctype": "~1.8"
  2007. },
  2008. "conflict": {
  2009. "symfony/console": "<3.4"
  2010. },
  2011. "require-dev": {
  2012. "symfony/console": "~3.4|~4.0"
  2013. },
  2014. "suggest": {
  2015. "symfony/console": "For validating YAML files using the lint command"
  2016. },
  2017. "type": "library",
  2018. "extra": {
  2019. "branch-alias": {
  2020. "dev-master": "4.2-dev"
  2021. }
  2022. },
  2023. "autoload": {
  2024. "psr-4": {
  2025. "Symfony\\Component\\Yaml\\": ""
  2026. },
  2027. "exclude-from-classmap": [
  2028. "/Tests/"
  2029. ]
  2030. },
  2031. "notification-url": "https://packagist.org/downloads/",
  2032. "license": [
  2033. "MIT"
  2034. ],
  2035. "authors": [
  2036. {
  2037. "name": "Fabien Potencier",
  2038. "email": "fabien@symfony.com"
  2039. },
  2040. {
  2041. "name": "Symfony Community",
  2042. "homepage": "https://symfony.com/contributors"
  2043. }
  2044. ],
  2045. "description": "Symfony Yaml Component",
  2046. "homepage": "https://symfony.com",
  2047. "time": "2018-11-11T19:52:12+00:00"
  2048. },
  2049. {
  2050. "name": "webmozart/assert",
  2051. "version": "1.3.0",
  2052. "source": {
  2053. "type": "git",
  2054. "url": "https://github.com/webmozart/assert.git",
  2055. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  2056. },
  2057. "dist": {
  2058. "type": "zip",
  2059. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  2060. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  2061. "shasum": ""
  2062. },
  2063. "require": {
  2064. "php": "^5.3.3 || ^7.0"
  2065. },
  2066. "require-dev": {
  2067. "phpunit/phpunit": "^4.6",
  2068. "sebastian/version": "^1.0.1"
  2069. },
  2070. "type": "library",
  2071. "extra": {
  2072. "branch-alias": {
  2073. "dev-master": "1.3-dev"
  2074. }
  2075. },
  2076. "autoload": {
  2077. "psr-4": {
  2078. "Webmozart\\Assert\\": "src/"
  2079. }
  2080. },
  2081. "notification-url": "https://packagist.org/downloads/",
  2082. "license": [
  2083. "MIT"
  2084. ],
  2085. "authors": [
  2086. {
  2087. "name": "Bernhard Schussek",
  2088. "email": "bschussek@gmail.com"
  2089. }
  2090. ],
  2091. "description": "Assertions to validate method input/output with nice error messages.",
  2092. "keywords": [
  2093. "assert",
  2094. "check",
  2095. "validate"
  2096. ],
  2097. "time": "2018-01-29T19:49:41+00:00"
  2098. }
  2099. ],
  2100. "packages-dev": [],
  2101. "aliases": [],
  2102. "minimum-stability": "stable",
  2103. "stability-flags": [],
  2104. "prefer-stable": false,
  2105. "prefer-lowest": false,
  2106. "platform": {
  2107. "php": "^7.1.3",
  2108. "ext-ctype": "*",
  2109. "ext-iconv": "*"
  2110. },
  2111. "platform-dev": []
  2112. }