You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock.php7.1 74KB

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