composer.lock 106 KB

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