composer.lock 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084
  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": "86b16f3ed4090bf39c4593b797fd581b",
  8. "packages": [
  9. {
  10. "name": "doctrine/annotations",
  11. "version": "v1.8.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/doctrine/annotations.git",
  15. "reference": "904dca4eb10715b92569fbcd79e201d5c349b6bc"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/doctrine/annotations/zipball/904dca4eb10715b92569fbcd79e201d5c349b6bc",
  20. "reference": "904dca4eb10715b92569fbcd79e201d5c349b6bc",
  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.5"
  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": "Guilherme Blanco",
  49. "email": "[email protected]"
  50. },
  51. {
  52. "name": "Roman Borschel",
  53. "email": "[email protected]"
  54. },
  55. {
  56. "name": "Benjamin Eberlei",
  57. "email": "[email protected]"
  58. },
  59. {
  60. "name": "Jonathan Wage",
  61. "email": "[email protected]"
  62. },
  63. {
  64. "name": "Johannes Schmitt",
  65. "email": "[email protected]"
  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": "2019-10-01T18:55:10+00:00"
  76. },
  77. {
  78. "name": "doctrine/cache",
  79. "version": "1.10.0",
  80. "source": {
  81. "type": "git",
  82. "url": "https://github.com/doctrine/cache.git",
  83. "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62"
  84. },
  85. "dist": {
  86. "type": "zip",
  87. "url": "https://api.github.com/repos/doctrine/cache/zipball/382e7f4db9a12dc6c19431743a2b096041bcdd62",
  88. "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62",
  89. "shasum": ""
  90. },
  91. "require": {
  92. "php": "~7.1"
  93. },
  94. "conflict": {
  95. "doctrine/common": ">2.2,<2.4"
  96. },
  97. "require-dev": {
  98. "alcaeus/mongo-php-adapter": "^1.1",
  99. "doctrine/coding-standard": "^6.0",
  100. "mongodb/mongodb": "^1.1",
  101. "phpunit/phpunit": "^7.0",
  102. "predis/predis": "~1.0"
  103. },
  104. "suggest": {
  105. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  106. },
  107. "type": "library",
  108. "extra": {
  109. "branch-alias": {
  110. "dev-master": "1.9.x-dev"
  111. }
  112. },
  113. "autoload": {
  114. "psr-4": {
  115. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  116. }
  117. },
  118. "notification-url": "https://packagist.org/downloads/",
  119. "license": [
  120. "MIT"
  121. ],
  122. "authors": [
  123. {
  124. "name": "Guilherme Blanco",
  125. "email": "[email protected]"
  126. },
  127. {
  128. "name": "Roman Borschel",
  129. "email": "[email protected]"
  130. },
  131. {
  132. "name": "Benjamin Eberlei",
  133. "email": "[email protected]"
  134. },
  135. {
  136. "name": "Jonathan Wage",
  137. "email": "[email protected]"
  138. },
  139. {
  140. "name": "Johannes Schmitt",
  141. "email": "[email protected]"
  142. }
  143. ],
  144. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  145. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  146. "keywords": [
  147. "abstraction",
  148. "apcu",
  149. "cache",
  150. "caching",
  151. "couchdb",
  152. "memcached",
  153. "php",
  154. "redis",
  155. "xcache"
  156. ],
  157. "time": "2019-11-29T15:36:20+00:00"
  158. },
  159. {
  160. "name": "doctrine/collections",
  161. "version": "1.6.4",
  162. "source": {
  163. "type": "git",
  164. "url": "https://github.com/doctrine/collections.git",
  165. "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7"
  166. },
  167. "dist": {
  168. "type": "zip",
  169. "url": "https://api.github.com/repos/doctrine/collections/zipball/6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7",
  170. "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7",
  171. "shasum": ""
  172. },
  173. "require": {
  174. "php": "^7.1.3"
  175. },
  176. "require-dev": {
  177. "doctrine/coding-standard": "^6.0",
  178. "phpstan/phpstan-shim": "^0.9.2",
  179. "phpunit/phpunit": "^7.0",
  180. "vimeo/psalm": "^3.2.2"
  181. },
  182. "type": "library",
  183. "extra": {
  184. "branch-alias": {
  185. "dev-master": "1.6.x-dev"
  186. }
  187. },
  188. "autoload": {
  189. "psr-4": {
  190. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  191. }
  192. },
  193. "notification-url": "https://packagist.org/downloads/",
  194. "license": [
  195. "MIT"
  196. ],
  197. "authors": [
  198. {
  199. "name": "Guilherme Blanco",
  200. "email": "[email protected]"
  201. },
  202. {
  203. "name": "Roman Borschel",
  204. "email": "[email protected]"
  205. },
  206. {
  207. "name": "Benjamin Eberlei",
  208. "email": "[email protected]"
  209. },
  210. {
  211. "name": "Jonathan Wage",
  212. "email": "[email protected]"
  213. },
  214. {
  215. "name": "Johannes Schmitt",
  216. "email": "[email protected]"
  217. }
  218. ],
  219. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  220. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  221. "keywords": [
  222. "array",
  223. "collections",
  224. "iterators",
  225. "php"
  226. ],
  227. "time": "2019-11-13T13:07:11+00:00"
  228. },
  229. {
  230. "name": "doctrine/common",
  231. "version": "2.12.0",
  232. "source": {
  233. "type": "git",
  234. "url": "https://github.com/doctrine/common.git",
  235. "reference": "2053eafdf60c2172ee1373d1b9289ba1db7f1fc6"
  236. },
  237. "dist": {
  238. "type": "zip",
  239. "url": "https://api.github.com/repos/doctrine/common/zipball/2053eafdf60c2172ee1373d1b9289ba1db7f1fc6",
  240. "reference": "2053eafdf60c2172ee1373d1b9289ba1db7f1fc6",
  241. "shasum": ""
  242. },
  243. "require": {
  244. "doctrine/annotations": "^1.0",
  245. "doctrine/cache": "^1.0",
  246. "doctrine/collections": "^1.0",
  247. "doctrine/event-manager": "^1.0",
  248. "doctrine/inflector": "^1.0",
  249. "doctrine/lexer": "^1.0",
  250. "doctrine/persistence": "^1.1",
  251. "doctrine/reflection": "^1.0",
  252. "php": "^7.1"
  253. },
  254. "require-dev": {
  255. "doctrine/coding-standard": "^1.0",
  256. "phpstan/phpstan": "^0.11",
  257. "phpstan/phpstan-phpunit": "^0.11",
  258. "phpunit/phpunit": "^7.0",
  259. "squizlabs/php_codesniffer": "^3.0",
  260. "symfony/phpunit-bridge": "^4.0.5"
  261. },
  262. "type": "library",
  263. "extra": {
  264. "branch-alias": {
  265. "dev-master": "2.11.x-dev"
  266. }
  267. },
  268. "autoload": {
  269. "psr-4": {
  270. "Doctrine\\Common\\": "lib/Doctrine/Common"
  271. }
  272. },
  273. "notification-url": "https://packagist.org/downloads/",
  274. "license": [
  275. "MIT"
  276. ],
  277. "authors": [
  278. {
  279. "name": "Guilherme Blanco",
  280. "email": "[email protected]"
  281. },
  282. {
  283. "name": "Roman Borschel",
  284. "email": "[email protected]"
  285. },
  286. {
  287. "name": "Benjamin Eberlei",
  288. "email": "[email protected]"
  289. },
  290. {
  291. "name": "Jonathan Wage",
  292. "email": "[email protected]"
  293. },
  294. {
  295. "name": "Johannes Schmitt",
  296. "email": "[email protected]"
  297. },
  298. {
  299. "name": "Marco Pivetta",
  300. "email": "[email protected]"
  301. }
  302. ],
  303. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  304. "homepage": "https://www.doctrine-project.org/projects/common.html",
  305. "keywords": [
  306. "common",
  307. "doctrine",
  308. "php"
  309. ],
  310. "time": "2020-01-10T15:49:25+00:00"
  311. },
  312. {
  313. "name": "doctrine/dbal",
  314. "version": "v2.10.1",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/doctrine/dbal.git",
  318. "reference": "c2b8e6e82732a64ecde1cddf9e1e06cb8556e3d8"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c2b8e6e82732a64ecde1cddf9e1e06cb8556e3d8",
  323. "reference": "c2b8e6e82732a64ecde1cddf9e1e06cb8556e3d8",
  324. "shasum": ""
  325. },
  326. "require": {
  327. "doctrine/cache": "^1.0",
  328. "doctrine/event-manager": "^1.0",
  329. "ext-pdo": "*",
  330. "php": "^7.2"
  331. },
  332. "require-dev": {
  333. "doctrine/coding-standard": "^6.0",
  334. "jetbrains/phpstorm-stubs": "^2019.1",
  335. "phpstan/phpstan": "^0.11.3",
  336. "phpunit/phpunit": "^8.4.1",
  337. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0"
  338. },
  339. "suggest": {
  340. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  341. },
  342. "bin": [
  343. "bin/doctrine-dbal"
  344. ],
  345. "type": "library",
  346. "extra": {
  347. "branch-alias": {
  348. "dev-master": "2.10.x-dev",
  349. "dev-develop": "3.0.x-dev"
  350. }
  351. },
  352. "autoload": {
  353. "psr-4": {
  354. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  355. }
  356. },
  357. "notification-url": "https://packagist.org/downloads/",
  358. "license": [
  359. "MIT"
  360. ],
  361. "authors": [
  362. {
  363. "name": "Guilherme Blanco",
  364. "email": "[email protected]"
  365. },
  366. {
  367. "name": "Roman Borschel",
  368. "email": "[email protected]"
  369. },
  370. {
  371. "name": "Benjamin Eberlei",
  372. "email": "[email protected]"
  373. },
  374. {
  375. "name": "Jonathan Wage",
  376. "email": "[email protected]"
  377. }
  378. ],
  379. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  380. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  381. "keywords": [
  382. "abstraction",
  383. "database",
  384. "db2",
  385. "dbal",
  386. "mariadb",
  387. "mssql",
  388. "mysql",
  389. "oci8",
  390. "oracle",
  391. "pdo",
  392. "pgsql",
  393. "postgresql",
  394. "queryobject",
  395. "sasql",
  396. "sql",
  397. "sqlanywhere",
  398. "sqlite",
  399. "sqlserver",
  400. "sqlsrv"
  401. ],
  402. "time": "2020-01-04T12:56:21+00:00"
  403. },
  404. {
  405. "name": "doctrine/doctrine-bundle",
  406. "version": "2.0.7",
  407. "source": {
  408. "type": "git",
  409. "url": "https://github.com/doctrine/DoctrineBundle.git",
  410. "reference": "6926771140ee87a823c3b2c72602de9dda4490d3"
  411. },
  412. "dist": {
  413. "type": "zip",
  414. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/6926771140ee87a823c3b2c72602de9dda4490d3",
  415. "reference": "6926771140ee87a823c3b2c72602de9dda4490d3",
  416. "shasum": ""
  417. },
  418. "require": {
  419. "doctrine/dbal": "^2.9.0",
  420. "doctrine/persistence": "^1.3.3",
  421. "jdorn/sql-formatter": "^1.2.16",
  422. "php": "^7.1",
  423. "symfony/cache": "^4.3.3|^5.0",
  424. "symfony/config": "^4.3.3|^5.0",
  425. "symfony/console": "^3.4.30|^4.3.3|^5.0",
  426. "symfony/dependency-injection": "^4.3.3|^5.0",
  427. "symfony/doctrine-bridge": "^4.3.7|^5.0",
  428. "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0",
  429. "symfony/service-contracts": "^1.1.1|^2.0"
  430. },
  431. "conflict": {
  432. "doctrine/orm": "<2.6",
  433. "twig/twig": "<1.34|>=2.0,<2.4"
  434. },
  435. "require-dev": {
  436. "doctrine/coding-standard": "^6.0",
  437. "doctrine/orm": "^2.6",
  438. "ocramius/proxy-manager": "^2.1",
  439. "phpunit/phpunit": "^7.5",
  440. "symfony/phpunit-bridge": "^4.2",
  441. "symfony/property-info": "^4.3.3|^5.0",
  442. "symfony/proxy-manager-bridge": "^3.4|^4.3.3|^5.0",
  443. "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0",
  444. "symfony/validator": "^3.4.30|^4.3.3|^5.0",
  445. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0",
  446. "symfony/yaml": "^3.4.30|^4.3.3|^5.0",
  447. "twig/twig": "^1.34|^2.12"
  448. },
  449. "suggest": {
  450. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  451. "symfony/web-profiler-bundle": "To use the data collector."
  452. },
  453. "type": "symfony-bundle",
  454. "extra": {
  455. "branch-alias": {
  456. "dev-master": "2.0.x-dev"
  457. }
  458. },
  459. "autoload": {
  460. "psr-4": {
  461. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  462. }
  463. },
  464. "notification-url": "https://packagist.org/downloads/",
  465. "license": [
  466. "MIT"
  467. ],
  468. "authors": [
  469. {
  470. "name": "Fabien Potencier",
  471. "email": "[email protected]"
  472. },
  473. {
  474. "name": "Benjamin Eberlei",
  475. "email": "[email protected]"
  476. },
  477. {
  478. "name": "Symfony Community",
  479. "homepage": "http://symfony.com/contributors"
  480. },
  481. {
  482. "name": "Doctrine Project",
  483. "homepage": "http://www.doctrine-project.org/"
  484. }
  485. ],
  486. "description": "Symfony DoctrineBundle",
  487. "homepage": "http://www.doctrine-project.org",
  488. "keywords": [
  489. "database",
  490. "dbal",
  491. "orm",
  492. "persistence"
  493. ],
  494. "time": "2020-01-18T11:56:15+00:00"
  495. },
  496. {
  497. "name": "doctrine/event-manager",
  498. "version": "1.1.0",
  499. "source": {
  500. "type": "git",
  501. "url": "https://github.com/doctrine/event-manager.git",
  502. "reference": "629572819973f13486371cb611386eb17851e85c"
  503. },
  504. "dist": {
  505. "type": "zip",
  506. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/629572819973f13486371cb611386eb17851e85c",
  507. "reference": "629572819973f13486371cb611386eb17851e85c",
  508. "shasum": ""
  509. },
  510. "require": {
  511. "php": "^7.1"
  512. },
  513. "conflict": {
  514. "doctrine/common": "<2.9@dev"
  515. },
  516. "require-dev": {
  517. "doctrine/coding-standard": "^6.0",
  518. "phpunit/phpunit": "^7.0"
  519. },
  520. "type": "library",
  521. "extra": {
  522. "branch-alias": {
  523. "dev-master": "1.0.x-dev"
  524. }
  525. },
  526. "autoload": {
  527. "psr-4": {
  528. "Doctrine\\Common\\": "lib/Doctrine/Common"
  529. }
  530. },
  531. "notification-url": "https://packagist.org/downloads/",
  532. "license": [
  533. "MIT"
  534. ],
  535. "authors": [
  536. {
  537. "name": "Guilherme Blanco",
  538. "email": "[email protected]"
  539. },
  540. {
  541. "name": "Roman Borschel",
  542. "email": "[email protected]"
  543. },
  544. {
  545. "name": "Benjamin Eberlei",
  546. "email": "[email protected]"
  547. },
  548. {
  549. "name": "Jonathan Wage",
  550. "email": "[email protected]"
  551. },
  552. {
  553. "name": "Johannes Schmitt",
  554. "email": "[email protected]"
  555. },
  556. {
  557. "name": "Marco Pivetta",
  558. "email": "[email protected]"
  559. }
  560. ],
  561. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  562. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  563. "keywords": [
  564. "event",
  565. "event dispatcher",
  566. "event manager",
  567. "event system",
  568. "events"
  569. ],
  570. "time": "2019-11-10T09:48:07+00:00"
  571. },
  572. {
  573. "name": "doctrine/inflector",
  574. "version": "1.3.1",
  575. "source": {
  576. "type": "git",
  577. "url": "https://github.com/doctrine/inflector.git",
  578. "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1"
  579. },
  580. "dist": {
  581. "type": "zip",
  582. "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1",
  583. "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1",
  584. "shasum": ""
  585. },
  586. "require": {
  587. "php": "^7.1"
  588. },
  589. "require-dev": {
  590. "phpunit/phpunit": "^6.2"
  591. },
  592. "type": "library",
  593. "extra": {
  594. "branch-alias": {
  595. "dev-master": "1.3.x-dev"
  596. }
  597. },
  598. "autoload": {
  599. "psr-4": {
  600. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  601. }
  602. },
  603. "notification-url": "https://packagist.org/downloads/",
  604. "license": [
  605. "MIT"
  606. ],
  607. "authors": [
  608. {
  609. "name": "Guilherme Blanco",
  610. "email": "[email protected]"
  611. },
  612. {
  613. "name": "Roman Borschel",
  614. "email": "[email protected]"
  615. },
  616. {
  617. "name": "Benjamin Eberlei",
  618. "email": "[email protected]"
  619. },
  620. {
  621. "name": "Jonathan Wage",
  622. "email": "[email protected]"
  623. },
  624. {
  625. "name": "Johannes Schmitt",
  626. "email": "[email protected]"
  627. }
  628. ],
  629. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  630. "homepage": "http://www.doctrine-project.org",
  631. "keywords": [
  632. "inflection",
  633. "pluralize",
  634. "singularize",
  635. "string"
  636. ],
  637. "time": "2019-10-30T19:59:35+00:00"
  638. },
  639. {
  640. "name": "doctrine/instantiator",
  641. "version": "1.3.0",
  642. "source": {
  643. "type": "git",
  644. "url": "https://github.com/doctrine/instantiator.git",
  645. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
  646. },
  647. "dist": {
  648. "type": "zip",
  649. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
  650. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
  651. "shasum": ""
  652. },
  653. "require": {
  654. "php": "^7.1"
  655. },
  656. "require-dev": {
  657. "doctrine/coding-standard": "^6.0",
  658. "ext-pdo": "*",
  659. "ext-phar": "*",
  660. "phpbench/phpbench": "^0.13",
  661. "phpstan/phpstan-phpunit": "^0.11",
  662. "phpstan/phpstan-shim": "^0.11",
  663. "phpunit/phpunit": "^7.0"
  664. },
  665. "type": "library",
  666. "extra": {
  667. "branch-alias": {
  668. "dev-master": "1.2.x-dev"
  669. }
  670. },
  671. "autoload": {
  672. "psr-4": {
  673. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  674. }
  675. },
  676. "notification-url": "https://packagist.org/downloads/",
  677. "license": [
  678. "MIT"
  679. ],
  680. "authors": [
  681. {
  682. "name": "Marco Pivetta",
  683. "email": "[email protected]",
  684. "homepage": "http://ocramius.github.com/"
  685. }
  686. ],
  687. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  688. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  689. "keywords": [
  690. "constructor",
  691. "instantiate"
  692. ],
  693. "time": "2019-10-21T16:45:58+00:00"
  694. },
  695. {
  696. "name": "doctrine/lexer",
  697. "version": "1.2.0",
  698. "source": {
  699. "type": "git",
  700. "url": "https://github.com/doctrine/lexer.git",
  701. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6"
  702. },
  703. "dist": {
  704. "type": "zip",
  705. "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  706. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  707. "shasum": ""
  708. },
  709. "require": {
  710. "php": "^7.2"
  711. },
  712. "require-dev": {
  713. "doctrine/coding-standard": "^6.0",
  714. "phpstan/phpstan": "^0.11.8",
  715. "phpunit/phpunit": "^8.2"
  716. },
  717. "type": "library",
  718. "extra": {
  719. "branch-alias": {
  720. "dev-master": "1.2.x-dev"
  721. }
  722. },
  723. "autoload": {
  724. "psr-4": {
  725. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  726. }
  727. },
  728. "notification-url": "https://packagist.org/downloads/",
  729. "license": [
  730. "MIT"
  731. ],
  732. "authors": [
  733. {
  734. "name": "Guilherme Blanco",
  735. "email": "[email protected]"
  736. },
  737. {
  738. "name": "Roman Borschel",
  739. "email": "[email protected]"
  740. },
  741. {
  742. "name": "Johannes Schmitt",
  743. "email": "[email protected]"
  744. }
  745. ],
  746. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  747. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  748. "keywords": [
  749. "annotations",
  750. "docblock",
  751. "lexer",
  752. "parser",
  753. "php"
  754. ],
  755. "time": "2019-10-30T14:39:59+00:00"
  756. },
  757. {
  758. "name": "doctrine/orm",
  759. "version": "v2.7.0",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/doctrine/orm.git",
  763. "reference": "4d763ca4c925f647b248b9fa01b5f47aa3685d62"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/doctrine/orm/zipball/4d763ca4c925f647b248b9fa01b5f47aa3685d62",
  768. "reference": "4d763ca4c925f647b248b9fa01b5f47aa3685d62",
  769. "shasum": ""
  770. },
  771. "require": {
  772. "doctrine/annotations": "^1.8",
  773. "doctrine/cache": "^1.9.1",
  774. "doctrine/collections": "^1.5",
  775. "doctrine/common": "^2.11",
  776. "doctrine/dbal": "^2.9.3",
  777. "doctrine/event-manager": "^1.1",
  778. "doctrine/instantiator": "^1.3",
  779. "doctrine/persistence": "^1.2",
  780. "ext-pdo": "*",
  781. "php": "^7.1",
  782. "symfony/console": "^3.0|^4.0|^5.0"
  783. },
  784. "require-dev": {
  785. "doctrine/coding-standard": "^5.0",
  786. "phpunit/phpunit": "^7.5",
  787. "symfony/yaml": "^3.4|^4.0|^5.0"
  788. },
  789. "suggest": {
  790. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  791. },
  792. "bin": [
  793. "bin/doctrine"
  794. ],
  795. "type": "library",
  796. "extra": {
  797. "branch-alias": {
  798. "dev-master": "2.7.x-dev"
  799. }
  800. },
  801. "autoload": {
  802. "psr-4": {
  803. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  804. }
  805. },
  806. "notification-url": "https://packagist.org/downloads/",
  807. "license": [
  808. "MIT"
  809. ],
  810. "authors": [
  811. {
  812. "name": "Guilherme Blanco",
  813. "email": "[email protected]"
  814. },
  815. {
  816. "name": "Roman Borschel",
  817. "email": "[email protected]"
  818. },
  819. {
  820. "name": "Benjamin Eberlei",
  821. "email": "[email protected]"
  822. },
  823. {
  824. "name": "Jonathan Wage",
  825. "email": "[email protected]"
  826. },
  827. {
  828. "name": "Marco Pivetta",
  829. "email": "[email protected]"
  830. }
  831. ],
  832. "description": "Object-Relational-Mapper for PHP",
  833. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  834. "keywords": [
  835. "database",
  836. "orm"
  837. ],
  838. "time": "2019-11-19T08:38:05+00:00"
  839. },
  840. {
  841. "name": "doctrine/persistence",
  842. "version": "1.3.6",
  843. "source": {
  844. "type": "git",
  845. "url": "https://github.com/doctrine/persistence.git",
  846. "reference": "5dd3ac5eebef2d0b074daa4440bb18f93132dee4"
  847. },
  848. "dist": {
  849. "type": "zip",
  850. "url": "https://api.github.com/repos/doctrine/persistence/zipball/5dd3ac5eebef2d0b074daa4440bb18f93132dee4",
  851. "reference": "5dd3ac5eebef2d0b074daa4440bb18f93132dee4",
  852. "shasum": ""
  853. },
  854. "require": {
  855. "doctrine/annotations": "^1.0",
  856. "doctrine/cache": "^1.0",
  857. "doctrine/collections": "^1.0",
  858. "doctrine/event-manager": "^1.0",
  859. "doctrine/reflection": "^1.1",
  860. "php": "^7.1"
  861. },
  862. "conflict": {
  863. "doctrine/common": "<2.10@dev"
  864. },
  865. "require-dev": {
  866. "doctrine/coding-standard": "^6.0",
  867. "phpstan/phpstan": "^0.11",
  868. "phpunit/phpunit": "^7.0"
  869. },
  870. "type": "library",
  871. "extra": {
  872. "branch-alias": {
  873. "dev-master": "1.3.x-dev"
  874. }
  875. },
  876. "autoload": {
  877. "psr-4": {
  878. "Doctrine\\Common\\": "lib/Doctrine/Common",
  879. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  880. }
  881. },
  882. "notification-url": "https://packagist.org/downloads/",
  883. "license": [
  884. "MIT"
  885. ],
  886. "authors": [
  887. {
  888. "name": "Guilherme Blanco",
  889. "email": "[email protected]"
  890. },
  891. {
  892. "name": "Roman Borschel",
  893. "email": "[email protected]"
  894. },
  895. {
  896. "name": "Benjamin Eberlei",
  897. "email": "[email protected]"
  898. },
  899. {
  900. "name": "Jonathan Wage",
  901. "email": "[email protected]"
  902. },
  903. {
  904. "name": "Johannes Schmitt",
  905. "email": "[email protected]"
  906. },
  907. {
  908. "name": "Marco Pivetta",
  909. "email": "[email protected]"
  910. }
  911. ],
  912. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  913. "homepage": "https://doctrine-project.org/projects/persistence.html",
  914. "keywords": [
  915. "mapper",
  916. "object",
  917. "odm",
  918. "orm",
  919. "persistence"
  920. ],
  921. "time": "2020-01-16T22:06:23+00:00"
  922. },
  923. {
  924. "name": "doctrine/reflection",
  925. "version": "v1.1.0",
  926. "source": {
  927. "type": "git",
  928. "url": "https://github.com/doctrine/reflection.git",
  929. "reference": "bc420ead87fdfe08c03ecc3549db603a45b06d4c"
  930. },
  931. "dist": {
  932. "type": "zip",
  933. "url": "https://api.github.com/repos/doctrine/reflection/zipball/bc420ead87fdfe08c03ecc3549db603a45b06d4c",
  934. "reference": "bc420ead87fdfe08c03ecc3549db603a45b06d4c",
  935. "shasum": ""
  936. },
  937. "require": {
  938. "doctrine/annotations": "^1.0",
  939. "ext-tokenizer": "*",
  940. "php": "^7.1"
  941. },
  942. "conflict": {
  943. "doctrine/common": "<2.9"
  944. },
  945. "require-dev": {
  946. "doctrine/coding-standard": "^5.0",
  947. "doctrine/common": "^2.10",
  948. "phpstan/phpstan": "^0.11.0",
  949. "phpstan/phpstan-phpunit": "^0.11.0",
  950. "phpunit/phpunit": "^7.0"
  951. },
  952. "type": "library",
  953. "extra": {
  954. "branch-alias": {
  955. "dev-master": "1.0.x-dev"
  956. }
  957. },
  958. "autoload": {
  959. "psr-4": {
  960. "Doctrine\\Common\\": "lib/Doctrine/Common"
  961. }
  962. },
  963. "notification-url": "https://packagist.org/downloads/",
  964. "license": [
  965. "MIT"
  966. ],
  967. "authors": [
  968. {
  969. "name": "Guilherme Blanco",
  970. "email": "[email protected]"
  971. },
  972. {
  973. "name": "Roman Borschel",
  974. "email": "[email protected]"
  975. },
  976. {
  977. "name": "Benjamin Eberlei",
  978. "email": "[email protected]"
  979. },
  980. {
  981. "name": "Jonathan Wage",
  982. "email": "[email protected]"
  983. },
  984. {
  985. "name": "Johannes Schmitt",
  986. "email": "[email protected]"
  987. },
  988. {
  989. "name": "Marco Pivetta",
  990. "email": "[email protected]"
  991. }
  992. ],
  993. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  994. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  995. "keywords": [
  996. "reflection",
  997. "static"
  998. ],
  999. "time": "2020-01-08T19:53:19+00:00"
  1000. },
  1001. {
  1002. "name": "jdorn/sql-formatter",
  1003. "version": "v1.2.17",
  1004. "source": {
  1005. "type": "git",
  1006. "url": "https://github.com/jdorn/sql-formatter.git",
  1007. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  1008. },
  1009. "dist": {
  1010. "type": "zip",
  1011. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  1012. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  1013. "shasum": ""
  1014. },
  1015. "require": {
  1016. "php": ">=5.2.4"
  1017. },
  1018. "require-dev": {
  1019. "phpunit/phpunit": "3.7.*"
  1020. },
  1021. "type": "library",
  1022. "extra": {
  1023. "branch-alias": {
  1024. "dev-master": "1.3.x-dev"
  1025. }
  1026. },
  1027. "autoload": {
  1028. "classmap": [
  1029. "lib"
  1030. ]
  1031. },
  1032. "notification-url": "https://packagist.org/downloads/",
  1033. "license": [
  1034. "MIT"
  1035. ],
  1036. "authors": [
  1037. {
  1038. "name": "Jeremy Dorn",
  1039. "email": "[email protected]",
  1040. "homepage": "http://jeremydorn.com/"
  1041. }
  1042. ],
  1043. "description": "a PHP SQL highlighting library",
  1044. "homepage": "https://github.com/jdorn/sql-formatter/",
  1045. "keywords": [
  1046. "highlight",
  1047. "sql"
  1048. ],
  1049. "time": "2014-01-12T16:20:24+00:00"
  1050. },
  1051. {
  1052. "name": "psr/cache",
  1053. "version": "1.0.1",
  1054. "source": {
  1055. "type": "git",
  1056. "url": "https://github.com/php-fig/cache.git",
  1057. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1058. },
  1059. "dist": {
  1060. "type": "zip",
  1061. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1062. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1063. "shasum": ""
  1064. },
  1065. "require": {
  1066. "php": ">=5.3.0"
  1067. },
  1068. "type": "library",
  1069. "extra": {
  1070. "branch-alias": {
  1071. "dev-master": "1.0.x-dev"
  1072. }
  1073. },
  1074. "autoload": {
  1075. "psr-4": {
  1076. "Psr\\Cache\\": "src/"
  1077. }
  1078. },
  1079. "notification-url": "https://packagist.org/downloads/",
  1080. "license": [
  1081. "MIT"
  1082. ],
  1083. "authors": [
  1084. {
  1085. "name": "PHP-FIG",
  1086. "homepage": "http://www.php-fig.org/"
  1087. }
  1088. ],
  1089. "description": "Common interface for caching libraries",
  1090. "keywords": [
  1091. "cache",
  1092. "psr",
  1093. "psr-6"
  1094. ],
  1095. "time": "2016-08-06T20:24:11+00:00"
  1096. },
  1097. {
  1098. "name": "psr/container",
  1099. "version": "1.0.0",
  1100. "source": {
  1101. "type": "git",
  1102. "url": "https://github.com/php-fig/container.git",
  1103. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1104. },
  1105. "dist": {
  1106. "type": "zip",
  1107. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1108. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1109. "shasum": ""
  1110. },
  1111. "require": {
  1112. "php": ">=5.3.0"
  1113. },
  1114. "type": "library",
  1115. "extra": {
  1116. "branch-alias": {
  1117. "dev-master": "1.0.x-dev"
  1118. }
  1119. },
  1120. "autoload": {
  1121. "psr-4": {
  1122. "Psr\\Container\\": "src/"
  1123. }
  1124. },
  1125. "notification-url": "https://packagist.org/downloads/",
  1126. "license": [
  1127. "MIT"
  1128. ],
  1129. "authors": [
  1130. {
  1131. "name": "PHP-FIG",
  1132. "homepage": "http://www.php-fig.org/"
  1133. }
  1134. ],
  1135. "description": "Common Container Interface (PHP FIG PSR-11)",
  1136. "homepage": "https://github.com/php-fig/container",
  1137. "keywords": [
  1138. "PSR-11",
  1139. "container",
  1140. "container-interface",
  1141. "container-interop",
  1142. "psr"
  1143. ],
  1144. "time": "2017-02-14T16:28:37+00:00"
  1145. },
  1146. {
  1147. "name": "psr/event-dispatcher",
  1148. "version": "1.0.0",
  1149. "source": {
  1150. "type": "git",
  1151. "url": "https://github.com/php-fig/event-dispatcher.git",
  1152. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1153. },
  1154. "dist": {
  1155. "type": "zip",
  1156. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1157. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1158. "shasum": ""
  1159. },
  1160. "require": {
  1161. "php": ">=7.2.0"
  1162. },
  1163. "type": "library",
  1164. "extra": {
  1165. "branch-alias": {
  1166. "dev-master": "1.0.x-dev"
  1167. }
  1168. },
  1169. "autoload": {
  1170. "psr-4": {
  1171. "Psr\\EventDispatcher\\": "src/"
  1172. }
  1173. },
  1174. "notification-url": "https://packagist.org/downloads/",
  1175. "license": [
  1176. "MIT"
  1177. ],
  1178. "authors": [
  1179. {
  1180. "name": "PHP-FIG",
  1181. "homepage": "http://www.php-fig.org/"
  1182. }
  1183. ],
  1184. "description": "Standard interfaces for event handling.",
  1185. "keywords": [
  1186. "events",
  1187. "psr",
  1188. "psr-14"
  1189. ],
  1190. "time": "2019-01-08T18:20:26+00:00"
  1191. },
  1192. {
  1193. "name": "psr/log",
  1194. "version": "1.1.2",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/php-fig/log.git",
  1198. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  1203. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  1204. "shasum": ""
  1205. },
  1206. "require": {
  1207. "php": ">=5.3.0"
  1208. },
  1209. "type": "library",
  1210. "extra": {
  1211. "branch-alias": {
  1212. "dev-master": "1.1.x-dev"
  1213. }
  1214. },
  1215. "autoload": {
  1216. "psr-4": {
  1217. "Psr\\Log\\": "Psr/Log/"
  1218. }
  1219. },
  1220. "notification-url": "https://packagist.org/downloads/",
  1221. "license": [
  1222. "MIT"
  1223. ],
  1224. "authors": [
  1225. {
  1226. "name": "PHP-FIG",
  1227. "homepage": "http://www.php-fig.org/"
  1228. }
  1229. ],
  1230. "description": "Common interface for logging libraries",
  1231. "homepage": "https://github.com/php-fig/log",
  1232. "keywords": [
  1233. "log",
  1234. "psr",
  1235. "psr-3"
  1236. ],
  1237. "time": "2019-11-01T11:05:21+00:00"
  1238. },
  1239. {
  1240. "name": "symfony/cache",
  1241. "version": "v5.0.3",
  1242. "source": {
  1243. "type": "git",
  1244. "url": "https://github.com/symfony/cache.git",
  1245. "reference": "b503e72c8e2fa55eed9e2d3dd6a166f3eaaabb9a"
  1246. },
  1247. "dist": {
  1248. "type": "zip",
  1249. "url": "https://api.github.com/repos/symfony/cache/zipball/b503e72c8e2fa55eed9e2d3dd6a166f3eaaabb9a",
  1250. "reference": "b503e72c8e2fa55eed9e2d3dd6a166f3eaaabb9a",
  1251. "shasum": ""
  1252. },
  1253. "require": {
  1254. "php": "^7.2.5",
  1255. "psr/cache": "~1.0",
  1256. "psr/log": "~1.0",
  1257. "symfony/cache-contracts": "^1.1.7|^2",
  1258. "symfony/service-contracts": "^1.1|^2",
  1259. "symfony/var-exporter": "^4.4|^5.0"
  1260. },
  1261. "conflict": {
  1262. "doctrine/dbal": "<2.5",
  1263. "symfony/dependency-injection": "<4.4",
  1264. "symfony/http-kernel": "<4.4",
  1265. "symfony/var-dumper": "<4.4"
  1266. },
  1267. "provide": {
  1268. "psr/cache-implementation": "1.0",
  1269. "psr/simple-cache-implementation": "1.0",
  1270. "symfony/cache-implementation": "1.0"
  1271. },
  1272. "require-dev": {
  1273. "cache/integration-tests": "dev-master",
  1274. "doctrine/cache": "~1.6",
  1275. "doctrine/dbal": "~2.5",
  1276. "predis/predis": "~1.1",
  1277. "psr/simple-cache": "^1.0",
  1278. "symfony/config": "^4.4|^5.0",
  1279. "symfony/dependency-injection": "^4.4|^5.0",
  1280. "symfony/var-dumper": "^4.4|^5.0"
  1281. },
  1282. "type": "library",
  1283. "extra": {
  1284. "branch-alias": {
  1285. "dev-master": "5.0-dev"
  1286. }
  1287. },
  1288. "autoload": {
  1289. "psr-4": {
  1290. "Symfony\\Component\\Cache\\": ""
  1291. },
  1292. "exclude-from-classmap": [
  1293. "/Tests/"
  1294. ]
  1295. },
  1296. "notification-url": "https://packagist.org/downloads/",
  1297. "license": [
  1298. "MIT"
  1299. ],
  1300. "authors": [
  1301. {
  1302. "name": "Nicolas Grekas",
  1303. "email": "[email protected]"
  1304. },
  1305. {
  1306. "name": "Symfony Community",
  1307. "homepage": "https://symfony.com/contributors"
  1308. }
  1309. ],
  1310. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  1311. "homepage": "https://symfony.com",
  1312. "keywords": [
  1313. "caching",
  1314. "psr6"
  1315. ],
  1316. "time": "2020-01-10T21:57:37+00:00"
  1317. },
  1318. {
  1319. "name": "symfony/cache-contracts",
  1320. "version": "v2.0.1",
  1321. "source": {
  1322. "type": "git",
  1323. "url": "https://github.com/symfony/cache-contracts.git",
  1324. "reference": "23ed8bfc1a4115feca942cb5f1aacdf3dcdf3c16"
  1325. },
  1326. "dist": {
  1327. "type": "zip",
  1328. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/23ed8bfc1a4115feca942cb5f1aacdf3dcdf3c16",
  1329. "reference": "23ed8bfc1a4115feca942cb5f1aacdf3dcdf3c16",
  1330. "shasum": ""
  1331. },
  1332. "require": {
  1333. "php": "^7.2.5",
  1334. "psr/cache": "^1.0"
  1335. },
  1336. "suggest": {
  1337. "symfony/cache-implementation": ""
  1338. },
  1339. "type": "library",
  1340. "extra": {
  1341. "branch-alias": {
  1342. "dev-master": "2.0-dev"
  1343. }
  1344. },
  1345. "autoload": {
  1346. "psr-4": {
  1347. "Symfony\\Contracts\\Cache\\": ""
  1348. }
  1349. },
  1350. "notification-url": "https://packagist.org/downloads/",
  1351. "license": [
  1352. "MIT"
  1353. ],
  1354. "authors": [
  1355. {
  1356. "name": "Nicolas Grekas",
  1357. "email": "[email protected]"
  1358. },
  1359. {
  1360. "name": "Symfony Community",
  1361. "homepage": "https://symfony.com/contributors"
  1362. }
  1363. ],
  1364. "description": "Generic abstractions related to caching",
  1365. "homepage": "https://symfony.com",
  1366. "keywords": [
  1367. "abstractions",
  1368. "contracts",
  1369. "decoupling",
  1370. "interfaces",
  1371. "interoperability",
  1372. "standards"
  1373. ],
  1374. "time": "2019-11-18T17:27:11+00:00"
  1375. },
  1376. {
  1377. "name": "symfony/config",
  1378. "version": "v5.0.3",
  1379. "source": {
  1380. "type": "git",
  1381. "url": "https://github.com/symfony/config.git",
  1382. "reference": "7640c6704f56bf64045066bc5d93fd9d664baa63"
  1383. },
  1384. "dist": {
  1385. "type": "zip",
  1386. "url": "https://api.github.com/repos/symfony/config/zipball/7640c6704f56bf64045066bc5d93fd9d664baa63",
  1387. "reference": "7640c6704f56bf64045066bc5d93fd9d664baa63",
  1388. "shasum": ""
  1389. },
  1390. "require": {
  1391. "php": "^7.2.5",
  1392. "symfony/filesystem": "^4.4|^5.0",
  1393. "symfony/polyfill-ctype": "~1.8"
  1394. },
  1395. "conflict": {
  1396. "symfony/finder": "<4.4"
  1397. },
  1398. "require-dev": {
  1399. "symfony/event-dispatcher": "^4.4|^5.0",
  1400. "symfony/finder": "^4.4|^5.0",
  1401. "symfony/messenger": "^4.4|^5.0",
  1402. "symfony/service-contracts": "^1.1|^2",
  1403. "symfony/yaml": "^4.4|^5.0"
  1404. },
  1405. "suggest": {
  1406. "symfony/yaml": "To use the yaml reference dumper"
  1407. },
  1408. "type": "library",
  1409. "extra": {
  1410. "branch-alias": {
  1411. "dev-master": "5.0-dev"
  1412. }
  1413. },
  1414. "autoload": {
  1415. "psr-4": {
  1416. "Symfony\\Component\\Config\\": ""
  1417. },
  1418. "exclude-from-classmap": [
  1419. "/Tests/"
  1420. ]
  1421. },
  1422. "notification-url": "https://packagist.org/downloads/",
  1423. "license": [
  1424. "MIT"
  1425. ],
  1426. "authors": [
  1427. {
  1428. "name": "Fabien Potencier",
  1429. "email": "[email protected]"
  1430. },
  1431. {
  1432. "name": "Symfony Community",
  1433. "homepage": "https://symfony.com/contributors"
  1434. }
  1435. ],
  1436. "description": "Symfony Config Component",
  1437. "homepage": "https://symfony.com",
  1438. "time": "2020-01-04T14:08:26+00:00"
  1439. },
  1440. {
  1441. "name": "symfony/console",
  1442. "version": "v5.0.3",
  1443. "source": {
  1444. "type": "git",
  1445. "url": "https://github.com/symfony/console.git",
  1446. "reference": "345ab6ecb456b5147ea3b3271d7f1f00aadfd257"
  1447. },
  1448. "dist": {
  1449. "type": "zip",
  1450. "url": "https://api.github.com/repos/symfony/console/zipball/345ab6ecb456b5147ea3b3271d7f1f00aadfd257",
  1451. "reference": "345ab6ecb456b5147ea3b3271d7f1f00aadfd257",
  1452. "shasum": ""
  1453. },
  1454. "require": {
  1455. "php": "^7.2.5",
  1456. "symfony/polyfill-mbstring": "~1.0",
  1457. "symfony/polyfill-php73": "^1.8",
  1458. "symfony/service-contracts": "^1.1|^2"
  1459. },
  1460. "conflict": {
  1461. "symfony/dependency-injection": "<4.4",
  1462. "symfony/event-dispatcher": "<4.4",
  1463. "symfony/lock": "<4.4",
  1464. "symfony/process": "<4.4"
  1465. },
  1466. "provide": {
  1467. "psr/log-implementation": "1.0"
  1468. },
  1469. "require-dev": {
  1470. "psr/log": "~1.0",
  1471. "symfony/config": "^4.4|^5.0",
  1472. "symfony/dependency-injection": "^4.4|^5.0",
  1473. "symfony/event-dispatcher": "^4.4|^5.0",
  1474. "symfony/lock": "^4.4|^5.0",
  1475. "symfony/process": "^4.4|^5.0",
  1476. "symfony/var-dumper": "^4.4|^5.0"
  1477. },
  1478. "suggest": {
  1479. "psr/log": "For using the console logger",
  1480. "symfony/event-dispatcher": "",
  1481. "symfony/lock": "",
  1482. "symfony/process": ""
  1483. },
  1484. "type": "library",
  1485. "extra": {
  1486. "branch-alias": {
  1487. "dev-master": "5.0-dev"
  1488. }
  1489. },
  1490. "autoload": {
  1491. "psr-4": {
  1492. "Symfony\\Component\\Console\\": ""
  1493. },
  1494. "exclude-from-classmap": [
  1495. "/Tests/"
  1496. ]
  1497. },
  1498. "notification-url": "https://packagist.org/downloads/",
  1499. "license": [
  1500. "MIT"
  1501. ],
  1502. "authors": [
  1503. {
  1504. "name": "Fabien Potencier",
  1505. "email": "[email protected]"
  1506. },
  1507. {
  1508. "name": "Symfony Community",
  1509. "homepage": "https://symfony.com/contributors"
  1510. }
  1511. ],
  1512. "description": "Symfony Console Component",
  1513. "homepage": "https://symfony.com",
  1514. "time": "2020-01-19T11:13:19+00:00"
  1515. },
  1516. {
  1517. "name": "symfony/dependency-injection",
  1518. "version": "v5.0.3",
  1519. "source": {
  1520. "type": "git",
  1521. "url": "https://github.com/symfony/dependency-injection.git",
  1522. "reference": "5a56807650c7258bbcc4a15a020904958c70247e"
  1523. },
  1524. "dist": {
  1525. "type": "zip",
  1526. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/5a56807650c7258bbcc4a15a020904958c70247e",
  1527. "reference": "5a56807650c7258bbcc4a15a020904958c70247e",
  1528. "shasum": ""
  1529. },
  1530. "require": {
  1531. "php": "^7.2.5",
  1532. "psr/container": "^1.0",
  1533. "symfony/service-contracts": "^1.1.6|^2"
  1534. },
  1535. "conflict": {
  1536. "symfony/config": "<5.0",
  1537. "symfony/finder": "<4.4",
  1538. "symfony/proxy-manager-bridge": "<4.4",
  1539. "symfony/yaml": "<4.4"
  1540. },
  1541. "provide": {
  1542. "psr/container-implementation": "1.0",
  1543. "symfony/service-implementation": "1.0"
  1544. },
  1545. "require-dev": {
  1546. "symfony/config": "^5.0",
  1547. "symfony/expression-language": "^4.4|^5.0",
  1548. "symfony/yaml": "^4.4|^5.0"
  1549. },
  1550. "suggest": {
  1551. "symfony/config": "",
  1552. "symfony/expression-language": "For using expressions in service container configuration",
  1553. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  1554. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  1555. "symfony/yaml": ""
  1556. },
  1557. "type": "library",
  1558. "extra": {
  1559. "branch-alias": {
  1560. "dev-master": "5.0-dev"
  1561. }
  1562. },
  1563. "autoload": {
  1564. "psr-4": {
  1565. "Symfony\\Component\\DependencyInjection\\": ""
  1566. },
  1567. "exclude-from-classmap": [
  1568. "/Tests/"
  1569. ]
  1570. },
  1571. "notification-url": "https://packagist.org/downloads/",
  1572. "license": [
  1573. "MIT"
  1574. ],
  1575. "authors": [
  1576. {
  1577. "name": "Fabien Potencier",
  1578. "email": "[email protected]"
  1579. },
  1580. {
  1581. "name": "Symfony Community",
  1582. "homepage": "https://symfony.com/contributors"
  1583. }
  1584. ],
  1585. "description": "Symfony DependencyInjection Component",
  1586. "homepage": "https://symfony.com",
  1587. "time": "2020-01-21T08:40:24+00:00"
  1588. },
  1589. {
  1590. "name": "symfony/doctrine-bridge",
  1591. "version": "v5.0.3",
  1592. "source": {
  1593. "type": "git",
  1594. "url": "https://github.com/symfony/doctrine-bridge.git",
  1595. "reference": "1eda484039e4460101f945470d28ae6e8bdcf0e5"
  1596. },
  1597. "dist": {
  1598. "type": "zip",
  1599. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/1eda484039e4460101f945470d28ae6e8bdcf0e5",
  1600. "reference": "1eda484039e4460101f945470d28ae6e8bdcf0e5",
  1601. "shasum": ""
  1602. },
  1603. "require": {
  1604. "doctrine/event-manager": "~1.0",
  1605. "doctrine/persistence": "^1.3",
  1606. "php": "^7.2.5",
  1607. "symfony/polyfill-ctype": "~1.8",
  1608. "symfony/polyfill-mbstring": "~1.0",
  1609. "symfony/service-contracts": "^1.1|^2"
  1610. },
  1611. "conflict": {
  1612. "phpunit/phpunit": "<5.4.3",
  1613. "symfony/dependency-injection": "<4.4",
  1614. "symfony/form": "<5",
  1615. "symfony/http-kernel": "<5",
  1616. "symfony/messenger": "<4.4",
  1617. "symfony/property-info": "<5",
  1618. "symfony/security-bundle": "<5",
  1619. "symfony/security-core": "<5",
  1620. "symfony/validator": "<5.0.2"
  1621. },
  1622. "require-dev": {
  1623. "doctrine/annotations": "~1.7",
  1624. "doctrine/cache": "~1.6",
  1625. "doctrine/collections": "~1.0",
  1626. "doctrine/data-fixtures": "1.0.*",
  1627. "doctrine/dbal": "~2.4",
  1628. "doctrine/orm": "^2.6.3",
  1629. "doctrine/reflection": "~1.0",
  1630. "symfony/config": "^4.4|^5.0",
  1631. "symfony/dependency-injection": "^4.4|^5.0",
  1632. "symfony/expression-language": "^4.4|^5.0",
  1633. "symfony/form": "^5.0",
  1634. "symfony/http-kernel": "^5.0",
  1635. "symfony/messenger": "^4.4|^5.0",
  1636. "symfony/property-access": "^4.4|^5.0",
  1637. "symfony/property-info": "^5.0",
  1638. "symfony/proxy-manager-bridge": "^4.4|^5.0",
  1639. "symfony/security-core": "^5.0",
  1640. "symfony/stopwatch": "^4.4|^5.0",
  1641. "symfony/translation": "^4.4|^5.0",
  1642. "symfony/validator": "^5.0.2",
  1643. "symfony/var-dumper": "^4.4|^5.0"
  1644. },
  1645. "suggest": {
  1646. "doctrine/data-fixtures": "",
  1647. "doctrine/dbal": "",
  1648. "doctrine/orm": "",
  1649. "symfony/form": "",
  1650. "symfony/property-info": "",
  1651. "symfony/validator": ""
  1652. },
  1653. "type": "symfony-bridge",
  1654. "extra": {
  1655. "branch-alias": {
  1656. "dev-master": "5.0-dev"
  1657. }
  1658. },
  1659. "autoload": {
  1660. "psr-4": {
  1661. "Symfony\\Bridge\\Doctrine\\": ""
  1662. },
  1663. "exclude-from-classmap": [
  1664. "/Tests/"
  1665. ]
  1666. },
  1667. "notification-url": "https://packagist.org/downloads/",
  1668. "license": [
  1669. "MIT"
  1670. ],
  1671. "authors": [
  1672. {
  1673. "name": "Fabien Potencier",
  1674. "email": "[email protected]"
  1675. },
  1676. {
  1677. "name": "Symfony Community",
  1678. "homepage": "https://symfony.com/contributors"
  1679. }
  1680. ],
  1681. "description": "Symfony Doctrine Bridge",
  1682. "homepage": "https://symfony.com",
  1683. "time": "2020-01-04T14:08:26+00:00"
  1684. },
  1685. {
  1686. "name": "symfony/dotenv",
  1687. "version": "v5.0.3",
  1688. "source": {
  1689. "type": "git",
  1690. "url": "https://github.com/symfony/dotenv.git",
  1691. "reference": "8331da80cc35fe903db0ff142376d518804ff1b1"
  1692. },
  1693. "dist": {
  1694. "type": "zip",
  1695. "url": "https://api.github.com/repos/symfony/dotenv/zipball/8331da80cc35fe903db0ff142376d518804ff1b1",
  1696. "reference": "8331da80cc35fe903db0ff142376d518804ff1b1",
  1697. "shasum": ""
  1698. },
  1699. "require": {
  1700. "php": "^7.2.5"
  1701. },
  1702. "require-dev": {
  1703. "symfony/process": "^4.4|^5.0"
  1704. },
  1705. "type": "library",
  1706. "extra": {
  1707. "branch-alias": {
  1708. "dev-master": "5.0-dev"
  1709. }
  1710. },
  1711. "autoload": {
  1712. "psr-4": {
  1713. "Symfony\\Component\\Dotenv\\": ""
  1714. },
  1715. "exclude-from-classmap": [
  1716. "/Tests/"
  1717. ]
  1718. },
  1719. "notification-url": "https://packagist.org/downloads/",
  1720. "license": [
  1721. "MIT"
  1722. ],
  1723. "authors": [
  1724. {
  1725. "name": "Fabien Potencier",
  1726. "email": "[email protected]"
  1727. },
  1728. {
  1729. "name": "Symfony Community",
  1730. "homepage": "https://symfony.com/contributors"
  1731. }
  1732. ],
  1733. "description": "Registers environment variables from a .env file",
  1734. "homepage": "https://symfony.com",
  1735. "keywords": [
  1736. "dotenv",
  1737. "env",
  1738. "environment"
  1739. ],
  1740. "time": "2020-01-08T17:33:29+00:00"
  1741. },
  1742. {
  1743. "name": "symfony/error-handler",
  1744. "version": "v5.0.3",
  1745. "source": {
  1746. "type": "git",
  1747. "url": "https://github.com/symfony/error-handler.git",
  1748. "reference": "95f64c1d7dfb86a722dc9d278d0edf5176eff16e"
  1749. },
  1750. "dist": {
  1751. "type": "zip",
  1752. "url": "https://api.github.com/repos/symfony/error-handler/zipball/95f64c1d7dfb86a722dc9d278d0edf5176eff16e",
  1753. "reference": "95f64c1d7dfb86a722dc9d278d0edf5176eff16e",
  1754. "shasum": ""
  1755. },
  1756. "require": {
  1757. "php": "^7.2.5",
  1758. "psr/log": "^1.0",
  1759. "symfony/var-dumper": "^4.4|^5.0"
  1760. },
  1761. "require-dev": {
  1762. "symfony/http-kernel": "^4.4|^5.0",
  1763. "symfony/serializer": "^4.4|^5.0"
  1764. },
  1765. "type": "library",
  1766. "extra": {
  1767. "branch-alias": {
  1768. "dev-master": "5.0-dev"
  1769. }
  1770. },
  1771. "autoload": {
  1772. "psr-4": {
  1773. "Symfony\\Component\\ErrorHandler\\": ""
  1774. },
  1775. "exclude-from-classmap": [
  1776. "/Tests/"
  1777. ]
  1778. },
  1779. "notification-url": "https://packagist.org/downloads/",
  1780. "license": [
  1781. "MIT"
  1782. ],
  1783. "authors": [
  1784. {
  1785. "name": "Fabien Potencier",
  1786. "email": "[email protected]"
  1787. },
  1788. {
  1789. "name": "Symfony Community",
  1790. "homepage": "https://symfony.com/contributors"
  1791. }
  1792. ],
  1793. "description": "Symfony ErrorHandler Component",
  1794. "homepage": "https://symfony.com",
  1795. "time": "2020-01-08T17:33:29+00:00"
  1796. },
  1797. {
  1798. "name": "symfony/event-dispatcher",
  1799. "version": "v5.0.3",
  1800. "source": {
  1801. "type": "git",
  1802. "url": "https://github.com/symfony/event-dispatcher.git",
  1803. "reference": "4a7a8cdca1120c091b4797f0e5bba69c1e783224"
  1804. },
  1805. "dist": {
  1806. "type": "zip",
  1807. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4a7a8cdca1120c091b4797f0e5bba69c1e783224",
  1808. "reference": "4a7a8cdca1120c091b4797f0e5bba69c1e783224",
  1809. "shasum": ""
  1810. },
  1811. "require": {
  1812. "php": "^7.2.5",
  1813. "symfony/event-dispatcher-contracts": "^2"
  1814. },
  1815. "conflict": {
  1816. "symfony/dependency-injection": "<4.4"
  1817. },
  1818. "provide": {
  1819. "psr/event-dispatcher-implementation": "1.0",
  1820. "symfony/event-dispatcher-implementation": "2.0"
  1821. },
  1822. "require-dev": {
  1823. "psr/log": "~1.0",
  1824. "symfony/config": "^4.4|^5.0",
  1825. "symfony/dependency-injection": "^4.4|^5.0",
  1826. "symfony/expression-language": "^4.4|^5.0",
  1827. "symfony/http-foundation": "^4.4|^5.0",
  1828. "symfony/service-contracts": "^1.1|^2",
  1829. "symfony/stopwatch": "^4.4|^5.0"
  1830. },
  1831. "suggest": {
  1832. "symfony/dependency-injection": "",
  1833. "symfony/http-kernel": ""
  1834. },
  1835. "type": "library",
  1836. "extra": {
  1837. "branch-alias": {
  1838. "dev-master": "5.0-dev"
  1839. }
  1840. },
  1841. "autoload": {
  1842. "psr-4": {
  1843. "Symfony\\Component\\EventDispatcher\\": ""
  1844. },
  1845. "exclude-from-classmap": [
  1846. "/Tests/"
  1847. ]
  1848. },
  1849. "notification-url": "https://packagist.org/downloads/",
  1850. "license": [
  1851. "MIT"
  1852. ],
  1853. "authors": [
  1854. {
  1855. "name": "Fabien Potencier",
  1856. "email": "[email protected]"
  1857. },
  1858. {
  1859. "name": "Symfony Community",
  1860. "homepage": "https://symfony.com/contributors"
  1861. }
  1862. ],
  1863. "description": "Symfony EventDispatcher Component",
  1864. "homepage": "https://symfony.com",
  1865. "time": "2020-01-10T21:57:37+00:00"
  1866. },
  1867. {
  1868. "name": "symfony/event-dispatcher-contracts",
  1869. "version": "v2.0.1",
  1870. "source": {
  1871. "type": "git",
  1872. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  1873. "reference": "af23c2584d4577d54661c434446fb8fbed6025dd"
  1874. },
  1875. "dist": {
  1876. "type": "zip",
  1877. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/af23c2584d4577d54661c434446fb8fbed6025dd",
  1878. "reference": "af23c2584d4577d54661c434446fb8fbed6025dd",
  1879. "shasum": ""
  1880. },
  1881. "require": {
  1882. "php": "^7.2.5",
  1883. "psr/event-dispatcher": "^1"
  1884. },
  1885. "suggest": {
  1886. "symfony/event-dispatcher-implementation": ""
  1887. },
  1888. "type": "library",
  1889. "extra": {
  1890. "branch-alias": {
  1891. "dev-master": "2.0-dev"
  1892. }
  1893. },
  1894. "autoload": {
  1895. "psr-4": {
  1896. "Symfony\\Contracts\\EventDispatcher\\": ""
  1897. }
  1898. },
  1899. "notification-url": "https://packagist.org/downloads/",
  1900. "license": [
  1901. "MIT"
  1902. ],
  1903. "authors": [
  1904. {
  1905. "name": "Nicolas Grekas",
  1906. "email": "[email protected]"
  1907. },
  1908. {
  1909. "name": "Symfony Community",
  1910. "homepage": "https://symfony.com/contributors"
  1911. }
  1912. ],
  1913. "description": "Generic abstractions related to dispatching event",
  1914. "homepage": "https://symfony.com",
  1915. "keywords": [
  1916. "abstractions",
  1917. "contracts",
  1918. "decoupling",
  1919. "interfaces",
  1920. "interoperability",
  1921. "standards"
  1922. ],
  1923. "time": "2019-11-18T17:27:11+00:00"
  1924. },
  1925. {
  1926. "name": "symfony/filesystem",
  1927. "version": "v5.0.3",
  1928. "source": {
  1929. "type": "git",
  1930. "url": "https://github.com/symfony/filesystem.git",
  1931. "reference": "3afadc0f57cd74f86379d073e694b0f2cda2a88c"
  1932. },
  1933. "dist": {
  1934. "type": "zip",
  1935. "url": "https://api.github.com/repos/symfony/filesystem/zipball/3afadc0f57cd74f86379d073e694b0f2cda2a88c",
  1936. "reference": "3afadc0f57cd74f86379d073e694b0f2cda2a88c",
  1937. "shasum": ""
  1938. },
  1939. "require": {
  1940. "php": "^7.2.5",
  1941. "symfony/polyfill-ctype": "~1.8"
  1942. },
  1943. "type": "library",
  1944. "extra": {
  1945. "branch-alias": {
  1946. "dev-master": "5.0-dev"
  1947. }
  1948. },
  1949. "autoload": {
  1950. "psr-4": {
  1951. "Symfony\\Component\\Filesystem\\": ""
  1952. },
  1953. "exclude-from-classmap": [
  1954. "/Tests/"
  1955. ]
  1956. },
  1957. "notification-url": "https://packagist.org/downloads/",
  1958. "license": [
  1959. "MIT"
  1960. ],
  1961. "authors": [
  1962. {
  1963. "name": "Fabien Potencier",
  1964. "email": "[email protected]"
  1965. },
  1966. {
  1967. "name": "Symfony Community",
  1968. "homepage": "https://symfony.com/contributors"
  1969. }
  1970. ],
  1971. "description": "Symfony Filesystem Component",
  1972. "homepage": "https://symfony.com",
  1973. "time": "2020-01-21T08:40:24+00:00"
  1974. },
  1975. {
  1976. "name": "symfony/finder",
  1977. "version": "v5.0.3",
  1978. "source": {
  1979. "type": "git",
  1980. "url": "https://github.com/symfony/finder.git",
  1981. "reference": "4176e7cb846fe08f32518b7e0ed8462e2db8d9bb"
  1982. },
  1983. "dist": {
  1984. "type": "zip",
  1985. "url": "https://api.github.com/repos/symfony/finder/zipball/4176e7cb846fe08f32518b7e0ed8462e2db8d9bb",
  1986. "reference": "4176e7cb846fe08f32518b7e0ed8462e2db8d9bb",
  1987. "shasum": ""
  1988. },
  1989. "require": {
  1990. "php": "^7.2.5"
  1991. },
  1992. "type": "library",
  1993. "extra": {
  1994. "branch-alias": {
  1995. "dev-master": "5.0-dev"
  1996. }
  1997. },
  1998. "autoload": {
  1999. "psr-4": {
  2000. "Symfony\\Component\\Finder\\": ""
  2001. },
  2002. "exclude-from-classmap": [
  2003. "/Tests/"
  2004. ]
  2005. },
  2006. "notification-url": "https://packagist.org/downloads/",
  2007. "license": [
  2008. "MIT"
  2009. ],
  2010. "authors": [
  2011. {
  2012. "name": "Fabien Potencier",
  2013. "email": "[email protected]"
  2014. },
  2015. {
  2016. "name": "Symfony Community",
  2017. "homepage": "https://symfony.com/contributors"
  2018. }
  2019. ],
  2020. "description": "Symfony Finder Component",
  2021. "homepage": "https://symfony.com",
  2022. "time": "2020-01-04T14:08:26+00:00"
  2023. },
  2024. {
  2025. "name": "symfony/flex",
  2026. "version": "v1.6.0",
  2027. "source": {
  2028. "type": "git",
  2029. "url": "https://github.com/symfony/flex.git",
  2030. "reference": "952f45d1c5077e658cb16a61d11603bee873f968"
  2031. },
  2032. "dist": {
  2033. "type": "zip",
  2034. "url": "https://api.github.com/repos/symfony/flex/zipball/952f45d1c5077e658cb16a61d11603bee873f968",
  2035. "reference": "952f45d1c5077e658cb16a61d11603bee873f968",
  2036. "shasum": ""
  2037. },
  2038. "require": {
  2039. "composer-plugin-api": "^1.0",
  2040. "php": "^7.0"
  2041. },
  2042. "require-dev": {
  2043. "composer/composer": "^1.0.2",
  2044. "symfony/dotenv": "^3.4|^4.0|^5.0",
  2045. "symfony/phpunit-bridge": "^3.4.19|^4.1.8|^5.0",
  2046. "symfony/process": "^2.7|^3.0|^4.0|^5.0"
  2047. },
  2048. "type": "composer-plugin",
  2049. "extra": {
  2050. "branch-alias": {
  2051. "dev-master": "1.5-dev"
  2052. },
  2053. "class": "Symfony\\Flex\\Flex"
  2054. },
  2055. "autoload": {
  2056. "psr-4": {
  2057. "Symfony\\Flex\\": "src"
  2058. }
  2059. },
  2060. "notification-url": "https://packagist.org/downloads/",
  2061. "license": [
  2062. "MIT"
  2063. ],
  2064. "authors": [
  2065. {
  2066. "name": "Fabien Potencier",
  2067. "email": "[email protected]"
  2068. }
  2069. ],
  2070. "description": "Composer plugin for Symfony",
  2071. "time": "2019-12-13T18:05:11+00:00"
  2072. },
  2073. {
  2074. "name": "symfony/framework-bundle",
  2075. "version": "v5.0.3",
  2076. "source": {
  2077. "type": "git",
  2078. "url": "https://github.com/symfony/framework-bundle.git",
  2079. "reference": "cc59bc797b77c6ecccd6c87d9052f6b3eb6a8d63"
  2080. },
  2081. "dist": {
  2082. "type": "zip",
  2083. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/cc59bc797b77c6ecccd6c87d9052f6b3eb6a8d63",
  2084. "reference": "cc59bc797b77c6ecccd6c87d9052f6b3eb6a8d63",
  2085. "shasum": ""
  2086. },
  2087. "require": {
  2088. "ext-xml": "*",
  2089. "php": "^7.2.5",
  2090. "symfony/cache": "^4.4|^5.0",
  2091. "symfony/config": "^5.0",
  2092. "symfony/dependency-injection": "^5.0.1",
  2093. "symfony/error-handler": "^4.4.1|^5.0.1",
  2094. "symfony/filesystem": "^4.4|^5.0",
  2095. "symfony/finder": "^4.4|^5.0",
  2096. "symfony/http-foundation": "^4.4|^5.0",
  2097. "symfony/http-kernel": "^5.0",
  2098. "symfony/polyfill-mbstring": "~1.0",
  2099. "symfony/routing": "^5.0"
  2100. },
  2101. "conflict": {
  2102. "doctrine/persistence": "<1.3",
  2103. "phpdocumentor/reflection-docblock": "<3.0",
  2104. "phpdocumentor/type-resolver": "<0.2.1",
  2105. "phpunit/phpunit": "<5.4.3",
  2106. "symfony/asset": "<4.4",
  2107. "symfony/browser-kit": "<4.4",
  2108. "symfony/console": "<4.4",
  2109. "symfony/dom-crawler": "<4.4",
  2110. "symfony/dotenv": "<4.4",
  2111. "symfony/form": "<4.4",
  2112. "symfony/http-client": "<4.4",
  2113. "symfony/lock": "<4.4",
  2114. "symfony/mailer": "<4.4",
  2115. "symfony/messenger": "<4.4",
  2116. "symfony/mime": "<4.4",
  2117. "symfony/property-info": "<4.4",
  2118. "symfony/serializer": "<4.4",
  2119. "symfony/stopwatch": "<4.4",
  2120. "symfony/translation": "<5.0",
  2121. "symfony/twig-bridge": "<4.4",
  2122. "symfony/twig-bundle": "<4.4",
  2123. "symfony/validator": "<4.4",
  2124. "symfony/web-profiler-bundle": "<4.4",
  2125. "symfony/workflow": "<4.4"
  2126. },
  2127. "require-dev": {
  2128. "doctrine/annotations": "~1.7",
  2129. "doctrine/cache": "~1.0",
  2130. "paragonie/sodium_compat": "^1.8",
  2131. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  2132. "symfony/asset": "^4.4|^5.0",
  2133. "symfony/browser-kit": "^4.4|^5.0",
  2134. "symfony/console": "^4.4|^5.0",
  2135. "symfony/css-selector": "^4.4|^5.0",
  2136. "symfony/dom-crawler": "^4.4|^5.0",
  2137. "symfony/dotenv": "^4.4|^5.0",
  2138. "symfony/expression-language": "^4.4|^5.0",
  2139. "symfony/form": "^4.4|^5.0",
  2140. "symfony/http-client": "^4.4|^5.0",
  2141. "symfony/lock": "^4.4|^5.0",
  2142. "symfony/mailer": "^4.4|^5.0",
  2143. "symfony/messenger": "^4.4|^5.0",
  2144. "symfony/mime": "^4.4|^5.0",
  2145. "symfony/polyfill-intl-icu": "~1.0",
  2146. "symfony/process": "^4.4|^5.0",
  2147. "symfony/property-info": "^4.4|^5.0",
  2148. "symfony/security-csrf": "^4.4|^5.0",
  2149. "symfony/security-http": "^4.4|^5.0",
  2150. "symfony/serializer": "^4.4|^5.0",
  2151. "symfony/stopwatch": "^4.4|^5.0",
  2152. "symfony/string": "~5.0.0",
  2153. "symfony/translation": "^5.0",
  2154. "symfony/twig-bundle": "^4.4|^5.0",
  2155. "symfony/validator": "^4.4|^5.0",
  2156. "symfony/web-link": "^4.4|^5.0",
  2157. "symfony/workflow": "^4.4|^5.0",
  2158. "symfony/yaml": "^4.4|^5.0",
  2159. "twig/twig": "^2.10|^3.0"
  2160. },
  2161. "suggest": {
  2162. "ext-apcu": "For best performance of the system caches",
  2163. "symfony/console": "For using the console commands",
  2164. "symfony/form": "For using forms",
  2165. "symfony/property-info": "For using the property_info service",
  2166. "symfony/serializer": "For using the serializer service",
  2167. "symfony/validator": "For using validation",
  2168. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  2169. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  2170. },
  2171. "type": "symfony-bundle",
  2172. "extra": {
  2173. "branch-alias": {
  2174. "dev-master": "5.0-dev"
  2175. }
  2176. },
  2177. "autoload": {
  2178. "psr-4": {
  2179. "Symfony\\Bundle\\FrameworkBundle\\": ""
  2180. },
  2181. "exclude-from-classmap": [
  2182. "/Tests/"
  2183. ]
  2184. },
  2185. "notification-url": "https://packagist.org/downloads/",
  2186. "license": [
  2187. "MIT"
  2188. ],
  2189. "authors": [
  2190. {
  2191. "name": "Fabien Potencier",
  2192. "email": "[email protected]"
  2193. },
  2194. {
  2195. "name": "Symfony Community",
  2196. "homepage": "https://symfony.com/contributors"
  2197. }
  2198. ],
  2199. "description": "Symfony FrameworkBundle",
  2200. "homepage": "https://symfony.com",
  2201. "time": "2020-01-21T08:40:24+00:00"
  2202. },
  2203. {
  2204. "name": "symfony/http-foundation",
  2205. "version": "v5.0.3",
  2206. "source": {
  2207. "type": "git",
  2208. "url": "https://github.com/symfony/http-foundation.git",
  2209. "reference": "5dc0db5026f2b611cb8910a1f465e95eafd84c2e"
  2210. },
  2211. "dist": {
  2212. "type": "zip",
  2213. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5dc0db5026f2b611cb8910a1f465e95eafd84c2e",
  2214. "reference": "5dc0db5026f2b611cb8910a1f465e95eafd84c2e",
  2215. "shasum": ""
  2216. },
  2217. "require": {
  2218. "php": "^7.2.5",
  2219. "symfony/mime": "^4.4|^5.0",
  2220. "symfony/polyfill-mbstring": "~1.1"
  2221. },
  2222. "require-dev": {
  2223. "predis/predis": "~1.0",
  2224. "symfony/expression-language": "^4.4|^5.0"
  2225. },
  2226. "type": "library",
  2227. "extra": {
  2228. "branch-alias": {
  2229. "dev-master": "5.0-dev"
  2230. }
  2231. },
  2232. "autoload": {
  2233. "psr-4": {
  2234. "Symfony\\Component\\HttpFoundation\\": ""
  2235. },
  2236. "exclude-from-classmap": [
  2237. "/Tests/"
  2238. ]
  2239. },
  2240. "notification-url": "https://packagist.org/downloads/",
  2241. "license": [
  2242. "MIT"
  2243. ],
  2244. "authors": [
  2245. {
  2246. "name": "Fabien Potencier",
  2247. "email": "[email protected]"
  2248. },
  2249. {
  2250. "name": "Symfony Community",
  2251. "homepage": "https://symfony.com/contributors"
  2252. }
  2253. ],
  2254. "description": "Symfony HttpFoundation Component",
  2255. "homepage": "https://symfony.com",
  2256. "time": "2020-01-04T14:08:26+00:00"
  2257. },
  2258. {
  2259. "name": "symfony/http-kernel",
  2260. "version": "v5.0.3",
  2261. "source": {
  2262. "type": "git",
  2263. "url": "https://github.com/symfony/http-kernel.git",
  2264. "reference": "9e31e5e11cbe038cbb853beb3e3bb6e4f2500259"
  2265. },
  2266. "dist": {
  2267. "type": "zip",
  2268. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9e31e5e11cbe038cbb853beb3e3bb6e4f2500259",
  2269. "reference": "9e31e5e11cbe038cbb853beb3e3bb6e4f2500259",
  2270. "shasum": ""
  2271. },
  2272. "require": {
  2273. "php": "^7.2.5",
  2274. "psr/log": "~1.0",
  2275. "symfony/error-handler": "^4.4|^5.0",
  2276. "symfony/event-dispatcher": "^5.0",
  2277. "symfony/http-foundation": "^4.4|^5.0",
  2278. "symfony/polyfill-ctype": "^1.8",
  2279. "symfony/polyfill-php73": "^1.9"
  2280. },
  2281. "conflict": {
  2282. "symfony/browser-kit": "<4.4",
  2283. "symfony/cache": "<5.0",
  2284. "symfony/config": "<5.0",
  2285. "symfony/dependency-injection": "<4.4",
  2286. "symfony/doctrine-bridge": "<5.0",
  2287. "symfony/form": "<5.0",
  2288. "symfony/http-client": "<5.0",
  2289. "symfony/mailer": "<5.0",
  2290. "symfony/messenger": "<5.0",
  2291. "symfony/translation": "<5.0",
  2292. "symfony/twig-bridge": "<5.0",
  2293. "symfony/validator": "<5.0",
  2294. "twig/twig": "<2.4"
  2295. },
  2296. "provide": {
  2297. "psr/log-implementation": "1.0"
  2298. },
  2299. "require-dev": {
  2300. "psr/cache": "~1.0",
  2301. "symfony/browser-kit": "^4.4|^5.0",
  2302. "symfony/config": "^5.0",
  2303. "symfony/console": "^4.4|^5.0",
  2304. "symfony/css-selector": "^4.4|^5.0",
  2305. "symfony/dependency-injection": "^4.4|^5.0",
  2306. "symfony/dom-crawler": "^4.4|^5.0",
  2307. "symfony/expression-language": "^4.4|^5.0",
  2308. "symfony/finder": "^4.4|^5.0",
  2309. "symfony/process": "^4.4|^5.0",
  2310. "symfony/routing": "^4.4|^5.0",
  2311. "symfony/stopwatch": "^4.4|^5.0",
  2312. "symfony/translation": "^4.4|^5.0",
  2313. "symfony/translation-contracts": "^1.1|^2",
  2314. "twig/twig": "^2.4|^3.0"
  2315. },
  2316. "suggest": {
  2317. "symfony/browser-kit": "",
  2318. "symfony/config": "",
  2319. "symfony/console": "",
  2320. "symfony/dependency-injection": ""
  2321. },
  2322. "type": "library",
  2323. "extra": {
  2324. "branch-alias": {
  2325. "dev-master": "5.0-dev"
  2326. }
  2327. },
  2328. "autoload": {
  2329. "psr-4": {
  2330. "Symfony\\Component\\HttpKernel\\": ""
  2331. },
  2332. "exclude-from-classmap": [
  2333. "/Tests/"
  2334. ]
  2335. },
  2336. "notification-url": "https://packagist.org/downloads/",
  2337. "license": [
  2338. "MIT"
  2339. ],
  2340. "authors": [
  2341. {
  2342. "name": "Fabien Potencier",
  2343. "email": "[email protected]"
  2344. },
  2345. {
  2346. "name": "Symfony Community",
  2347. "homepage": "https://symfony.com/contributors"
  2348. }
  2349. ],
  2350. "description": "Symfony HttpKernel Component",
  2351. "homepage": "https://symfony.com",
  2352. "time": "2020-01-21T13:29:58+00:00"
  2353. },
  2354. {
  2355. "name": "symfony/mime",
  2356. "version": "v5.0.3",
  2357. "source": {
  2358. "type": "git",
  2359. "url": "https://github.com/symfony/mime.git",
  2360. "reference": "2a3c7fee1f1a0961fa9cf360d5da553d05095e59"
  2361. },
  2362. "dist": {
  2363. "type": "zip",
  2364. "url": "https://api.github.com/repos/symfony/mime/zipball/2a3c7fee1f1a0961fa9cf360d5da553d05095e59",
  2365. "reference": "2a3c7fee1f1a0961fa9cf360d5da553d05095e59",
  2366. "shasum": ""
  2367. },
  2368. "require": {
  2369. "php": "^7.2.5",
  2370. "symfony/polyfill-intl-idn": "^1.10",
  2371. "symfony/polyfill-mbstring": "^1.0"
  2372. },
  2373. "conflict": {
  2374. "symfony/mailer": "<4.4"
  2375. },
  2376. "require-dev": {
  2377. "egulias/email-validator": "^2.1.10",
  2378. "symfony/dependency-injection": "^4.4|^5.0"
  2379. },
  2380. "type": "library",
  2381. "extra": {
  2382. "branch-alias": {
  2383. "dev-master": "5.0-dev"
  2384. }
  2385. },
  2386. "autoload": {
  2387. "psr-4": {
  2388. "Symfony\\Component\\Mime\\": ""
  2389. },
  2390. "exclude-from-classmap": [
  2391. "/Tests/"
  2392. ]
  2393. },
  2394. "notification-url": "https://packagist.org/downloads/",
  2395. "license": [
  2396. "MIT"
  2397. ],
  2398. "authors": [
  2399. {
  2400. "name": "Fabien Potencier",
  2401. "email": "[email protected]"
  2402. },
  2403. {
  2404. "name": "Symfony Community",
  2405. "homepage": "https://symfony.com/contributors"
  2406. }
  2407. ],
  2408. "description": "A library to manipulate MIME messages",
  2409. "homepage": "https://symfony.com",
  2410. "keywords": [
  2411. "mime",
  2412. "mime-type"
  2413. ],
  2414. "time": "2020-01-04T14:08:26+00:00"
  2415. },
  2416. {
  2417. "name": "symfony/orm-pack",
  2418. "version": "v1.0.7",
  2419. "source": {
  2420. "type": "git",
  2421. "url": "https://github.com/symfony/orm-pack.git",
  2422. "reference": "c57f5e05232ca40626eb9fa52a32bc8565e9231c"
  2423. },
  2424. "dist": {
  2425. "type": "zip",
  2426. "url": "https://api.github.com/repos/symfony/orm-pack/zipball/c57f5e05232ca40626eb9fa52a32bc8565e9231c",
  2427. "reference": "c57f5e05232ca40626eb9fa52a32bc8565e9231c",
  2428. "shasum": ""
  2429. },
  2430. "require": {
  2431. "doctrine/doctrine-bundle": "^1.6.10|^2.0",
  2432. "doctrine/doctrine-migrations-bundle": "^1.3|^2.0",
  2433. "doctrine/orm": "^2.5.11",
  2434. "php": "^7.0"
  2435. },
  2436. "type": "symfony-pack",
  2437. "notification-url": "https://packagist.org/downloads/",
  2438. "license": [
  2439. "MIT"
  2440. ],
  2441. "description": "A pack for the Doctrine ORM",
  2442. "time": "2019-10-18T05:41:09+00:00"
  2443. },
  2444. {
  2445. "name": "symfony/routing",
  2446. "version": "v5.0.3",
  2447. "source": {
  2448. "type": "git",
  2449. "url": "https://github.com/symfony/routing.git",
  2450. "reference": "7da33371d8ecfed6c9d93d87c73749661606f803"
  2451. },
  2452. "dist": {
  2453. "type": "zip",
  2454. "url": "https://api.github.com/repos/symfony/routing/zipball/7da33371d8ecfed6c9d93d87c73749661606f803",
  2455. "reference": "7da33371d8ecfed6c9d93d87c73749661606f803",
  2456. "shasum": ""
  2457. },
  2458. "require": {
  2459. "php": "^7.2.5"
  2460. },
  2461. "conflict": {
  2462. "symfony/config": "<5.0",
  2463. "symfony/dependency-injection": "<4.4",
  2464. "symfony/yaml": "<4.4"
  2465. },
  2466. "require-dev": {
  2467. "doctrine/annotations": "~1.2",
  2468. "psr/log": "~1.0",
  2469. "symfony/config": "^5.0",
  2470. "symfony/dependency-injection": "^4.4|^5.0",
  2471. "symfony/expression-language": "^4.4|^5.0",
  2472. "symfony/http-foundation": "^4.4|^5.0",
  2473. "symfony/yaml": "^4.4|^5.0"
  2474. },
  2475. "suggest": {
  2476. "doctrine/annotations": "For using the annotation loader",
  2477. "symfony/config": "For using the all-in-one router or any loader",
  2478. "symfony/expression-language": "For using expression matching",
  2479. "symfony/http-foundation": "For using a Symfony Request object",
  2480. "symfony/yaml": "For using the YAML loader"
  2481. },
  2482. "type": "library",
  2483. "extra": {
  2484. "branch-alias": {
  2485. "dev-master": "5.0-dev"
  2486. }
  2487. },
  2488. "autoload": {
  2489. "psr-4": {
  2490. "Symfony\\Component\\Routing\\": ""
  2491. },
  2492. "exclude-from-classmap": [
  2493. "/Tests/"
  2494. ]
  2495. },
  2496. "notification-url": "https://packagist.org/downloads/",
  2497. "license": [
  2498. "MIT"
  2499. ],
  2500. "authors": [
  2501. {
  2502. "name": "Fabien Potencier",
  2503. "email": "[email protected]"
  2504. },
  2505. {
  2506. "name": "Symfony Community",
  2507. "homepage": "https://symfony.com/contributors"
  2508. }
  2509. ],
  2510. "description": "Symfony Routing Component",
  2511. "homepage": "https://symfony.com",
  2512. "keywords": [
  2513. "router",
  2514. "routing",
  2515. "uri",
  2516. "url"
  2517. ],
  2518. "time": "2020-01-04T14:08:26+00:00"
  2519. },
  2520. {
  2521. "name": "symfony/service-contracts",
  2522. "version": "v2.0.1",
  2523. "source": {
  2524. "type": "git",
  2525. "url": "https://github.com/symfony/service-contracts.git",
  2526. "reference": "144c5e51266b281231e947b51223ba14acf1a749"
  2527. },
  2528. "dist": {
  2529. "type": "zip",
  2530. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/144c5e51266b281231e947b51223ba14acf1a749",
  2531. "reference": "144c5e51266b281231e947b51223ba14acf1a749",
  2532. "shasum": ""
  2533. },
  2534. "require": {
  2535. "php": "^7.2.5",
  2536. "psr/container": "^1.0"
  2537. },
  2538. "suggest": {
  2539. "symfony/service-implementation": ""
  2540. },
  2541. "type": "library",
  2542. "extra": {
  2543. "branch-alias": {
  2544. "dev-master": "2.0-dev"
  2545. }
  2546. },
  2547. "autoload": {
  2548. "psr-4": {
  2549. "Symfony\\Contracts\\Service\\": ""
  2550. }
  2551. },
  2552. "notification-url": "https://packagist.org/downloads/",
  2553. "license": [
  2554. "MIT"
  2555. ],
  2556. "authors": [
  2557. {
  2558. "name": "Nicolas Grekas",
  2559. "email": "[email protected]"
  2560. },
  2561. {
  2562. "name": "Symfony Community",
  2563. "homepage": "https://symfony.com/contributors"
  2564. }
  2565. ],
  2566. "description": "Generic abstractions related to writing services",
  2567. "homepage": "https://symfony.com",
  2568. "keywords": [
  2569. "abstractions",
  2570. "contracts",
  2571. "decoupling",
  2572. "interfaces",
  2573. "interoperability",
  2574. "standards"
  2575. ],
  2576. "time": "2019-11-18T17:27:11+00:00"
  2577. },
  2578. {
  2579. "name": "symfony/translation-contracts",
  2580. "version": "v2.0.1",
  2581. "source": {
  2582. "type": "git",
  2583. "url": "https://github.com/symfony/translation-contracts.git",
  2584. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed"
  2585. },
  2586. "dist": {
  2587. "type": "zip",
  2588. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  2589. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  2590. "shasum": ""
  2591. },
  2592. "require": {
  2593. "php": "^7.2.5"
  2594. },
  2595. "suggest": {
  2596. "symfony/translation-implementation": ""
  2597. },
  2598. "type": "library",
  2599. "extra": {
  2600. "branch-alias": {
  2601. "dev-master": "2.0-dev"
  2602. }
  2603. },
  2604. "autoload": {
  2605. "psr-4": {
  2606. "Symfony\\Contracts\\Translation\\": ""
  2607. }
  2608. },
  2609. "notification-url": "https://packagist.org/downloads/",
  2610. "license": [
  2611. "MIT"
  2612. ],
  2613. "authors": [
  2614. {
  2615. "name": "Nicolas Grekas",
  2616. "email": "[email protected]"
  2617. },
  2618. {
  2619. "name": "Symfony Community",
  2620. "homepage": "https://symfony.com/contributors"
  2621. }
  2622. ],
  2623. "description": "Generic abstractions related to translation",
  2624. "homepage": "https://symfony.com",
  2625. "keywords": [
  2626. "abstractions",
  2627. "contracts",
  2628. "decoupling",
  2629. "interfaces",
  2630. "interoperability",
  2631. "standards"
  2632. ],
  2633. "time": "2019-11-18T17:27:11+00:00"
  2634. },
  2635. {
  2636. "name": "symfony/twig-bridge",
  2637. "version": "v5.0.3",
  2638. "source": {
  2639. "type": "git",
  2640. "url": "https://github.com/symfony/twig-bridge.git",
  2641. "reference": "39cc296147e010af3c13d7734a21528426bd46ff"
  2642. },
  2643. "dist": {
  2644. "type": "zip",
  2645. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/39cc296147e010af3c13d7734a21528426bd46ff",
  2646. "reference": "39cc296147e010af3c13d7734a21528426bd46ff",
  2647. "shasum": ""
  2648. },
  2649. "require": {
  2650. "php": "^7.2.5",
  2651. "symfony/translation-contracts": "^1.1|^2",
  2652. "twig/twig": "^2.10|^3.0"
  2653. },
  2654. "conflict": {
  2655. "symfony/console": "<4.4",
  2656. "symfony/form": "<5.0",
  2657. "symfony/http-foundation": "<4.4",
  2658. "symfony/http-kernel": "<4.4",
  2659. "symfony/translation": "<5.0",
  2660. "symfony/workflow": "<4.4"
  2661. },
  2662. "require-dev": {
  2663. "egulias/email-validator": "^2.1.10",
  2664. "symfony/asset": "^4.4|^5.0",
  2665. "symfony/console": "^4.4|^5.0",
  2666. "symfony/dependency-injection": "^4.4|^5.0",
  2667. "symfony/expression-language": "^4.4|^5.0",
  2668. "symfony/finder": "^4.4|^5.0",
  2669. "symfony/form": "^5.0",
  2670. "symfony/http-foundation": "^4.4|^5.0",
  2671. "symfony/http-kernel": "^4.4|^5.0",
  2672. "symfony/mime": "^4.4|^5.0",
  2673. "symfony/polyfill-intl-icu": "~1.0",
  2674. "symfony/routing": "^4.4|^5.0",
  2675. "symfony/security-acl": "^2.8|^3.0",
  2676. "symfony/security-core": "^4.4|^5.0",
  2677. "symfony/security-csrf": "^4.4|^5.0",
  2678. "symfony/security-http": "^4.4|^5.0",
  2679. "symfony/stopwatch": "^4.4|^5.0",
  2680. "symfony/translation": "^5.0",
  2681. "symfony/web-link": "^4.4|^5.0",
  2682. "symfony/workflow": "^4.4|^5.0",
  2683. "symfony/yaml": "^4.4|^5.0",
  2684. "twig/cssinliner-extra": "^2.12",
  2685. "twig/inky-extra": "^2.12",
  2686. "twig/markdown-extra": "^2.12"
  2687. },
  2688. "suggest": {
  2689. "symfony/asset": "For using the AssetExtension",
  2690. "symfony/expression-language": "For using the ExpressionExtension",
  2691. "symfony/finder": "",
  2692. "symfony/form": "For using the FormExtension",
  2693. "symfony/http-kernel": "For using the HttpKernelExtension",
  2694. "symfony/routing": "For using the RoutingExtension",
  2695. "symfony/security-core": "For using the SecurityExtension",
  2696. "symfony/security-csrf": "For using the CsrfExtension",
  2697. "symfony/security-http": "For using the LogoutUrlExtension",
  2698. "symfony/stopwatch": "For using the StopwatchExtension",
  2699. "symfony/translation": "For using the TranslationExtension",
  2700. "symfony/var-dumper": "For using the DumpExtension",
  2701. "symfony/web-link": "For using the WebLinkExtension",
  2702. "symfony/yaml": "For using the YamlExtension"
  2703. },
  2704. "type": "symfony-bridge",
  2705. "extra": {
  2706. "branch-alias": {
  2707. "dev-master": "5.0-dev"
  2708. }
  2709. },
  2710. "autoload": {
  2711. "psr-4": {
  2712. "Symfony\\Bridge\\Twig\\": ""
  2713. },
  2714. "exclude-from-classmap": [
  2715. "/Tests/"
  2716. ]
  2717. },
  2718. "notification-url": "https://packagist.org/downloads/",
  2719. "license": [
  2720. "MIT"
  2721. ],
  2722. "authors": [
  2723. {
  2724. "name": "Fabien Potencier",
  2725. "email": "[email protected]"
  2726. },
  2727. {
  2728. "name": "Symfony Community",
  2729. "homepage": "https://symfony.com/contributors"
  2730. }
  2731. ],
  2732. "description": "Symfony Twig Bridge",
  2733. "homepage": "https://symfony.com",
  2734. "time": "2020-01-08T17:33:29+00:00"
  2735. },
  2736. {
  2737. "name": "symfony/twig-bundle",
  2738. "version": "v5.0.3",
  2739. "source": {
  2740. "type": "git",
  2741. "url": "https://github.com/symfony/twig-bundle.git",
  2742. "reference": "1bd6192a7742d7807b9ecd0eff347ea549a19390"
  2743. },
  2744. "dist": {
  2745. "type": "zip",
  2746. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/1bd6192a7742d7807b9ecd0eff347ea549a19390",
  2747. "reference": "1bd6192a7742d7807b9ecd0eff347ea549a19390",
  2748. "shasum": ""
  2749. },
  2750. "require": {
  2751. "php": "^7.2.5",
  2752. "symfony/config": "^4.4|^5.0",
  2753. "symfony/http-foundation": "^4.4|^5.0",
  2754. "symfony/http-kernel": "^5.0",
  2755. "symfony/polyfill-ctype": "~1.8",
  2756. "symfony/twig-bridge": "^5.0",
  2757. "twig/twig": "^2.10|^3.0"
  2758. },
  2759. "conflict": {
  2760. "symfony/dependency-injection": "<4.4",
  2761. "symfony/framework-bundle": "<5.0",
  2762. "symfony/translation": "<5.0"
  2763. },
  2764. "require-dev": {
  2765. "doctrine/annotations": "~1.7",
  2766. "doctrine/cache": "~1.0",
  2767. "symfony/asset": "^4.4|^5.0",
  2768. "symfony/dependency-injection": "^4.4|^5.0",
  2769. "symfony/expression-language": "^4.4|^5.0",
  2770. "symfony/finder": "^4.4|^5.0",
  2771. "symfony/form": "^4.4|^5.0",
  2772. "symfony/framework-bundle": "^5.0",
  2773. "symfony/routing": "^4.4|^5.0",
  2774. "symfony/stopwatch": "^4.4|^5.0",
  2775. "symfony/translation": "^5.0",
  2776. "symfony/web-link": "^4.4|^5.0",
  2777. "symfony/yaml": "^4.4|^5.0"
  2778. },
  2779. "type": "symfony-bundle",
  2780. "extra": {
  2781. "branch-alias": {
  2782. "dev-master": "5.0-dev"
  2783. }
  2784. },
  2785. "autoload": {
  2786. "psr-4": {
  2787. "Symfony\\Bundle\\TwigBundle\\": ""
  2788. },
  2789. "exclude-from-classmap": [
  2790. "/Tests/"
  2791. ]
  2792. },
  2793. "notification-url": "https://packagist.org/downloads/",
  2794. "license": [
  2795. "MIT"
  2796. ],
  2797. "authors": [
  2798. {
  2799. "name": "Fabien Potencier",
  2800. "email": "[email protected]"
  2801. },
  2802. {
  2803. "name": "Symfony Community",
  2804. "homepage": "https://symfony.com/contributors"
  2805. }
  2806. ],
  2807. "description": "Symfony TwigBundle",
  2808. "homepage": "https://symfony.com",
  2809. "time": "2020-01-04T14:08:26+00:00"
  2810. },
  2811. {
  2812. "name": "symfony/var-dumper",
  2813. "version": "v5.0.3",
  2814. "source": {
  2815. "type": "git",
  2816. "url": "https://github.com/symfony/var-dumper.git",
  2817. "reference": "ccb1be566ae15f790020f917f06d1da0b04fe47b"
  2818. },
  2819. "dist": {
  2820. "type": "zip",
  2821. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ccb1be566ae15f790020f917f06d1da0b04fe47b",
  2822. "reference": "ccb1be566ae15f790020f917f06d1da0b04fe47b",
  2823. "shasum": ""
  2824. },
  2825. "require": {
  2826. "php": "^7.2.5",
  2827. "symfony/polyfill-mbstring": "~1.0"
  2828. },
  2829. "conflict": {
  2830. "phpunit/phpunit": "<5.4.3",
  2831. "symfony/console": "<4.4"
  2832. },
  2833. "require-dev": {
  2834. "ext-iconv": "*",
  2835. "symfony/console": "^4.4|^5.0",
  2836. "symfony/process": "^4.4|^5.0",
  2837. "twig/twig": "^2.4|^3.0"
  2838. },
  2839. "suggest": {
  2840. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2841. "ext-intl": "To show region name in time zone dump",
  2842. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  2843. },
  2844. "bin": [
  2845. "Resources/bin/var-dump-server"
  2846. ],
  2847. "type": "library",
  2848. "extra": {
  2849. "branch-alias": {
  2850. "dev-master": "5.0-dev"
  2851. }
  2852. },
  2853. "autoload": {
  2854. "files": [
  2855. "Resources/functions/dump.php"
  2856. ],
  2857. "psr-4": {
  2858. "Symfony\\Component\\VarDumper\\": ""
  2859. },
  2860. "exclude-from-classmap": [
  2861. "/Tests/"
  2862. ]
  2863. },
  2864. "notification-url": "https://packagist.org/downloads/",
  2865. "license": [
  2866. "MIT"
  2867. ],
  2868. "authors": [
  2869. {
  2870. "name": "Nicolas Grekas",
  2871. "email": "[email protected]"
  2872. },
  2873. {
  2874. "name": "Symfony Community",
  2875. "homepage": "https://symfony.com/contributors"
  2876. }
  2877. ],
  2878. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2879. "homepage": "https://symfony.com",
  2880. "keywords": [
  2881. "debug",
  2882. "dump"
  2883. ],
  2884. "time": "2020-01-04T14:08:26+00:00"
  2885. },
  2886. {
  2887. "name": "symfony/var-exporter",
  2888. "version": "v5.0.3",
  2889. "source": {
  2890. "type": "git",
  2891. "url": "https://github.com/symfony/var-exporter.git",
  2892. "reference": "960f9ac0fdbd642461ed29d7717aeb2a94d428b9"
  2893. },
  2894. "dist": {
  2895. "type": "zip",
  2896. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/960f9ac0fdbd642461ed29d7717aeb2a94d428b9",
  2897. "reference": "960f9ac0fdbd642461ed29d7717aeb2a94d428b9",
  2898. "shasum": ""
  2899. },
  2900. "require": {
  2901. "php": "^7.2.5"
  2902. },
  2903. "require-dev": {
  2904. "symfony/var-dumper": "^4.4|^5.0"
  2905. },
  2906. "type": "library",
  2907. "extra": {
  2908. "branch-alias": {
  2909. "dev-master": "5.0-dev"
  2910. }
  2911. },
  2912. "autoload": {
  2913. "psr-4": {
  2914. "Symfony\\Component\\VarExporter\\": ""
  2915. },
  2916. "exclude-from-classmap": [
  2917. "/Tests/"
  2918. ]
  2919. },
  2920. "notification-url": "https://packagist.org/downloads/",
  2921. "license": [
  2922. "MIT"
  2923. ],
  2924. "authors": [
  2925. {
  2926. "name": "Nicolas Grekas",
  2927. "email": "[email protected]"
  2928. },
  2929. {
  2930. "name": "Symfony Community",
  2931. "homepage": "https://symfony.com/contributors"
  2932. }
  2933. ],
  2934. "description": "A blend of var_export() + serialize() to turn any serializable data structure to plain PHP code",
  2935. "homepage": "https://symfony.com",
  2936. "keywords": [
  2937. "clone",
  2938. "construct",
  2939. "export",
  2940. "hydrate",
  2941. "instantiate",
  2942. "serialize"
  2943. ],
  2944. "time": "2020-01-04T14:08:26+00:00"
  2945. },
  2946. {
  2947. "name": "symfony/yaml",
  2948. "version": "v5.0.3",
  2949. "source": {
  2950. "type": "git",
  2951. "url": "https://github.com/symfony/yaml.git",
  2952. "reference": "69b44e3b8f90949aee2eb3aa9b86ceeb01cbf62a"
  2953. },
  2954. "dist": {
  2955. "type": "zip",
  2956. "url": "https://api.github.com/repos/symfony/yaml/zipball/69b44e3b8f90949aee2eb3aa9b86ceeb01cbf62a",
  2957. "reference": "69b44e3b8f90949aee2eb3aa9b86ceeb01cbf62a",
  2958. "shasum": ""
  2959. },
  2960. "require": {
  2961. "php": "^7.2.5",
  2962. "symfony/polyfill-ctype": "~1.8"
  2963. },
  2964. "conflict": {
  2965. "symfony/console": "<4.4"
  2966. },
  2967. "require-dev": {
  2968. "symfony/console": "^4.4|^5.0"
  2969. },
  2970. "suggest": {
  2971. "symfony/console": "For validating YAML files using the lint command"
  2972. },
  2973. "type": "library",
  2974. "extra": {
  2975. "branch-alias": {
  2976. "dev-master": "5.0-dev"
  2977. }
  2978. },
  2979. "autoload": {
  2980. "psr-4": {
  2981. "Symfony\\Component\\Yaml\\": ""
  2982. },
  2983. "exclude-from-classmap": [
  2984. "/Tests/"
  2985. ]
  2986. },
  2987. "notification-url": "https://packagist.org/downloads/",
  2988. "license": [
  2989. "MIT"
  2990. ],
  2991. "authors": [
  2992. {
  2993. "name": "Fabien Potencier",
  2994. "email": "[email protected]"
  2995. },
  2996. {
  2997. "name": "Symfony Community",
  2998. "homepage": "https://symfony.com/contributors"
  2999. }
  3000. ],
  3001. "description": "Symfony Yaml Component",
  3002. "homepage": "https://symfony.com",
  3003. "time": "2020-01-21T11:12:28+00:00"
  3004. },
  3005. {
  3006. "name": "twig/twig",
  3007. "version": "v3.0.1",
  3008. "source": {
  3009. "type": "git",
  3010. "url": "https://github.com/twigphp/Twig.git",
  3011. "reference": "28f856a4c57eeb24485916e8a68403f41a133616"
  3012. },
  3013. "dist": {
  3014. "type": "zip",
  3015. "url": "https://api.github.com/repos/twigphp/Twig/zipball/28f856a4c57eeb24485916e8a68403f41a133616",
  3016. "reference": "28f856a4c57eeb24485916e8a68403f41a133616",
  3017. "shasum": ""
  3018. },
  3019. "require": {
  3020. "php": "^7.2.5",
  3021. "symfony/polyfill-ctype": "^1.8",
  3022. "symfony/polyfill-mbstring": "^1.3"
  3023. },
  3024. "require-dev": {
  3025. "psr/container": "^1.0",
  3026. "symfony/phpunit-bridge": "^4.4|^5.0"
  3027. },
  3028. "type": "library",
  3029. "extra": {
  3030. "branch-alias": {
  3031. "dev-master": "3.0-dev"
  3032. }
  3033. },
  3034. "autoload": {
  3035. "psr-4": {
  3036. "Twig\\": "src/"
  3037. }
  3038. },
  3039. "notification-url": "https://packagist.org/downloads/",
  3040. "license": [
  3041. "BSD-3-Clause"
  3042. ],
  3043. "authors": [
  3044. {
  3045. "name": "Fabien Potencier",
  3046. "email": "[email protected]",
  3047. "homepage": "http://fabien.potencier.org",
  3048. "role": "Lead Developer"
  3049. },
  3050. {
  3051. "name": "Twig Team",
  3052. "role": "Contributors"
  3053. },
  3054. {
  3055. "name": "Armin Ronacher",
  3056. "email": "[email protected]",
  3057. "role": "Project Founder"
  3058. }
  3059. ],
  3060. "description": "Twig, the flexible, fast, and secure template language for PHP",
  3061. "homepage": "https://twig.symfony.com",
  3062. "keywords": [
  3063. "templating"
  3064. ],
  3065. "time": "2019-12-28T07:17:28+00:00"
  3066. }
  3067. ],
  3068. "packages-dev": [],
  3069. "aliases": [],
  3070. "minimum-stability": "stable",
  3071. "stability-flags": [],
  3072. "prefer-stable": false,
  3073. "prefer-lowest": false,
  3074. "platform": {
  3075. "php": "^7.4",
  3076. "ext-ctype": "*",
  3077. "ext-iconv": "*",
  3078. "ext-mbstring": "*"
  3079. },
  3080. "platform-dev": [],
  3081. "platform-overrides": {
  3082. "php": "7.4"
  3083. }
  3084. }