composer.lock 188 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364
  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#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "5cbb7f02357ce0c923d0bcce6d770c70",
  8. "packages": [
  9. {
  10. "name": "composer/ca-bundle",
  11. "version": "1.1.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/ca-bundle.git",
  15. "reference": "943b2c4fcad1ef178d16a713c2468bf7e579c288"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/943b2c4fcad1ef178d16a713c2468bf7e579c288",
  20. "reference": "943b2c4fcad1ef178d16a713c2468bf7e579c288",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-openssl": "*",
  25. "ext-pcre": "*",
  26. "php": "^5.3.2 || ^7.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^4.8.35",
  30. "psr/log": "^1.0",
  31. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  32. },
  33. "type": "library",
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "1.x-dev"
  37. }
  38. },
  39. "autoload": {
  40. "psr-4": {
  41. "Composer\\CaBundle\\": "src"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "authors": [
  49. {
  50. "name": "Jordi Boggiano",
  51. "email": "j.boggiano@seld.be",
  52. "homepage": "http://seld.be"
  53. }
  54. ],
  55. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  56. "keywords": [
  57. "cabundle",
  58. "cacert",
  59. "certificate",
  60. "ssl",
  61. "tls"
  62. ],
  63. "time": "2017-11-29T09:37:33+00:00"
  64. },
  65. {
  66. "name": "doctrine/annotations",
  67. "version": "v1.6.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/doctrine/annotations.git",
  71. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  76. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "doctrine/lexer": "1.*",
  81. "php": "^7.1"
  82. },
  83. "require-dev": {
  84. "doctrine/cache": "1.*",
  85. "phpunit/phpunit": "^6.4"
  86. },
  87. "type": "library",
  88. "extra": {
  89. "branch-alias": {
  90. "dev-master": "1.6.x-dev"
  91. }
  92. },
  93. "autoload": {
  94. "psr-4": {
  95. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  96. }
  97. },
  98. "notification-url": "https://packagist.org/downloads/",
  99. "license": [
  100. "MIT"
  101. ],
  102. "authors": [
  103. {
  104. "name": "Roman Borschel",
  105. "email": "roman@code-factory.org"
  106. },
  107. {
  108. "name": "Benjamin Eberlei",
  109. "email": "kontakt@beberlei.de"
  110. },
  111. {
  112. "name": "Guilherme Blanco",
  113. "email": "guilhermeblanco@gmail.com"
  114. },
  115. {
  116. "name": "Jonathan Wage",
  117. "email": "jonwage@gmail.com"
  118. },
  119. {
  120. "name": "Johannes Schmitt",
  121. "email": "schmittjoh@gmail.com"
  122. }
  123. ],
  124. "description": "Docblock Annotations Parser",
  125. "homepage": "http://www.doctrine-project.org",
  126. "keywords": [
  127. "annotations",
  128. "docblock",
  129. "parser"
  130. ],
  131. "time": "2017-12-06T07:11:42+00:00"
  132. },
  133. {
  134. "name": "doctrine/cache",
  135. "version": "v1.7.1",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/doctrine/cache.git",
  139. "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/doctrine/cache/zipball/b3217d58609e9c8e661cd41357a54d926c4a2a1a",
  144. "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a",
  145. "shasum": ""
  146. },
  147. "require": {
  148. "php": "~7.1"
  149. },
  150. "conflict": {
  151. "doctrine/common": ">2.2,<2.4"
  152. },
  153. "require-dev": {
  154. "alcaeus/mongo-php-adapter": "^1.1",
  155. "mongodb/mongodb": "^1.1",
  156. "phpunit/phpunit": "^5.7",
  157. "predis/predis": "~1.0"
  158. },
  159. "suggest": {
  160. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  161. },
  162. "type": "library",
  163. "extra": {
  164. "branch-alias": {
  165. "dev-master": "1.7.x-dev"
  166. }
  167. },
  168. "autoload": {
  169. "psr-4": {
  170. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  171. }
  172. },
  173. "notification-url": "https://packagist.org/downloads/",
  174. "license": [
  175. "MIT"
  176. ],
  177. "authors": [
  178. {
  179. "name": "Roman Borschel",
  180. "email": "roman@code-factory.org"
  181. },
  182. {
  183. "name": "Benjamin Eberlei",
  184. "email": "kontakt@beberlei.de"
  185. },
  186. {
  187. "name": "Guilherme Blanco",
  188. "email": "guilhermeblanco@gmail.com"
  189. },
  190. {
  191. "name": "Jonathan Wage",
  192. "email": "jonwage@gmail.com"
  193. },
  194. {
  195. "name": "Johannes Schmitt",
  196. "email": "schmittjoh@gmail.com"
  197. }
  198. ],
  199. "description": "Caching library offering an object-oriented API for many cache backends",
  200. "homepage": "http://www.doctrine-project.org",
  201. "keywords": [
  202. "cache",
  203. "caching"
  204. ],
  205. "time": "2017-08-25T07:02:50+00:00"
  206. },
  207. {
  208. "name": "doctrine/collections",
  209. "version": "v1.5.0",
  210. "source": {
  211. "type": "git",
  212. "url": "https://github.com/doctrine/collections.git",
  213. "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf"
  214. },
  215. "dist": {
  216. "type": "zip",
  217. "url": "https://api.github.com/repos/doctrine/collections/zipball/a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
  218. "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
  219. "shasum": ""
  220. },
  221. "require": {
  222. "php": "^7.1"
  223. },
  224. "require-dev": {
  225. "doctrine/coding-standard": "~0.1@dev",
  226. "phpunit/phpunit": "^5.7"
  227. },
  228. "type": "library",
  229. "extra": {
  230. "branch-alias": {
  231. "dev-master": "1.3.x-dev"
  232. }
  233. },
  234. "autoload": {
  235. "psr-0": {
  236. "Doctrine\\Common\\Collections\\": "lib/"
  237. }
  238. },
  239. "notification-url": "https://packagist.org/downloads/",
  240. "license": [
  241. "MIT"
  242. ],
  243. "authors": [
  244. {
  245. "name": "Roman Borschel",
  246. "email": "roman@code-factory.org"
  247. },
  248. {
  249. "name": "Benjamin Eberlei",
  250. "email": "kontakt@beberlei.de"
  251. },
  252. {
  253. "name": "Guilherme Blanco",
  254. "email": "guilhermeblanco@gmail.com"
  255. },
  256. {
  257. "name": "Jonathan Wage",
  258. "email": "jonwage@gmail.com"
  259. },
  260. {
  261. "name": "Johannes Schmitt",
  262. "email": "schmittjoh@gmail.com"
  263. }
  264. ],
  265. "description": "Collections Abstraction library",
  266. "homepage": "http://www.doctrine-project.org",
  267. "keywords": [
  268. "array",
  269. "collections",
  270. "iterator"
  271. ],
  272. "time": "2017-07-22T10:37:32+00:00"
  273. },
  274. {
  275. "name": "doctrine/common",
  276. "version": "v2.8.1",
  277. "source": {
  278. "type": "git",
  279. "url": "https://github.com/doctrine/common.git",
  280. "reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66"
  281. },
  282. "dist": {
  283. "type": "zip",
  284. "url": "https://api.github.com/repos/doctrine/common/zipball/f68c297ce6455e8fd794aa8ffaf9fa458f6ade66",
  285. "reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66",
  286. "shasum": ""
  287. },
  288. "require": {
  289. "doctrine/annotations": "1.*",
  290. "doctrine/cache": "1.*",
  291. "doctrine/collections": "1.*",
  292. "doctrine/inflector": "1.*",
  293. "doctrine/lexer": "1.*",
  294. "php": "~7.1"
  295. },
  296. "require-dev": {
  297. "phpunit/phpunit": "^5.7"
  298. },
  299. "type": "library",
  300. "extra": {
  301. "branch-alias": {
  302. "dev-master": "2.8.x-dev"
  303. }
  304. },
  305. "autoload": {
  306. "psr-4": {
  307. "Doctrine\\Common\\": "lib/Doctrine/Common"
  308. }
  309. },
  310. "notification-url": "https://packagist.org/downloads/",
  311. "license": [
  312. "MIT"
  313. ],
  314. "authors": [
  315. {
  316. "name": "Roman Borschel",
  317. "email": "roman@code-factory.org"
  318. },
  319. {
  320. "name": "Benjamin Eberlei",
  321. "email": "kontakt@beberlei.de"
  322. },
  323. {
  324. "name": "Guilherme Blanco",
  325. "email": "guilhermeblanco@gmail.com"
  326. },
  327. {
  328. "name": "Jonathan Wage",
  329. "email": "jonwage@gmail.com"
  330. },
  331. {
  332. "name": "Johannes Schmitt",
  333. "email": "schmittjoh@gmail.com"
  334. }
  335. ],
  336. "description": "Common Library for Doctrine projects",
  337. "homepage": "http://www.doctrine-project.org",
  338. "keywords": [
  339. "annotations",
  340. "collections",
  341. "eventmanager",
  342. "persistence",
  343. "spl"
  344. ],
  345. "time": "2017-08-31T08:43:38+00:00"
  346. },
  347. {
  348. "name": "doctrine/dbal",
  349. "version": "v2.6.3",
  350. "source": {
  351. "type": "git",
  352. "url": "https://github.com/doctrine/dbal.git",
  353. "reference": "e3eed9b1facbb0ced3a0995244843a189e7d1b13"
  354. },
  355. "dist": {
  356. "type": "zip",
  357. "url": "https://api.github.com/repos/doctrine/dbal/zipball/e3eed9b1facbb0ced3a0995244843a189e7d1b13",
  358. "reference": "e3eed9b1facbb0ced3a0995244843a189e7d1b13",
  359. "shasum": ""
  360. },
  361. "require": {
  362. "doctrine/common": "^2.7.1",
  363. "ext-pdo": "*",
  364. "php": "^7.1"
  365. },
  366. "require-dev": {
  367. "phpunit/phpunit": "^5.4.6",
  368. "phpunit/phpunit-mock-objects": "!=3.2.4,!=3.2.5",
  369. "symfony/console": "2.*||^3.0"
  370. },
  371. "suggest": {
  372. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  373. },
  374. "bin": [
  375. "bin/doctrine-dbal"
  376. ],
  377. "type": "library",
  378. "extra": {
  379. "branch-alias": {
  380. "dev-master": "2.6.x-dev"
  381. }
  382. },
  383. "autoload": {
  384. "psr-0": {
  385. "Doctrine\\DBAL\\": "lib/"
  386. }
  387. },
  388. "notification-url": "https://packagist.org/downloads/",
  389. "license": [
  390. "MIT"
  391. ],
  392. "authors": [
  393. {
  394. "name": "Roman Borschel",
  395. "email": "roman@code-factory.org"
  396. },
  397. {
  398. "name": "Benjamin Eberlei",
  399. "email": "kontakt@beberlei.de"
  400. },
  401. {
  402. "name": "Guilherme Blanco",
  403. "email": "guilhermeblanco@gmail.com"
  404. },
  405. {
  406. "name": "Jonathan Wage",
  407. "email": "jonwage@gmail.com"
  408. }
  409. ],
  410. "description": "Database Abstraction Layer",
  411. "homepage": "http://www.doctrine-project.org",
  412. "keywords": [
  413. "database",
  414. "dbal",
  415. "persistence",
  416. "queryobject"
  417. ],
  418. "time": "2017-11-19T13:38:54+00:00"
  419. },
  420. {
  421. "name": "doctrine/doctrine-bundle",
  422. "version": "1.8.1",
  423. "source": {
  424. "type": "git",
  425. "url": "https://github.com/doctrine/DoctrineBundle.git",
  426. "reference": "eb6e4fb904a459be28872765ab6e2d246aac7c87"
  427. },
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/eb6e4fb904a459be28872765ab6e2d246aac7c87",
  431. "reference": "eb6e4fb904a459be28872765ab6e2d246aac7c87",
  432. "shasum": ""
  433. },
  434. "require": {
  435. "doctrine/dbal": "^2.5.12",
  436. "doctrine/doctrine-cache-bundle": "~1.2",
  437. "jdorn/sql-formatter": "^1.2.16",
  438. "php": "^5.5.9|^7.0",
  439. "symfony/console": "~2.7|~3.0|~4.0",
  440. "symfony/dependency-injection": "~2.7|~3.0|~4.0",
  441. "symfony/doctrine-bridge": "~2.7|~3.0|~4.0",
  442. "symfony/framework-bundle": "~2.7|~3.0|~4.0"
  443. },
  444. "conflict": {
  445. "symfony/http-foundation": "<2.6"
  446. },
  447. "require-dev": {
  448. "doctrine/orm": "~2.3",
  449. "phpunit/phpunit": "^4.8.36|^5.7|^6.4",
  450. "satooshi/php-coveralls": "^1.0",
  451. "symfony/phpunit-bridge": "~2.7|~3.0|~4.0",
  452. "symfony/property-info": "~2.8|~3.0|~4.0",
  453. "symfony/validator": "~2.7|~3.0|~4.0",
  454. "symfony/web-profiler-bundle": "~2.7|~3.0|~4.0",
  455. "symfony/yaml": "~2.7|~3.0|~4.0",
  456. "twig/twig": "~1.26|~2.0"
  457. },
  458. "suggest": {
  459. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  460. "symfony/web-profiler-bundle": "To use the data collector."
  461. },
  462. "type": "symfony-bundle",
  463. "extra": {
  464. "branch-alias": {
  465. "dev-master": "1.8.x-dev"
  466. }
  467. },
  468. "autoload": {
  469. "psr-4": {
  470. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  471. }
  472. },
  473. "notification-url": "https://packagist.org/downloads/",
  474. "license": [
  475. "MIT"
  476. ],
  477. "authors": [
  478. {
  479. "name": "Symfony Community",
  480. "homepage": "http://symfony.com/contributors"
  481. },
  482. {
  483. "name": "Benjamin Eberlei",
  484. "email": "kontakt@beberlei.de"
  485. },
  486. {
  487. "name": "Doctrine Project",
  488. "homepage": "http://www.doctrine-project.org/"
  489. },
  490. {
  491. "name": "Fabien Potencier",
  492. "email": "fabien@symfony.com"
  493. }
  494. ],
  495. "description": "Symfony DoctrineBundle",
  496. "homepage": "http://www.doctrine-project.org",
  497. "keywords": [
  498. "database",
  499. "dbal",
  500. "orm",
  501. "persistence"
  502. ],
  503. "time": "2017-11-24T13:09:19+00:00"
  504. },
  505. {
  506. "name": "doctrine/doctrine-cache-bundle",
  507. "version": "1.3.2",
  508. "source": {
  509. "type": "git",
  510. "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
  511. "reference": "9baecbd6bfdd1123b0cf8c1b88fee0170a84ddd1"
  512. },
  513. "dist": {
  514. "type": "zip",
  515. "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/9baecbd6bfdd1123b0cf8c1b88fee0170a84ddd1",
  516. "reference": "9baecbd6bfdd1123b0cf8c1b88fee0170a84ddd1",
  517. "shasum": ""
  518. },
  519. "require": {
  520. "doctrine/cache": "^1.4.2",
  521. "doctrine/inflector": "~1.0",
  522. "php": ">=5.3.2",
  523. "symfony/doctrine-bridge": "~2.2|~3.0|~4.0"
  524. },
  525. "require-dev": {
  526. "instaclick/coding-standard": "~1.1",
  527. "instaclick/object-calisthenics-sniffs": "dev-master",
  528. "instaclick/symfony2-coding-standard": "dev-remaster",
  529. "phpunit/phpunit": "~4",
  530. "predis/predis": "~0.8",
  531. "satooshi/php-coveralls": "^1.0",
  532. "squizlabs/php_codesniffer": "~1.5",
  533. "symfony/console": "~2.2|~3.0|~4.0",
  534. "symfony/finder": "~2.2|~3.0|~4.0",
  535. "symfony/framework-bundle": "~2.2|~3.0|~4.0",
  536. "symfony/phpunit-bridge": "~2.7|~3.0|~4.0",
  537. "symfony/security-acl": "~2.3|~3.0",
  538. "symfony/validator": "~2.2|~3.0|~4.0",
  539. "symfony/yaml": "~2.2|~3.0|~4.0"
  540. },
  541. "suggest": {
  542. "symfony/security-acl": "For using this bundle to cache ACLs"
  543. },
  544. "type": "symfony-bundle",
  545. "extra": {
  546. "branch-alias": {
  547. "dev-master": "1.3.x-dev"
  548. }
  549. },
  550. "autoload": {
  551. "psr-4": {
  552. "Doctrine\\Bundle\\DoctrineCacheBundle\\": ""
  553. }
  554. },
  555. "notification-url": "https://packagist.org/downloads/",
  556. "license": [
  557. "MIT"
  558. ],
  559. "authors": [
  560. {
  561. "name": "Symfony Community",
  562. "homepage": "http://symfony.com/contributors"
  563. },
  564. {
  565. "name": "Benjamin Eberlei",
  566. "email": "kontakt@beberlei.de"
  567. },
  568. {
  569. "name": "Fabio B. Silva",
  570. "email": "fabio.bat.silva@gmail.com"
  571. },
  572. {
  573. "name": "Guilherme Blanco",
  574. "email": "guilhermeblanco@hotmail.com"
  575. },
  576. {
  577. "name": "Doctrine Project",
  578. "homepage": "http://www.doctrine-project.org/"
  579. },
  580. {
  581. "name": "Fabien Potencier",
  582. "email": "fabien@symfony.com"
  583. }
  584. ],
  585. "description": "Symfony Bundle for Doctrine Cache",
  586. "homepage": "http://www.doctrine-project.org",
  587. "keywords": [
  588. "cache",
  589. "caching"
  590. ],
  591. "time": "2017-10-12T17:23:29+00:00"
  592. },
  593. {
  594. "name": "doctrine/doctrine-migrations-bundle",
  595. "version": "v1.3.1",
  596. "source": {
  597. "type": "git",
  598. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  599. "reference": "a9e506369f931351a2a6dd2aef588a822802b1b7"
  600. },
  601. "dist": {
  602. "type": "zip",
  603. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/a9e506369f931351a2a6dd2aef588a822802b1b7",
  604. "reference": "a9e506369f931351a2a6dd2aef588a822802b1b7",
  605. "shasum": ""
  606. },
  607. "require": {
  608. "doctrine/doctrine-bundle": "~1.0",
  609. "doctrine/migrations": "^1.1",
  610. "php": ">=5.4.0",
  611. "symfony/framework-bundle": "~2.7|~3.3|~4.0"
  612. },
  613. "require-dev": {
  614. "phpunit/phpunit": "^4.8.36"
  615. },
  616. "type": "symfony-bundle",
  617. "extra": {
  618. "branch-alias": {
  619. "dev-master": "1.3-dev"
  620. }
  621. },
  622. "autoload": {
  623. "psr-4": {
  624. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  625. }
  626. },
  627. "notification-url": "https://packagist.org/downloads/",
  628. "license": [
  629. "MIT"
  630. ],
  631. "authors": [
  632. {
  633. "name": "Symfony Community",
  634. "homepage": "http://symfony.com/contributors"
  635. },
  636. {
  637. "name": "Doctrine Project",
  638. "homepage": "http://www.doctrine-project.org"
  639. },
  640. {
  641. "name": "Fabien Potencier",
  642. "email": "fabien@symfony.com"
  643. }
  644. ],
  645. "description": "Symfony DoctrineMigrationsBundle",
  646. "homepage": "http://www.doctrine-project.org",
  647. "keywords": [
  648. "dbal",
  649. "migrations",
  650. "schema"
  651. ],
  652. "time": "2017-11-01T09:13:26+00:00"
  653. },
  654. {
  655. "name": "doctrine/inflector",
  656. "version": "v1.3.0",
  657. "source": {
  658. "type": "git",
  659. "url": "https://github.com/doctrine/inflector.git",
  660. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  661. },
  662. "dist": {
  663. "type": "zip",
  664. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  665. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  666. "shasum": ""
  667. },
  668. "require": {
  669. "php": "^7.1"
  670. },
  671. "require-dev": {
  672. "phpunit/phpunit": "^6.2"
  673. },
  674. "type": "library",
  675. "extra": {
  676. "branch-alias": {
  677. "dev-master": "1.3.x-dev"
  678. }
  679. },
  680. "autoload": {
  681. "psr-4": {
  682. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  683. }
  684. },
  685. "notification-url": "https://packagist.org/downloads/",
  686. "license": [
  687. "MIT"
  688. ],
  689. "authors": [
  690. {
  691. "name": "Roman Borschel",
  692. "email": "roman@code-factory.org"
  693. },
  694. {
  695. "name": "Benjamin Eberlei",
  696. "email": "kontakt@beberlei.de"
  697. },
  698. {
  699. "name": "Guilherme Blanco",
  700. "email": "guilhermeblanco@gmail.com"
  701. },
  702. {
  703. "name": "Jonathan Wage",
  704. "email": "jonwage@gmail.com"
  705. },
  706. {
  707. "name": "Johannes Schmitt",
  708. "email": "schmittjoh@gmail.com"
  709. }
  710. ],
  711. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  712. "homepage": "http://www.doctrine-project.org",
  713. "keywords": [
  714. "inflection",
  715. "pluralize",
  716. "singularize",
  717. "string"
  718. ],
  719. "time": "2018-01-09T20:05:19+00:00"
  720. },
  721. {
  722. "name": "doctrine/instantiator",
  723. "version": "1.1.0",
  724. "source": {
  725. "type": "git",
  726. "url": "https://github.com/doctrine/instantiator.git",
  727. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  728. },
  729. "dist": {
  730. "type": "zip",
  731. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  732. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  733. "shasum": ""
  734. },
  735. "require": {
  736. "php": "^7.1"
  737. },
  738. "require-dev": {
  739. "athletic/athletic": "~0.1.8",
  740. "ext-pdo": "*",
  741. "ext-phar": "*",
  742. "phpunit/phpunit": "^6.2.3",
  743. "squizlabs/php_codesniffer": "^3.0.2"
  744. },
  745. "type": "library",
  746. "extra": {
  747. "branch-alias": {
  748. "dev-master": "1.2.x-dev"
  749. }
  750. },
  751. "autoload": {
  752. "psr-4": {
  753. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  754. }
  755. },
  756. "notification-url": "https://packagist.org/downloads/",
  757. "license": [
  758. "MIT"
  759. ],
  760. "authors": [
  761. {
  762. "name": "Marco Pivetta",
  763. "email": "ocramius@gmail.com",
  764. "homepage": "http://ocramius.github.com/"
  765. }
  766. ],
  767. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  768. "homepage": "https://github.com/doctrine/instantiator",
  769. "keywords": [
  770. "constructor",
  771. "instantiate"
  772. ],
  773. "time": "2017-07-22T11:58:36+00:00"
  774. },
  775. {
  776. "name": "doctrine/lexer",
  777. "version": "v1.0.1",
  778. "source": {
  779. "type": "git",
  780. "url": "https://github.com/doctrine/lexer.git",
  781. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  782. },
  783. "dist": {
  784. "type": "zip",
  785. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  786. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  787. "shasum": ""
  788. },
  789. "require": {
  790. "php": ">=5.3.2"
  791. },
  792. "type": "library",
  793. "extra": {
  794. "branch-alias": {
  795. "dev-master": "1.0.x-dev"
  796. }
  797. },
  798. "autoload": {
  799. "psr-0": {
  800. "Doctrine\\Common\\Lexer\\": "lib/"
  801. }
  802. },
  803. "notification-url": "https://packagist.org/downloads/",
  804. "license": [
  805. "MIT"
  806. ],
  807. "authors": [
  808. {
  809. "name": "Roman Borschel",
  810. "email": "roman@code-factory.org"
  811. },
  812. {
  813. "name": "Guilherme Blanco",
  814. "email": "guilhermeblanco@gmail.com"
  815. },
  816. {
  817. "name": "Johannes Schmitt",
  818. "email": "schmittjoh@gmail.com"
  819. }
  820. ],
  821. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  822. "homepage": "http://www.doctrine-project.org",
  823. "keywords": [
  824. "lexer",
  825. "parser"
  826. ],
  827. "time": "2014-09-09T13:34:57+00:00"
  828. },
  829. {
  830. "name": "doctrine/migrations",
  831. "version": "v1.6.2",
  832. "source": {
  833. "type": "git",
  834. "url": "https://github.com/doctrine/migrations.git",
  835. "reference": "e3faf7c96b8a6084045dedcaf51f74c7834644d4"
  836. },
  837. "dist": {
  838. "type": "zip",
  839. "url": "https://api.github.com/repos/doctrine/migrations/zipball/e3faf7c96b8a6084045dedcaf51f74c7834644d4",
  840. "reference": "e3faf7c96b8a6084045dedcaf51f74c7834644d4",
  841. "shasum": ""
  842. },
  843. "require": {
  844. "doctrine/dbal": "~2.6",
  845. "ocramius/proxy-manager": "^1.0|^2.0",
  846. "php": "^7.1",
  847. "symfony/console": "~3.3|^4.0",
  848. "symfony/yaml": "~3.3|^4.0"
  849. },
  850. "require-dev": {
  851. "doctrine/coding-standard": "^1.0",
  852. "doctrine/orm": "~2.5",
  853. "jdorn/sql-formatter": "~1.1",
  854. "mikey179/vfsstream": "^1.6",
  855. "phpunit/phpunit": "~6.2",
  856. "squizlabs/php_codesniffer": "^3.0"
  857. },
  858. "suggest": {
  859. "jdorn/sql-formatter": "Allows to generate formatted SQL with the diff command."
  860. },
  861. "bin": [
  862. "bin/doctrine-migrations"
  863. ],
  864. "type": "library",
  865. "extra": {
  866. "branch-alias": {
  867. "dev-master": "v1.6.x-dev"
  868. }
  869. },
  870. "autoload": {
  871. "psr-4": {
  872. "Doctrine\\DBAL\\Migrations\\": "lib/Doctrine/DBAL/Migrations"
  873. }
  874. },
  875. "notification-url": "https://packagist.org/downloads/",
  876. "license": [
  877. "LGPL-2.1"
  878. ],
  879. "authors": [
  880. {
  881. "name": "Benjamin Eberlei",
  882. "email": "kontakt@beberlei.de"
  883. },
  884. {
  885. "name": "Jonathan Wage",
  886. "email": "jonwage@gmail.com"
  887. },
  888. {
  889. "name": "Michael Simonson",
  890. "email": "contact@mikesimonson.com"
  891. }
  892. ],
  893. "description": "Database Schema migrations using Doctrine DBAL",
  894. "homepage": "http://www.doctrine-project.org",
  895. "keywords": [
  896. "database",
  897. "migrations"
  898. ],
  899. "time": "2017-11-24T14:13:17+00:00"
  900. },
  901. {
  902. "name": "doctrine/orm",
  903. "version": "v2.6.0",
  904. "source": {
  905. "type": "git",
  906. "url": "https://github.com/doctrine/doctrine2.git",
  907. "reference": "374e7ace49d864dad8cddbc55346447c8a6a2083"
  908. },
  909. "dist": {
  910. "type": "zip",
  911. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/374e7ace49d864dad8cddbc55346447c8a6a2083",
  912. "reference": "374e7ace49d864dad8cddbc55346447c8a6a2083",
  913. "shasum": ""
  914. },
  915. "require": {
  916. "doctrine/annotations": "~1.5",
  917. "doctrine/cache": "~1.6",
  918. "doctrine/collections": "^1.4",
  919. "doctrine/common": "^2.7.1",
  920. "doctrine/dbal": "^2.6",
  921. "doctrine/instantiator": "~1.1",
  922. "ext-pdo": "*",
  923. "php": "^7.1",
  924. "symfony/console": "~3.0|~4.0"
  925. },
  926. "require-dev": {
  927. "doctrine/coding-standard": "^1.0",
  928. "phpunit/phpunit": "^6.5",
  929. "squizlabs/php_codesniffer": "^3.2",
  930. "symfony/yaml": "~3.4|~4.0"
  931. },
  932. "suggest": {
  933. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  934. },
  935. "bin": [
  936. "bin/doctrine"
  937. ],
  938. "type": "library",
  939. "extra": {
  940. "branch-alias": {
  941. "dev-master": "2.6.x-dev"
  942. }
  943. },
  944. "autoload": {
  945. "psr-4": {
  946. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  947. }
  948. },
  949. "notification-url": "https://packagist.org/downloads/",
  950. "license": [
  951. "MIT"
  952. ],
  953. "authors": [
  954. {
  955. "name": "Roman Borschel",
  956. "email": "roman@code-factory.org"
  957. },
  958. {
  959. "name": "Benjamin Eberlei",
  960. "email": "kontakt@beberlei.de"
  961. },
  962. {
  963. "name": "Guilherme Blanco",
  964. "email": "guilhermeblanco@gmail.com"
  965. },
  966. {
  967. "name": "Jonathan Wage",
  968. "email": "jonwage@gmail.com"
  969. },
  970. {
  971. "name": "Marco Pivetta",
  972. "email": "ocramius@gmail.com"
  973. }
  974. ],
  975. "description": "Object-Relational-Mapper for PHP",
  976. "homepage": "http://www.doctrine-project.org",
  977. "keywords": [
  978. "database",
  979. "orm"
  980. ],
  981. "time": "2017-12-20T00:38:15+00:00"
  982. },
  983. {
  984. "name": "jdorn/sql-formatter",
  985. "version": "v1.2.17",
  986. "source": {
  987. "type": "git",
  988. "url": "https://github.com/jdorn/sql-formatter.git",
  989. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  990. },
  991. "dist": {
  992. "type": "zip",
  993. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  994. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  995. "shasum": ""
  996. },
  997. "require": {
  998. "php": ">=5.2.4"
  999. },
  1000. "require-dev": {
  1001. "phpunit/phpunit": "3.7.*"
  1002. },
  1003. "type": "library",
  1004. "extra": {
  1005. "branch-alias": {
  1006. "dev-master": "1.3.x-dev"
  1007. }
  1008. },
  1009. "autoload": {
  1010. "classmap": [
  1011. "lib"
  1012. ]
  1013. },
  1014. "notification-url": "https://packagist.org/downloads/",
  1015. "license": [
  1016. "MIT"
  1017. ],
  1018. "authors": [
  1019. {
  1020. "name": "Jeremy Dorn",
  1021. "email": "jeremy@jeremydorn.com",
  1022. "homepage": "http://jeremydorn.com/"
  1023. }
  1024. ],
  1025. "description": "a PHP SQL highlighting library",
  1026. "homepage": "https://github.com/jdorn/sql-formatter/",
  1027. "keywords": [
  1028. "highlight",
  1029. "sql"
  1030. ],
  1031. "time": "2014-01-12T16:20:24+00:00"
  1032. },
  1033. {
  1034. "name": "ocramius/package-versions",
  1035. "version": "1.2.0",
  1036. "source": {
  1037. "type": "git",
  1038. "url": "https://github.com/Ocramius/PackageVersions.git",
  1039. "reference": "ad8a245decad4897cc6b432743913dad0d69753c"
  1040. },
  1041. "dist": {
  1042. "type": "zip",
  1043. "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/ad8a245decad4897cc6b432743913dad0d69753c",
  1044. "reference": "ad8a245decad4897cc6b432743913dad0d69753c",
  1045. "shasum": ""
  1046. },
  1047. "require": {
  1048. "composer-plugin-api": "^1.0",
  1049. "php": "~7.0"
  1050. },
  1051. "require-dev": {
  1052. "composer/composer": "^1.3",
  1053. "ext-zip": "*",
  1054. "humbug/humbug": "dev-master",
  1055. "phpunit/phpunit": "^6.4"
  1056. },
  1057. "type": "composer-plugin",
  1058. "extra": {
  1059. "class": "PackageVersions\\Installer",
  1060. "branch-alias": {
  1061. "dev-master": "2.0.x-dev"
  1062. }
  1063. },
  1064. "autoload": {
  1065. "psr-4": {
  1066. "PackageVersions\\": "src/PackageVersions"
  1067. }
  1068. },
  1069. "notification-url": "https://packagist.org/downloads/",
  1070. "license": [
  1071. "MIT"
  1072. ],
  1073. "authors": [
  1074. {
  1075. "name": "Marco Pivetta",
  1076. "email": "ocramius@gmail.com"
  1077. }
  1078. ],
  1079. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  1080. "time": "2017-11-24T11:07:03+00:00"
  1081. },
  1082. {
  1083. "name": "ocramius/proxy-manager",
  1084. "version": "2.1.1",
  1085. "source": {
  1086. "type": "git",
  1087. "url": "https://github.com/Ocramius/ProxyManager.git",
  1088. "reference": "e18ac876b2e4819c76349de8f78ccc8ef1554cd7"
  1089. },
  1090. "dist": {
  1091. "type": "zip",
  1092. "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/e18ac876b2e4819c76349de8f78ccc8ef1554cd7",
  1093. "reference": "e18ac876b2e4819c76349de8f78ccc8ef1554cd7",
  1094. "shasum": ""
  1095. },
  1096. "require": {
  1097. "ocramius/package-versions": "^1.1.1",
  1098. "php": "^7.1.0",
  1099. "zendframework/zend-code": "^3.1.0"
  1100. },
  1101. "require-dev": {
  1102. "couscous/couscous": "^1.5.2",
  1103. "ext-phar": "*",
  1104. "humbug/humbug": "dev-master@DEV",
  1105. "nikic/php-parser": "^3.0.4",
  1106. "phpbench/phpbench": "^0.12.2",
  1107. "phpstan/phpstan": "^0.6.4",
  1108. "phpunit/phpunit": "^5.6.4",
  1109. "phpunit/phpunit-mock-objects": "^3.4.1",
  1110. "squizlabs/php_codesniffer": "^2.7.0"
  1111. },
  1112. "suggest": {
  1113. "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
  1114. "zendframework/zend-json": "To have the JsonRpc adapter (Remote Object feature)",
  1115. "zendframework/zend-soap": "To have the Soap adapter (Remote Object feature)",
  1116. "zendframework/zend-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)"
  1117. },
  1118. "type": "library",
  1119. "extra": {
  1120. "branch-alias": {
  1121. "dev-master": "3.0.x-dev"
  1122. }
  1123. },
  1124. "autoload": {
  1125. "psr-0": {
  1126. "ProxyManager\\": "src"
  1127. }
  1128. },
  1129. "notification-url": "https://packagist.org/downloads/",
  1130. "license": [
  1131. "MIT"
  1132. ],
  1133. "authors": [
  1134. {
  1135. "name": "Marco Pivetta",
  1136. "email": "ocramius@gmail.com",
  1137. "homepage": "http://ocramius.github.io/"
  1138. }
  1139. ],
  1140. "description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies",
  1141. "homepage": "https://github.com/Ocramius/ProxyManager",
  1142. "keywords": [
  1143. "aop",
  1144. "lazy loading",
  1145. "proxy",
  1146. "proxy pattern",
  1147. "service proxies"
  1148. ],
  1149. "time": "2017-05-04T11:12:50+00:00"
  1150. },
  1151. {
  1152. "name": "psr/cache",
  1153. "version": "1.0.1",
  1154. "source": {
  1155. "type": "git",
  1156. "url": "https://github.com/php-fig/cache.git",
  1157. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1158. },
  1159. "dist": {
  1160. "type": "zip",
  1161. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1162. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1163. "shasum": ""
  1164. },
  1165. "require": {
  1166. "php": ">=5.3.0"
  1167. },
  1168. "type": "library",
  1169. "extra": {
  1170. "branch-alias": {
  1171. "dev-master": "1.0.x-dev"
  1172. }
  1173. },
  1174. "autoload": {
  1175. "psr-4": {
  1176. "Psr\\Cache\\": "src/"
  1177. }
  1178. },
  1179. "notification-url": "https://packagist.org/downloads/",
  1180. "license": [
  1181. "MIT"
  1182. ],
  1183. "authors": [
  1184. {
  1185. "name": "PHP-FIG",
  1186. "homepage": "http://www.php-fig.org/"
  1187. }
  1188. ],
  1189. "description": "Common interface for caching libraries",
  1190. "keywords": [
  1191. "cache",
  1192. "psr",
  1193. "psr-6"
  1194. ],
  1195. "time": "2016-08-06T20:24:11+00:00"
  1196. },
  1197. {
  1198. "name": "psr/container",
  1199. "version": "1.0.0",
  1200. "source": {
  1201. "type": "git",
  1202. "url": "https://github.com/php-fig/container.git",
  1203. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1204. },
  1205. "dist": {
  1206. "type": "zip",
  1207. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1208. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1209. "shasum": ""
  1210. },
  1211. "require": {
  1212. "php": ">=5.3.0"
  1213. },
  1214. "type": "library",
  1215. "extra": {
  1216. "branch-alias": {
  1217. "dev-master": "1.0.x-dev"
  1218. }
  1219. },
  1220. "autoload": {
  1221. "psr-4": {
  1222. "Psr\\Container\\": "src/"
  1223. }
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "authors": [
  1230. {
  1231. "name": "PHP-FIG",
  1232. "homepage": "http://www.php-fig.org/"
  1233. }
  1234. ],
  1235. "description": "Common Container Interface (PHP FIG PSR-11)",
  1236. "homepage": "https://github.com/php-fig/container",
  1237. "keywords": [
  1238. "PSR-11",
  1239. "container",
  1240. "container-interface",
  1241. "container-interop",
  1242. "psr"
  1243. ],
  1244. "time": "2017-02-14T16:28:37+00:00"
  1245. },
  1246. {
  1247. "name": "psr/log",
  1248. "version": "1.0.2",
  1249. "source": {
  1250. "type": "git",
  1251. "url": "https://github.com/php-fig/log.git",
  1252. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1253. },
  1254. "dist": {
  1255. "type": "zip",
  1256. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1257. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1258. "shasum": ""
  1259. },
  1260. "require": {
  1261. "php": ">=5.3.0"
  1262. },
  1263. "type": "library",
  1264. "extra": {
  1265. "branch-alias": {
  1266. "dev-master": "1.0.x-dev"
  1267. }
  1268. },
  1269. "autoload": {
  1270. "psr-4": {
  1271. "Psr\\Log\\": "Psr/Log/"
  1272. }
  1273. },
  1274. "notification-url": "https://packagist.org/downloads/",
  1275. "license": [
  1276. "MIT"
  1277. ],
  1278. "authors": [
  1279. {
  1280. "name": "PHP-FIG",
  1281. "homepage": "http://www.php-fig.org/"
  1282. }
  1283. ],
  1284. "description": "Common interface for logging libraries",
  1285. "homepage": "https://github.com/php-fig/log",
  1286. "keywords": [
  1287. "log",
  1288. "psr",
  1289. "psr-3"
  1290. ],
  1291. "time": "2016-10-10T12:19:37+00:00"
  1292. },
  1293. {
  1294. "name": "psr/simple-cache",
  1295. "version": "1.0.0",
  1296. "source": {
  1297. "type": "git",
  1298. "url": "https://github.com/php-fig/simple-cache.git",
  1299. "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24"
  1300. },
  1301. "dist": {
  1302. "type": "zip",
  1303. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/753fa598e8f3b9966c886fe13f370baa45ef0e24",
  1304. "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24",
  1305. "shasum": ""
  1306. },
  1307. "require": {
  1308. "php": ">=5.3.0"
  1309. },
  1310. "type": "library",
  1311. "extra": {
  1312. "branch-alias": {
  1313. "dev-master": "1.0.x-dev"
  1314. }
  1315. },
  1316. "autoload": {
  1317. "psr-4": {
  1318. "Psr\\SimpleCache\\": "src/"
  1319. }
  1320. },
  1321. "notification-url": "https://packagist.org/downloads/",
  1322. "license": [
  1323. "MIT"
  1324. ],
  1325. "authors": [
  1326. {
  1327. "name": "PHP-FIG",
  1328. "homepage": "http://www.php-fig.org/"
  1329. }
  1330. ],
  1331. "description": "Common interfaces for simple caching",
  1332. "keywords": [
  1333. "cache",
  1334. "caching",
  1335. "psr",
  1336. "psr-16",
  1337. "simple-cache"
  1338. ],
  1339. "time": "2017-01-02T13:31:39+00:00"
  1340. },
  1341. {
  1342. "name": "sensio/framework-extra-bundle",
  1343. "version": "v5.1.3",
  1344. "source": {
  1345. "type": "git",
  1346. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  1347. "reference": "0696496cb3e2d23add645d424699e5c723238aad"
  1348. },
  1349. "dist": {
  1350. "type": "zip",
  1351. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/0696496cb3e2d23add645d424699e5c723238aad",
  1352. "reference": "0696496cb3e2d23add645d424699e5c723238aad",
  1353. "shasum": ""
  1354. },
  1355. "require": {
  1356. "doctrine/common": "^2.2",
  1357. "symfony/config": "^3.3|^4.0",
  1358. "symfony/dependency-injection": "^3.3|^4.0",
  1359. "symfony/framework-bundle": "^3.3|^4.0",
  1360. "symfony/http-kernel": "^3.3|^4.0"
  1361. },
  1362. "require-dev": {
  1363. "doctrine/doctrine-bundle": "^1.6",
  1364. "doctrine/orm": "^2.5",
  1365. "symfony/browser-kit": "^3.3|^4.0",
  1366. "symfony/dom-crawler": "^3.3|^4.0",
  1367. "symfony/expression-language": "^3.3|^4.0",
  1368. "symfony/finder": "^3.3|^4.0",
  1369. "symfony/phpunit-bridge": "^3.3|^4.0",
  1370. "symfony/psr-http-message-bridge": "^0.3",
  1371. "symfony/security-bundle": "^3.3|^4.0",
  1372. "symfony/twig-bundle": "^3.3|^4.0",
  1373. "symfony/yaml": "^3.3|^4.0",
  1374. "twig/twig": "~1.12|~2.0",
  1375. "zendframework/zend-diactoros": "^1.3"
  1376. },
  1377. "suggest": {
  1378. "symfony/expression-language": "",
  1379. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  1380. "symfony/security-bundle": ""
  1381. },
  1382. "type": "symfony-bundle",
  1383. "extra": {
  1384. "branch-alias": {
  1385. "dev-master": "5.1.x-dev"
  1386. }
  1387. },
  1388. "autoload": {
  1389. "psr-4": {
  1390. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  1391. }
  1392. },
  1393. "notification-url": "https://packagist.org/downloads/",
  1394. "license": [
  1395. "MIT"
  1396. ],
  1397. "authors": [
  1398. {
  1399. "name": "Fabien Potencier",
  1400. "email": "fabien@symfony.com"
  1401. }
  1402. ],
  1403. "description": "This bundle provides a way to configure your controllers with annotations",
  1404. "keywords": [
  1405. "annotations",
  1406. "controllers"
  1407. ],
  1408. "time": "2017-12-04T18:33:55+00:00"
  1409. },
  1410. {
  1411. "name": "sensiolabs/security-checker",
  1412. "version": "v4.1.6",
  1413. "source": {
  1414. "type": "git",
  1415. "url": "https://github.com/sensiolabs/security-checker.git",
  1416. "reference": "387b6a3b723ba35588b33d5f8d14e28ed608bd30"
  1417. },
  1418. "dist": {
  1419. "type": "zip",
  1420. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/387b6a3b723ba35588b33d5f8d14e28ed608bd30",
  1421. "reference": "387b6a3b723ba35588b33d5f8d14e28ed608bd30",
  1422. "shasum": ""
  1423. },
  1424. "require": {
  1425. "composer/ca-bundle": "^1.0",
  1426. "symfony/console": "~2.7|~3.0|~4.0"
  1427. },
  1428. "bin": [
  1429. "security-checker"
  1430. ],
  1431. "type": "library",
  1432. "extra": {
  1433. "branch-alias": {
  1434. "dev-master": "4.1-dev"
  1435. }
  1436. },
  1437. "autoload": {
  1438. "psr-0": {
  1439. "SensioLabs\\Security": ""
  1440. }
  1441. },
  1442. "notification-url": "https://packagist.org/downloads/",
  1443. "license": [
  1444. "MIT"
  1445. ],
  1446. "authors": [
  1447. {
  1448. "name": "Fabien Potencier",
  1449. "email": "fabien.potencier@gmail.com"
  1450. }
  1451. ],
  1452. "description": "A security checker for your composer.lock",
  1453. "time": "2017-10-29T18:48:08+00:00"
  1454. },
  1455. {
  1456. "name": "symfony/asset",
  1457. "version": "v4.0.3",
  1458. "source": {
  1459. "type": "git",
  1460. "url": "https://github.com/symfony/asset.git",
  1461. "reference": "db6063ab6e71c0d4910328a4d10eba197e1d6b40"
  1462. },
  1463. "dist": {
  1464. "type": "zip",
  1465. "url": "https://api.github.com/repos/symfony/asset/zipball/db6063ab6e71c0d4910328a4d10eba197e1d6b40",
  1466. "reference": "db6063ab6e71c0d4910328a4d10eba197e1d6b40",
  1467. "shasum": ""
  1468. },
  1469. "require": {
  1470. "php": "^7.1.3"
  1471. },
  1472. "require-dev": {
  1473. "symfony/http-foundation": "~3.4|~4.0",
  1474. "symfony/http-kernel": "~3.4|~4.0"
  1475. },
  1476. "suggest": {
  1477. "symfony/http-foundation": ""
  1478. },
  1479. "type": "library",
  1480. "extra": {
  1481. "branch-alias": {
  1482. "dev-master": "4.0-dev"
  1483. }
  1484. },
  1485. "autoload": {
  1486. "psr-4": {
  1487. "Symfony\\Component\\Asset\\": ""
  1488. },
  1489. "exclude-from-classmap": [
  1490. "/Tests/"
  1491. ]
  1492. },
  1493. "notification-url": "https://packagist.org/downloads/",
  1494. "license": [
  1495. "MIT"
  1496. ],
  1497. "authors": [
  1498. {
  1499. "name": "Fabien Potencier",
  1500. "email": "fabien@symfony.com"
  1501. },
  1502. {
  1503. "name": "Symfony Community",
  1504. "homepage": "https://symfony.com/contributors"
  1505. }
  1506. ],
  1507. "description": "Symfony Asset Component",
  1508. "homepage": "https://symfony.com",
  1509. "time": "2018-01-03T07:38:00+00:00"
  1510. },
  1511. {
  1512. "name": "symfony/cache",
  1513. "version": "v4.0.3",
  1514. "source": {
  1515. "type": "git",
  1516. "url": "https://github.com/symfony/cache.git",
  1517. "reference": "1ebe207de664355b1699d35b12b0563c38a47b4e"
  1518. },
  1519. "dist": {
  1520. "type": "zip",
  1521. "url": "https://api.github.com/repos/symfony/cache/zipball/1ebe207de664355b1699d35b12b0563c38a47b4e",
  1522. "reference": "1ebe207de664355b1699d35b12b0563c38a47b4e",
  1523. "shasum": ""
  1524. },
  1525. "require": {
  1526. "php": "^7.1.3",
  1527. "psr/cache": "~1.0",
  1528. "psr/log": "~1.0",
  1529. "psr/simple-cache": "^1.0"
  1530. },
  1531. "conflict": {
  1532. "symfony/var-dumper": "<3.4"
  1533. },
  1534. "provide": {
  1535. "psr/cache-implementation": "1.0",
  1536. "psr/simple-cache-implementation": "1.0"
  1537. },
  1538. "require-dev": {
  1539. "cache/integration-tests": "dev-master",
  1540. "doctrine/cache": "~1.6",
  1541. "doctrine/dbal": "~2.4",
  1542. "predis/predis": "~1.0"
  1543. },
  1544. "type": "library",
  1545. "extra": {
  1546. "branch-alias": {
  1547. "dev-master": "4.0-dev"
  1548. }
  1549. },
  1550. "autoload": {
  1551. "psr-4": {
  1552. "Symfony\\Component\\Cache\\": ""
  1553. },
  1554. "exclude-from-classmap": [
  1555. "/Tests/"
  1556. ]
  1557. },
  1558. "notification-url": "https://packagist.org/downloads/",
  1559. "license": [
  1560. "MIT"
  1561. ],
  1562. "authors": [
  1563. {
  1564. "name": "Nicolas Grekas",
  1565. "email": "p@tchwork.com"
  1566. },
  1567. {
  1568. "name": "Symfony Community",
  1569. "homepage": "https://symfony.com/contributors"
  1570. }
  1571. ],
  1572. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  1573. "homepage": "https://symfony.com",
  1574. "keywords": [
  1575. "caching",
  1576. "psr6"
  1577. ],
  1578. "time": "2018-01-03T17:15:19+00:00"
  1579. },
  1580. {
  1581. "name": "symfony/config",
  1582. "version": "v4.0.3",
  1583. "source": {
  1584. "type": "git",
  1585. "url": "https://github.com/symfony/config.git",
  1586. "reference": "0e86d267db0851cf55f339c97df00d693fe8592f"
  1587. },
  1588. "dist": {
  1589. "type": "zip",
  1590. "url": "https://api.github.com/repos/symfony/config/zipball/0e86d267db0851cf55f339c97df00d693fe8592f",
  1591. "reference": "0e86d267db0851cf55f339c97df00d693fe8592f",
  1592. "shasum": ""
  1593. },
  1594. "require": {
  1595. "php": "^7.1.3",
  1596. "symfony/filesystem": "~3.4|~4.0"
  1597. },
  1598. "conflict": {
  1599. "symfony/finder": "<3.4"
  1600. },
  1601. "require-dev": {
  1602. "symfony/finder": "~3.4|~4.0",
  1603. "symfony/yaml": "~3.4|~4.0"
  1604. },
  1605. "suggest": {
  1606. "symfony/yaml": "To use the yaml reference dumper"
  1607. },
  1608. "type": "library",
  1609. "extra": {
  1610. "branch-alias": {
  1611. "dev-master": "4.0-dev"
  1612. }
  1613. },
  1614. "autoload": {
  1615. "psr-4": {
  1616. "Symfony\\Component\\Config\\": ""
  1617. },
  1618. "exclude-from-classmap": [
  1619. "/Tests/"
  1620. ]
  1621. },
  1622. "notification-url": "https://packagist.org/downloads/",
  1623. "license": [
  1624. "MIT"
  1625. ],
  1626. "authors": [
  1627. {
  1628. "name": "Fabien Potencier",
  1629. "email": "fabien@symfony.com"
  1630. },
  1631. {
  1632. "name": "Symfony Community",
  1633. "homepage": "https://symfony.com/contributors"
  1634. }
  1635. ],
  1636. "description": "Symfony Config Component",
  1637. "homepage": "https://symfony.com",
  1638. "time": "2018-01-03T07:38:00+00:00"
  1639. },
  1640. {
  1641. "name": "symfony/console",
  1642. "version": "v4.0.3",
  1643. "source": {
  1644. "type": "git",
  1645. "url": "https://github.com/symfony/console.git",
  1646. "reference": "fe0e69d7162cba0885791cf7eea5f0d7bc0f897e"
  1647. },
  1648. "dist": {
  1649. "type": "zip",
  1650. "url": "https://api.github.com/repos/symfony/console/zipball/fe0e69d7162cba0885791cf7eea5f0d7bc0f897e",
  1651. "reference": "fe0e69d7162cba0885791cf7eea5f0d7bc0f897e",
  1652. "shasum": ""
  1653. },
  1654. "require": {
  1655. "php": "^7.1.3",
  1656. "symfony/polyfill-mbstring": "~1.0"
  1657. },
  1658. "conflict": {
  1659. "symfony/dependency-injection": "<3.4",
  1660. "symfony/process": "<3.3"
  1661. },
  1662. "require-dev": {
  1663. "psr/log": "~1.0",
  1664. "symfony/config": "~3.4|~4.0",
  1665. "symfony/dependency-injection": "~3.4|~4.0",
  1666. "symfony/event-dispatcher": "~3.4|~4.0",
  1667. "symfony/lock": "~3.4|~4.0",
  1668. "symfony/process": "~3.4|~4.0"
  1669. },
  1670. "suggest": {
  1671. "psr/log": "For using the console logger",
  1672. "symfony/event-dispatcher": "",
  1673. "symfony/lock": "",
  1674. "symfony/process": ""
  1675. },
  1676. "type": "library",
  1677. "extra": {
  1678. "branch-alias": {
  1679. "dev-master": "4.0-dev"
  1680. }
  1681. },
  1682. "autoload": {
  1683. "psr-4": {
  1684. "Symfony\\Component\\Console\\": ""
  1685. },
  1686. "exclude-from-classmap": [
  1687. "/Tests/"
  1688. ]
  1689. },
  1690. "notification-url": "https://packagist.org/downloads/",
  1691. "license": [
  1692. "MIT"
  1693. ],
  1694. "authors": [
  1695. {
  1696. "name": "Fabien Potencier",
  1697. "email": "fabien@symfony.com"
  1698. },
  1699. {
  1700. "name": "Symfony Community",
  1701. "homepage": "https://symfony.com/contributors"
  1702. }
  1703. ],
  1704. "description": "Symfony Console Component",
  1705. "homepage": "https://symfony.com",
  1706. "time": "2018-01-03T07:38:00+00:00"
  1707. },
  1708. {
  1709. "name": "symfony/debug",
  1710. "version": "v4.0.3",
  1711. "source": {
  1712. "type": "git",
  1713. "url": "https://github.com/symfony/debug.git",
  1714. "reference": "9ae4223a661b56a9abdce144de4886cca37f198f"
  1715. },
  1716. "dist": {
  1717. "type": "zip",
  1718. "url": "https://api.github.com/repos/symfony/debug/zipball/9ae4223a661b56a9abdce144de4886cca37f198f",
  1719. "reference": "9ae4223a661b56a9abdce144de4886cca37f198f",
  1720. "shasum": ""
  1721. },
  1722. "require": {
  1723. "php": "^7.1.3",
  1724. "psr/log": "~1.0"
  1725. },
  1726. "conflict": {
  1727. "symfony/http-kernel": "<3.4"
  1728. },
  1729. "require-dev": {
  1730. "symfony/http-kernel": "~3.4|~4.0"
  1731. },
  1732. "type": "library",
  1733. "extra": {
  1734. "branch-alias": {
  1735. "dev-master": "4.0-dev"
  1736. }
  1737. },
  1738. "autoload": {
  1739. "psr-4": {
  1740. "Symfony\\Component\\Debug\\": ""
  1741. },
  1742. "exclude-from-classmap": [
  1743. "/Tests/"
  1744. ]
  1745. },
  1746. "notification-url": "https://packagist.org/downloads/",
  1747. "license": [
  1748. "MIT"
  1749. ],
  1750. "authors": [
  1751. {
  1752. "name": "Fabien Potencier",
  1753. "email": "fabien@symfony.com"
  1754. },
  1755. {
  1756. "name": "Symfony Community",
  1757. "homepage": "https://symfony.com/contributors"
  1758. }
  1759. ],
  1760. "description": "Symfony Debug Component",
  1761. "homepage": "https://symfony.com",
  1762. "time": "2018-01-03T17:15:19+00:00"
  1763. },
  1764. {
  1765. "name": "symfony/dependency-injection",
  1766. "version": "v4.0.3",
  1767. "source": {
  1768. "type": "git",
  1769. "url": "https://github.com/symfony/dependency-injection.git",
  1770. "reference": "67bf5e4f4da85624f30a5e43b7f43225c8b71959"
  1771. },
  1772. "dist": {
  1773. "type": "zip",
  1774. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/67bf5e4f4da85624f30a5e43b7f43225c8b71959",
  1775. "reference": "67bf5e4f4da85624f30a5e43b7f43225c8b71959",
  1776. "shasum": ""
  1777. },
  1778. "require": {
  1779. "php": "^7.1.3",
  1780. "psr/container": "^1.0"
  1781. },
  1782. "conflict": {
  1783. "symfony/config": "<3.4",
  1784. "symfony/finder": "<3.4",
  1785. "symfony/proxy-manager-bridge": "<3.4",
  1786. "symfony/yaml": "<3.4"
  1787. },
  1788. "provide": {
  1789. "psr/container-implementation": "1.0"
  1790. },
  1791. "require-dev": {
  1792. "symfony/config": "~3.4|~4.0",
  1793. "symfony/expression-language": "~3.4|~4.0",
  1794. "symfony/yaml": "~3.4|~4.0"
  1795. },
  1796. "suggest": {
  1797. "symfony/config": "",
  1798. "symfony/expression-language": "For using expressions in service container configuration",
  1799. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  1800. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  1801. "symfony/yaml": ""
  1802. },
  1803. "type": "library",
  1804. "extra": {
  1805. "branch-alias": {
  1806. "dev-master": "4.0-dev"
  1807. }
  1808. },
  1809. "autoload": {
  1810. "psr-4": {
  1811. "Symfony\\Component\\DependencyInjection\\": ""
  1812. },
  1813. "exclude-from-classmap": [
  1814. "/Tests/"
  1815. ]
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "MIT"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "Fabien Potencier",
  1824. "email": "fabien@symfony.com"
  1825. },
  1826. {
  1827. "name": "Symfony Community",
  1828. "homepage": "https://symfony.com/contributors"
  1829. }
  1830. ],
  1831. "description": "Symfony DependencyInjection Component",
  1832. "homepage": "https://symfony.com",
  1833. "time": "2018-01-04T15:52:56+00:00"
  1834. },
  1835. {
  1836. "name": "symfony/doctrine-bridge",
  1837. "version": "v4.0.3",
  1838. "source": {
  1839. "type": "git",
  1840. "url": "https://github.com/symfony/doctrine-bridge.git",
  1841. "reference": "85d54596a1fe1089536ce03979a1992bf71b7e04"
  1842. },
  1843. "dist": {
  1844. "type": "zip",
  1845. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/85d54596a1fe1089536ce03979a1992bf71b7e04",
  1846. "reference": "85d54596a1fe1089536ce03979a1992bf71b7e04",
  1847. "shasum": ""
  1848. },
  1849. "require": {
  1850. "doctrine/common": "~2.4",
  1851. "php": "^7.1.3",
  1852. "symfony/polyfill-mbstring": "~1.0"
  1853. },
  1854. "conflict": {
  1855. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  1856. "symfony/dependency-injection": "<3.4"
  1857. },
  1858. "require-dev": {
  1859. "doctrine/data-fixtures": "1.0.*",
  1860. "doctrine/dbal": "~2.4",
  1861. "doctrine/orm": "^2.4.5",
  1862. "symfony/dependency-injection": "~3.4|~4.0",
  1863. "symfony/expression-language": "~3.4|~4.0",
  1864. "symfony/form": "~3.4|~4.0",
  1865. "symfony/http-kernel": "~3.4|~4.0",
  1866. "symfony/property-access": "~3.4|~4.0",
  1867. "symfony/property-info": "~3.4|~4.0",
  1868. "symfony/proxy-manager-bridge": "~3.4|~4.0",
  1869. "symfony/security": "~3.4|~4.0",
  1870. "symfony/stopwatch": "~3.4|~4.0",
  1871. "symfony/translation": "~3.4|~4.0",
  1872. "symfony/validator": "~3.4|~4.0"
  1873. },
  1874. "suggest": {
  1875. "doctrine/data-fixtures": "",
  1876. "doctrine/dbal": "",
  1877. "doctrine/orm": "",
  1878. "symfony/form": "",
  1879. "symfony/property-info": "",
  1880. "symfony/validator": ""
  1881. },
  1882. "type": "symfony-bridge",
  1883. "extra": {
  1884. "branch-alias": {
  1885. "dev-master": "4.0-dev"
  1886. }
  1887. },
  1888. "autoload": {
  1889. "psr-4": {
  1890. "Symfony\\Bridge\\Doctrine\\": ""
  1891. },
  1892. "exclude-from-classmap": [
  1893. "/Tests/"
  1894. ]
  1895. },
  1896. "notification-url": "https://packagist.org/downloads/",
  1897. "license": [
  1898. "MIT"
  1899. ],
  1900. "authors": [
  1901. {
  1902. "name": "Fabien Potencier",
  1903. "email": "fabien@symfony.com"
  1904. },
  1905. {
  1906. "name": "Symfony Community",
  1907. "homepage": "https://symfony.com/contributors"
  1908. }
  1909. ],
  1910. "description": "Symfony Doctrine Bridge",
  1911. "homepage": "https://symfony.com",
  1912. "time": "2018-01-03T07:38:00+00:00"
  1913. },
  1914. {
  1915. "name": "symfony/event-dispatcher",
  1916. "version": "v4.0.3",
  1917. "source": {
  1918. "type": "git",
  1919. "url": "https://github.com/symfony/event-dispatcher.git",
  1920. "reference": "74d33aac36208c4d6757807d9f598f0133a3a4eb"
  1921. },
  1922. "dist": {
  1923. "type": "zip",
  1924. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/74d33aac36208c4d6757807d9f598f0133a3a4eb",
  1925. "reference": "74d33aac36208c4d6757807d9f598f0133a3a4eb",
  1926. "shasum": ""
  1927. },
  1928. "require": {
  1929. "php": "^7.1.3"
  1930. },
  1931. "conflict": {
  1932. "symfony/dependency-injection": "<3.4"
  1933. },
  1934. "require-dev": {
  1935. "psr/log": "~1.0",
  1936. "symfony/config": "~3.4|~4.0",
  1937. "symfony/dependency-injection": "~3.4|~4.0",
  1938. "symfony/expression-language": "~3.4|~4.0",
  1939. "symfony/stopwatch": "~3.4|~4.0"
  1940. },
  1941. "suggest": {
  1942. "symfony/dependency-injection": "",
  1943. "symfony/http-kernel": ""
  1944. },
  1945. "type": "library",
  1946. "extra": {
  1947. "branch-alias": {
  1948. "dev-master": "4.0-dev"
  1949. }
  1950. },
  1951. "autoload": {
  1952. "psr-4": {
  1953. "Symfony\\Component\\EventDispatcher\\": ""
  1954. },
  1955. "exclude-from-classmap": [
  1956. "/Tests/"
  1957. ]
  1958. },
  1959. "notification-url": "https://packagist.org/downloads/",
  1960. "license": [
  1961. "MIT"
  1962. ],
  1963. "authors": [
  1964. {
  1965. "name": "Fabien Potencier",
  1966. "email": "fabien@symfony.com"
  1967. },
  1968. {
  1969. "name": "Symfony Community",
  1970. "homepage": "https://symfony.com/contributors"
  1971. }
  1972. ],
  1973. "description": "Symfony EventDispatcher Component",
  1974. "homepage": "https://symfony.com",
  1975. "time": "2018-01-03T07:38:00+00:00"
  1976. },
  1977. {
  1978. "name": "symfony/filesystem",
  1979. "version": "v4.0.3",
  1980. "source": {
  1981. "type": "git",
  1982. "url": "https://github.com/symfony/filesystem.git",
  1983. "reference": "760e47a4ee64b4c48f4b30017011e09d4c0f05ed"
  1984. },
  1985. "dist": {
  1986. "type": "zip",
  1987. "url": "https://api.github.com/repos/symfony/filesystem/zipball/760e47a4ee64b4c48f4b30017011e09d4c0f05ed",
  1988. "reference": "760e47a4ee64b4c48f4b30017011e09d4c0f05ed",
  1989. "shasum": ""
  1990. },
  1991. "require": {
  1992. "php": "^7.1.3"
  1993. },
  1994. "type": "library",
  1995. "extra": {
  1996. "branch-alias": {
  1997. "dev-master": "4.0-dev"
  1998. }
  1999. },
  2000. "autoload": {
  2001. "psr-4": {
  2002. "Symfony\\Component\\Filesystem\\": ""
  2003. },
  2004. "exclude-from-classmap": [
  2005. "/Tests/"
  2006. ]
  2007. },
  2008. "notification-url": "https://packagist.org/downloads/",
  2009. "license": [
  2010. "MIT"
  2011. ],
  2012. "authors": [
  2013. {
  2014. "name": "Fabien Potencier",
  2015. "email": "fabien@symfony.com"
  2016. },
  2017. {
  2018. "name": "Symfony Community",
  2019. "homepage": "https://symfony.com/contributors"
  2020. }
  2021. ],
  2022. "description": "Symfony Filesystem Component",
  2023. "homepage": "https://symfony.com",
  2024. "time": "2018-01-03T07:38:00+00:00"
  2025. },
  2026. {
  2027. "name": "symfony/finder",
  2028. "version": "v4.0.3",
  2029. "source": {
  2030. "type": "git",
  2031. "url": "https://github.com/symfony/finder.git",
  2032. "reference": "8b08180f2b7ccb41062366b9ad91fbc4f1af8601"
  2033. },
  2034. "dist": {
  2035. "type": "zip",
  2036. "url": "https://api.github.com/repos/symfony/finder/zipball/8b08180f2b7ccb41062366b9ad91fbc4f1af8601",
  2037. "reference": "8b08180f2b7ccb41062366b9ad91fbc4f1af8601",
  2038. "shasum": ""
  2039. },
  2040. "require": {
  2041. "php": "^7.1.3"
  2042. },
  2043. "type": "library",
  2044. "extra": {
  2045. "branch-alias": {
  2046. "dev-master": "4.0-dev"
  2047. }
  2048. },
  2049. "autoload": {
  2050. "psr-4": {
  2051. "Symfony\\Component\\Finder\\": ""
  2052. },
  2053. "exclude-from-classmap": [
  2054. "/Tests/"
  2055. ]
  2056. },
  2057. "notification-url": "https://packagist.org/downloads/",
  2058. "license": [
  2059. "MIT"
  2060. ],
  2061. "authors": [
  2062. {
  2063. "name": "Fabien Potencier",
  2064. "email": "fabien@symfony.com"
  2065. },
  2066. {
  2067. "name": "Symfony Community",
  2068. "homepage": "https://symfony.com/contributors"
  2069. }
  2070. ],
  2071. "description": "Symfony Finder Component",
  2072. "homepage": "https://symfony.com",
  2073. "time": "2018-01-03T07:38:00+00:00"
  2074. },
  2075. {
  2076. "name": "symfony/flex",
  2077. "version": "v1.0.60",
  2078. "source": {
  2079. "type": "git",
  2080. "url": "https://github.com/symfony/flex.git",
  2081. "reference": "066fe955b1a134841cdcc068a9f843594fdb1adc"
  2082. },
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://api.github.com/repos/symfony/flex/zipball/066fe955b1a134841cdcc068a9f843594fdb1adc",
  2086. "reference": "066fe955b1a134841cdcc068a9f843594fdb1adc",
  2087. "shasum": ""
  2088. },
  2089. "require": {
  2090. "composer-plugin-api": "^1.1",
  2091. "php": "^7.0"
  2092. },
  2093. "require-dev": {
  2094. "composer/composer": "^1.4",
  2095. "symfony/phpunit-bridge": "^3.2.8"
  2096. },
  2097. "type": "composer-plugin",
  2098. "extra": {
  2099. "branch-alias": {
  2100. "dev-master": "1.0-dev"
  2101. },
  2102. "class": "Symfony\\Flex\\Flex"
  2103. },
  2104. "autoload": {
  2105. "psr-4": {
  2106. "Symfony\\Flex\\": "src"
  2107. }
  2108. },
  2109. "notification-url": "https://packagist.org/downloads/",
  2110. "license": [
  2111. "MIT"
  2112. ],
  2113. "authors": [
  2114. {
  2115. "name": "Fabien Potencier",
  2116. "email": "fabien.potencier@gmail.com"
  2117. }
  2118. ],
  2119. "time": "2018-01-10T07:00:13+00:00"
  2120. },
  2121. {
  2122. "name": "symfony/framework-bundle",
  2123. "version": "v4.0.3",
  2124. "source": {
  2125. "type": "git",
  2126. "url": "https://github.com/symfony/framework-bundle.git",
  2127. "reference": "7d80f8dcebce598b03dfe75a8669d8a1942687cd"
  2128. },
  2129. "dist": {
  2130. "type": "zip",
  2131. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/7d80f8dcebce598b03dfe75a8669d8a1942687cd",
  2132. "reference": "7d80f8dcebce598b03dfe75a8669d8a1942687cd",
  2133. "shasum": ""
  2134. },
  2135. "require": {
  2136. "ext-xml": "*",
  2137. "php": "^7.1.3",
  2138. "symfony/cache": "~3.4|~4.0",
  2139. "symfony/config": "~3.4|~4.0",
  2140. "symfony/dependency-injection": "^3.4.3|^4.0.3",
  2141. "symfony/event-dispatcher": "~3.4|~4.0",
  2142. "symfony/filesystem": "~3.4|~4.0",
  2143. "symfony/finder": "~3.4|~4.0",
  2144. "symfony/http-foundation": "~3.4|~4.0",
  2145. "symfony/http-kernel": "~3.4|~4.0",
  2146. "symfony/polyfill-mbstring": "~1.0",
  2147. "symfony/routing": "~3.4|~4.0"
  2148. },
  2149. "conflict": {
  2150. "phpdocumentor/reflection-docblock": "<3.0",
  2151. "phpdocumentor/type-resolver": "<0.2.1",
  2152. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  2153. "symfony/asset": "<3.4",
  2154. "symfony/console": "<3.4",
  2155. "symfony/form": "<3.4",
  2156. "symfony/property-info": "<3.4",
  2157. "symfony/serializer": "<3.4",
  2158. "symfony/stopwatch": "<3.4",
  2159. "symfony/translation": "<3.4",
  2160. "symfony/validator": "<3.4",
  2161. "symfony/workflow": "<3.4"
  2162. },
  2163. "require-dev": {
  2164. "doctrine/annotations": "~1.0",
  2165. "doctrine/cache": "~1.0",
  2166. "fig/link-util": "^1.0",
  2167. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  2168. "symfony/asset": "~3.4|~4.0",
  2169. "symfony/browser-kit": "~3.4|~4.0",
  2170. "symfony/console": "~3.4|~4.0",
  2171. "symfony/css-selector": "~3.4|~4.0",
  2172. "symfony/dom-crawler": "~3.4|~4.0",
  2173. "symfony/expression-language": "~3.4|~4.0",
  2174. "symfony/form": "~3.4|~4.0",
  2175. "symfony/lock": "~3.4|~4.0",
  2176. "symfony/polyfill-intl-icu": "~1.0",
  2177. "symfony/process": "~3.4|~4.0",
  2178. "symfony/property-info": "~3.4|~4.0",
  2179. "symfony/security": "~3.4|~4.0",
  2180. "symfony/security-core": "~3.4|~4.0",
  2181. "symfony/security-csrf": "~3.4|~4.0",
  2182. "symfony/serializer": "~3.4|~4.0",
  2183. "symfony/stopwatch": "~3.4|~4.0",
  2184. "symfony/templating": "~3.4|~4.0",
  2185. "symfony/translation": "~3.4|~4.0",
  2186. "symfony/validator": "~3.4|~4.0",
  2187. "symfony/var-dumper": "~3.4|~4.0",
  2188. "symfony/web-link": "~3.4|~4.0",
  2189. "symfony/workflow": "~3.4|~4.0",
  2190. "symfony/yaml": "~3.4|~4.0",
  2191. "twig/twig": "~1.34|~2.4"
  2192. },
  2193. "suggest": {
  2194. "ext-apcu": "For best performance of the system caches",
  2195. "symfony/console": "For using the console commands",
  2196. "symfony/form": "For using forms",
  2197. "symfony/property-info": "For using the property_info service",
  2198. "symfony/serializer": "For using the serializer service",
  2199. "symfony/validator": "For using validation",
  2200. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  2201. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  2202. },
  2203. "type": "symfony-bundle",
  2204. "extra": {
  2205. "branch-alias": {
  2206. "dev-master": "4.0-dev"
  2207. }
  2208. },
  2209. "autoload": {
  2210. "psr-4": {
  2211. "Symfony\\Bundle\\FrameworkBundle\\": ""
  2212. },
  2213. "exclude-from-classmap": [
  2214. "/Tests/"
  2215. ]
  2216. },
  2217. "notification-url": "https://packagist.org/downloads/",
  2218. "license": [
  2219. "MIT"
  2220. ],
  2221. "authors": [
  2222. {
  2223. "name": "Fabien Potencier",
  2224. "email": "fabien@symfony.com"
  2225. },
  2226. {
  2227. "name": "Symfony Community",
  2228. "homepage": "https://symfony.com/contributors"
  2229. }
  2230. ],
  2231. "description": "Symfony FrameworkBundle",
  2232. "homepage": "https://symfony.com",
  2233. "time": "2018-01-04T15:52:56+00:00"
  2234. },
  2235. {
  2236. "name": "symfony/http-foundation",
  2237. "version": "v4.0.3",
  2238. "source": {
  2239. "type": "git",
  2240. "url": "https://github.com/symfony/http-foundation.git",
  2241. "reference": "03fe5171e35966f43453e2e5c15d7fe65f7fb23b"
  2242. },
  2243. "dist": {
  2244. "type": "zip",
  2245. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/03fe5171e35966f43453e2e5c15d7fe65f7fb23b",
  2246. "reference": "03fe5171e35966f43453e2e5c15d7fe65f7fb23b",
  2247. "shasum": ""
  2248. },
  2249. "require": {
  2250. "php": "^7.1.3",
  2251. "symfony/polyfill-mbstring": "~1.1"
  2252. },
  2253. "require-dev": {
  2254. "symfony/expression-language": "~3.4|~4.0"
  2255. },
  2256. "type": "library",
  2257. "extra": {
  2258. "branch-alias": {
  2259. "dev-master": "4.0-dev"
  2260. }
  2261. },
  2262. "autoload": {
  2263. "psr-4": {
  2264. "Symfony\\Component\\HttpFoundation\\": ""
  2265. },
  2266. "exclude-from-classmap": [
  2267. "/Tests/"
  2268. ]
  2269. },
  2270. "notification-url": "https://packagist.org/downloads/",
  2271. "license": [
  2272. "MIT"
  2273. ],
  2274. "authors": [
  2275. {
  2276. "name": "Fabien Potencier",
  2277. "email": "fabien@symfony.com"
  2278. },
  2279. {
  2280. "name": "Symfony Community",
  2281. "homepage": "https://symfony.com/contributors"
  2282. }
  2283. ],
  2284. "description": "Symfony HttpFoundation Component",
  2285. "homepage": "https://symfony.com",
  2286. "time": "2018-01-03T17:15:19+00:00"
  2287. },
  2288. {
  2289. "name": "symfony/http-kernel",
  2290. "version": "v4.0.3",
  2291. "source": {
  2292. "type": "git",
  2293. "url": "https://github.com/symfony/http-kernel.git",
  2294. "reference": "f707ed09d3b5799a26c985de480d48b48540d41a"
  2295. },
  2296. "dist": {
  2297. "type": "zip",
  2298. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f707ed09d3b5799a26c985de480d48b48540d41a",
  2299. "reference": "f707ed09d3b5799a26c985de480d48b48540d41a",
  2300. "shasum": ""
  2301. },
  2302. "require": {
  2303. "php": "^7.1.3",
  2304. "psr/log": "~1.0",
  2305. "symfony/debug": "~3.4|~4.0",
  2306. "symfony/event-dispatcher": "~3.4|~4.0",
  2307. "symfony/http-foundation": "~3.4|~4.0"
  2308. },
  2309. "conflict": {
  2310. "symfony/config": "<3.4",
  2311. "symfony/dependency-injection": "<3.4",
  2312. "symfony/var-dumper": "<3.4",
  2313. "twig/twig": "<1.34|<2.4,>=2"
  2314. },
  2315. "provide": {
  2316. "psr/log-implementation": "1.0"
  2317. },
  2318. "require-dev": {
  2319. "psr/cache": "~1.0",
  2320. "symfony/browser-kit": "~3.4|~4.0",
  2321. "symfony/config": "~3.4|~4.0",
  2322. "symfony/console": "~3.4|~4.0",
  2323. "symfony/css-selector": "~3.4|~4.0",
  2324. "symfony/dependency-injection": "~3.4|~4.0",
  2325. "symfony/dom-crawler": "~3.4|~4.0",
  2326. "symfony/expression-language": "~3.4|~4.0",
  2327. "symfony/finder": "~3.4|~4.0",
  2328. "symfony/process": "~3.4|~4.0",
  2329. "symfony/routing": "~3.4|~4.0",
  2330. "symfony/stopwatch": "~3.4|~4.0",
  2331. "symfony/templating": "~3.4|~4.0",
  2332. "symfony/translation": "~3.4|~4.0",
  2333. "symfony/var-dumper": "~3.4|~4.0"
  2334. },
  2335. "suggest": {
  2336. "symfony/browser-kit": "",
  2337. "symfony/config": "",
  2338. "symfony/console": "",
  2339. "symfony/dependency-injection": "",
  2340. "symfony/var-dumper": ""
  2341. },
  2342. "type": "library",
  2343. "extra": {
  2344. "branch-alias": {
  2345. "dev-master": "4.0-dev"
  2346. }
  2347. },
  2348. "autoload": {
  2349. "psr-4": {
  2350. "Symfony\\Component\\HttpKernel\\": ""
  2351. },
  2352. "exclude-from-classmap": [
  2353. "/Tests/"
  2354. ]
  2355. },
  2356. "notification-url": "https://packagist.org/downloads/",
  2357. "license": [
  2358. "MIT"
  2359. ],
  2360. "authors": [
  2361. {
  2362. "name": "Fabien Potencier",
  2363. "email": "fabien@symfony.com"
  2364. },
  2365. {
  2366. "name": "Symfony Community",
  2367. "homepage": "https://symfony.com/contributors"
  2368. }
  2369. ],
  2370. "description": "Symfony HttpKernel Component",
  2371. "homepage": "https://symfony.com",
  2372. "time": "2018-01-05T08:54:25+00:00"
  2373. },
  2374. {
  2375. "name": "symfony/inflector",
  2376. "version": "v4.0.3",
  2377. "source": {
  2378. "type": "git",
  2379. "url": "https://github.com/symfony/inflector.git",
  2380. "reference": "da634a9968162f7c5c94f8d6949a4ede86085304"
  2381. },
  2382. "dist": {
  2383. "type": "zip",
  2384. "url": "https://api.github.com/repos/symfony/inflector/zipball/da634a9968162f7c5c94f8d6949a4ede86085304",
  2385. "reference": "da634a9968162f7c5c94f8d6949a4ede86085304",
  2386. "shasum": ""
  2387. },
  2388. "require": {
  2389. "php": "^7.1.3"
  2390. },
  2391. "type": "library",
  2392. "extra": {
  2393. "branch-alias": {
  2394. "dev-master": "4.0-dev"
  2395. }
  2396. },
  2397. "autoload": {
  2398. "psr-4": {
  2399. "Symfony\\Component\\Inflector\\": ""
  2400. },
  2401. "exclude-from-classmap": [
  2402. "/Tests/"
  2403. ]
  2404. },
  2405. "notification-url": "https://packagist.org/downloads/",
  2406. "license": [
  2407. "MIT"
  2408. ],
  2409. "authors": [
  2410. {
  2411. "name": "Bernhard Schussek",
  2412. "email": "bschussek@gmail.com"
  2413. },
  2414. {
  2415. "name": "Symfony Community",
  2416. "homepage": "https://symfony.com/contributors"
  2417. }
  2418. ],
  2419. "description": "Symfony Inflector Component",
  2420. "homepage": "https://symfony.com",
  2421. "keywords": [
  2422. "inflection",
  2423. "pluralize",
  2424. "singularize",
  2425. "string",
  2426. "symfony",
  2427. "words"
  2428. ],
  2429. "time": "2018-01-03T17:15:19+00:00"
  2430. },
  2431. {
  2432. "name": "symfony/lts",
  2433. "version": "dev-master",
  2434. "source": {
  2435. "type": "git",
  2436. "url": "https://github.com/symfony/lts.git",
  2437. "reference": "396c5fca8d73d01186df37d7031321a3c0c2bf92"
  2438. },
  2439. "dist": {
  2440. "type": "zip",
  2441. "url": "https://api.github.com/repos/symfony/lts/zipball/396c5fca8d73d01186df37d7031321a3c0c2bf92",
  2442. "reference": "396c5fca8d73d01186df37d7031321a3c0c2bf92",
  2443. "shasum": ""
  2444. },
  2445. "conflict": {
  2446. "symfony/asset": ">=5",
  2447. "symfony/browser-kit": ">=5",
  2448. "symfony/cache": ">=5",
  2449. "symfony/class-loader": ">=5",
  2450. "symfony/config": ">=5",
  2451. "symfony/console": ">=5",
  2452. "symfony/css-selector": ">=5",
  2453. "symfony/debug": ">=5",
  2454. "symfony/debug-bundle": ">=5",
  2455. "symfony/dependency-injection": ">=5",
  2456. "symfony/doctrine-bridge": ">=5",
  2457. "symfony/dom-crawler": ">=5",
  2458. "symfony/dotenv": ">=5",
  2459. "symfony/event-dispatcher": ">=5",
  2460. "symfony/expression-language": ">=5",
  2461. "symfony/filesystem": ">=5",
  2462. "symfony/finder": ">=5",
  2463. "symfony/form": ">=5",
  2464. "symfony/framework-bundle": ">=5",
  2465. "symfony/http-foundation": ">=5",
  2466. "symfony/http-kernel": ">=5",
  2467. "symfony/inflector": ">=5",
  2468. "symfony/intl": ">=5",
  2469. "symfony/ldap": ">=5",
  2470. "symfony/lock": ">=5",
  2471. "symfony/monolog-bridge": ">=5",
  2472. "symfony/options-resolver": ">=5",
  2473. "symfony/process": ">=5",
  2474. "symfony/property-access": ">=5",
  2475. "symfony/property-info": ">=5",
  2476. "symfony/proxy-manager-bridge": ">=5",
  2477. "symfony/routing": ">=5",
  2478. "symfony/security": ">=5",
  2479. "symfony/security-bundle": ">=5",
  2480. "symfony/security-core": ">=5",
  2481. "symfony/security-csrf": ">=5",
  2482. "symfony/security-guard": ">=5",
  2483. "symfony/security-http": ">=5",
  2484. "symfony/serializer": ">=5",
  2485. "symfony/stopwatch": ">=5",
  2486. "symfony/symfony": ">=5",
  2487. "symfony/templating": ">=5",
  2488. "symfony/translation": ">=5",
  2489. "symfony/twig-bridge": ">=5",
  2490. "symfony/twig-bundle": ">=5",
  2491. "symfony/validator": ">=5",
  2492. "symfony/var-dumper": ">=5",
  2493. "symfony/web-link": ">=5",
  2494. "symfony/web-profiler-bundle": ">=5",
  2495. "symfony/web-server-bundle": ">=5",
  2496. "symfony/workflow": ">=5",
  2497. "symfony/yaml": ">=5"
  2498. },
  2499. "type": "metapackage",
  2500. "extra": {
  2501. "branch-alias": {
  2502. "dev-master": "4-dev"
  2503. }
  2504. },
  2505. "notification-url": "https://packagist.org/downloads/",
  2506. "license": [
  2507. "MIT"
  2508. ],
  2509. "authors": [
  2510. {
  2511. "name": "Fabien Potencier",
  2512. "email": "fabien@symfony.com"
  2513. },
  2514. {
  2515. "name": "Symfony Community",
  2516. "homepage": "https://symfony.com/contributors"
  2517. }
  2518. ],
  2519. "description": "Enforces Long Term Supported versions of Symfony components",
  2520. "homepage": "https://symfony.com",
  2521. "time": "2017-10-19T02:16:32+00:00"
  2522. },
  2523. {
  2524. "name": "symfony/orm-pack",
  2525. "version": "v1.0.5",
  2526. "source": {
  2527. "type": "git",
  2528. "url": "https://github.com/symfony/orm-pack.git",
  2529. "reference": "1b58f752cd917a08c9c8df020781d9c46a2275b1"
  2530. },
  2531. "dist": {
  2532. "type": "zip",
  2533. "url": "https://api.github.com/repos/symfony/orm-pack/zipball/1b58f752cd917a08c9c8df020781d9c46a2275b1",
  2534. "reference": "1b58f752cd917a08c9c8df020781d9c46a2275b1",
  2535. "shasum": ""
  2536. },
  2537. "require": {
  2538. "doctrine/doctrine-bundle": "^1.6.10",
  2539. "doctrine/doctrine-migrations-bundle": "^1.3",
  2540. "doctrine/orm": "^2.5.11",
  2541. "php": "^7.0"
  2542. },
  2543. "type": "symfony-pack",
  2544. "notification-url": "https://packagist.org/downloads/",
  2545. "license": [
  2546. "MIT"
  2547. ],
  2548. "description": "A pack for the Doctrine ORM",
  2549. "time": "2017-12-12T01:47:50+00:00"
  2550. },
  2551. {
  2552. "name": "symfony/polyfill-mbstring",
  2553. "version": "v1.6.0",
  2554. "source": {
  2555. "type": "git",
  2556. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2557. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296"
  2558. },
  2559. "dist": {
  2560. "type": "zip",
  2561. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  2562. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  2563. "shasum": ""
  2564. },
  2565. "require": {
  2566. "php": ">=5.3.3"
  2567. },
  2568. "suggest": {
  2569. "ext-mbstring": "For best performance"
  2570. },
  2571. "type": "library",
  2572. "extra": {
  2573. "branch-alias": {
  2574. "dev-master": "1.6-dev"
  2575. }
  2576. },
  2577. "autoload": {
  2578. "psr-4": {
  2579. "Symfony\\Polyfill\\Mbstring\\": ""
  2580. },
  2581. "files": [
  2582. "bootstrap.php"
  2583. ]
  2584. },
  2585. "notification-url": "https://packagist.org/downloads/",
  2586. "license": [
  2587. "MIT"
  2588. ],
  2589. "authors": [
  2590. {
  2591. "name": "Nicolas Grekas",
  2592. "email": "p@tchwork.com"
  2593. },
  2594. {
  2595. "name": "Symfony Community",
  2596. "homepage": "https://symfony.com/contributors"
  2597. }
  2598. ],
  2599. "description": "Symfony polyfill for the Mbstring extension",
  2600. "homepage": "https://symfony.com",
  2601. "keywords": [
  2602. "compatibility",
  2603. "mbstring",
  2604. "polyfill",
  2605. "portable",
  2606. "shim"
  2607. ],
  2608. "time": "2017-10-11T12:05:26+00:00"
  2609. },
  2610. {
  2611. "name": "symfony/process",
  2612. "version": "v4.0.3",
  2613. "source": {
  2614. "type": "git",
  2615. "url": "https://github.com/symfony/process.git",
  2616. "reference": "2145b3e8137e463b1051b79440a59b38220944f0"
  2617. },
  2618. "dist": {
  2619. "type": "zip",
  2620. "url": "https://api.github.com/repos/symfony/process/zipball/2145b3e8137e463b1051b79440a59b38220944f0",
  2621. "reference": "2145b3e8137e463b1051b79440a59b38220944f0",
  2622. "shasum": ""
  2623. },
  2624. "require": {
  2625. "php": "^7.1.3"
  2626. },
  2627. "type": "library",
  2628. "extra": {
  2629. "branch-alias": {
  2630. "dev-master": "4.0-dev"
  2631. }
  2632. },
  2633. "autoload": {
  2634. "psr-4": {
  2635. "Symfony\\Component\\Process\\": ""
  2636. },
  2637. "exclude-from-classmap": [
  2638. "/Tests/"
  2639. ]
  2640. },
  2641. "notification-url": "https://packagist.org/downloads/",
  2642. "license": [
  2643. "MIT"
  2644. ],
  2645. "authors": [
  2646. {
  2647. "name": "Fabien Potencier",
  2648. "email": "fabien@symfony.com"
  2649. },
  2650. {
  2651. "name": "Symfony Community",
  2652. "homepage": "https://symfony.com/contributors"
  2653. }
  2654. ],
  2655. "description": "Symfony Process Component",
  2656. "homepage": "https://symfony.com",
  2657. "time": "2018-01-03T07:38:00+00:00"
  2658. },
  2659. {
  2660. "name": "symfony/property-access",
  2661. "version": "v4.0.3",
  2662. "source": {
  2663. "type": "git",
  2664. "url": "https://github.com/symfony/property-access.git",
  2665. "reference": "e0fef10eb7e11cae9421d8d89024dfeae0acffb7"
  2666. },
  2667. "dist": {
  2668. "type": "zip",
  2669. "url": "https://api.github.com/repos/symfony/property-access/zipball/e0fef10eb7e11cae9421d8d89024dfeae0acffb7",
  2670. "reference": "e0fef10eb7e11cae9421d8d89024dfeae0acffb7",
  2671. "shasum": ""
  2672. },
  2673. "require": {
  2674. "php": "^7.1.3",
  2675. "symfony/inflector": "~3.4|~4.0"
  2676. },
  2677. "require-dev": {
  2678. "symfony/cache": "~3.4|~4.0"
  2679. },
  2680. "suggest": {
  2681. "psr/cache-implementation": "To cache access methods."
  2682. },
  2683. "type": "library",
  2684. "extra": {
  2685. "branch-alias": {
  2686. "dev-master": "4.0-dev"
  2687. }
  2688. },
  2689. "autoload": {
  2690. "psr-4": {
  2691. "Symfony\\Component\\PropertyAccess\\": ""
  2692. },
  2693. "exclude-from-classmap": [
  2694. "/Tests/"
  2695. ]
  2696. },
  2697. "notification-url": "https://packagist.org/downloads/",
  2698. "license": [
  2699. "MIT"
  2700. ],
  2701. "authors": [
  2702. {
  2703. "name": "Fabien Potencier",
  2704. "email": "fabien@symfony.com"
  2705. },
  2706. {
  2707. "name": "Symfony Community",
  2708. "homepage": "https://symfony.com/contributors"
  2709. }
  2710. ],
  2711. "description": "Symfony PropertyAccess Component",
  2712. "homepage": "https://symfony.com",
  2713. "keywords": [
  2714. "access",
  2715. "array",
  2716. "extraction",
  2717. "index",
  2718. "injection",
  2719. "object",
  2720. "property",
  2721. "property path",
  2722. "reflection"
  2723. ],
  2724. "time": "2018-01-03T07:38:00+00:00"
  2725. },
  2726. {
  2727. "name": "symfony/requirements-checker",
  2728. "version": "v1.0.3",
  2729. "source": {
  2730. "type": "git",
  2731. "url": "https://github.com/symfony/requirements-checker.git",
  2732. "reference": "931997643fb512026241c7360c613bc1e61ed9cf"
  2733. },
  2734. "dist": {
  2735. "type": "zip",
  2736. "url": "https://api.github.com/repos/symfony/requirements-checker/zipball/931997643fb512026241c7360c613bc1e61ed9cf",
  2737. "reference": "931997643fb512026241c7360c613bc1e61ed9cf",
  2738. "shasum": ""
  2739. },
  2740. "require": {
  2741. "php": ">=5.3.9"
  2742. },
  2743. "bin": [
  2744. "bin/requirements-checker"
  2745. ],
  2746. "type": "library",
  2747. "extra": {
  2748. "branch-alias": {
  2749. "dev-master": "1.0.x-dev"
  2750. }
  2751. },
  2752. "autoload": {
  2753. "psr-4": {
  2754. "Symfony\\Requirements\\": "src/"
  2755. }
  2756. },
  2757. "notification-url": "https://packagist.org/downloads/",
  2758. "license": [
  2759. "MIT"
  2760. ],
  2761. "authors": [
  2762. {
  2763. "name": "Fabien Potencier",
  2764. "email": "fabien@symfony.com"
  2765. }
  2766. ],
  2767. "description": "Check Symfony requirements and give recommendations",
  2768. "keywords": [
  2769. "configuration",
  2770. "distribution"
  2771. ],
  2772. "time": "2017-11-10T15:30:47+00:00"
  2773. },
  2774. {
  2775. "name": "symfony/routing",
  2776. "version": "v4.0.3",
  2777. "source": {
  2778. "type": "git",
  2779. "url": "https://github.com/symfony/routing.git",
  2780. "reference": "a34b58ed26cc090f99b2ef833d609a6884581b3c"
  2781. },
  2782. "dist": {
  2783. "type": "zip",
  2784. "url": "https://api.github.com/repos/symfony/routing/zipball/a34b58ed26cc090f99b2ef833d609a6884581b3c",
  2785. "reference": "a34b58ed26cc090f99b2ef833d609a6884581b3c",
  2786. "shasum": ""
  2787. },
  2788. "require": {
  2789. "php": "^7.1.3"
  2790. },
  2791. "conflict": {
  2792. "symfony/config": "<3.4",
  2793. "symfony/dependency-injection": "<3.4",
  2794. "symfony/yaml": "<3.4"
  2795. },
  2796. "require-dev": {
  2797. "doctrine/annotations": "~1.0",
  2798. "doctrine/common": "~2.2",
  2799. "psr/log": "~1.0",
  2800. "symfony/config": "~3.4|~4.0",
  2801. "symfony/dependency-injection": "~3.4|~4.0",
  2802. "symfony/expression-language": "~3.4|~4.0",
  2803. "symfony/http-foundation": "~3.4|~4.0",
  2804. "symfony/yaml": "~3.4|~4.0"
  2805. },
  2806. "suggest": {
  2807. "doctrine/annotations": "For using the annotation loader",
  2808. "symfony/config": "For using the all-in-one router or any loader",
  2809. "symfony/dependency-injection": "For loading routes from a service",
  2810. "symfony/expression-language": "For using expression matching",
  2811. "symfony/http-foundation": "For using a Symfony Request object",
  2812. "symfony/yaml": "For using the YAML loader"
  2813. },
  2814. "type": "library",
  2815. "extra": {
  2816. "branch-alias": {
  2817. "dev-master": "4.0-dev"
  2818. }
  2819. },
  2820. "autoload": {
  2821. "psr-4": {
  2822. "Symfony\\Component\\Routing\\": ""
  2823. },
  2824. "exclude-from-classmap": [
  2825. "/Tests/"
  2826. ]
  2827. },
  2828. "notification-url": "https://packagist.org/downloads/",
  2829. "license": [
  2830. "MIT"
  2831. ],
  2832. "authors": [
  2833. {
  2834. "name": "Fabien Potencier",
  2835. "email": "fabien@symfony.com"
  2836. },
  2837. {
  2838. "name": "Symfony Community",
  2839. "homepage": "https://symfony.com/contributors"
  2840. }
  2841. ],
  2842. "description": "Symfony Routing Component",
  2843. "homepage": "https://symfony.com",
  2844. "keywords": [
  2845. "router",
  2846. "routing",
  2847. "uri",
  2848. "url"
  2849. ],
  2850. "time": "2018-01-04T15:52:56+00:00"
  2851. },
  2852. {
  2853. "name": "symfony/security",
  2854. "version": "v4.0.3",
  2855. "source": {
  2856. "type": "git",
  2857. "url": "https://github.com/symfony/security.git",
  2858. "reference": "dfc0ef20a75b723ab2f20449a7b5dd768800c9e2"
  2859. },
  2860. "dist": {
  2861. "type": "zip",
  2862. "url": "https://api.github.com/repos/symfony/security/zipball/dfc0ef20a75b723ab2f20449a7b5dd768800c9e2",
  2863. "reference": "dfc0ef20a75b723ab2f20449a7b5dd768800c9e2",
  2864. "shasum": ""
  2865. },
  2866. "require": {
  2867. "php": "^7.1.3",
  2868. "symfony/event-dispatcher": "~3.4|~4.0",
  2869. "symfony/http-foundation": "~3.4|~4.0",
  2870. "symfony/http-kernel": "~3.4|~4.0",
  2871. "symfony/property-access": "~3.4|~4.0"
  2872. },
  2873. "replace": {
  2874. "symfony/security-core": "self.version",
  2875. "symfony/security-csrf": "self.version",
  2876. "symfony/security-guard": "self.version",
  2877. "symfony/security-http": "self.version"
  2878. },
  2879. "require-dev": {
  2880. "psr/container": "^1.0",
  2881. "psr/log": "~1.0",
  2882. "symfony/expression-language": "~3.4|~4.0",
  2883. "symfony/finder": "~3.4|~4.0",
  2884. "symfony/ldap": "~3.4|~4.0",
  2885. "symfony/polyfill-intl-icu": "~1.0",
  2886. "symfony/routing": "~3.4|~4.0",
  2887. "symfony/validator": "~3.4|~4.0"
  2888. },
  2889. "suggest": {
  2890. "psr/container": "To instantiate the Security class",
  2891. "symfony/expression-language": "For using the expression voter",
  2892. "symfony/form": "",
  2893. "symfony/ldap": "For using the LDAP user and authentication providers",
  2894. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  2895. "symfony/validator": "For using the user password constraint"
  2896. },
  2897. "type": "library",
  2898. "extra": {
  2899. "branch-alias": {
  2900. "dev-master": "4.0-dev"
  2901. }
  2902. },
  2903. "autoload": {
  2904. "psr-4": {
  2905. "Symfony\\Component\\Security\\": ""
  2906. },
  2907. "exclude-from-classmap": [
  2908. "/Tests/"
  2909. ]
  2910. },
  2911. "notification-url": "https://packagist.org/downloads/",
  2912. "license": [
  2913. "MIT"
  2914. ],
  2915. "authors": [
  2916. {
  2917. "name": "Fabien Potencier",
  2918. "email": "fabien@symfony.com"
  2919. },
  2920. {
  2921. "name": "Symfony Community",
  2922. "homepage": "https://symfony.com/contributors"
  2923. }
  2924. ],
  2925. "description": "Symfony Security Component",
  2926. "homepage": "https://symfony.com",
  2927. "time": "2018-01-03T17:15:19+00:00"
  2928. },
  2929. {
  2930. "name": "symfony/twig-bridge",
  2931. "version": "v4.0.3",
  2932. "source": {
  2933. "type": "git",
  2934. "url": "https://github.com/symfony/twig-bridge.git",
  2935. "reference": "92b7c3f30fc8d23ac4be8da4e575a3bb7ea903c1"
  2936. },
  2937. "dist": {
  2938. "type": "zip",
  2939. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/92b7c3f30fc8d23ac4be8da4e575a3bb7ea903c1",
  2940. "reference": "92b7c3f30fc8d23ac4be8da4e575a3bb7ea903c1",
  2941. "shasum": ""
  2942. },
  2943. "require": {
  2944. "php": "^7.1.3",
  2945. "twig/twig": "^1.35|^2.4.4"
  2946. },
  2947. "conflict": {
  2948. "symfony/console": "<3.4",
  2949. "symfony/form": "<3.4"
  2950. },
  2951. "require-dev": {
  2952. "symfony/asset": "~3.4|~4.0",
  2953. "symfony/console": "~3.4|~4.0",
  2954. "symfony/dependency-injection": "~3.4|~4.0",
  2955. "symfony/expression-language": "~3.4|~4.0",
  2956. "symfony/finder": "~3.4|~4.0",
  2957. "symfony/form": "~3.4|~4.0",
  2958. "symfony/http-foundation": "~3.4|~4.0",
  2959. "symfony/http-kernel": "~3.4|~4.0",
  2960. "symfony/polyfill-intl-icu": "~1.0",
  2961. "symfony/routing": "~3.4|~4.0",
  2962. "symfony/security": "~3.4|~4.0",
  2963. "symfony/security-acl": "~2.8|~3.0",
  2964. "symfony/stopwatch": "~3.4|~4.0",
  2965. "symfony/templating": "~3.4|~4.0",
  2966. "symfony/translation": "~3.4|~4.0",
  2967. "symfony/var-dumper": "~3.4|~4.0",
  2968. "symfony/web-link": "~3.4|~4.0",
  2969. "symfony/workflow": "~3.4|~4.0",
  2970. "symfony/yaml": "~3.4|~4.0"
  2971. },
  2972. "suggest": {
  2973. "symfony/asset": "For using the AssetExtension",
  2974. "symfony/expression-language": "For using the ExpressionExtension",
  2975. "symfony/finder": "",
  2976. "symfony/form": "For using the FormExtension",
  2977. "symfony/http-kernel": "For using the HttpKernelExtension",
  2978. "symfony/routing": "For using the RoutingExtension",
  2979. "symfony/security": "For using the SecurityExtension",
  2980. "symfony/stopwatch": "For using the StopwatchExtension",
  2981. "symfony/templating": "For using the TwigEngine",
  2982. "symfony/translation": "For using the TranslationExtension",
  2983. "symfony/var-dumper": "For using the DumpExtension",
  2984. "symfony/web-link": "For using the WebLinkExtension",
  2985. "symfony/yaml": "For using the YamlExtension"
  2986. },
  2987. "type": "symfony-bridge",
  2988. "extra": {
  2989. "branch-alias": {
  2990. "dev-master": "4.0-dev"
  2991. }
  2992. },
  2993. "autoload": {
  2994. "psr-4": {
  2995. "Symfony\\Bridge\\Twig\\": ""
  2996. },
  2997. "exclude-from-classmap": [
  2998. "/Tests/"
  2999. ]
  3000. },
  3001. "notification-url": "https://packagist.org/downloads/",
  3002. "license": [
  3003. "MIT"
  3004. ],
  3005. "authors": [
  3006. {
  3007. "name": "Fabien Potencier",
  3008. "email": "fabien@symfony.com"
  3009. },
  3010. {
  3011. "name": "Symfony Community",
  3012. "homepage": "https://symfony.com/contributors"
  3013. }
  3014. ],
  3015. "description": "Symfony Twig Bridge",
  3016. "homepage": "https://symfony.com",
  3017. "time": "2018-01-03T17:15:19+00:00"
  3018. },
  3019. {
  3020. "name": "symfony/twig-bundle",
  3021. "version": "v4.0.3",
  3022. "source": {
  3023. "type": "git",
  3024. "url": "https://github.com/symfony/twig-bundle.git",
  3025. "reference": "7c1ee541f7d8836d901d989c449746c953be930b"
  3026. },
  3027. "dist": {
  3028. "type": "zip",
  3029. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/7c1ee541f7d8836d901d989c449746c953be930b",
  3030. "reference": "7c1ee541f7d8836d901d989c449746c953be930b",
  3031. "shasum": ""
  3032. },
  3033. "require": {
  3034. "php": "^7.1.3",
  3035. "symfony/config": "~3.4|~4.0",
  3036. "symfony/http-foundation": "~3.4|~4.0",
  3037. "symfony/http-kernel": "~3.4|~4.0",
  3038. "symfony/twig-bridge": "^3.4.3|^4.0.3",
  3039. "twig/twig": "~1.34|~2.4"
  3040. },
  3041. "conflict": {
  3042. "symfony/dependency-injection": "<3.4",
  3043. "symfony/event-dispatcher": "<3.4"
  3044. },
  3045. "require-dev": {
  3046. "doctrine/annotations": "~1.0",
  3047. "doctrine/cache": "~1.0",
  3048. "symfony/asset": "~3.4|~4.0",
  3049. "symfony/dependency-injection": "~3.4|~4.0",
  3050. "symfony/expression-language": "~3.4|~4.0",
  3051. "symfony/finder": "~3.4|~4.0",
  3052. "symfony/form": "~3.4|~4.0",
  3053. "symfony/framework-bundle": "~3.4|~4.0",
  3054. "symfony/routing": "~3.4|~4.0",
  3055. "symfony/stopwatch": "~3.4|~4.0",
  3056. "symfony/templating": "~3.4|~4.0",
  3057. "symfony/web-link": "~3.4|~4.0",
  3058. "symfony/yaml": "~3.4|~4.0"
  3059. },
  3060. "type": "symfony-bundle",
  3061. "extra": {
  3062. "branch-alias": {
  3063. "dev-master": "4.0-dev"
  3064. }
  3065. },
  3066. "autoload": {
  3067. "psr-4": {
  3068. "Symfony\\Bundle\\TwigBundle\\": ""
  3069. },
  3070. "exclude-from-classmap": [
  3071. "/Tests/"
  3072. ]
  3073. },
  3074. "notification-url": "https://packagist.org/downloads/",
  3075. "license": [
  3076. "MIT"
  3077. ],
  3078. "authors": [
  3079. {
  3080. "name": "Fabien Potencier",
  3081. "email": "fabien@symfony.com"
  3082. },
  3083. {
  3084. "name": "Symfony Community",
  3085. "homepage": "https://symfony.com/contributors"
  3086. }
  3087. ],
  3088. "description": "Symfony TwigBundle",
  3089. "homepage": "https://symfony.com",
  3090. "time": "2018-01-04T15:52:56+00:00"
  3091. },
  3092. {
  3093. "name": "symfony/web-server-bundle",
  3094. "version": "v4.0.3",
  3095. "source": {
  3096. "type": "git",
  3097. "url": "https://github.com/symfony/web-server-bundle.git",
  3098. "reference": "20ad52df8164d2eae029e6bb24356956c52380be"
  3099. },
  3100. "dist": {
  3101. "type": "zip",
  3102. "url": "https://api.github.com/repos/symfony/web-server-bundle/zipball/20ad52df8164d2eae029e6bb24356956c52380be",
  3103. "reference": "20ad52df8164d2eae029e6bb24356956c52380be",
  3104. "shasum": ""
  3105. },
  3106. "require": {
  3107. "php": "^7.1.3",
  3108. "symfony/config": "~3.4|~4.0",
  3109. "symfony/console": "~3.4|~4.0",
  3110. "symfony/dependency-injection": "~3.4|~4.0",
  3111. "symfony/http-kernel": "~3.4|~4.0",
  3112. "symfony/process": "^3.4.2|^4.0.2"
  3113. },
  3114. "suggest": {
  3115. "symfony/expression-language": "For using the filter option of the log server.",
  3116. "symfony/monolog-bridge": "For using the log server."
  3117. },
  3118. "type": "symfony-bundle",
  3119. "extra": {
  3120. "branch-alias": {
  3121. "dev-master": "4.0-dev"
  3122. }
  3123. },
  3124. "autoload": {
  3125. "psr-4": {
  3126. "Symfony\\Bundle\\WebServerBundle\\": ""
  3127. },
  3128. "exclude-from-classmap": [
  3129. "/Tests/"
  3130. ]
  3131. },
  3132. "notification-url": "https://packagist.org/downloads/",
  3133. "license": [
  3134. "MIT"
  3135. ],
  3136. "authors": [
  3137. {
  3138. "name": "Fabien Potencier",
  3139. "email": "fabien@symfony.com"
  3140. },
  3141. {
  3142. "name": "Symfony Community",
  3143. "homepage": "https://symfony.com/contributors"
  3144. }
  3145. ],
  3146. "description": "Symfony WebServerBundle",
  3147. "homepage": "https://symfony.com",
  3148. "time": "2018-01-03T17:15:19+00:00"
  3149. },
  3150. {
  3151. "name": "symfony/yaml",
  3152. "version": "v4.0.3",
  3153. "source": {
  3154. "type": "git",
  3155. "url": "https://github.com/symfony/yaml.git",
  3156. "reference": "b84f646b9490d2101e2c25ddeec77ceefbda2eee"
  3157. },
  3158. "dist": {
  3159. "type": "zip",
  3160. "url": "https://api.github.com/repos/symfony/yaml/zipball/b84f646b9490d2101e2c25ddeec77ceefbda2eee",
  3161. "reference": "b84f646b9490d2101e2c25ddeec77ceefbda2eee",
  3162. "shasum": ""
  3163. },
  3164. "require": {
  3165. "php": "^7.1.3"
  3166. },
  3167. "conflict": {
  3168. "symfony/console": "<3.4"
  3169. },
  3170. "require-dev": {
  3171. "symfony/console": "~3.4|~4.0"
  3172. },
  3173. "suggest": {
  3174. "symfony/console": "For validating YAML files using the lint command"
  3175. },
  3176. "type": "library",
  3177. "extra": {
  3178. "branch-alias": {
  3179. "dev-master": "4.0-dev"
  3180. }
  3181. },
  3182. "autoload": {
  3183. "psr-4": {
  3184. "Symfony\\Component\\Yaml\\": ""
  3185. },
  3186. "exclude-from-classmap": [
  3187. "/Tests/"
  3188. ]
  3189. },
  3190. "notification-url": "https://packagist.org/downloads/",
  3191. "license": [
  3192. "MIT"
  3193. ],
  3194. "authors": [
  3195. {
  3196. "name": "Fabien Potencier",
  3197. "email": "fabien@symfony.com"
  3198. },
  3199. {
  3200. "name": "Symfony Community",
  3201. "homepage": "https://symfony.com/contributors"
  3202. }
  3203. ],
  3204. "description": "Symfony Yaml Component",
  3205. "homepage": "https://symfony.com",
  3206. "time": "2018-01-03T07:38:00+00:00"
  3207. },
  3208. {
  3209. "name": "twig/twig",
  3210. "version": "v2.4.4",
  3211. "source": {
  3212. "type": "git",
  3213. "url": "https://github.com/twigphp/Twig.git",
  3214. "reference": "eddb97148ad779f27e670e1e3f19fb323aedafeb"
  3215. },
  3216. "dist": {
  3217. "type": "zip",
  3218. "url": "https://api.github.com/repos/twigphp/Twig/zipball/eddb97148ad779f27e670e1e3f19fb323aedafeb",
  3219. "reference": "eddb97148ad779f27e670e1e3f19fb323aedafeb",
  3220. "shasum": ""
  3221. },
  3222. "require": {
  3223. "php": "^7.0",
  3224. "symfony/polyfill-mbstring": "~1.0"
  3225. },
  3226. "require-dev": {
  3227. "psr/container": "^1.0",
  3228. "symfony/debug": "~2.7",
  3229. "symfony/phpunit-bridge": "~3.3@dev"
  3230. },
  3231. "type": "library",
  3232. "extra": {
  3233. "branch-alias": {
  3234. "dev-master": "2.4-dev"
  3235. }
  3236. },
  3237. "autoload": {
  3238. "psr-0": {
  3239. "Twig_": "lib/"
  3240. },
  3241. "psr-4": {
  3242. "Twig\\": "src/"
  3243. }
  3244. },
  3245. "notification-url": "https://packagist.org/downloads/",
  3246. "license": [
  3247. "BSD-3-Clause"
  3248. ],
  3249. "authors": [
  3250. {
  3251. "name": "Fabien Potencier",
  3252. "email": "fabien@symfony.com",
  3253. "homepage": "http://fabien.potencier.org",
  3254. "role": "Lead Developer"
  3255. },
  3256. {
  3257. "name": "Armin Ronacher",
  3258. "email": "armin.ronacher@active-4.com",
  3259. "role": "Project Founder"
  3260. },
  3261. {
  3262. "name": "Twig Team",
  3263. "homepage": "http://twig.sensiolabs.org/contributors",
  3264. "role": "Contributors"
  3265. }
  3266. ],
  3267. "description": "Twig, the flexible, fast, and secure template language for PHP",
  3268. "homepage": "http://twig.sensiolabs.org",
  3269. "keywords": [
  3270. "templating"
  3271. ],
  3272. "time": "2017-09-27T18:10:31+00:00"
  3273. },
  3274. {
  3275. "name": "zendframework/zend-code",
  3276. "version": "3.3.0",
  3277. "source": {
  3278. "type": "git",
  3279. "url": "https://github.com/zendframework/zend-code.git",
  3280. "reference": "6b1059db5b368db769e4392c6cb6cc139e56640d"
  3281. },
  3282. "dist": {
  3283. "type": "zip",
  3284. "url": "https://api.github.com/repos/zendframework/zend-code/zipball/6b1059db5b368db769e4392c6cb6cc139e56640d",
  3285. "reference": "6b1059db5b368db769e4392c6cb6cc139e56640d",
  3286. "shasum": ""
  3287. },
  3288. "require": {
  3289. "php": "^7.1",
  3290. "zendframework/zend-eventmanager": "^2.6 || ^3.0"
  3291. },
  3292. "require-dev": {
  3293. "doctrine/annotations": "~1.0",
  3294. "ext-phar": "*",
  3295. "phpunit/phpunit": "^6.2.3",
  3296. "zendframework/zend-coding-standard": "^1.0.0",
  3297. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  3298. },
  3299. "suggest": {
  3300. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  3301. "zendframework/zend-stdlib": "Zend\\Stdlib component"
  3302. },
  3303. "type": "library",
  3304. "extra": {
  3305. "branch-alias": {
  3306. "dev-master": "3.2-dev",
  3307. "dev-develop": "3.3-dev"
  3308. }
  3309. },
  3310. "autoload": {
  3311. "psr-4": {
  3312. "Zend\\Code\\": "src/"
  3313. }
  3314. },
  3315. "notification-url": "https://packagist.org/downloads/",
  3316. "license": [
  3317. "BSD-3-Clause"
  3318. ],
  3319. "description": "provides facilities to generate arbitrary code using an object oriented interface",
  3320. "homepage": "https://github.com/zendframework/zend-code",
  3321. "keywords": [
  3322. "code",
  3323. "zf2"
  3324. ],
  3325. "time": "2017-10-20T15:21:32+00:00"
  3326. },
  3327. {
  3328. "name": "zendframework/zend-eventmanager",
  3329. "version": "3.2.0",
  3330. "source": {
  3331. "type": "git",
  3332. "url": "https://github.com/zendframework/zend-eventmanager.git",
  3333. "reference": "9d72db10ceb6e42fb92350c0cb54460da61bd79c"
  3334. },
  3335. "dist": {
  3336. "type": "zip",
  3337. "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/9d72db10ceb6e42fb92350c0cb54460da61bd79c",
  3338. "reference": "9d72db10ceb6e42fb92350c0cb54460da61bd79c",
  3339. "shasum": ""
  3340. },
  3341. "require": {
  3342. "php": "^5.6 || ^7.0"
  3343. },
  3344. "require-dev": {
  3345. "athletic/athletic": "^0.1",
  3346. "container-interop/container-interop": "^1.1.0",
  3347. "phpunit/phpunit": "^6.0.7 || ^5.7.14",
  3348. "zendframework/zend-coding-standard": "~1.0.0",
  3349. "zendframework/zend-stdlib": "^2.7.3 || ^3.0"
  3350. },
  3351. "suggest": {
  3352. "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
  3353. "zendframework/zend-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  3354. },
  3355. "type": "library",
  3356. "extra": {
  3357. "branch-alias": {
  3358. "dev-master": "3.2-dev",
  3359. "dev-develop": "3.3-dev"
  3360. }
  3361. },
  3362. "autoload": {
  3363. "psr-4": {
  3364. "Zend\\EventManager\\": "src/"
  3365. }
  3366. },
  3367. "notification-url": "https://packagist.org/downloads/",
  3368. "license": [
  3369. "BSD-3-Clause"
  3370. ],
  3371. "description": "Trigger and listen to events within a PHP application",
  3372. "homepage": "https://github.com/zendframework/zend-eventmanager",
  3373. "keywords": [
  3374. "event",
  3375. "eventmanager",
  3376. "events",
  3377. "zf2"
  3378. ],
  3379. "time": "2017-07-11T19:17:22+00:00"
  3380. }
  3381. ],
  3382. "packages-dev": [
  3383. {
  3384. "name": "doctrine/data-fixtures",
  3385. "version": "v1.3.0",
  3386. "source": {
  3387. "type": "git",
  3388. "url": "https://github.com/doctrine/data-fixtures.git",
  3389. "reference": "7b76ccc8e648c4502aad7f61347326c8a072bd3b"
  3390. },
  3391. "dist": {
  3392. "type": "zip",
  3393. "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/7b76ccc8e648c4502aad7f61347326c8a072bd3b",
  3394. "reference": "7b76ccc8e648c4502aad7f61347326c8a072bd3b",
  3395. "shasum": ""
  3396. },
  3397. "require": {
  3398. "doctrine/common": "~2.2",
  3399. "php": "^7.1"
  3400. },
  3401. "require-dev": {
  3402. "doctrine/dbal": "^2.5.4",
  3403. "doctrine/orm": "^2.5.4",
  3404. "phpunit/phpunit": "^6.3"
  3405. },
  3406. "suggest": {
  3407. "alcaeus/mongo-php-adapter": "For using MongoDB ODM with PHP 7",
  3408. "doctrine/mongodb-odm": "For loading MongoDB ODM fixtures",
  3409. "doctrine/orm": "For loading ORM fixtures",
  3410. "doctrine/phpcr-odm": "For loading PHPCR ODM fixtures"
  3411. },
  3412. "type": "library",
  3413. "extra": {
  3414. "branch-alias": {
  3415. "dev-master": "1.3.x-dev"
  3416. }
  3417. },
  3418. "autoload": {
  3419. "psr-4": {
  3420. "Doctrine\\Common\\DataFixtures\\": "lib/Doctrine/Common/DataFixtures"
  3421. }
  3422. },
  3423. "notification-url": "https://packagist.org/downloads/",
  3424. "license": [
  3425. "MIT"
  3426. ],
  3427. "authors": [
  3428. {
  3429. "name": "Jonathan Wage",
  3430. "email": "jonwage@gmail.com"
  3431. }
  3432. ],
  3433. "description": "Data Fixtures for all Doctrine Object Managers",
  3434. "homepage": "http://www.doctrine-project.org",
  3435. "keywords": [
  3436. "database"
  3437. ],
  3438. "time": "2017-11-27T18:48:06+00:00"
  3439. },
  3440. {
  3441. "name": "doctrine/doctrine-fixtures-bundle",
  3442. "version": "3.0.2",
  3443. "source": {
  3444. "type": "git",
  3445. "url": "https://github.com/doctrine/DoctrineFixturesBundle.git",
  3446. "reference": "7fc29d2b18c61ed99826b21fbfd1ff9969cc2e7f"
  3447. },
  3448. "dist": {
  3449. "type": "zip",
  3450. "url": "https://api.github.com/repos/doctrine/DoctrineFixturesBundle/zipball/7fc29d2b18c61ed99826b21fbfd1ff9969cc2e7f",
  3451. "reference": "7fc29d2b18c61ed99826b21fbfd1ff9969cc2e7f",
  3452. "shasum": ""
  3453. },
  3454. "require": {
  3455. "doctrine/data-fixtures": "~1.0",
  3456. "doctrine/doctrine-bundle": "~1.0",
  3457. "php": ">=5.5.9|^7.0",
  3458. "symfony/doctrine-bridge": "~2.7|~3.0|~4.0",
  3459. "symfony/framework-bundle": "^3.3|^4.0"
  3460. },
  3461. "require-dev": {
  3462. "symfony/phpunit-bridge": "^3.3"
  3463. },
  3464. "type": "symfony-bundle",
  3465. "extra": {
  3466. "branch-alias": {
  3467. "dev-master": "3.0.x-dev"
  3468. }
  3469. },
  3470. "autoload": {
  3471. "psr-4": {
  3472. "Doctrine\\Bundle\\FixturesBundle\\": ""
  3473. }
  3474. },
  3475. "notification-url": "https://packagist.org/downloads/",
  3476. "license": [
  3477. "MIT"
  3478. ],
  3479. "authors": [
  3480. {
  3481. "name": "Symfony Community",
  3482. "homepage": "http://symfony.com/contributors"
  3483. },
  3484. {
  3485. "name": "Doctrine Project",
  3486. "homepage": "http://www.doctrine-project.org"
  3487. },
  3488. {
  3489. "name": "Fabien Potencier",
  3490. "email": "fabien@symfony.com"
  3491. }
  3492. ],
  3493. "description": "Symfony DoctrineFixturesBundle",
  3494. "homepage": "http://www.doctrine-project.org",
  3495. "keywords": [
  3496. "Fixture",
  3497. "persistence"
  3498. ],
  3499. "time": "2017-12-04T20:26:38+00:00"
  3500. },
  3501. {
  3502. "name": "myclabs/deep-copy",
  3503. "version": "1.7.0",
  3504. "source": {
  3505. "type": "git",
  3506. "url": "https://github.com/myclabs/DeepCopy.git",
  3507. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  3508. },
  3509. "dist": {
  3510. "type": "zip",
  3511. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  3512. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  3513. "shasum": ""
  3514. },
  3515. "require": {
  3516. "php": "^5.6 || ^7.0"
  3517. },
  3518. "require-dev": {
  3519. "doctrine/collections": "^1.0",
  3520. "doctrine/common": "^2.6",
  3521. "phpunit/phpunit": "^4.1"
  3522. },
  3523. "type": "library",
  3524. "autoload": {
  3525. "psr-4": {
  3526. "DeepCopy\\": "src/DeepCopy/"
  3527. },
  3528. "files": [
  3529. "src/DeepCopy/deep_copy.php"
  3530. ]
  3531. },
  3532. "notification-url": "https://packagist.org/downloads/",
  3533. "license": [
  3534. "MIT"
  3535. ],
  3536. "description": "Create deep copies (clones) of your objects",
  3537. "keywords": [
  3538. "clone",
  3539. "copy",
  3540. "duplicate",
  3541. "object",
  3542. "object graph"
  3543. ],
  3544. "time": "2017-10-19T19:58:43+00:00"
  3545. },
  3546. {
  3547. "name": "phar-io/manifest",
  3548. "version": "1.0.1",
  3549. "source": {
  3550. "type": "git",
  3551. "url": "https://github.com/phar-io/manifest.git",
  3552. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  3553. },
  3554. "dist": {
  3555. "type": "zip",
  3556. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  3557. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  3558. "shasum": ""
  3559. },
  3560. "require": {
  3561. "ext-dom": "*",
  3562. "ext-phar": "*",
  3563. "phar-io/version": "^1.0.1",
  3564. "php": "^5.6 || ^7.0"
  3565. },
  3566. "type": "library",
  3567. "extra": {
  3568. "branch-alias": {
  3569. "dev-master": "1.0.x-dev"
  3570. }
  3571. },
  3572. "autoload": {
  3573. "classmap": [
  3574. "src/"
  3575. ]
  3576. },
  3577. "notification-url": "https://packagist.org/downloads/",
  3578. "license": [
  3579. "BSD-3-Clause"
  3580. ],
  3581. "authors": [
  3582. {
  3583. "name": "Arne Blankerts",
  3584. "email": "arne@blankerts.de",
  3585. "role": "Developer"
  3586. },
  3587. {
  3588. "name": "Sebastian Heuer",
  3589. "email": "sebastian@phpeople.de",
  3590. "role": "Developer"
  3591. },
  3592. {
  3593. "name": "Sebastian Bergmann",
  3594. "email": "sebastian@phpunit.de",
  3595. "role": "Developer"
  3596. }
  3597. ],
  3598. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  3599. "time": "2017-03-05T18:14:27+00:00"
  3600. },
  3601. {
  3602. "name": "phar-io/version",
  3603. "version": "1.0.1",
  3604. "source": {
  3605. "type": "git",
  3606. "url": "https://github.com/phar-io/version.git",
  3607. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  3608. },
  3609. "dist": {
  3610. "type": "zip",
  3611. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  3612. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  3613. "shasum": ""
  3614. },
  3615. "require": {
  3616. "php": "^5.6 || ^7.0"
  3617. },
  3618. "type": "library",
  3619. "autoload": {
  3620. "classmap": [
  3621. "src/"
  3622. ]
  3623. },
  3624. "notification-url": "https://packagist.org/downloads/",
  3625. "license": [
  3626. "BSD-3-Clause"
  3627. ],
  3628. "authors": [
  3629. {
  3630. "name": "Arne Blankerts",
  3631. "email": "arne@blankerts.de",
  3632. "role": "Developer"
  3633. },
  3634. {
  3635. "name": "Sebastian Heuer",
  3636. "email": "sebastian@phpeople.de",
  3637. "role": "Developer"
  3638. },
  3639. {
  3640. "name": "Sebastian Bergmann",
  3641. "email": "sebastian@phpunit.de",
  3642. "role": "Developer"
  3643. }
  3644. ],
  3645. "description": "Library for handling version information and constraints",
  3646. "time": "2017-03-05T17:38:23+00:00"
  3647. },
  3648. {
  3649. "name": "phpdocumentor/reflection-common",
  3650. "version": "1.0.1",
  3651. "source": {
  3652. "type": "git",
  3653. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3654. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  3655. },
  3656. "dist": {
  3657. "type": "zip",
  3658. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  3659. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  3660. "shasum": ""
  3661. },
  3662. "require": {
  3663. "php": ">=5.5"
  3664. },
  3665. "require-dev": {
  3666. "phpunit/phpunit": "^4.6"
  3667. },
  3668. "type": "library",
  3669. "extra": {
  3670. "branch-alias": {
  3671. "dev-master": "1.0.x-dev"
  3672. }
  3673. },
  3674. "autoload": {
  3675. "psr-4": {
  3676. "phpDocumentor\\Reflection\\": [
  3677. "src"
  3678. ]
  3679. }
  3680. },
  3681. "notification-url": "https://packagist.org/downloads/",
  3682. "license": [
  3683. "MIT"
  3684. ],
  3685. "authors": [
  3686. {
  3687. "name": "Jaap van Otterdijk",
  3688. "email": "opensource@ijaap.nl"
  3689. }
  3690. ],
  3691. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3692. "homepage": "http://www.phpdoc.org",
  3693. "keywords": [
  3694. "FQSEN",
  3695. "phpDocumentor",
  3696. "phpdoc",
  3697. "reflection",
  3698. "static analysis"
  3699. ],
  3700. "time": "2017-09-11T18:02:19+00:00"
  3701. },
  3702. {
  3703. "name": "phpdocumentor/reflection-docblock",
  3704. "version": "4.2.0",
  3705. "source": {
  3706. "type": "git",
  3707. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3708. "reference": "66465776cfc249844bde6d117abff1d22e06c2da"
  3709. },
  3710. "dist": {
  3711. "type": "zip",
  3712. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/66465776cfc249844bde6d117abff1d22e06c2da",
  3713. "reference": "66465776cfc249844bde6d117abff1d22e06c2da",
  3714. "shasum": ""
  3715. },
  3716. "require": {
  3717. "php": "^7.0",
  3718. "phpdocumentor/reflection-common": "^1.0.0",
  3719. "phpdocumentor/type-resolver": "^0.4.0",
  3720. "webmozart/assert": "^1.0"
  3721. },
  3722. "require-dev": {
  3723. "doctrine/instantiator": "~1.0.5",
  3724. "mockery/mockery": "^1.0",
  3725. "phpunit/phpunit": "^6.4"
  3726. },
  3727. "type": "library",
  3728. "extra": {
  3729. "branch-alias": {
  3730. "dev-master": "4.x-dev"
  3731. }
  3732. },
  3733. "autoload": {
  3734. "psr-4": {
  3735. "phpDocumentor\\Reflection\\": [
  3736. "src/"
  3737. ]
  3738. }
  3739. },
  3740. "notification-url": "https://packagist.org/downloads/",
  3741. "license": [
  3742. "MIT"
  3743. ],
  3744. "authors": [
  3745. {
  3746. "name": "Mike van Riel",
  3747. "email": "me@mikevanriel.com"
  3748. }
  3749. ],
  3750. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3751. "time": "2017-11-27T17:38:31+00:00"
  3752. },
  3753. {
  3754. "name": "phpdocumentor/type-resolver",
  3755. "version": "0.4.0",
  3756. "source": {
  3757. "type": "git",
  3758. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3759. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  3760. },
  3761. "dist": {
  3762. "type": "zip",
  3763. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  3764. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  3765. "shasum": ""
  3766. },
  3767. "require": {
  3768. "php": "^5.5 || ^7.0",
  3769. "phpdocumentor/reflection-common": "^1.0"
  3770. },
  3771. "require-dev": {
  3772. "mockery/mockery": "^0.9.4",
  3773. "phpunit/phpunit": "^5.2||^4.8.24"
  3774. },
  3775. "type": "library",
  3776. "extra": {
  3777. "branch-alias": {
  3778. "dev-master": "1.0.x-dev"
  3779. }
  3780. },
  3781. "autoload": {
  3782. "psr-4": {
  3783. "phpDocumentor\\Reflection\\": [
  3784. "src/"
  3785. ]
  3786. }
  3787. },
  3788. "notification-url": "https://packagist.org/downloads/",
  3789. "license": [
  3790. "MIT"
  3791. ],
  3792. "authors": [
  3793. {
  3794. "name": "Mike van Riel",
  3795. "email": "me@mikevanriel.com"
  3796. }
  3797. ],
  3798. "time": "2017-07-14T14:27:02+00:00"
  3799. },
  3800. {
  3801. "name": "phpspec/prophecy",
  3802. "version": "1.7.3",
  3803. "source": {
  3804. "type": "git",
  3805. "url": "https://github.com/phpspec/prophecy.git",
  3806. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf"
  3807. },
  3808. "dist": {
  3809. "type": "zip",
  3810. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
  3811. "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf",
  3812. "shasum": ""
  3813. },
  3814. "require": {
  3815. "doctrine/instantiator": "^1.0.2",
  3816. "php": "^5.3|^7.0",
  3817. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  3818. "sebastian/comparator": "^1.1|^2.0",
  3819. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  3820. },
  3821. "require-dev": {
  3822. "phpspec/phpspec": "^2.5|^3.2",
  3823. "phpunit/phpunit": "^4.8.35 || ^5.7"
  3824. },
  3825. "type": "library",
  3826. "extra": {
  3827. "branch-alias": {
  3828. "dev-master": "1.7.x-dev"
  3829. }
  3830. },
  3831. "autoload": {
  3832. "psr-0": {
  3833. "Prophecy\\": "src/"
  3834. }
  3835. },
  3836. "notification-url": "https://packagist.org/downloads/",
  3837. "license": [
  3838. "MIT"
  3839. ],
  3840. "authors": [
  3841. {
  3842. "name": "Konstantin Kudryashov",
  3843. "email": "ever.zet@gmail.com",
  3844. "homepage": "http://everzet.com"
  3845. },
  3846. {
  3847. "name": "Marcello Duarte",
  3848. "email": "marcello.duarte@gmail.com"
  3849. }
  3850. ],
  3851. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3852. "homepage": "https://github.com/phpspec/prophecy",
  3853. "keywords": [
  3854. "Double",
  3855. "Dummy",
  3856. "fake",
  3857. "mock",
  3858. "spy",
  3859. "stub"
  3860. ],
  3861. "time": "2017-11-24T13:59:53+00:00"
  3862. },
  3863. {
  3864. "name": "phpunit/php-code-coverage",
  3865. "version": "5.3.0",
  3866. "source": {
  3867. "type": "git",
  3868. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3869. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1"
  3870. },
  3871. "dist": {
  3872. "type": "zip",
  3873. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/661f34d0bd3f1a7225ef491a70a020ad23a057a1",
  3874. "reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1",
  3875. "shasum": ""
  3876. },
  3877. "require": {
  3878. "ext-dom": "*",
  3879. "ext-xmlwriter": "*",
  3880. "php": "^7.0",
  3881. "phpunit/php-file-iterator": "^1.4.2",
  3882. "phpunit/php-text-template": "^1.2.1",
  3883. "phpunit/php-token-stream": "^2.0.1",
  3884. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  3885. "sebastian/environment": "^3.0",
  3886. "sebastian/version": "^2.0.1",
  3887. "theseer/tokenizer": "^1.1"
  3888. },
  3889. "require-dev": {
  3890. "phpunit/phpunit": "^6.0"
  3891. },
  3892. "suggest": {
  3893. "ext-xdebug": "^2.5.5"
  3894. },
  3895. "type": "library",
  3896. "extra": {
  3897. "branch-alias": {
  3898. "dev-master": "5.3.x-dev"
  3899. }
  3900. },
  3901. "autoload": {
  3902. "classmap": [
  3903. "src/"
  3904. ]
  3905. },
  3906. "notification-url": "https://packagist.org/downloads/",
  3907. "license": [
  3908. "BSD-3-Clause"
  3909. ],
  3910. "authors": [
  3911. {
  3912. "name": "Sebastian Bergmann",
  3913. "email": "sebastian@phpunit.de",
  3914. "role": "lead"
  3915. }
  3916. ],
  3917. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3918. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3919. "keywords": [
  3920. "coverage",
  3921. "testing",
  3922. "xunit"
  3923. ],
  3924. "time": "2017-12-06T09:29:45+00:00"
  3925. },
  3926. {
  3927. "name": "phpunit/php-file-iterator",
  3928. "version": "1.4.5",
  3929. "source": {
  3930. "type": "git",
  3931. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3932. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  3933. },
  3934. "dist": {
  3935. "type": "zip",
  3936. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  3937. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  3938. "shasum": ""
  3939. },
  3940. "require": {
  3941. "php": ">=5.3.3"
  3942. },
  3943. "type": "library",
  3944. "extra": {
  3945. "branch-alias": {
  3946. "dev-master": "1.4.x-dev"
  3947. }
  3948. },
  3949. "autoload": {
  3950. "classmap": [
  3951. "src/"
  3952. ]
  3953. },
  3954. "notification-url": "https://packagist.org/downloads/",
  3955. "license": [
  3956. "BSD-3-Clause"
  3957. ],
  3958. "authors": [
  3959. {
  3960. "name": "Sebastian Bergmann",
  3961. "email": "sb@sebastian-bergmann.de",
  3962. "role": "lead"
  3963. }
  3964. ],
  3965. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3966. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3967. "keywords": [
  3968. "filesystem",
  3969. "iterator"
  3970. ],
  3971. "time": "2017-11-27T13:52:08+00:00"
  3972. },
  3973. {
  3974. "name": "phpunit/php-text-template",
  3975. "version": "1.2.1",
  3976. "source": {
  3977. "type": "git",
  3978. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3979. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  3980. },
  3981. "dist": {
  3982. "type": "zip",
  3983. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3984. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3985. "shasum": ""
  3986. },
  3987. "require": {
  3988. "php": ">=5.3.3"
  3989. },
  3990. "type": "library",
  3991. "autoload": {
  3992. "classmap": [
  3993. "src/"
  3994. ]
  3995. },
  3996. "notification-url": "https://packagist.org/downloads/",
  3997. "license": [
  3998. "BSD-3-Clause"
  3999. ],
  4000. "authors": [
  4001. {
  4002. "name": "Sebastian Bergmann",
  4003. "email": "sebastian@phpunit.de",
  4004. "role": "lead"
  4005. }
  4006. ],
  4007. "description": "Simple template engine.",
  4008. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4009. "keywords": [
  4010. "template"
  4011. ],
  4012. "time": "2015-06-21T13:50:34+00:00"
  4013. },
  4014. {
  4015. "name": "phpunit/php-timer",
  4016. "version": "1.0.9",
  4017. "source": {
  4018. "type": "git",
  4019. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4020. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  4021. },
  4022. "dist": {
  4023. "type": "zip",
  4024. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  4025. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  4026. "shasum": ""
  4027. },
  4028. "require": {
  4029. "php": "^5.3.3 || ^7.0"
  4030. },
  4031. "require-dev": {
  4032. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4033. },
  4034. "type": "library",
  4035. "extra": {
  4036. "branch-alias": {
  4037. "dev-master": "1.0-dev"
  4038. }
  4039. },
  4040. "autoload": {
  4041. "classmap": [
  4042. "src/"
  4043. ]
  4044. },
  4045. "notification-url": "https://packagist.org/downloads/",
  4046. "license": [
  4047. "BSD-3-Clause"
  4048. ],
  4049. "authors": [
  4050. {
  4051. "name": "Sebastian Bergmann",
  4052. "email": "sb@sebastian-bergmann.de",
  4053. "role": "lead"
  4054. }
  4055. ],
  4056. "description": "Utility class for timing",
  4057. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4058. "keywords": [
  4059. "timer"
  4060. ],
  4061. "time": "2017-02-26T11:10:40+00:00"
  4062. },
  4063. {
  4064. "name": "phpunit/php-token-stream",
  4065. "version": "2.0.2",
  4066. "source": {
  4067. "type": "git",
  4068. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4069. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  4070. },
  4071. "dist": {
  4072. "type": "zip",
  4073. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  4074. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  4075. "shasum": ""
  4076. },
  4077. "require": {
  4078. "ext-tokenizer": "*",
  4079. "php": "^7.0"
  4080. },
  4081. "require-dev": {
  4082. "phpunit/phpunit": "^6.2.4"
  4083. },
  4084. "type": "library",
  4085. "extra": {
  4086. "branch-alias": {
  4087. "dev-master": "2.0-dev"
  4088. }
  4089. },
  4090. "autoload": {
  4091. "classmap": [
  4092. "src/"
  4093. ]
  4094. },
  4095. "notification-url": "https://packagist.org/downloads/",
  4096. "license": [
  4097. "BSD-3-Clause"
  4098. ],
  4099. "authors": [
  4100. {
  4101. "name": "Sebastian Bergmann",
  4102. "email": "sebastian@phpunit.de"
  4103. }
  4104. ],
  4105. "description": "Wrapper around PHP's tokenizer extension.",
  4106. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4107. "keywords": [
  4108. "tokenizer"
  4109. ],
  4110. "time": "2017-11-27T05:48:46+00:00"
  4111. },
  4112. {
  4113. "name": "phpunit/phpunit",
  4114. "version": "6.5.5",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4118. "reference": "83d27937a310f2984fd575686138597147bdc7df"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/83d27937a310f2984fd575686138597147bdc7df",
  4123. "reference": "83d27937a310f2984fd575686138597147bdc7df",
  4124. "shasum": ""
  4125. },
  4126. "require": {
  4127. "ext-dom": "*",
  4128. "ext-json": "*",
  4129. "ext-libxml": "*",
  4130. "ext-mbstring": "*",
  4131. "ext-xml": "*",
  4132. "myclabs/deep-copy": "^1.6.1",
  4133. "phar-io/manifest": "^1.0.1",
  4134. "phar-io/version": "^1.0",
  4135. "php": "^7.0",
  4136. "phpspec/prophecy": "^1.7",
  4137. "phpunit/php-code-coverage": "^5.3",
  4138. "phpunit/php-file-iterator": "^1.4.3",
  4139. "phpunit/php-text-template": "^1.2.1",
  4140. "phpunit/php-timer": "^1.0.9",
  4141. "phpunit/phpunit-mock-objects": "^5.0.5",
  4142. "sebastian/comparator": "^2.1",
  4143. "sebastian/diff": "^2.0",
  4144. "sebastian/environment": "^3.1",
  4145. "sebastian/exporter": "^3.1",
  4146. "sebastian/global-state": "^2.0",
  4147. "sebastian/object-enumerator": "^3.0.3",
  4148. "sebastian/resource-operations": "^1.0",
  4149. "sebastian/version": "^2.0.1"
  4150. },
  4151. "conflict": {
  4152. "phpdocumentor/reflection-docblock": "3.0.2",
  4153. "phpunit/dbunit": "<3.0"
  4154. },
  4155. "require-dev": {
  4156. "ext-pdo": "*"
  4157. },
  4158. "suggest": {
  4159. "ext-xdebug": "*",
  4160. "phpunit/php-invoker": "^1.1"
  4161. },
  4162. "bin": [
  4163. "phpunit"
  4164. ],
  4165. "type": "library",
  4166. "extra": {
  4167. "branch-alias": {
  4168. "dev-master": "6.5.x-dev"
  4169. }
  4170. },
  4171. "autoload": {
  4172. "classmap": [
  4173. "src/"
  4174. ]
  4175. },
  4176. "notification-url": "https://packagist.org/downloads/",
  4177. "license": [
  4178. "BSD-3-Clause"
  4179. ],
  4180. "authors": [
  4181. {
  4182. "name": "Sebastian Bergmann",
  4183. "email": "sebastian@phpunit.de",
  4184. "role": "lead"
  4185. }
  4186. ],
  4187. "description": "The PHP Unit Testing framework.",
  4188. "homepage": "https://phpunit.de/",
  4189. "keywords": [
  4190. "phpunit",
  4191. "testing",
  4192. "xunit"
  4193. ],
  4194. "time": "2017-12-17T06:31:19+00:00"
  4195. },
  4196. {
  4197. "name": "phpunit/phpunit-mock-objects",
  4198. "version": "5.0.6",
  4199. "source": {
  4200. "type": "git",
  4201. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  4202. "reference": "33fd41a76e746b8fa96d00b49a23dadfa8334cdf"
  4203. },
  4204. "dist": {
  4205. "type": "zip",
  4206. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/33fd41a76e746b8fa96d00b49a23dadfa8334cdf",
  4207. "reference": "33fd41a76e746b8fa96d00b49a23dadfa8334cdf",
  4208. "shasum": ""
  4209. },
  4210. "require": {
  4211. "doctrine/instantiator": "^1.0.5",
  4212. "php": "^7.0",
  4213. "phpunit/php-text-template": "^1.2.1",
  4214. "sebastian/exporter": "^3.1"
  4215. },
  4216. "conflict": {
  4217. "phpunit/phpunit": "<6.0"
  4218. },
  4219. "require-dev": {
  4220. "phpunit/phpunit": "^6.5"
  4221. },
  4222. "suggest": {
  4223. "ext-soap": "*"
  4224. },
  4225. "type": "library",
  4226. "extra": {
  4227. "branch-alias": {
  4228. "dev-master": "5.0.x-dev"
  4229. }
  4230. },
  4231. "autoload": {
  4232. "classmap": [
  4233. "src/"
  4234. ]
  4235. },
  4236. "notification-url": "https://packagist.org/downloads/",
  4237. "license": [
  4238. "BSD-3-Clause"
  4239. ],
  4240. "authors": [
  4241. {
  4242. "name": "Sebastian Bergmann",
  4243. "email": "sebastian@phpunit.de",
  4244. "role": "lead"
  4245. }
  4246. ],
  4247. "description": "Mock Object library for PHPUnit",
  4248. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  4249. "keywords": [
  4250. "mock",
  4251. "xunit"
  4252. ],
  4253. "time": "2018-01-06T05:45:45+00:00"
  4254. },
  4255. {
  4256. "name": "sebastian/code-unit-reverse-lookup",
  4257. "version": "1.0.1",
  4258. "source": {
  4259. "type": "git",
  4260. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4261. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  4262. },
  4263. "dist": {
  4264. "type": "zip",
  4265. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  4266. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  4267. "shasum": ""
  4268. },
  4269. "require": {
  4270. "php": "^5.6 || ^7.0"
  4271. },
  4272. "require-dev": {
  4273. "phpunit/phpunit": "^5.7 || ^6.0"
  4274. },
  4275. "type": "library",
  4276. "extra": {
  4277. "branch-alias": {
  4278. "dev-master": "1.0.x-dev"
  4279. }
  4280. },
  4281. "autoload": {
  4282. "classmap": [
  4283. "src/"
  4284. ]
  4285. },
  4286. "notification-url": "https://packagist.org/downloads/",
  4287. "license": [
  4288. "BSD-3-Clause"
  4289. ],
  4290. "authors": [
  4291. {
  4292. "name": "Sebastian Bergmann",
  4293. "email": "sebastian@phpunit.de"
  4294. }
  4295. ],
  4296. "description": "Looks up which function or method a line of code belongs to",
  4297. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4298. "time": "2017-03-04T06:30:41+00:00"
  4299. },
  4300. {
  4301. "name": "sebastian/comparator",
  4302. "version": "2.1.1",
  4303. "source": {
  4304. "type": "git",
  4305. "url": "https://github.com/sebastianbergmann/comparator.git",
  4306. "reference": "b11c729f95109b56a0fe9650c6a63a0fcd8c439f"
  4307. },
  4308. "dist": {
  4309. "type": "zip",
  4310. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/b11c729f95109b56a0fe9650c6a63a0fcd8c439f",
  4311. "reference": "b11c729f95109b56a0fe9650c6a63a0fcd8c439f",
  4312. "shasum": ""
  4313. },
  4314. "require": {
  4315. "php": "^7.0",
  4316. "sebastian/diff": "^2.0",
  4317. "sebastian/exporter": "^3.1"
  4318. },
  4319. "require-dev": {
  4320. "phpunit/phpunit": "^6.4"
  4321. },
  4322. "type": "library",
  4323. "extra": {
  4324. "branch-alias": {
  4325. "dev-master": "2.1.x-dev"
  4326. }
  4327. },
  4328. "autoload": {
  4329. "classmap": [
  4330. "src/"
  4331. ]
  4332. },
  4333. "notification-url": "https://packagist.org/downloads/",
  4334. "license": [
  4335. "BSD-3-Clause"
  4336. ],
  4337. "authors": [
  4338. {
  4339. "name": "Jeff Welch",
  4340. "email": "whatthejeff@gmail.com"
  4341. },
  4342. {
  4343. "name": "Volker Dusch",
  4344. "email": "github@wallbash.com"
  4345. },
  4346. {
  4347. "name": "Bernhard Schussek",
  4348. "email": "bschussek@2bepublished.at"
  4349. },
  4350. {
  4351. "name": "Sebastian Bergmann",
  4352. "email": "sebastian@phpunit.de"
  4353. }
  4354. ],
  4355. "description": "Provides the functionality to compare PHP values for equality",
  4356. "homepage": "https://github.com/sebastianbergmann/comparator",
  4357. "keywords": [
  4358. "comparator",
  4359. "compare",
  4360. "equality"
  4361. ],
  4362. "time": "2017-12-22T14:50:35+00:00"
  4363. },
  4364. {
  4365. "name": "sebastian/diff",
  4366. "version": "2.0.1",
  4367. "source": {
  4368. "type": "git",
  4369. "url": "https://github.com/sebastianbergmann/diff.git",
  4370. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  4371. },
  4372. "dist": {
  4373. "type": "zip",
  4374. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  4375. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  4376. "shasum": ""
  4377. },
  4378. "require": {
  4379. "php": "^7.0"
  4380. },
  4381. "require-dev": {
  4382. "phpunit/phpunit": "^6.2"
  4383. },
  4384. "type": "library",
  4385. "extra": {
  4386. "branch-alias": {
  4387. "dev-master": "2.0-dev"
  4388. }
  4389. },
  4390. "autoload": {
  4391. "classmap": [
  4392. "src/"
  4393. ]
  4394. },
  4395. "notification-url": "https://packagist.org/downloads/",
  4396. "license": [
  4397. "BSD-3-Clause"
  4398. ],
  4399. "authors": [
  4400. {
  4401. "name": "Kore Nordmann",
  4402. "email": "mail@kore-nordmann.de"
  4403. },
  4404. {
  4405. "name": "Sebastian Bergmann",
  4406. "email": "sebastian@phpunit.de"
  4407. }
  4408. ],
  4409. "description": "Diff implementation",
  4410. "homepage": "https://github.com/sebastianbergmann/diff",
  4411. "keywords": [
  4412. "diff"
  4413. ],
  4414. "time": "2017-08-03T08:09:46+00:00"
  4415. },
  4416. {
  4417. "name": "sebastian/environment",
  4418. "version": "3.1.0",
  4419. "source": {
  4420. "type": "git",
  4421. "url": "https://github.com/sebastianbergmann/environment.git",
  4422. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  4423. },
  4424. "dist": {
  4425. "type": "zip",
  4426. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  4427. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  4428. "shasum": ""
  4429. },
  4430. "require": {
  4431. "php": "^7.0"
  4432. },
  4433. "require-dev": {
  4434. "phpunit/phpunit": "^6.1"
  4435. },
  4436. "type": "library",
  4437. "extra": {
  4438. "branch-alias": {
  4439. "dev-master": "3.1.x-dev"
  4440. }
  4441. },
  4442. "autoload": {
  4443. "classmap": [
  4444. "src/"
  4445. ]
  4446. },
  4447. "notification-url": "https://packagist.org/downloads/",
  4448. "license": [
  4449. "BSD-3-Clause"
  4450. ],
  4451. "authors": [
  4452. {
  4453. "name": "Sebastian Bergmann",
  4454. "email": "sebastian@phpunit.de"
  4455. }
  4456. ],
  4457. "description": "Provides functionality to handle HHVM/PHP environments",
  4458. "homepage": "http://www.github.com/sebastianbergmann/environment",
  4459. "keywords": [
  4460. "Xdebug",
  4461. "environment",
  4462. "hhvm"
  4463. ],
  4464. "time": "2017-07-01T08:51:00+00:00"
  4465. },
  4466. {
  4467. "name": "sebastian/exporter",
  4468. "version": "3.1.0",
  4469. "source": {
  4470. "type": "git",
  4471. "url": "https://github.com/sebastianbergmann/exporter.git",
  4472. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  4473. },
  4474. "dist": {
  4475. "type": "zip",
  4476. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  4477. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  4478. "shasum": ""
  4479. },
  4480. "require": {
  4481. "php": "^7.0",
  4482. "sebastian/recursion-context": "^3.0"
  4483. },
  4484. "require-dev": {
  4485. "ext-mbstring": "*",
  4486. "phpunit/phpunit": "^6.0"
  4487. },
  4488. "type": "library",
  4489. "extra": {
  4490. "branch-alias": {
  4491. "dev-master": "3.1.x-dev"
  4492. }
  4493. },
  4494. "autoload": {
  4495. "classmap": [
  4496. "src/"
  4497. ]
  4498. },
  4499. "notification-url": "https://packagist.org/downloads/",
  4500. "license": [
  4501. "BSD-3-Clause"
  4502. ],
  4503. "authors": [
  4504. {
  4505. "name": "Jeff Welch",
  4506. "email": "whatthejeff@gmail.com"
  4507. },
  4508. {
  4509. "name": "Volker Dusch",
  4510. "email": "github@wallbash.com"
  4511. },
  4512. {
  4513. "name": "Bernhard Schussek",
  4514. "email": "bschussek@2bepublished.at"
  4515. },
  4516. {
  4517. "name": "Sebastian Bergmann",
  4518. "email": "sebastian@phpunit.de"
  4519. },
  4520. {
  4521. "name": "Adam Harvey",
  4522. "email": "aharvey@php.net"
  4523. }
  4524. ],
  4525. "description": "Provides the functionality to export PHP variables for visualization",
  4526. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  4527. "keywords": [
  4528. "export",
  4529. "exporter"
  4530. ],
  4531. "time": "2017-04-03T13:19:02+00:00"
  4532. },
  4533. {
  4534. "name": "sebastian/global-state",
  4535. "version": "2.0.0",
  4536. "source": {
  4537. "type": "git",
  4538. "url": "https://github.com/sebastianbergmann/global-state.git",
  4539. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  4540. },
  4541. "dist": {
  4542. "type": "zip",
  4543. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  4544. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  4545. "shasum": ""
  4546. },
  4547. "require": {
  4548. "php": "^7.0"
  4549. },
  4550. "require-dev": {
  4551. "phpunit/phpunit": "^6.0"
  4552. },
  4553. "suggest": {
  4554. "ext-uopz": "*"
  4555. },
  4556. "type": "library",
  4557. "extra": {
  4558. "branch-alias": {
  4559. "dev-master": "2.0-dev"
  4560. }
  4561. },
  4562. "autoload": {
  4563. "classmap": [
  4564. "src/"
  4565. ]
  4566. },
  4567. "notification-url": "https://packagist.org/downloads/",
  4568. "license": [
  4569. "BSD-3-Clause"
  4570. ],
  4571. "authors": [
  4572. {
  4573. "name": "Sebastian Bergmann",
  4574. "email": "sebastian@phpunit.de"
  4575. }
  4576. ],
  4577. "description": "Snapshotting of global state",
  4578. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  4579. "keywords": [
  4580. "global state"
  4581. ],
  4582. "time": "2017-04-27T15:39:26+00:00"
  4583. },
  4584. {
  4585. "name": "sebastian/object-enumerator",
  4586. "version": "3.0.3",
  4587. "source": {
  4588. "type": "git",
  4589. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  4590. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  4591. },
  4592. "dist": {
  4593. "type": "zip",
  4594. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  4595. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  4596. "shasum": ""
  4597. },
  4598. "require": {
  4599. "php": "^7.0",
  4600. "sebastian/object-reflector": "^1.1.1",
  4601. "sebastian/recursion-context": "^3.0"
  4602. },
  4603. "require-dev": {
  4604. "phpunit/phpunit": "^6.0"
  4605. },
  4606. "type": "library",
  4607. "extra": {
  4608. "branch-alias": {
  4609. "dev-master": "3.0.x-dev"
  4610. }
  4611. },
  4612. "autoload": {
  4613. "classmap": [
  4614. "src/"
  4615. ]
  4616. },
  4617. "notification-url": "https://packagist.org/downloads/",
  4618. "license": [
  4619. "BSD-3-Clause"
  4620. ],
  4621. "authors": [
  4622. {
  4623. "name": "Sebastian Bergmann",
  4624. "email": "sebastian@phpunit.de"
  4625. }
  4626. ],
  4627. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  4628. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  4629. "time": "2017-08-03T12:35:26+00:00"
  4630. },
  4631. {
  4632. "name": "sebastian/object-reflector",
  4633. "version": "1.1.1",
  4634. "source": {
  4635. "type": "git",
  4636. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  4637. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  4638. },
  4639. "dist": {
  4640. "type": "zip",
  4641. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  4642. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  4643. "shasum": ""
  4644. },
  4645. "require": {
  4646. "php": "^7.0"
  4647. },
  4648. "require-dev": {
  4649. "phpunit/phpunit": "^6.0"
  4650. },
  4651. "type": "library",
  4652. "extra": {
  4653. "branch-alias": {
  4654. "dev-master": "1.1-dev"
  4655. }
  4656. },
  4657. "autoload": {
  4658. "classmap": [
  4659. "src/"
  4660. ]
  4661. },
  4662. "notification-url": "https://packagist.org/downloads/",
  4663. "license": [
  4664. "BSD-3-Clause"
  4665. ],
  4666. "authors": [
  4667. {
  4668. "name": "Sebastian Bergmann",
  4669. "email": "sebastian@phpunit.de"
  4670. }
  4671. ],
  4672. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  4673. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  4674. "time": "2017-03-29T09:07:27+00:00"
  4675. },
  4676. {
  4677. "name": "sebastian/recursion-context",
  4678. "version": "3.0.0",
  4679. "source": {
  4680. "type": "git",
  4681. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  4682. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  4683. },
  4684. "dist": {
  4685. "type": "zip",
  4686. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  4687. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  4688. "shasum": ""
  4689. },
  4690. "require": {
  4691. "php": "^7.0"
  4692. },
  4693. "require-dev": {
  4694. "phpunit/phpunit": "^6.0"
  4695. },
  4696. "type": "library",
  4697. "extra": {
  4698. "branch-alias": {
  4699. "dev-master": "3.0.x-dev"
  4700. }
  4701. },
  4702. "autoload": {
  4703. "classmap": [
  4704. "src/"
  4705. ]
  4706. },
  4707. "notification-url": "https://packagist.org/downloads/",
  4708. "license": [
  4709. "BSD-3-Clause"
  4710. ],
  4711. "authors": [
  4712. {
  4713. "name": "Jeff Welch",
  4714. "email": "whatthejeff@gmail.com"
  4715. },
  4716. {
  4717. "name": "Sebastian Bergmann",
  4718. "email": "sebastian@phpunit.de"
  4719. },
  4720. {
  4721. "name": "Adam Harvey",
  4722. "email": "aharvey@php.net"
  4723. }
  4724. ],
  4725. "description": "Provides functionality to recursively process PHP variables",
  4726. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  4727. "time": "2017-03-03T06:23:57+00:00"
  4728. },
  4729. {
  4730. "name": "sebastian/resource-operations",
  4731. "version": "1.0.0",
  4732. "source": {
  4733. "type": "git",
  4734. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  4735. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  4736. },
  4737. "dist": {
  4738. "type": "zip",
  4739. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  4740. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  4741. "shasum": ""
  4742. },
  4743. "require": {
  4744. "php": ">=5.6.0"
  4745. },
  4746. "type": "library",
  4747. "extra": {
  4748. "branch-alias": {
  4749. "dev-master": "1.0.x-dev"
  4750. }
  4751. },
  4752. "autoload": {
  4753. "classmap": [
  4754. "src/"
  4755. ]
  4756. },
  4757. "notification-url": "https://packagist.org/downloads/",
  4758. "license": [
  4759. "BSD-3-Clause"
  4760. ],
  4761. "authors": [
  4762. {
  4763. "name": "Sebastian Bergmann",
  4764. "email": "sebastian@phpunit.de"
  4765. }
  4766. ],
  4767. "description": "Provides a list of PHP built-in functions that operate on resources",
  4768. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  4769. "time": "2015-07-28T20:34:47+00:00"
  4770. },
  4771. {
  4772. "name": "sebastian/version",
  4773. "version": "2.0.1",
  4774. "source": {
  4775. "type": "git",
  4776. "url": "https://github.com/sebastianbergmann/version.git",
  4777. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  4778. },
  4779. "dist": {
  4780. "type": "zip",
  4781. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  4782. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  4783. "shasum": ""
  4784. },
  4785. "require": {
  4786. "php": ">=5.6"
  4787. },
  4788. "type": "library",
  4789. "extra": {
  4790. "branch-alias": {
  4791. "dev-master": "2.0.x-dev"
  4792. }
  4793. },
  4794. "autoload": {
  4795. "classmap": [
  4796. "src/"
  4797. ]
  4798. },
  4799. "notification-url": "https://packagist.org/downloads/",
  4800. "license": [
  4801. "BSD-3-Clause"
  4802. ],
  4803. "authors": [
  4804. {
  4805. "name": "Sebastian Bergmann",
  4806. "email": "sebastian@phpunit.de",
  4807. "role": "lead"
  4808. }
  4809. ],
  4810. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  4811. "homepage": "https://github.com/sebastianbergmann/version",
  4812. "time": "2016-10-03T07:35:21+00:00"
  4813. },
  4814. {
  4815. "name": "symfony/dotenv",
  4816. "version": "v4.0.3",
  4817. "source": {
  4818. "type": "git",
  4819. "url": "https://github.com/symfony/dotenv.git",
  4820. "reference": "afb6923923e22874dac20bd042167ccb8df1d158"
  4821. },
  4822. "dist": {
  4823. "type": "zip",
  4824. "url": "https://api.github.com/repos/symfony/dotenv/zipball/afb6923923e22874dac20bd042167ccb8df1d158",
  4825. "reference": "afb6923923e22874dac20bd042167ccb8df1d158",
  4826. "shasum": ""
  4827. },
  4828. "require": {
  4829. "php": "^7.1.3"
  4830. },
  4831. "require-dev": {
  4832. "symfony/process": "~3.4|~4.0"
  4833. },
  4834. "type": "library",
  4835. "extra": {
  4836. "branch-alias": {
  4837. "dev-master": "4.0-dev"
  4838. }
  4839. },
  4840. "autoload": {
  4841. "psr-4": {
  4842. "Symfony\\Component\\Dotenv\\": ""
  4843. },
  4844. "exclude-from-classmap": [
  4845. "/Tests/"
  4846. ]
  4847. },
  4848. "notification-url": "https://packagist.org/downloads/",
  4849. "license": [
  4850. "MIT"
  4851. ],
  4852. "authors": [
  4853. {
  4854. "name": "Fabien Potencier",
  4855. "email": "fabien@symfony.com"
  4856. },
  4857. {
  4858. "name": "Symfony Community",
  4859. "homepage": "https://symfony.com/contributors"
  4860. }
  4861. ],
  4862. "description": "Registers environment variables from a .env file",
  4863. "homepage": "https://symfony.com",
  4864. "keywords": [
  4865. "dotenv",
  4866. "env",
  4867. "environment"
  4868. ],
  4869. "time": "2018-01-03T17:15:19+00:00"
  4870. },
  4871. {
  4872. "name": "symfony/maker-bundle",
  4873. "version": "v1.0.2",
  4874. "source": {
  4875. "type": "git",
  4876. "url": "https://github.com/symfony/maker-bundle.git",
  4877. "reference": "bf97703ddb68c6b37bd6bab5f5ebd5c7542ca1ef"
  4878. },
  4879. "dist": {
  4880. "type": "zip",
  4881. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/bf97703ddb68c6b37bd6bab5f5ebd5c7542ca1ef",
  4882. "reference": "bf97703ddb68c6b37bd6bab5f5ebd5c7542ca1ef",
  4883. "shasum": ""
  4884. },
  4885. "require": {
  4886. "php": "^7.0.8",
  4887. "symfony/config": "^3.4|^4.0",
  4888. "symfony/console": "^3.4|^4.0",
  4889. "symfony/dependency-injection": "^3.4|^4.0",
  4890. "symfony/filesystem": "^3.4|^4.0",
  4891. "symfony/framework-bundle": "^3.4|^4.0",
  4892. "symfony/http-kernel": "^3.4|^4.0"
  4893. },
  4894. "require-dev": {
  4895. "friendsofphp/php-cs-fixer": "^2.8",
  4896. "symfony/phpunit-bridge": "^3.4|^4.0",
  4897. "symfony/process": "^3.4|^4.0"
  4898. },
  4899. "type": "symfony-bundle",
  4900. "extra": {
  4901. "branch-alias": {
  4902. "dev-master": "1.0-dev"
  4903. }
  4904. },
  4905. "autoload": {
  4906. "psr-4": {
  4907. "Symfony\\Bundle\\MakerBundle\\": "src/"
  4908. }
  4909. },
  4910. "notification-url": "https://packagist.org/downloads/",
  4911. "license": [
  4912. "MIT"
  4913. ],
  4914. "authors": [
  4915. {
  4916. "name": "Symfony Community",
  4917. "homepage": "https://symfony.com/contributors"
  4918. }
  4919. ],
  4920. "keywords": [
  4921. "code generator",
  4922. "generator",
  4923. "scaffold",
  4924. "scaffolding"
  4925. ],
  4926. "time": "2017-12-04T17:50:28+00:00"
  4927. },
  4928. {
  4929. "name": "symfony/phpunit-bridge",
  4930. "version": "v4.0.3",
  4931. "source": {
  4932. "type": "git",
  4933. "url": "https://github.com/symfony/phpunit-bridge.git",
  4934. "reference": "b989c646eb422f3ad583f0be3b482a774668e86f"
  4935. },
  4936. "dist": {
  4937. "type": "zip",
  4938. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/b989c646eb422f3ad583f0be3b482a774668e86f",
  4939. "reference": "b989c646eb422f3ad583f0be3b482a774668e86f",
  4940. "shasum": ""
  4941. },
  4942. "require": {
  4943. "php": ">=5.3.3"
  4944. },
  4945. "conflict": {
  4946. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  4947. },
  4948. "suggest": {
  4949. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  4950. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  4951. },
  4952. "bin": [
  4953. "bin/simple-phpunit"
  4954. ],
  4955. "type": "symfony-bridge",
  4956. "extra": {
  4957. "branch-alias": {
  4958. "dev-master": "4.0-dev"
  4959. },
  4960. "thanks": {
  4961. "name": "phpunit/phpunit",
  4962. "url": "https://github.com/sebastianbergmann/phpunit"
  4963. }
  4964. },
  4965. "autoload": {
  4966. "files": [
  4967. "bootstrap.php"
  4968. ],
  4969. "psr-4": {
  4970. "Symfony\\Bridge\\PhpUnit\\": ""
  4971. },
  4972. "exclude-from-classmap": [
  4973. "/Tests/"
  4974. ]
  4975. },
  4976. "notification-url": "https://packagist.org/downloads/",
  4977. "license": [
  4978. "MIT"
  4979. ],
  4980. "authors": [
  4981. {
  4982. "name": "Nicolas Grekas",
  4983. "email": "p@tchwork.com"
  4984. },
  4985. {
  4986. "name": "Symfony Community",
  4987. "homepage": "https://symfony.com/contributors"
  4988. }
  4989. ],
  4990. "description": "Symfony PHPUnit Bridge",
  4991. "homepage": "https://symfony.com",
  4992. "time": "2018-01-04T17:20:09+00:00"
  4993. },
  4994. {
  4995. "name": "symfony/polyfill-php72",
  4996. "version": "v1.6.0",
  4997. "source": {
  4998. "type": "git",
  4999. "url": "https://github.com/symfony/polyfill-php72.git",
  5000. "reference": "6de4f4884b97abbbed9f0a84a95ff2ff77254254"
  5001. },
  5002. "dist": {
  5003. "type": "zip",
  5004. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/6de4f4884b97abbbed9f0a84a95ff2ff77254254",
  5005. "reference": "6de4f4884b97abbbed9f0a84a95ff2ff77254254",
  5006. "shasum": ""
  5007. },
  5008. "require": {
  5009. "php": ">=5.3.3"
  5010. },
  5011. "type": "library",
  5012. "extra": {
  5013. "branch-alias": {
  5014. "dev-master": "1.6-dev"
  5015. }
  5016. },
  5017. "autoload": {
  5018. "psr-4": {
  5019. "Symfony\\Polyfill\\Php72\\": ""
  5020. },
  5021. "files": [
  5022. "bootstrap.php"
  5023. ]
  5024. },
  5025. "notification-url": "https://packagist.org/downloads/",
  5026. "license": [
  5027. "MIT"
  5028. ],
  5029. "authors": [
  5030. {
  5031. "name": "Nicolas Grekas",
  5032. "email": "p@tchwork.com"
  5033. },
  5034. {
  5035. "name": "Symfony Community",
  5036. "homepage": "https://symfony.com/contributors"
  5037. }
  5038. ],
  5039. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5040. "homepage": "https://symfony.com",
  5041. "keywords": [
  5042. "compatibility",
  5043. "polyfill",
  5044. "portable",
  5045. "shim"
  5046. ],
  5047. "time": "2017-10-11T12:05:26+00:00"
  5048. },
  5049. {
  5050. "name": "symfony/profiler-pack",
  5051. "version": "v1.0.3",
  5052. "source": {
  5053. "type": "git",
  5054. "url": "https://github.com/symfony/profiler-pack.git",
  5055. "reference": "fa2e2dad522a3bef322196abad28ffce6d0fdbc5"
  5056. },
  5057. "dist": {
  5058. "type": "zip",
  5059. "url": "https://api.github.com/repos/symfony/profiler-pack/zipball/fa2e2dad522a3bef322196abad28ffce6d0fdbc5",
  5060. "reference": "fa2e2dad522a3bef322196abad28ffce6d0fdbc5",
  5061. "shasum": ""
  5062. },
  5063. "require": {
  5064. "php": "^7.0",
  5065. "symfony/stopwatch": "^3.3|^4.0",
  5066. "symfony/twig-bundle": "^3.3|^4.0",
  5067. "symfony/web-profiler-bundle": "^3.3|^4.0"
  5068. },
  5069. "type": "symfony-pack",
  5070. "notification-url": "https://packagist.org/downloads/",
  5071. "license": [
  5072. "MIT"
  5073. ],
  5074. "description": "A pack for the Symfony web profiler",
  5075. "time": "2017-12-12T01:48:24+00:00"
  5076. },
  5077. {
  5078. "name": "symfony/stopwatch",
  5079. "version": "v4.0.3",
  5080. "source": {
  5081. "type": "git",
  5082. "url": "https://github.com/symfony/stopwatch.git",
  5083. "reference": "d52321f0e2b596bd03b5d1dd6eebe71caa925704"
  5084. },
  5085. "dist": {
  5086. "type": "zip",
  5087. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/d52321f0e2b596bd03b5d1dd6eebe71caa925704",
  5088. "reference": "d52321f0e2b596bd03b5d1dd6eebe71caa925704",
  5089. "shasum": ""
  5090. },
  5091. "require": {
  5092. "php": "^7.1.3"
  5093. },
  5094. "type": "library",
  5095. "extra": {
  5096. "branch-alias": {
  5097. "dev-master": "4.0-dev"
  5098. }
  5099. },
  5100. "autoload": {
  5101. "psr-4": {
  5102. "Symfony\\Component\\Stopwatch\\": ""
  5103. },
  5104. "exclude-from-classmap": [
  5105. "/Tests/"
  5106. ]
  5107. },
  5108. "notification-url": "https://packagist.org/downloads/",
  5109. "license": [
  5110. "MIT"
  5111. ],
  5112. "authors": [
  5113. {
  5114. "name": "Fabien Potencier",
  5115. "email": "fabien@symfony.com"
  5116. },
  5117. {
  5118. "name": "Symfony Community",
  5119. "homepage": "https://symfony.com/contributors"
  5120. }
  5121. ],
  5122. "description": "Symfony Stopwatch Component",
  5123. "homepage": "https://symfony.com",
  5124. "time": "2018-01-03T07:38:00+00:00"
  5125. },
  5126. {
  5127. "name": "symfony/var-dumper",
  5128. "version": "v4.0.3",
  5129. "source": {
  5130. "type": "git",
  5131. "url": "https://github.com/symfony/var-dumper.git",
  5132. "reference": "883f6109a2069773e088c08626b87a3d3d61c566"
  5133. },
  5134. "dist": {
  5135. "type": "zip",
  5136. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/883f6109a2069773e088c08626b87a3d3d61c566",
  5137. "reference": "883f6109a2069773e088c08626b87a3d3d61c566",
  5138. "shasum": ""
  5139. },
  5140. "require": {
  5141. "php": "^7.1.3",
  5142. "symfony/polyfill-mbstring": "~1.0",
  5143. "symfony/polyfill-php72": "~1.5"
  5144. },
  5145. "conflict": {
  5146. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  5147. },
  5148. "require-dev": {
  5149. "ext-iconv": "*",
  5150. "twig/twig": "~1.34|~2.4"
  5151. },
  5152. "suggest": {
  5153. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5154. "ext-intl": "To show region name in time zone dump"
  5155. },
  5156. "type": "library",
  5157. "extra": {
  5158. "branch-alias": {
  5159. "dev-master": "4.0-dev"
  5160. }
  5161. },
  5162. "autoload": {
  5163. "files": [
  5164. "Resources/functions/dump.php"
  5165. ],
  5166. "psr-4": {
  5167. "Symfony\\Component\\VarDumper\\": ""
  5168. },
  5169. "exclude-from-classmap": [
  5170. "/Tests/"
  5171. ]
  5172. },
  5173. "notification-url": "https://packagist.org/downloads/",
  5174. "license": [
  5175. "MIT"
  5176. ],
  5177. "authors": [
  5178. {
  5179. "name": "Nicolas Grekas",
  5180. "email": "p@tchwork.com"
  5181. },
  5182. {
  5183. "name": "Symfony Community",
  5184. "homepage": "https://symfony.com/contributors"
  5185. }
  5186. ],
  5187. "description": "Symfony mechanism for exploring and dumping PHP variables",
  5188. "homepage": "https://symfony.com",
  5189. "keywords": [
  5190. "debug",
  5191. "dump"
  5192. ],
  5193. "time": "2018-01-03T17:15:19+00:00"
  5194. },
  5195. {
  5196. "name": "symfony/web-profiler-bundle",
  5197. "version": "v4.0.3",
  5198. "source": {
  5199. "type": "git",
  5200. "url": "https://github.com/symfony/web-profiler-bundle.git",
  5201. "reference": "20a04d0672d7f538d1c06ded7bf5990f23c089aa"
  5202. },
  5203. "dist": {
  5204. "type": "zip",
  5205. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/20a04d0672d7f538d1c06ded7bf5990f23c089aa",
  5206. "reference": "20a04d0672d7f538d1c06ded7bf5990f23c089aa",
  5207. "shasum": ""
  5208. },
  5209. "require": {
  5210. "php": "^7.1.3",
  5211. "symfony/http-kernel": "~3.4|~4.0",
  5212. "symfony/routing": "~3.4|~4.0",
  5213. "symfony/twig-bridge": "~3.4|~4.0",
  5214. "symfony/var-dumper": "~3.4|~4.0",
  5215. "twig/twig": "~1.34|~2.4"
  5216. },
  5217. "conflict": {
  5218. "symfony/config": "<3.4",
  5219. "symfony/dependency-injection": "<3.4",
  5220. "symfony/event-dispatcher": "<3.4",
  5221. "symfony/var-dumper": "<3.4"
  5222. },
  5223. "require-dev": {
  5224. "symfony/config": "~3.4|~4.0",
  5225. "symfony/console": "~3.4|~4.0",
  5226. "symfony/dependency-injection": "~3.4|~4.0",
  5227. "symfony/stopwatch": "~3.4|~4.0"
  5228. },
  5229. "type": "symfony-bundle",
  5230. "extra": {
  5231. "branch-alias": {
  5232. "dev-master": "4.0-dev"
  5233. }
  5234. },
  5235. "autoload": {
  5236. "psr-4": {
  5237. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  5238. },
  5239. "exclude-from-classmap": [
  5240. "/Tests/"
  5241. ]
  5242. },
  5243. "notification-url": "https://packagist.org/downloads/",
  5244. "license": [
  5245. "MIT"
  5246. ],
  5247. "authors": [
  5248. {
  5249. "name": "Fabien Potencier",
  5250. "email": "fabien@symfony.com"
  5251. },
  5252. {
  5253. "name": "Symfony Community",
  5254. "homepage": "https://symfony.com/contributors"
  5255. }
  5256. ],
  5257. "description": "Symfony WebProfilerBundle",
  5258. "homepage": "https://symfony.com",
  5259. "time": "2018-01-04T15:52:56+00:00"
  5260. },
  5261. {
  5262. "name": "theseer/tokenizer",
  5263. "version": "1.1.0",
  5264. "source": {
  5265. "type": "git",
  5266. "url": "https://github.com/theseer/tokenizer.git",
  5267. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  5268. },
  5269. "dist": {
  5270. "type": "zip",
  5271. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  5272. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  5273. "shasum": ""
  5274. },
  5275. "require": {
  5276. "ext-dom": "*",
  5277. "ext-tokenizer": "*",
  5278. "ext-xmlwriter": "*",
  5279. "php": "^7.0"
  5280. },
  5281. "type": "library",
  5282. "autoload": {
  5283. "classmap": [
  5284. "src/"
  5285. ]
  5286. },
  5287. "notification-url": "https://packagist.org/downloads/",
  5288. "license": [
  5289. "BSD-3-Clause"
  5290. ],
  5291. "authors": [
  5292. {
  5293. "name": "Arne Blankerts",
  5294. "email": "arne@blankerts.de",
  5295. "role": "Developer"
  5296. }
  5297. ],
  5298. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  5299. "time": "2017-04-07T12:08:54+00:00"
  5300. },
  5301. {
  5302. "name": "webmozart/assert",
  5303. "version": "1.2.0",
  5304. "source": {
  5305. "type": "git",
  5306. "url": "https://github.com/webmozart/assert.git",
  5307. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f"
  5308. },
  5309. "dist": {
  5310. "type": "zip",
  5311. "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f",
  5312. "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f",
  5313. "shasum": ""
  5314. },
  5315. "require": {
  5316. "php": "^5.3.3 || ^7.0"
  5317. },
  5318. "require-dev": {
  5319. "phpunit/phpunit": "^4.6",
  5320. "sebastian/version": "^1.0.1"
  5321. },
  5322. "type": "library",
  5323. "extra": {
  5324. "branch-alias": {
  5325. "dev-master": "1.3-dev"
  5326. }
  5327. },
  5328. "autoload": {
  5329. "psr-4": {
  5330. "Webmozart\\Assert\\": "src/"
  5331. }
  5332. },
  5333. "notification-url": "https://packagist.org/downloads/",
  5334. "license": [
  5335. "MIT"
  5336. ],
  5337. "authors": [
  5338. {
  5339. "name": "Bernhard Schussek",
  5340. "email": "bschussek@gmail.com"
  5341. }
  5342. ],
  5343. "description": "Assertions to validate method input/output with nice error messages.",
  5344. "keywords": [
  5345. "assert",
  5346. "check",
  5347. "validate"
  5348. ],
  5349. "time": "2016-11-23T20:04:58+00:00"
  5350. }
  5351. ],
  5352. "aliases": [],
  5353. "minimum-stability": "stable",
  5354. "stability-flags": {
  5355. "symfony/lts": 20
  5356. },
  5357. "prefer-stable": false,
  5358. "prefer-lowest": false,
  5359. "platform": {
  5360. "php": "^7.1.3",
  5361. "ext-iconv": "*"
  5362. },
  5363. "platform-dev": []
  5364. }