composer.lock 245 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852
  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. "hash": "1baf4d43c45c33217c9cf19071a08a2a",
  8. "content-hash": "bcca9604eb49933c7242d8225a4674f8",
  9. "packages": [
  10. {
  11. "name": "doctrine/annotations",
  12. "version": "v1.8.0",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/doctrine/annotations.git",
  16. "reference": "904dca4eb10715b92569fbcd79e201d5c349b6bc"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/doctrine/annotations/zipball/904dca4eb10715b92569fbcd79e201d5c349b6bc",
  21. "reference": "904dca4eb10715b92569fbcd79e201d5c349b6bc",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "doctrine/lexer": "1.*",
  26. "php": "^7.1"
  27. },
  28. "require-dev": {
  29. "doctrine/cache": "1.*",
  30. "phpunit/phpunit": "^7.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.7.x-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Guilherme Blanco",
  50. "email": "guilhermeblanco@gmail.com"
  51. },
  52. {
  53. "name": "Roman Borschel",
  54. "email": "roman@code-factory.org"
  55. },
  56. {
  57. "name": "Benjamin Eberlei",
  58. "email": "kontakt@beberlei.de"
  59. },
  60. {
  61. "name": "Jonathan Wage",
  62. "email": "jonwage@gmail.com"
  63. },
  64. {
  65. "name": "Johannes Schmitt",
  66. "email": "schmittjoh@gmail.com"
  67. }
  68. ],
  69. "description": "Docblock Annotations Parser",
  70. "homepage": "http://www.doctrine-project.org",
  71. "keywords": [
  72. "annotations",
  73. "docblock",
  74. "parser"
  75. ],
  76. "time": "2019-10-01 18:55:10"
  77. },
  78. {
  79. "name": "doctrine/cache",
  80. "version": "1.10.0",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/doctrine/cache.git",
  84. "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/doctrine/cache/zipball/382e7f4db9a12dc6c19431743a2b096041bcdd62",
  89. "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "php": "~7.1"
  94. },
  95. "conflict": {
  96. "doctrine/common": ">2.2,<2.4"
  97. },
  98. "require-dev": {
  99. "alcaeus/mongo-php-adapter": "^1.1",
  100. "doctrine/coding-standard": "^6.0",
  101. "mongodb/mongodb": "^1.1",
  102. "phpunit/phpunit": "^7.0",
  103. "predis/predis": "~1.0"
  104. },
  105. "suggest": {
  106. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  107. },
  108. "type": "library",
  109. "extra": {
  110. "branch-alias": {
  111. "dev-master": "1.9.x-dev"
  112. }
  113. },
  114. "autoload": {
  115. "psr-4": {
  116. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  117. }
  118. },
  119. "notification-url": "https://packagist.org/downloads/",
  120. "license": [
  121. "MIT"
  122. ],
  123. "authors": [
  124. {
  125. "name": "Guilherme Blanco",
  126. "email": "guilhermeblanco@gmail.com"
  127. },
  128. {
  129. "name": "Roman Borschel",
  130. "email": "roman@code-factory.org"
  131. },
  132. {
  133. "name": "Benjamin Eberlei",
  134. "email": "kontakt@beberlei.de"
  135. },
  136. {
  137. "name": "Jonathan Wage",
  138. "email": "jonwage@gmail.com"
  139. },
  140. {
  141. "name": "Johannes Schmitt",
  142. "email": "schmittjoh@gmail.com"
  143. }
  144. ],
  145. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  146. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  147. "keywords": [
  148. "abstraction",
  149. "apcu",
  150. "cache",
  151. "caching",
  152. "couchdb",
  153. "memcached",
  154. "php",
  155. "redis",
  156. "xcache"
  157. ],
  158. "time": "2019-11-29 15:36:20"
  159. },
  160. {
  161. "name": "doctrine/collections",
  162. "version": "1.6.4",
  163. "source": {
  164. "type": "git",
  165. "url": "https://github.com/doctrine/collections.git",
  166. "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7"
  167. },
  168. "dist": {
  169. "type": "zip",
  170. "url": "https://api.github.com/repos/doctrine/collections/zipball/6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7",
  171. "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7",
  172. "shasum": ""
  173. },
  174. "require": {
  175. "php": "^7.1.3"
  176. },
  177. "require-dev": {
  178. "doctrine/coding-standard": "^6.0",
  179. "phpstan/phpstan-shim": "^0.9.2",
  180. "phpunit/phpunit": "^7.0",
  181. "vimeo/psalm": "^3.2.2"
  182. },
  183. "type": "library",
  184. "extra": {
  185. "branch-alias": {
  186. "dev-master": "1.6.x-dev"
  187. }
  188. },
  189. "autoload": {
  190. "psr-4": {
  191. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  192. }
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "MIT"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Guilherme Blanco",
  201. "email": "guilhermeblanco@gmail.com"
  202. },
  203. {
  204. "name": "Roman Borschel",
  205. "email": "roman@code-factory.org"
  206. },
  207. {
  208. "name": "Benjamin Eberlei",
  209. "email": "kontakt@beberlei.de"
  210. },
  211. {
  212. "name": "Jonathan Wage",
  213. "email": "jonwage@gmail.com"
  214. },
  215. {
  216. "name": "Johannes Schmitt",
  217. "email": "schmittjoh@gmail.com"
  218. }
  219. ],
  220. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  221. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  222. "keywords": [
  223. "array",
  224. "collections",
  225. "iterators",
  226. "php"
  227. ],
  228. "time": "2019-11-13 13:07:11"
  229. },
  230. {
  231. "name": "doctrine/common",
  232. "version": "v2.11.0",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/doctrine/common.git",
  236. "reference": "b8ca1dcf6b0dc8a2af7a09baac8d0c48345df4ff"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/doctrine/common/zipball/b8ca1dcf6b0dc8a2af7a09baac8d0c48345df4ff",
  241. "reference": "b8ca1dcf6b0dc8a2af7a09baac8d0c48345df4ff",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "doctrine/annotations": "^1.0",
  246. "doctrine/cache": "^1.0",
  247. "doctrine/collections": "^1.0",
  248. "doctrine/event-manager": "^1.0",
  249. "doctrine/inflector": "^1.0",
  250. "doctrine/lexer": "^1.0",
  251. "doctrine/persistence": "^1.1",
  252. "doctrine/reflection": "^1.0",
  253. "php": "^7.1"
  254. },
  255. "require-dev": {
  256. "doctrine/coding-standard": "^1.0",
  257. "phpstan/phpstan": "^0.11",
  258. "phpstan/phpstan-phpunit": "^0.11",
  259. "phpunit/phpunit": "^7.0",
  260. "squizlabs/php_codesniffer": "^3.0",
  261. "symfony/phpunit-bridge": "^4.0.5"
  262. },
  263. "type": "library",
  264. "extra": {
  265. "branch-alias": {
  266. "dev-master": "2.11.x-dev"
  267. }
  268. },
  269. "autoload": {
  270. "psr-4": {
  271. "Doctrine\\Common\\": "lib/Doctrine/Common"
  272. }
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "authors": [
  279. {
  280. "name": "Guilherme Blanco",
  281. "email": "guilhermeblanco@gmail.com"
  282. },
  283. {
  284. "name": "Roman Borschel",
  285. "email": "roman@code-factory.org"
  286. },
  287. {
  288. "name": "Benjamin Eberlei",
  289. "email": "kontakt@beberlei.de"
  290. },
  291. {
  292. "name": "Jonathan Wage",
  293. "email": "jonwage@gmail.com"
  294. },
  295. {
  296. "name": "Johannes Schmitt",
  297. "email": "schmittjoh@gmail.com"
  298. },
  299. {
  300. "name": "Marco Pivetta",
  301. "email": "ocramius@gmail.com"
  302. }
  303. ],
  304. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  305. "homepage": "https://www.doctrine-project.org/projects/common.html",
  306. "keywords": [
  307. "common",
  308. "doctrine",
  309. "php"
  310. ],
  311. "time": "2019-09-10 10:10:14"
  312. },
  313. {
  314. "name": "doctrine/dbal",
  315. "version": "v2.10.1",
  316. "source": {
  317. "type": "git",
  318. "url": "https://github.com/doctrine/dbal.git",
  319. "reference": "c2b8e6e82732a64ecde1cddf9e1e06cb8556e3d8"
  320. },
  321. "dist": {
  322. "type": "zip",
  323. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c2b8e6e82732a64ecde1cddf9e1e06cb8556e3d8",
  324. "reference": "c2b8e6e82732a64ecde1cddf9e1e06cb8556e3d8",
  325. "shasum": ""
  326. },
  327. "require": {
  328. "doctrine/cache": "^1.0",
  329. "doctrine/event-manager": "^1.0",
  330. "ext-pdo": "*",
  331. "php": "^7.2"
  332. },
  333. "require-dev": {
  334. "doctrine/coding-standard": "^6.0",
  335. "jetbrains/phpstorm-stubs": "^2019.1",
  336. "phpstan/phpstan": "^0.11.3",
  337. "phpunit/phpunit": "^8.4.1",
  338. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0"
  339. },
  340. "suggest": {
  341. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  342. },
  343. "bin": [
  344. "bin/doctrine-dbal"
  345. ],
  346. "type": "library",
  347. "extra": {
  348. "branch-alias": {
  349. "dev-master": "2.10.x-dev",
  350. "dev-develop": "3.0.x-dev"
  351. }
  352. },
  353. "autoload": {
  354. "psr-4": {
  355. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "MIT"
  361. ],
  362. "authors": [
  363. {
  364. "name": "Guilherme Blanco",
  365. "email": "guilhermeblanco@gmail.com"
  366. },
  367. {
  368. "name": "Roman Borschel",
  369. "email": "roman@code-factory.org"
  370. },
  371. {
  372. "name": "Benjamin Eberlei",
  373. "email": "kontakt@beberlei.de"
  374. },
  375. {
  376. "name": "Jonathan Wage",
  377. "email": "jonwage@gmail.com"
  378. }
  379. ],
  380. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  381. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  382. "keywords": [
  383. "abstraction",
  384. "database",
  385. "db2",
  386. "dbal",
  387. "mariadb",
  388. "mssql",
  389. "mysql",
  390. "oci8",
  391. "oracle",
  392. "pdo",
  393. "pgsql",
  394. "postgresql",
  395. "queryobject",
  396. "sasql",
  397. "sql",
  398. "sqlanywhere",
  399. "sqlite",
  400. "sqlserver",
  401. "sqlsrv"
  402. ],
  403. "time": "2020-01-04 12:56:21"
  404. },
  405. {
  406. "name": "doctrine/doctrine-bundle",
  407. "version": "2.0.6",
  408. "source": {
  409. "type": "git",
  410. "url": "https://github.com/doctrine/DoctrineBundle.git",
  411. "reference": "0ef972d3b730f975c80db9fffa4b2a0258c91442"
  412. },
  413. "dist": {
  414. "type": "zip",
  415. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/0ef972d3b730f975c80db9fffa4b2a0258c91442",
  416. "reference": "0ef972d3b730f975c80db9fffa4b2a0258c91442",
  417. "shasum": ""
  418. },
  419. "require": {
  420. "doctrine/dbal": "^2.9.0",
  421. "doctrine/persistence": "^1.3.3",
  422. "jdorn/sql-formatter": "^1.2.16",
  423. "php": "^7.1",
  424. "symfony/cache": "^4.3.3|^5.0",
  425. "symfony/config": "^4.3.3|^5.0",
  426. "symfony/console": "^3.4.30|^4.3.3|^5.0",
  427. "symfony/dependency-injection": "^4.3.3|^5.0",
  428. "symfony/doctrine-bridge": "^4.3.7|^5.0",
  429. "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0",
  430. "symfony/service-contracts": "^1.1.1|^2.0"
  431. },
  432. "conflict": {
  433. "doctrine/orm": "<2.6",
  434. "twig/twig": "<1.34|>=2.0,<2.4"
  435. },
  436. "require-dev": {
  437. "doctrine/coding-standard": "^6.0",
  438. "doctrine/orm": "^2.6",
  439. "ocramius/proxy-manager": "^2.1",
  440. "phpunit/phpunit": "^7.5",
  441. "symfony/phpunit-bridge": "^4.2",
  442. "symfony/property-info": "^4.3.3|^5.0",
  443. "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0",
  444. "symfony/validator": "^3.4.30|^4.3.3|^5.0",
  445. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0",
  446. "symfony/yaml": "^3.4.30|^4.3.3|^5.0",
  447. "twig/twig": "^1.34|^2.12"
  448. },
  449. "suggest": {
  450. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  451. "symfony/web-profiler-bundle": "To use the data collector."
  452. },
  453. "type": "symfony-bundle",
  454. "extra": {
  455. "branch-alias": {
  456. "dev-master": "2.0.x-dev"
  457. }
  458. },
  459. "autoload": {
  460. "psr-4": {
  461. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  462. }
  463. },
  464. "notification-url": "https://packagist.org/downloads/",
  465. "license": [
  466. "MIT"
  467. ],
  468. "authors": [
  469. {
  470. "name": "Fabien Potencier",
  471. "email": "fabien@symfony.com"
  472. },
  473. {
  474. "name": "Benjamin Eberlei",
  475. "email": "kontakt@beberlei.de"
  476. },
  477. {
  478. "name": "Symfony Community",
  479. "homepage": "http://symfony.com/contributors"
  480. },
  481. {
  482. "name": "Doctrine Project",
  483. "homepage": "http://www.doctrine-project.org/"
  484. }
  485. ],
  486. "description": "Symfony DoctrineBundle",
  487. "homepage": "http://www.doctrine-project.org",
  488. "keywords": [
  489. "database",
  490. "dbal",
  491. "orm",
  492. "persistence"
  493. ],
  494. "time": "2019-12-19 13:47:07"
  495. },
  496. {
  497. "name": "doctrine/doctrine-migrations-bundle",
  498. "version": "2.1.2",
  499. "source": {
  500. "type": "git",
  501. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  502. "reference": "856437e8de96a70233e1f0cc2352fc8dd15a899d"
  503. },
  504. "dist": {
  505. "type": "zip",
  506. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/856437e8de96a70233e1f0cc2352fc8dd15a899d",
  507. "reference": "856437e8de96a70233e1f0cc2352fc8dd15a899d",
  508. "shasum": ""
  509. },
  510. "require": {
  511. "doctrine/doctrine-bundle": "~1.0|~2.0",
  512. "doctrine/migrations": "^2.2",
  513. "php": "^7.1",
  514. "symfony/framework-bundle": "~3.4|~4.0|~5.0"
  515. },
  516. "require-dev": {
  517. "doctrine/coding-standard": "^5.0",
  518. "mikey179/vfsstream": "^1.6",
  519. "phpstan/phpstan": "^0.9.2",
  520. "phpstan/phpstan-strict-rules": "^0.9",
  521. "phpunit/phpunit": "^6.4|^7.0"
  522. },
  523. "type": "symfony-bundle",
  524. "extra": {
  525. "branch-alias": {
  526. "dev-master": "2.1.x-dev"
  527. }
  528. },
  529. "autoload": {
  530. "psr-4": {
  531. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  532. },
  533. "exclude-from-classmap": [
  534. "/Tests/"
  535. ]
  536. },
  537. "notification-url": "https://packagist.org/downloads/",
  538. "license": [
  539. "MIT"
  540. ],
  541. "authors": [
  542. {
  543. "name": "Fabien Potencier",
  544. "email": "fabien@symfony.com"
  545. },
  546. {
  547. "name": "Doctrine Project",
  548. "homepage": "http://www.doctrine-project.org"
  549. },
  550. {
  551. "name": "Symfony Community",
  552. "homepage": "http://symfony.com/contributors"
  553. }
  554. ],
  555. "description": "Symfony DoctrineMigrationsBundle",
  556. "homepage": "https://www.doctrine-project.org",
  557. "keywords": [
  558. "dbal",
  559. "migrations",
  560. "schema"
  561. ],
  562. "time": "2019-11-13 12:57:41"
  563. },
  564. {
  565. "name": "doctrine/event-manager",
  566. "version": "1.1.0",
  567. "source": {
  568. "type": "git",
  569. "url": "https://github.com/doctrine/event-manager.git",
  570. "reference": "629572819973f13486371cb611386eb17851e85c"
  571. },
  572. "dist": {
  573. "type": "zip",
  574. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/629572819973f13486371cb611386eb17851e85c",
  575. "reference": "629572819973f13486371cb611386eb17851e85c",
  576. "shasum": ""
  577. },
  578. "require": {
  579. "php": "^7.1"
  580. },
  581. "conflict": {
  582. "doctrine/common": "<2.9@dev"
  583. },
  584. "require-dev": {
  585. "doctrine/coding-standard": "^6.0",
  586. "phpunit/phpunit": "^7.0"
  587. },
  588. "type": "library",
  589. "extra": {
  590. "branch-alias": {
  591. "dev-master": "1.0.x-dev"
  592. }
  593. },
  594. "autoload": {
  595. "psr-4": {
  596. "Doctrine\\Common\\": "lib/Doctrine/Common"
  597. }
  598. },
  599. "notification-url": "https://packagist.org/downloads/",
  600. "license": [
  601. "MIT"
  602. ],
  603. "authors": [
  604. {
  605. "name": "Guilherme Blanco",
  606. "email": "guilhermeblanco@gmail.com"
  607. },
  608. {
  609. "name": "Roman Borschel",
  610. "email": "roman@code-factory.org"
  611. },
  612. {
  613. "name": "Benjamin Eberlei",
  614. "email": "kontakt@beberlei.de"
  615. },
  616. {
  617. "name": "Jonathan Wage",
  618. "email": "jonwage@gmail.com"
  619. },
  620. {
  621. "name": "Johannes Schmitt",
  622. "email": "schmittjoh@gmail.com"
  623. },
  624. {
  625. "name": "Marco Pivetta",
  626. "email": "ocramius@gmail.com"
  627. }
  628. ],
  629. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  630. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  631. "keywords": [
  632. "event",
  633. "event dispatcher",
  634. "event manager",
  635. "event system",
  636. "events"
  637. ],
  638. "time": "2019-11-10 09:48:07"
  639. },
  640. {
  641. "name": "doctrine/inflector",
  642. "version": "1.3.1",
  643. "source": {
  644. "type": "git",
  645. "url": "https://github.com/doctrine/inflector.git",
  646. "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1"
  647. },
  648. "dist": {
  649. "type": "zip",
  650. "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1",
  651. "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1",
  652. "shasum": ""
  653. },
  654. "require": {
  655. "php": "^7.1"
  656. },
  657. "require-dev": {
  658. "phpunit/phpunit": "^6.2"
  659. },
  660. "type": "library",
  661. "extra": {
  662. "branch-alias": {
  663. "dev-master": "1.3.x-dev"
  664. }
  665. },
  666. "autoload": {
  667. "psr-4": {
  668. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  669. }
  670. },
  671. "notification-url": "https://packagist.org/downloads/",
  672. "license": [
  673. "MIT"
  674. ],
  675. "authors": [
  676. {
  677. "name": "Guilherme Blanco",
  678. "email": "guilhermeblanco@gmail.com"
  679. },
  680. {
  681. "name": "Roman Borschel",
  682. "email": "roman@code-factory.org"
  683. },
  684. {
  685. "name": "Benjamin Eberlei",
  686. "email": "kontakt@beberlei.de"
  687. },
  688. {
  689. "name": "Jonathan Wage",
  690. "email": "jonwage@gmail.com"
  691. },
  692. {
  693. "name": "Johannes Schmitt",
  694. "email": "schmittjoh@gmail.com"
  695. }
  696. ],
  697. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  698. "homepage": "http://www.doctrine-project.org",
  699. "keywords": [
  700. "inflection",
  701. "pluralize",
  702. "singularize",
  703. "string"
  704. ],
  705. "time": "2019-10-30 19:59:35"
  706. },
  707. {
  708. "name": "doctrine/instantiator",
  709. "version": "1.3.0",
  710. "source": {
  711. "type": "git",
  712. "url": "https://github.com/doctrine/instantiator.git",
  713. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
  714. },
  715. "dist": {
  716. "type": "zip",
  717. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
  718. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
  719. "shasum": ""
  720. },
  721. "require": {
  722. "php": "^7.1"
  723. },
  724. "require-dev": {
  725. "doctrine/coding-standard": "^6.0",
  726. "ext-pdo": "*",
  727. "ext-phar": "*",
  728. "phpbench/phpbench": "^0.13",
  729. "phpstan/phpstan-phpunit": "^0.11",
  730. "phpstan/phpstan-shim": "^0.11",
  731. "phpunit/phpunit": "^7.0"
  732. },
  733. "type": "library",
  734. "extra": {
  735. "branch-alias": {
  736. "dev-master": "1.2.x-dev"
  737. }
  738. },
  739. "autoload": {
  740. "psr-4": {
  741. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Marco Pivetta",
  751. "email": "ocramius@gmail.com",
  752. "homepage": "http://ocramius.github.com/"
  753. }
  754. ],
  755. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  756. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  757. "keywords": [
  758. "constructor",
  759. "instantiate"
  760. ],
  761. "time": "2019-10-21 16:45:58"
  762. },
  763. {
  764. "name": "doctrine/lexer",
  765. "version": "1.2.0",
  766. "source": {
  767. "type": "git",
  768. "url": "https://github.com/doctrine/lexer.git",
  769. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6"
  770. },
  771. "dist": {
  772. "type": "zip",
  773. "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  774. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  775. "shasum": ""
  776. },
  777. "require": {
  778. "php": "^7.2"
  779. },
  780. "require-dev": {
  781. "doctrine/coding-standard": "^6.0",
  782. "phpstan/phpstan": "^0.11.8",
  783. "phpunit/phpunit": "^8.2"
  784. },
  785. "type": "library",
  786. "extra": {
  787. "branch-alias": {
  788. "dev-master": "1.2.x-dev"
  789. }
  790. },
  791. "autoload": {
  792. "psr-4": {
  793. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  794. }
  795. },
  796. "notification-url": "https://packagist.org/downloads/",
  797. "license": [
  798. "MIT"
  799. ],
  800. "authors": [
  801. {
  802. "name": "Guilherme Blanco",
  803. "email": "guilhermeblanco@gmail.com"
  804. },
  805. {
  806. "name": "Roman Borschel",
  807. "email": "roman@code-factory.org"
  808. },
  809. {
  810. "name": "Johannes Schmitt",
  811. "email": "schmittjoh@gmail.com"
  812. }
  813. ],
  814. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  815. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  816. "keywords": [
  817. "annotations",
  818. "docblock",
  819. "lexer",
  820. "parser",
  821. "php"
  822. ],
  823. "time": "2019-10-30 14:39:59"
  824. },
  825. {
  826. "name": "doctrine/migrations",
  827. "version": "2.2.0",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/doctrine/migrations.git",
  831. "reference": "8e124252d2f6be1124017d746d5994dd4095d66f"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/doctrine/migrations/zipball/8e124252d2f6be1124017d746d5994dd4095d66f",
  836. "reference": "8e124252d2f6be1124017d746d5994dd4095d66f",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "doctrine/dbal": "^2.9",
  841. "ocramius/package-versions": "^1.3",
  842. "ocramius/proxy-manager": "^2.0.2",
  843. "php": "^7.1",
  844. "symfony/console": "^3.4||^4.0||^5.0",
  845. "symfony/stopwatch": "^3.4||^4.0||^5.0"
  846. },
  847. "require-dev": {
  848. "doctrine/coding-standard": "^6.0",
  849. "doctrine/orm": "^2.6",
  850. "ext-pdo_sqlite": "*",
  851. "jdorn/sql-formatter": "^1.1",
  852. "mikey179/vfsstream": "^1.6",
  853. "phpstan/phpstan": "^0.10",
  854. "phpstan/phpstan-deprecation-rules": "^0.10",
  855. "phpstan/phpstan-phpunit": "^0.10",
  856. "phpstan/phpstan-strict-rules": "^0.10",
  857. "phpunit/phpunit": "^7.0",
  858. "symfony/process": "^3.4||^4.0||^5.0",
  859. "symfony/yaml": "^3.4||^4.0||^5.0"
  860. },
  861. "suggest": {
  862. "jdorn/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  863. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  864. },
  865. "bin": [
  866. "bin/doctrine-migrations"
  867. ],
  868. "type": "library",
  869. "extra": {
  870. "branch-alias": {
  871. "dev-master": "2.2.x-dev"
  872. }
  873. },
  874. "autoload": {
  875. "psr-4": {
  876. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  877. }
  878. },
  879. "notification-url": "https://packagist.org/downloads/",
  880. "license": [
  881. "MIT"
  882. ],
  883. "authors": [
  884. {
  885. "name": "Benjamin Eberlei",
  886. "email": "kontakt@beberlei.de"
  887. },
  888. {
  889. "name": "Jonathan Wage",
  890. "email": "jonwage@gmail.com"
  891. },
  892. {
  893. "name": "Michael Simonson",
  894. "email": "contact@mikesimonson.com"
  895. }
  896. ],
  897. "description": "PHP Doctrine Migrations project offer additional functionality on top of the database abstraction layer (DBAL) for versioning your database schema and easily deploying changes to it. It is a very easy to use and a powerful tool.",
  898. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  899. "keywords": [
  900. "database",
  901. "dbal",
  902. "migrations",
  903. "php"
  904. ],
  905. "time": "2019-11-13 11:06:31"
  906. },
  907. {
  908. "name": "doctrine/orm",
  909. "version": "v2.7.0",
  910. "source": {
  911. "type": "git",
  912. "url": "https://github.com/doctrine/orm.git",
  913. "reference": "4d763ca4c925f647b248b9fa01b5f47aa3685d62"
  914. },
  915. "dist": {
  916. "type": "zip",
  917. "url": "https://api.github.com/repos/doctrine/orm/zipball/4d763ca4c925f647b248b9fa01b5f47aa3685d62",
  918. "reference": "4d763ca4c925f647b248b9fa01b5f47aa3685d62",
  919. "shasum": ""
  920. },
  921. "require": {
  922. "doctrine/annotations": "^1.8",
  923. "doctrine/cache": "^1.9.1",
  924. "doctrine/collections": "^1.5",
  925. "doctrine/common": "^2.11",
  926. "doctrine/dbal": "^2.9.3",
  927. "doctrine/event-manager": "^1.1",
  928. "doctrine/instantiator": "^1.3",
  929. "doctrine/persistence": "^1.2",
  930. "ext-pdo": "*",
  931. "php": "^7.1",
  932. "symfony/console": "^3.0|^4.0|^5.0"
  933. },
  934. "require-dev": {
  935. "doctrine/coding-standard": "^5.0",
  936. "phpunit/phpunit": "^7.5",
  937. "symfony/yaml": "^3.4|^4.0|^5.0"
  938. },
  939. "suggest": {
  940. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  941. },
  942. "bin": [
  943. "bin/doctrine"
  944. ],
  945. "type": "library",
  946. "extra": {
  947. "branch-alias": {
  948. "dev-master": "2.7.x-dev"
  949. }
  950. },
  951. "autoload": {
  952. "psr-4": {
  953. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  954. }
  955. },
  956. "notification-url": "https://packagist.org/downloads/",
  957. "license": [
  958. "MIT"
  959. ],
  960. "authors": [
  961. {
  962. "name": "Guilherme Blanco",
  963. "email": "guilhermeblanco@gmail.com"
  964. },
  965. {
  966. "name": "Roman Borschel",
  967. "email": "roman@code-factory.org"
  968. },
  969. {
  970. "name": "Benjamin Eberlei",
  971. "email": "kontakt@beberlei.de"
  972. },
  973. {
  974. "name": "Jonathan Wage",
  975. "email": "jonwage@gmail.com"
  976. },
  977. {
  978. "name": "Marco Pivetta",
  979. "email": "ocramius@gmail.com"
  980. }
  981. ],
  982. "description": "Object-Relational-Mapper for PHP",
  983. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  984. "keywords": [
  985. "database",
  986. "orm"
  987. ],
  988. "time": "2019-11-19 08:38:05"
  989. },
  990. {
  991. "name": "doctrine/persistence",
  992. "version": "1.3.3",
  993. "source": {
  994. "type": "git",
  995. "url": "https://github.com/doctrine/persistence.git",
  996. "reference": "99b196bbd4715a94fa100fac664a351ffa46d6a5"
  997. },
  998. "dist": {
  999. "type": "zip",
  1000. "url": "https://api.github.com/repos/doctrine/persistence/zipball/99b196bbd4715a94fa100fac664a351ffa46d6a5",
  1001. "reference": "99b196bbd4715a94fa100fac664a351ffa46d6a5",
  1002. "shasum": ""
  1003. },
  1004. "require": {
  1005. "doctrine/annotations": "^1.0",
  1006. "doctrine/cache": "^1.0",
  1007. "doctrine/collections": "^1.0",
  1008. "doctrine/event-manager": "^1.0",
  1009. "doctrine/reflection": "^1.0",
  1010. "php": "^7.1"
  1011. },
  1012. "conflict": {
  1013. "doctrine/common": "<2.10@dev"
  1014. },
  1015. "require-dev": {
  1016. "doctrine/coding-standard": "^6.0",
  1017. "phpstan/phpstan": "^0.11",
  1018. "phpunit/phpunit": "^7.0"
  1019. },
  1020. "type": "library",
  1021. "extra": {
  1022. "branch-alias": {
  1023. "dev-master": "1.3.x-dev"
  1024. }
  1025. },
  1026. "autoload": {
  1027. "psr-4": {
  1028. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1029. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1030. }
  1031. },
  1032. "notification-url": "https://packagist.org/downloads/",
  1033. "license": [
  1034. "MIT"
  1035. ],
  1036. "authors": [
  1037. {
  1038. "name": "Guilherme Blanco",
  1039. "email": "guilhermeblanco@gmail.com"
  1040. },
  1041. {
  1042. "name": "Roman Borschel",
  1043. "email": "roman@code-factory.org"
  1044. },
  1045. {
  1046. "name": "Benjamin Eberlei",
  1047. "email": "kontakt@beberlei.de"
  1048. },
  1049. {
  1050. "name": "Jonathan Wage",
  1051. "email": "jonwage@gmail.com"
  1052. },
  1053. {
  1054. "name": "Johannes Schmitt",
  1055. "email": "schmittjoh@gmail.com"
  1056. },
  1057. {
  1058. "name": "Marco Pivetta",
  1059. "email": "ocramius@gmail.com"
  1060. }
  1061. ],
  1062. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1063. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1064. "keywords": [
  1065. "mapper",
  1066. "object",
  1067. "odm",
  1068. "orm",
  1069. "persistence"
  1070. ],
  1071. "time": "2019-12-13 10:43:02"
  1072. },
  1073. {
  1074. "name": "doctrine/reflection",
  1075. "version": "v1.1.0",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/doctrine/reflection.git",
  1079. "reference": "bc420ead87fdfe08c03ecc3549db603a45b06d4c"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/doctrine/reflection/zipball/bc420ead87fdfe08c03ecc3549db603a45b06d4c",
  1084. "reference": "bc420ead87fdfe08c03ecc3549db603a45b06d4c",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "doctrine/annotations": "^1.0",
  1089. "ext-tokenizer": "*",
  1090. "php": "^7.1"
  1091. },
  1092. "conflict": {
  1093. "doctrine/common": "<2.9"
  1094. },
  1095. "require-dev": {
  1096. "doctrine/coding-standard": "^5.0",
  1097. "doctrine/common": "^2.10",
  1098. "phpstan/phpstan": "^0.11.0",
  1099. "phpstan/phpstan-phpunit": "^0.11.0",
  1100. "phpunit/phpunit": "^7.0"
  1101. },
  1102. "type": "library",
  1103. "extra": {
  1104. "branch-alias": {
  1105. "dev-master": "1.0.x-dev"
  1106. }
  1107. },
  1108. "autoload": {
  1109. "psr-4": {
  1110. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1111. }
  1112. },
  1113. "notification-url": "https://packagist.org/downloads/",
  1114. "license": [
  1115. "MIT"
  1116. ],
  1117. "authors": [
  1118. {
  1119. "name": "Guilherme Blanco",
  1120. "email": "guilhermeblanco@gmail.com"
  1121. },
  1122. {
  1123. "name": "Roman Borschel",
  1124. "email": "roman@code-factory.org"
  1125. },
  1126. {
  1127. "name": "Benjamin Eberlei",
  1128. "email": "kontakt@beberlei.de"
  1129. },
  1130. {
  1131. "name": "Jonathan Wage",
  1132. "email": "jonwage@gmail.com"
  1133. },
  1134. {
  1135. "name": "Johannes Schmitt",
  1136. "email": "schmittjoh@gmail.com"
  1137. },
  1138. {
  1139. "name": "Marco Pivetta",
  1140. "email": "ocramius@gmail.com"
  1141. }
  1142. ],
  1143. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  1144. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  1145. "keywords": [
  1146. "reflection",
  1147. "static"
  1148. ],
  1149. "time": "2020-01-08 19:53:19"
  1150. },
  1151. {
  1152. "name": "egulias/email-validator",
  1153. "version": "2.1.14",
  1154. "source": {
  1155. "type": "git",
  1156. "url": "https://github.com/egulias/EmailValidator.git",
  1157. "reference": "c4b8d12921999d8a561004371701dbc2e05b5ece"
  1158. },
  1159. "dist": {
  1160. "type": "zip",
  1161. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/c4b8d12921999d8a561004371701dbc2e05b5ece",
  1162. "reference": "c4b8d12921999d8a561004371701dbc2e05b5ece",
  1163. "shasum": ""
  1164. },
  1165. "require": {
  1166. "doctrine/lexer": "^1.0.1",
  1167. "php": ">=5.5"
  1168. },
  1169. "require-dev": {
  1170. "dominicsayers/isemail": "^3.0.7",
  1171. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1172. "satooshi/php-coveralls": "^1.0.1"
  1173. },
  1174. "suggest": {
  1175. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1176. },
  1177. "type": "library",
  1178. "extra": {
  1179. "branch-alias": {
  1180. "dev-master": "2.1.x-dev"
  1181. }
  1182. },
  1183. "autoload": {
  1184. "psr-4": {
  1185. "Egulias\\EmailValidator\\": "EmailValidator"
  1186. }
  1187. },
  1188. "notification-url": "https://packagist.org/downloads/",
  1189. "license": [
  1190. "MIT"
  1191. ],
  1192. "authors": [
  1193. {
  1194. "name": "Eduardo Gulias Davis"
  1195. }
  1196. ],
  1197. "description": "A library for validating emails against several RFCs",
  1198. "homepage": "https://github.com/egulias/EmailValidator",
  1199. "keywords": [
  1200. "email",
  1201. "emailvalidation",
  1202. "emailvalidator",
  1203. "validation",
  1204. "validator"
  1205. ],
  1206. "time": "2020-01-05 14:11:20"
  1207. },
  1208. {
  1209. "name": "jdorn/sql-formatter",
  1210. "version": "v1.2.17",
  1211. "source": {
  1212. "type": "git",
  1213. "url": "https://github.com/jdorn/sql-formatter.git",
  1214. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  1215. },
  1216. "dist": {
  1217. "type": "zip",
  1218. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  1219. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  1220. "shasum": ""
  1221. },
  1222. "require": {
  1223. "php": ">=5.2.4"
  1224. },
  1225. "require-dev": {
  1226. "phpunit/phpunit": "3.7.*"
  1227. },
  1228. "type": "library",
  1229. "extra": {
  1230. "branch-alias": {
  1231. "dev-master": "1.3.x-dev"
  1232. }
  1233. },
  1234. "autoload": {
  1235. "classmap": [
  1236. "lib"
  1237. ]
  1238. },
  1239. "notification-url": "https://packagist.org/downloads/",
  1240. "license": [
  1241. "MIT"
  1242. ],
  1243. "authors": [
  1244. {
  1245. "name": "Jeremy Dorn",
  1246. "email": "jeremy@jeremydorn.com",
  1247. "homepage": "http://jeremydorn.com/"
  1248. }
  1249. ],
  1250. "description": "a PHP SQL highlighting library",
  1251. "homepage": "https://github.com/jdorn/sql-formatter/",
  1252. "keywords": [
  1253. "highlight",
  1254. "sql"
  1255. ],
  1256. "time": "2014-01-12 16:20:24"
  1257. },
  1258. {
  1259. "name": "monolog/monolog",
  1260. "version": "1.25.3",
  1261. "source": {
  1262. "type": "git",
  1263. "url": "https://github.com/Seldaek/monolog.git",
  1264. "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1"
  1265. },
  1266. "dist": {
  1267. "type": "zip",
  1268. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fa82921994db851a8becaf3787a9e73c5976b6f1",
  1269. "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1",
  1270. "shasum": ""
  1271. },
  1272. "require": {
  1273. "php": ">=5.3.0",
  1274. "psr/log": "~1.0"
  1275. },
  1276. "provide": {
  1277. "psr/log-implementation": "1.0.0"
  1278. },
  1279. "require-dev": {
  1280. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1281. "doctrine/couchdb": "~1.0@dev",
  1282. "graylog2/gelf-php": "~1.0",
  1283. "jakub-onderka/php-parallel-lint": "0.9",
  1284. "php-amqplib/php-amqplib": "~2.4",
  1285. "php-console/php-console": "^3.1.3",
  1286. "phpunit/phpunit": "~4.5",
  1287. "phpunit/phpunit-mock-objects": "2.3.0",
  1288. "ruflin/elastica": ">=0.90 <3.0",
  1289. "sentry/sentry": "^0.13",
  1290. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1291. },
  1292. "suggest": {
  1293. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1294. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1295. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1296. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1297. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1298. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1299. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1300. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1301. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1302. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1303. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1304. },
  1305. "type": "library",
  1306. "extra": {
  1307. "branch-alias": {
  1308. "dev-master": "2.0.x-dev"
  1309. }
  1310. },
  1311. "autoload": {
  1312. "psr-4": {
  1313. "Monolog\\": "src/Monolog"
  1314. }
  1315. },
  1316. "notification-url": "https://packagist.org/downloads/",
  1317. "license": [
  1318. "MIT"
  1319. ],
  1320. "authors": [
  1321. {
  1322. "name": "Jordi Boggiano",
  1323. "email": "j.boggiano@seld.be",
  1324. "homepage": "http://seld.be"
  1325. }
  1326. ],
  1327. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1328. "homepage": "http://github.com/Seldaek/monolog",
  1329. "keywords": [
  1330. "log",
  1331. "logging",
  1332. "psr-3"
  1333. ],
  1334. "time": "2019-12-20 14:15:16"
  1335. },
  1336. {
  1337. "name": "ocramius/package-versions",
  1338. "version": "1.4.2",
  1339. "source": {
  1340. "type": "git",
  1341. "url": "https://github.com/Ocramius/PackageVersions.git",
  1342. "reference": "44af6f3a2e2e04f2af46bcb302ad9600cba41c7d"
  1343. },
  1344. "dist": {
  1345. "type": "zip",
  1346. "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/44af6f3a2e2e04f2af46bcb302ad9600cba41c7d",
  1347. "reference": "44af6f3a2e2e04f2af46bcb302ad9600cba41c7d",
  1348. "shasum": ""
  1349. },
  1350. "require": {
  1351. "composer-plugin-api": "^1.0.0",
  1352. "php": "^7.1.0"
  1353. },
  1354. "require-dev": {
  1355. "composer/composer": "^1.6.3",
  1356. "doctrine/coding-standard": "^5.0.1",
  1357. "ext-zip": "*",
  1358. "infection/infection": "^0.7.1",
  1359. "phpunit/phpunit": "^7.5.17"
  1360. },
  1361. "type": "composer-plugin",
  1362. "extra": {
  1363. "class": "PackageVersions\\Installer",
  1364. "branch-alias": {
  1365. "dev-master": "2.0.x-dev"
  1366. }
  1367. },
  1368. "autoload": {
  1369. "psr-4": {
  1370. "PackageVersions\\": "src/PackageVersions"
  1371. }
  1372. },
  1373. "notification-url": "https://packagist.org/downloads/",
  1374. "license": [
  1375. "MIT"
  1376. ],
  1377. "authors": [
  1378. {
  1379. "name": "Marco Pivetta",
  1380. "email": "ocramius@gmail.com"
  1381. }
  1382. ],
  1383. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  1384. "time": "2019-11-15 16:17:10"
  1385. },
  1386. {
  1387. "name": "ocramius/proxy-manager",
  1388. "version": "2.2.3",
  1389. "source": {
  1390. "type": "git",
  1391. "url": "https://github.com/Ocramius/ProxyManager.git",
  1392. "reference": "4d154742e31c35137d5374c998e8f86b54db2e2f"
  1393. },
  1394. "dist": {
  1395. "type": "zip",
  1396. "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/4d154742e31c35137d5374c998e8f86b54db2e2f",
  1397. "reference": "4d154742e31c35137d5374c998e8f86b54db2e2f",
  1398. "shasum": ""
  1399. },
  1400. "require": {
  1401. "ocramius/package-versions": "^1.1.3",
  1402. "php": "^7.2.0",
  1403. "zendframework/zend-code": "^3.3.0"
  1404. },
  1405. "require-dev": {
  1406. "couscous/couscous": "^1.6.1",
  1407. "ext-phar": "*",
  1408. "humbug/humbug": "1.0.0-RC.0@RC",
  1409. "nikic/php-parser": "^3.1.1",
  1410. "padraic/phpunit-accelerator": "dev-master@DEV",
  1411. "phpbench/phpbench": "^0.12.2",
  1412. "phpstan/phpstan": "dev-master#856eb10a81c1d27c701a83f167dc870fd8f4236a as 0.9.999",
  1413. "phpstan/phpstan-phpunit": "dev-master#5629c0a1f4a9c417cb1077cf6693ad9753895761",
  1414. "phpunit/phpunit": "^6.4.3",
  1415. "squizlabs/php_codesniffer": "^2.9.1"
  1416. },
  1417. "suggest": {
  1418. "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
  1419. "zendframework/zend-json": "To have the JsonRpc adapter (Remote Object feature)",
  1420. "zendframework/zend-soap": "To have the Soap adapter (Remote Object feature)",
  1421. "zendframework/zend-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)"
  1422. },
  1423. "type": "library",
  1424. "extra": {
  1425. "branch-alias": {
  1426. "dev-master": "3.0.x-dev"
  1427. }
  1428. },
  1429. "autoload": {
  1430. "psr-0": {
  1431. "ProxyManager\\": "src"
  1432. }
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "Marco Pivetta",
  1441. "email": "ocramius@gmail.com",
  1442. "homepage": "http://ocramius.github.io/"
  1443. }
  1444. ],
  1445. "description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies",
  1446. "homepage": "https://github.com/Ocramius/ProxyManager",
  1447. "keywords": [
  1448. "aop",
  1449. "lazy loading",
  1450. "proxy",
  1451. "proxy pattern",
  1452. "service proxies"
  1453. ],
  1454. "time": "2019-08-10 08:37:15"
  1455. },
  1456. {
  1457. "name": "phpdocumentor/reflection-common",
  1458. "version": "2.0.0",
  1459. "source": {
  1460. "type": "git",
  1461. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1462. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
  1463. },
  1464. "dist": {
  1465. "type": "zip",
  1466. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
  1467. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
  1468. "shasum": ""
  1469. },
  1470. "require": {
  1471. "php": ">=7.1"
  1472. },
  1473. "require-dev": {
  1474. "phpunit/phpunit": "~6"
  1475. },
  1476. "type": "library",
  1477. "extra": {
  1478. "branch-alias": {
  1479. "dev-master": "2.x-dev"
  1480. }
  1481. },
  1482. "autoload": {
  1483. "psr-4": {
  1484. "phpDocumentor\\Reflection\\": "src/"
  1485. }
  1486. },
  1487. "notification-url": "https://packagist.org/downloads/",
  1488. "license": [
  1489. "MIT"
  1490. ],
  1491. "authors": [
  1492. {
  1493. "name": "Jaap van Otterdijk",
  1494. "email": "opensource@ijaap.nl"
  1495. }
  1496. ],
  1497. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1498. "homepage": "http://www.phpdoc.org",
  1499. "keywords": [
  1500. "FQSEN",
  1501. "phpDocumentor",
  1502. "phpdoc",
  1503. "reflection",
  1504. "static analysis"
  1505. ],
  1506. "time": "2018-08-07 13:53:10"
  1507. },
  1508. {
  1509. "name": "phpdocumentor/reflection-docblock",
  1510. "version": "4.3.4",
  1511. "source": {
  1512. "type": "git",
  1513. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1514. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  1515. },
  1516. "dist": {
  1517. "type": "zip",
  1518. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  1519. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  1520. "shasum": ""
  1521. },
  1522. "require": {
  1523. "php": "^7.0",
  1524. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  1525. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  1526. "webmozart/assert": "^1.0"
  1527. },
  1528. "require-dev": {
  1529. "doctrine/instantiator": "^1.0.5",
  1530. "mockery/mockery": "^1.0",
  1531. "phpdocumentor/type-resolver": "0.4.*",
  1532. "phpunit/phpunit": "^6.4"
  1533. },
  1534. "type": "library",
  1535. "extra": {
  1536. "branch-alias": {
  1537. "dev-master": "4.x-dev"
  1538. }
  1539. },
  1540. "autoload": {
  1541. "psr-4": {
  1542. "phpDocumentor\\Reflection\\": [
  1543. "src/"
  1544. ]
  1545. }
  1546. },
  1547. "notification-url": "https://packagist.org/downloads/",
  1548. "license": [
  1549. "MIT"
  1550. ],
  1551. "authors": [
  1552. {
  1553. "name": "Mike van Riel",
  1554. "email": "me@mikevanriel.com"
  1555. }
  1556. ],
  1557. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1558. "time": "2019-12-28 18:55:12"
  1559. },
  1560. {
  1561. "name": "phpdocumentor/type-resolver",
  1562. "version": "1.0.1",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1566. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  1571. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "php": "^7.1",
  1576. "phpdocumentor/reflection-common": "^2.0"
  1577. },
  1578. "require-dev": {
  1579. "ext-tokenizer": "^7.1",
  1580. "mockery/mockery": "~1",
  1581. "phpunit/phpunit": "^7.0"
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "branch-alias": {
  1586. "dev-master": "1.x-dev"
  1587. }
  1588. },
  1589. "autoload": {
  1590. "psr-4": {
  1591. "phpDocumentor\\Reflection\\": "src"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Mike van Riel",
  1601. "email": "me@mikevanriel.com"
  1602. }
  1603. ],
  1604. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1605. "time": "2019-08-22 18:11:29"
  1606. },
  1607. {
  1608. "name": "psr/cache",
  1609. "version": "1.0.1",
  1610. "source": {
  1611. "type": "git",
  1612. "url": "https://github.com/php-fig/cache.git",
  1613. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1614. },
  1615. "dist": {
  1616. "type": "zip",
  1617. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1618. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1619. "shasum": ""
  1620. },
  1621. "require": {
  1622. "php": ">=5.3.0"
  1623. },
  1624. "type": "library",
  1625. "extra": {
  1626. "branch-alias": {
  1627. "dev-master": "1.0.x-dev"
  1628. }
  1629. },
  1630. "autoload": {
  1631. "psr-4": {
  1632. "Psr\\Cache\\": "src/"
  1633. }
  1634. },
  1635. "notification-url": "https://packagist.org/downloads/",
  1636. "license": [
  1637. "MIT"
  1638. ],
  1639. "authors": [
  1640. {
  1641. "name": "PHP-FIG",
  1642. "homepage": "http://www.php-fig.org/"
  1643. }
  1644. ],
  1645. "description": "Common interface for caching libraries",
  1646. "keywords": [
  1647. "cache",
  1648. "psr",
  1649. "psr-6"
  1650. ],
  1651. "time": "2016-08-06 20:24:11"
  1652. },
  1653. {
  1654. "name": "psr/container",
  1655. "version": "1.0.0",
  1656. "source": {
  1657. "type": "git",
  1658. "url": "https://github.com/php-fig/container.git",
  1659. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1660. },
  1661. "dist": {
  1662. "type": "zip",
  1663. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1664. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1665. "shasum": ""
  1666. },
  1667. "require": {
  1668. "php": ">=5.3.0"
  1669. },
  1670. "type": "library",
  1671. "extra": {
  1672. "branch-alias": {
  1673. "dev-master": "1.0.x-dev"
  1674. }
  1675. },
  1676. "autoload": {
  1677. "psr-4": {
  1678. "Psr\\Container\\": "src/"
  1679. }
  1680. },
  1681. "notification-url": "https://packagist.org/downloads/",
  1682. "license": [
  1683. "MIT"
  1684. ],
  1685. "authors": [
  1686. {
  1687. "name": "PHP-FIG",
  1688. "homepage": "http://www.php-fig.org/"
  1689. }
  1690. ],
  1691. "description": "Common Container Interface (PHP FIG PSR-11)",
  1692. "homepage": "https://github.com/php-fig/container",
  1693. "keywords": [
  1694. "PSR-11",
  1695. "container",
  1696. "container-interface",
  1697. "container-interop",
  1698. "psr"
  1699. ],
  1700. "time": "2017-02-14 16:28:37"
  1701. },
  1702. {
  1703. "name": "psr/link",
  1704. "version": "1.0.0",
  1705. "source": {
  1706. "type": "git",
  1707. "url": "https://github.com/php-fig/link.git",
  1708. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  1709. },
  1710. "dist": {
  1711. "type": "zip",
  1712. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  1713. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  1714. "shasum": ""
  1715. },
  1716. "require": {
  1717. "php": ">=5.3.0"
  1718. },
  1719. "type": "library",
  1720. "extra": {
  1721. "branch-alias": {
  1722. "dev-master": "1.0.x-dev"
  1723. }
  1724. },
  1725. "autoload": {
  1726. "psr-4": {
  1727. "Psr\\Link\\": "src/"
  1728. }
  1729. },
  1730. "notification-url": "https://packagist.org/downloads/",
  1731. "license": [
  1732. "MIT"
  1733. ],
  1734. "authors": [
  1735. {
  1736. "name": "PHP-FIG",
  1737. "homepage": "http://www.php-fig.org/"
  1738. }
  1739. ],
  1740. "description": "Common interfaces for HTTP links",
  1741. "keywords": [
  1742. "http",
  1743. "http-link",
  1744. "link",
  1745. "psr",
  1746. "psr-13",
  1747. "rest"
  1748. ],
  1749. "time": "2016-10-28 16:06:13"
  1750. },
  1751. {
  1752. "name": "psr/log",
  1753. "version": "1.1.2",
  1754. "source": {
  1755. "type": "git",
  1756. "url": "https://github.com/php-fig/log.git",
  1757. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  1758. },
  1759. "dist": {
  1760. "type": "zip",
  1761. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  1762. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  1763. "shasum": ""
  1764. },
  1765. "require": {
  1766. "php": ">=5.3.0"
  1767. },
  1768. "type": "library",
  1769. "extra": {
  1770. "branch-alias": {
  1771. "dev-master": "1.1.x-dev"
  1772. }
  1773. },
  1774. "autoload": {
  1775. "psr-4": {
  1776. "Psr\\Log\\": "Psr/Log/"
  1777. }
  1778. },
  1779. "notification-url": "https://packagist.org/downloads/",
  1780. "license": [
  1781. "MIT"
  1782. ],
  1783. "authors": [
  1784. {
  1785. "name": "PHP-FIG",
  1786. "homepage": "http://www.php-fig.org/"
  1787. }
  1788. ],
  1789. "description": "Common interface for logging libraries",
  1790. "homepage": "https://github.com/php-fig/log",
  1791. "keywords": [
  1792. "log",
  1793. "psr",
  1794. "psr-3"
  1795. ],
  1796. "time": "2019-11-01 11:05:21"
  1797. },
  1798. {
  1799. "name": "sensio/framework-extra-bundle",
  1800. "version": "v5.5.3",
  1801. "source": {
  1802. "type": "git",
  1803. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  1804. "reference": "98f0807137b13d0acfdf3c255a731516e97015de"
  1805. },
  1806. "dist": {
  1807. "type": "zip",
  1808. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/98f0807137b13d0acfdf3c255a731516e97015de",
  1809. "reference": "98f0807137b13d0acfdf3c255a731516e97015de",
  1810. "shasum": ""
  1811. },
  1812. "require": {
  1813. "doctrine/annotations": "^1.0",
  1814. "php": ">=7.1.3",
  1815. "symfony/config": "^4.3|^5.0",
  1816. "symfony/dependency-injection": "^4.3|^5.0",
  1817. "symfony/framework-bundle": "^4.3|^5.0",
  1818. "symfony/http-kernel": "^4.3|^5.0"
  1819. },
  1820. "conflict": {
  1821. "doctrine/doctrine-cache-bundle": "<1.3.1"
  1822. },
  1823. "require-dev": {
  1824. "doctrine/doctrine-bundle": "^1.11|^2.0",
  1825. "doctrine/orm": "^2.5",
  1826. "nyholm/psr7": "^1.1",
  1827. "symfony/browser-kit": "^4.3|^5.0",
  1828. "symfony/dom-crawler": "^4.3|^5.0",
  1829. "symfony/expression-language": "^4.3|^5.0",
  1830. "symfony/finder": "^4.3|^5.0",
  1831. "symfony/monolog-bridge": "^4.0|^5.0",
  1832. "symfony/monolog-bundle": "^3.2",
  1833. "symfony/phpunit-bridge": "^4.3.5|^5.0",
  1834. "symfony/psr-http-message-bridge": "^1.1",
  1835. "symfony/security-bundle": "^4.3|^5.0",
  1836. "symfony/twig-bundle": "^4.3|^5.0",
  1837. "symfony/yaml": "^4.3|^5.0",
  1838. "twig/twig": "^1.34|^2.4|^3.0"
  1839. },
  1840. "suggest": {
  1841. "symfony/expression-language": "",
  1842. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  1843. "symfony/security-bundle": ""
  1844. },
  1845. "type": "symfony-bundle",
  1846. "extra": {
  1847. "branch-alias": {
  1848. "dev-master": "5.5.x-dev"
  1849. }
  1850. },
  1851. "autoload": {
  1852. "psr-4": {
  1853. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  1854. },
  1855. "exclude-from-classmap": [
  1856. "/tests/"
  1857. ]
  1858. },
  1859. "notification-url": "https://packagist.org/downloads/",
  1860. "license": [
  1861. "MIT"
  1862. ],
  1863. "authors": [
  1864. {
  1865. "name": "Fabien Potencier",
  1866. "email": "fabien@symfony.com"
  1867. }
  1868. ],
  1869. "description": "This bundle provides a way to configure your controllers with annotations",
  1870. "keywords": [
  1871. "annotations",
  1872. "controllers"
  1873. ],
  1874. "time": "2019-12-27 08:57:19"
  1875. },
  1876. {
  1877. "name": "swiftmailer/swiftmailer",
  1878. "version": "v6.2.3",
  1879. "source": {
  1880. "type": "git",
  1881. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1882. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  1883. },
  1884. "dist": {
  1885. "type": "zip",
  1886. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  1887. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  1888. "shasum": ""
  1889. },
  1890. "require": {
  1891. "egulias/email-validator": "~2.0",
  1892. "php": ">=7.0.0",
  1893. "symfony/polyfill-iconv": "^1.0",
  1894. "symfony/polyfill-intl-idn": "^1.10",
  1895. "symfony/polyfill-mbstring": "^1.0"
  1896. },
  1897. "require-dev": {
  1898. "mockery/mockery": "~0.9.1",
  1899. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  1900. },
  1901. "suggest": {
  1902. "ext-intl": "Needed to support internationalized email addresses",
  1903. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  1904. },
  1905. "type": "library",
  1906. "extra": {
  1907. "branch-alias": {
  1908. "dev-master": "6.2-dev"
  1909. }
  1910. },
  1911. "autoload": {
  1912. "files": [
  1913. "lib/swift_required.php"
  1914. ]
  1915. },
  1916. "notification-url": "https://packagist.org/downloads/",
  1917. "license": [
  1918. "MIT"
  1919. ],
  1920. "authors": [
  1921. {
  1922. "name": "Chris Corbyn"
  1923. },
  1924. {
  1925. "name": "Fabien Potencier",
  1926. "email": "fabien@symfony.com"
  1927. }
  1928. ],
  1929. "description": "Swiftmailer, free feature-rich PHP mailer",
  1930. "homepage": "https://swiftmailer.symfony.com",
  1931. "keywords": [
  1932. "email",
  1933. "mail",
  1934. "mailer"
  1935. ],
  1936. "time": "2019-11-12 09:31:26"
  1937. },
  1938. {
  1939. "name": "symfony/apache-pack",
  1940. "version": "v1.0.1",
  1941. "source": {
  1942. "type": "git",
  1943. "url": "https://github.com/symfony/apache-pack.git",
  1944. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  1945. },
  1946. "dist": {
  1947. "type": "zip",
  1948. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  1949. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  1950. "shasum": ""
  1951. },
  1952. "type": "symfony-pack",
  1953. "notification-url": "https://packagist.org/downloads/",
  1954. "license": [
  1955. "MIT"
  1956. ],
  1957. "description": "A pack for Apache support in Symfony",
  1958. "time": "2017-12-12 01:46:35"
  1959. },
  1960. {
  1961. "name": "symfony/asset",
  1962. "version": "v4.4.2",
  1963. "source": {
  1964. "type": "git",
  1965. "url": "https://github.com/symfony/asset.git",
  1966. "reference": "7ec5fc653dab63d7519a6f411982ee224a696d66"
  1967. },
  1968. "dist": {
  1969. "type": "zip",
  1970. "url": "https://api.github.com/repos/symfony/asset/zipball/7ec5fc653dab63d7519a6f411982ee224a696d66",
  1971. "reference": "7ec5fc653dab63d7519a6f411982ee224a696d66",
  1972. "shasum": ""
  1973. },
  1974. "require": {
  1975. "php": "^7.1.3"
  1976. },
  1977. "require-dev": {
  1978. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  1979. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  1980. },
  1981. "suggest": {
  1982. "symfony/http-foundation": ""
  1983. },
  1984. "type": "library",
  1985. "extra": {
  1986. "branch-alias": {
  1987. "dev-master": "4.4-dev"
  1988. }
  1989. },
  1990. "autoload": {
  1991. "psr-4": {
  1992. "Symfony\\Component\\Asset\\": ""
  1993. },
  1994. "exclude-from-classmap": [
  1995. "/Tests/"
  1996. ]
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "MIT"
  2001. ],
  2002. "authors": [
  2003. {
  2004. "name": "Fabien Potencier",
  2005. "email": "fabien@symfony.com"
  2006. },
  2007. {
  2008. "name": "Symfony Community",
  2009. "homepage": "https://symfony.com/contributors"
  2010. }
  2011. ],
  2012. "description": "Symfony Asset Component",
  2013. "homepage": "https://symfony.com",
  2014. "time": "2019-10-12 00:35:04"
  2015. },
  2016. {
  2017. "name": "symfony/browser-kit",
  2018. "version": "v4.4.2",
  2019. "source": {
  2020. "type": "git",
  2021. "url": "https://github.com/symfony/browser-kit.git",
  2022. "reference": "e19e465c055137938afd40cfddd687e7511bbbf0"
  2023. },
  2024. "dist": {
  2025. "type": "zip",
  2026. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/e19e465c055137938afd40cfddd687e7511bbbf0",
  2027. "reference": "e19e465c055137938afd40cfddd687e7511bbbf0",
  2028. "shasum": ""
  2029. },
  2030. "require": {
  2031. "php": "^7.1.3",
  2032. "symfony/dom-crawler": "^3.4|^4.0|^5.0"
  2033. },
  2034. "require-dev": {
  2035. "symfony/css-selector": "^3.4|^4.0|^5.0",
  2036. "symfony/http-client": "^4.3|^5.0",
  2037. "symfony/mime": "^4.3|^5.0",
  2038. "symfony/process": "^3.4|^4.0|^5.0"
  2039. },
  2040. "suggest": {
  2041. "symfony/process": ""
  2042. },
  2043. "type": "library",
  2044. "extra": {
  2045. "branch-alias": {
  2046. "dev-master": "4.4-dev"
  2047. }
  2048. },
  2049. "autoload": {
  2050. "psr-4": {
  2051. "Symfony\\Component\\BrowserKit\\": ""
  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 BrowserKit Component",
  2072. "homepage": "https://symfony.com",
  2073. "time": "2019-10-28 20:30:34"
  2074. },
  2075. {
  2076. "name": "symfony/cache",
  2077. "version": "v4.4.2",
  2078. "source": {
  2079. "type": "git",
  2080. "url": "https://github.com/symfony/cache.git",
  2081. "reference": "6af64bab165e588300378a87bcd2df3c7c31c144"
  2082. },
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://api.github.com/repos/symfony/cache/zipball/6af64bab165e588300378a87bcd2df3c7c31c144",
  2086. "reference": "6af64bab165e588300378a87bcd2df3c7c31c144",
  2087. "shasum": ""
  2088. },
  2089. "require": {
  2090. "php": "^7.1.3",
  2091. "psr/cache": "~1.0",
  2092. "psr/log": "~1.0",
  2093. "symfony/cache-contracts": "^1.1.7|^2",
  2094. "symfony/service-contracts": "^1.1|^2",
  2095. "symfony/var-exporter": "^4.2|^5.0"
  2096. },
  2097. "conflict": {
  2098. "doctrine/dbal": "<2.5",
  2099. "symfony/dependency-injection": "<3.4",
  2100. "symfony/http-kernel": "<4.4",
  2101. "symfony/var-dumper": "<4.4"
  2102. },
  2103. "provide": {
  2104. "psr/cache-implementation": "1.0",
  2105. "psr/simple-cache-implementation": "1.0",
  2106. "symfony/cache-implementation": "1.0"
  2107. },
  2108. "require-dev": {
  2109. "cache/integration-tests": "dev-master",
  2110. "doctrine/cache": "~1.6",
  2111. "doctrine/dbal": "~2.5",
  2112. "predis/predis": "~1.1",
  2113. "psr/simple-cache": "^1.0",
  2114. "symfony/config": "^4.2|^5.0",
  2115. "symfony/dependency-injection": "^3.4|^4.1|^5.0",
  2116. "symfony/var-dumper": "^4.4|^5.0"
  2117. },
  2118. "type": "library",
  2119. "extra": {
  2120. "branch-alias": {
  2121. "dev-master": "4.4-dev"
  2122. }
  2123. },
  2124. "autoload": {
  2125. "psr-4": {
  2126. "Symfony\\Component\\Cache\\": ""
  2127. },
  2128. "exclude-from-classmap": [
  2129. "/Tests/"
  2130. ]
  2131. },
  2132. "notification-url": "https://packagist.org/downloads/",
  2133. "license": [
  2134. "MIT"
  2135. ],
  2136. "authors": [
  2137. {
  2138. "name": "Nicolas Grekas",
  2139. "email": "p@tchwork.com"
  2140. },
  2141. {
  2142. "name": "Symfony Community",
  2143. "homepage": "https://symfony.com/contributors"
  2144. }
  2145. ],
  2146. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  2147. "homepage": "https://symfony.com",
  2148. "keywords": [
  2149. "caching",
  2150. "psr6"
  2151. ],
  2152. "time": "2019-12-16 10:45:21"
  2153. },
  2154. {
  2155. "name": "symfony/cache-contracts",
  2156. "version": "v2.0.1",
  2157. "source": {
  2158. "type": "git",
  2159. "url": "https://github.com/symfony/cache-contracts.git",
  2160. "reference": "23ed8bfc1a4115feca942cb5f1aacdf3dcdf3c16"
  2161. },
  2162. "dist": {
  2163. "type": "zip",
  2164. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/23ed8bfc1a4115feca942cb5f1aacdf3dcdf3c16",
  2165. "reference": "23ed8bfc1a4115feca942cb5f1aacdf3dcdf3c16",
  2166. "shasum": ""
  2167. },
  2168. "require": {
  2169. "php": "^7.2.5",
  2170. "psr/cache": "^1.0"
  2171. },
  2172. "suggest": {
  2173. "symfony/cache-implementation": ""
  2174. },
  2175. "type": "library",
  2176. "extra": {
  2177. "branch-alias": {
  2178. "dev-master": "2.0-dev"
  2179. }
  2180. },
  2181. "autoload": {
  2182. "psr-4": {
  2183. "Symfony\\Contracts\\Cache\\": ""
  2184. }
  2185. },
  2186. "notification-url": "https://packagist.org/downloads/",
  2187. "license": [
  2188. "MIT"
  2189. ],
  2190. "authors": [
  2191. {
  2192. "name": "Nicolas Grekas",
  2193. "email": "p@tchwork.com"
  2194. },
  2195. {
  2196. "name": "Symfony Community",
  2197. "homepage": "https://symfony.com/contributors"
  2198. }
  2199. ],
  2200. "description": "Generic abstractions related to caching",
  2201. "homepage": "https://symfony.com",
  2202. "keywords": [
  2203. "abstractions",
  2204. "contracts",
  2205. "decoupling",
  2206. "interfaces",
  2207. "interoperability",
  2208. "standards"
  2209. ],
  2210. "time": "2019-11-18 17:27:11"
  2211. },
  2212. {
  2213. "name": "symfony/config",
  2214. "version": "v4.4.2",
  2215. "source": {
  2216. "type": "git",
  2217. "url": "https://github.com/symfony/config.git",
  2218. "reference": "6911d432edd5b50822986604fd5a5be3af856d30"
  2219. },
  2220. "dist": {
  2221. "type": "zip",
  2222. "url": "https://api.github.com/repos/symfony/config/zipball/6911d432edd5b50822986604fd5a5be3af856d30",
  2223. "reference": "6911d432edd5b50822986604fd5a5be3af856d30",
  2224. "shasum": ""
  2225. },
  2226. "require": {
  2227. "php": "^7.1.3",
  2228. "symfony/filesystem": "^3.4|^4.0|^5.0",
  2229. "symfony/polyfill-ctype": "~1.8"
  2230. },
  2231. "conflict": {
  2232. "symfony/finder": "<3.4"
  2233. },
  2234. "require-dev": {
  2235. "symfony/event-dispatcher": "^3.4|^4.0|^5.0",
  2236. "symfony/finder": "^3.4|^4.0|^5.0",
  2237. "symfony/messenger": "^4.1|^5.0",
  2238. "symfony/service-contracts": "^1.1|^2",
  2239. "symfony/yaml": "^3.4|^4.0|^5.0"
  2240. },
  2241. "suggest": {
  2242. "symfony/yaml": "To use the yaml reference dumper"
  2243. },
  2244. "type": "library",
  2245. "extra": {
  2246. "branch-alias": {
  2247. "dev-master": "4.4-dev"
  2248. }
  2249. },
  2250. "autoload": {
  2251. "psr-4": {
  2252. "Symfony\\Component\\Config\\": ""
  2253. },
  2254. "exclude-from-classmap": [
  2255. "/Tests/"
  2256. ]
  2257. },
  2258. "notification-url": "https://packagist.org/downloads/",
  2259. "license": [
  2260. "MIT"
  2261. ],
  2262. "authors": [
  2263. {
  2264. "name": "Fabien Potencier",
  2265. "email": "fabien@symfony.com"
  2266. },
  2267. {
  2268. "name": "Symfony Community",
  2269. "homepage": "https://symfony.com/contributors"
  2270. }
  2271. ],
  2272. "description": "Symfony Config Component",
  2273. "homepage": "https://symfony.com",
  2274. "time": "2019-12-18 12:00:29"
  2275. },
  2276. {
  2277. "name": "symfony/console",
  2278. "version": "v4.4.2",
  2279. "source": {
  2280. "type": "git",
  2281. "url": "https://github.com/symfony/console.git",
  2282. "reference": "82437719dab1e6bdd28726af14cb345c2ec816d0"
  2283. },
  2284. "dist": {
  2285. "type": "zip",
  2286. "url": "https://api.github.com/repos/symfony/console/zipball/82437719dab1e6bdd28726af14cb345c2ec816d0",
  2287. "reference": "82437719dab1e6bdd28726af14cb345c2ec816d0",
  2288. "shasum": ""
  2289. },
  2290. "require": {
  2291. "php": "^7.1.3",
  2292. "symfony/polyfill-mbstring": "~1.0",
  2293. "symfony/polyfill-php73": "^1.8",
  2294. "symfony/service-contracts": "^1.1|^2"
  2295. },
  2296. "conflict": {
  2297. "symfony/dependency-injection": "<3.4",
  2298. "symfony/event-dispatcher": "<4.3|>=5",
  2299. "symfony/lock": "<4.4",
  2300. "symfony/process": "<3.3"
  2301. },
  2302. "provide": {
  2303. "psr/log-implementation": "1.0"
  2304. },
  2305. "require-dev": {
  2306. "psr/log": "~1.0",
  2307. "symfony/config": "^3.4|^4.0|^5.0",
  2308. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2309. "symfony/event-dispatcher": "^4.3",
  2310. "symfony/lock": "^4.4|^5.0",
  2311. "symfony/process": "^3.4|^4.0|^5.0",
  2312. "symfony/var-dumper": "^4.3|^5.0"
  2313. },
  2314. "suggest": {
  2315. "psr/log": "For using the console logger",
  2316. "symfony/event-dispatcher": "",
  2317. "symfony/lock": "",
  2318. "symfony/process": ""
  2319. },
  2320. "type": "library",
  2321. "extra": {
  2322. "branch-alias": {
  2323. "dev-master": "4.4-dev"
  2324. }
  2325. },
  2326. "autoload": {
  2327. "psr-4": {
  2328. "Symfony\\Component\\Console\\": ""
  2329. },
  2330. "exclude-from-classmap": [
  2331. "/Tests/"
  2332. ]
  2333. },
  2334. "notification-url": "https://packagist.org/downloads/",
  2335. "license": [
  2336. "MIT"
  2337. ],
  2338. "authors": [
  2339. {
  2340. "name": "Fabien Potencier",
  2341. "email": "fabien@symfony.com"
  2342. },
  2343. {
  2344. "name": "Symfony Community",
  2345. "homepage": "https://symfony.com/contributors"
  2346. }
  2347. ],
  2348. "description": "Symfony Console Component",
  2349. "homepage": "https://symfony.com",
  2350. "time": "2019-12-17 10:32:23"
  2351. },
  2352. {
  2353. "name": "symfony/css-selector",
  2354. "version": "v4.4.2",
  2355. "source": {
  2356. "type": "git",
  2357. "url": "https://github.com/symfony/css-selector.git",
  2358. "reference": "64acec7e0d67125e9f4656c68d4a38a42ab5a0b7"
  2359. },
  2360. "dist": {
  2361. "type": "zip",
  2362. "url": "https://api.github.com/repos/symfony/css-selector/zipball/64acec7e0d67125e9f4656c68d4a38a42ab5a0b7",
  2363. "reference": "64acec7e0d67125e9f4656c68d4a38a42ab5a0b7",
  2364. "shasum": ""
  2365. },
  2366. "require": {
  2367. "php": "^7.1.3"
  2368. },
  2369. "type": "library",
  2370. "extra": {
  2371. "branch-alias": {
  2372. "dev-master": "4.4-dev"
  2373. }
  2374. },
  2375. "autoload": {
  2376. "psr-4": {
  2377. "Symfony\\Component\\CssSelector\\": ""
  2378. },
  2379. "exclude-from-classmap": [
  2380. "/Tests/"
  2381. ]
  2382. },
  2383. "notification-url": "https://packagist.org/downloads/",
  2384. "license": [
  2385. "MIT"
  2386. ],
  2387. "authors": [
  2388. {
  2389. "name": "Fabien Potencier",
  2390. "email": "fabien@symfony.com"
  2391. },
  2392. {
  2393. "name": "Jean-François Simon",
  2394. "email": "jeanfrancois.simon@sensiolabs.com"
  2395. },
  2396. {
  2397. "name": "Symfony Community",
  2398. "homepage": "https://symfony.com/contributors"
  2399. }
  2400. ],
  2401. "description": "Symfony CssSelector Component",
  2402. "homepage": "https://symfony.com",
  2403. "time": "2019-10-12 00:35:04"
  2404. },
  2405. {
  2406. "name": "symfony/debug",
  2407. "version": "v4.4.2",
  2408. "source": {
  2409. "type": "git",
  2410. "url": "https://github.com/symfony/debug.git",
  2411. "reference": "5c4c1db977dc70bb3250e1308d3e8c6341aa38f5"
  2412. },
  2413. "dist": {
  2414. "type": "zip",
  2415. "url": "https://api.github.com/repos/symfony/debug/zipball/5c4c1db977dc70bb3250e1308d3e8c6341aa38f5",
  2416. "reference": "5c4c1db977dc70bb3250e1308d3e8c6341aa38f5",
  2417. "shasum": ""
  2418. },
  2419. "require": {
  2420. "php": "^7.1.3",
  2421. "psr/log": "~1.0"
  2422. },
  2423. "conflict": {
  2424. "symfony/http-kernel": "<3.4"
  2425. },
  2426. "require-dev": {
  2427. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  2428. },
  2429. "type": "library",
  2430. "extra": {
  2431. "branch-alias": {
  2432. "dev-master": "4.4-dev"
  2433. }
  2434. },
  2435. "autoload": {
  2436. "psr-4": {
  2437. "Symfony\\Component\\Debug\\": ""
  2438. },
  2439. "exclude-from-classmap": [
  2440. "/Tests/"
  2441. ]
  2442. },
  2443. "notification-url": "https://packagist.org/downloads/",
  2444. "license": [
  2445. "MIT"
  2446. ],
  2447. "authors": [
  2448. {
  2449. "name": "Fabien Potencier",
  2450. "email": "fabien@symfony.com"
  2451. },
  2452. {
  2453. "name": "Symfony Community",
  2454. "homepage": "https://symfony.com/contributors"
  2455. }
  2456. ],
  2457. "description": "Symfony Debug Component",
  2458. "homepage": "https://symfony.com",
  2459. "time": "2019-12-16 14:46:54"
  2460. },
  2461. {
  2462. "name": "symfony/debug-bundle",
  2463. "version": "v4.4.2",
  2464. "source": {
  2465. "type": "git",
  2466. "url": "https://github.com/symfony/debug-bundle.git",
  2467. "reference": "2255db767f7f5bf6740e9f3b4f92199f6890ca2e"
  2468. },
  2469. "dist": {
  2470. "type": "zip",
  2471. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/2255db767f7f5bf6740e9f3b4f92199f6890ca2e",
  2472. "reference": "2255db767f7f5bf6740e9f3b4f92199f6890ca2e",
  2473. "shasum": ""
  2474. },
  2475. "require": {
  2476. "ext-xml": "*",
  2477. "php": "^7.1.3",
  2478. "symfony/http-kernel": "^3.4|^4.0|^5.0",
  2479. "symfony/twig-bridge": "^3.4|^4.0|^5.0",
  2480. "symfony/var-dumper": "^4.1.1|^5.0"
  2481. },
  2482. "conflict": {
  2483. "symfony/config": "<4.2",
  2484. "symfony/dependency-injection": "<3.4"
  2485. },
  2486. "require-dev": {
  2487. "symfony/config": "^4.2|^5.0",
  2488. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2489. "symfony/web-profiler-bundle": "^3.4|^4.0|^5.0"
  2490. },
  2491. "suggest": {
  2492. "symfony/config": "For service container configuration",
  2493. "symfony/dependency-injection": "For using as a service from the container"
  2494. },
  2495. "type": "symfony-bundle",
  2496. "extra": {
  2497. "branch-alias": {
  2498. "dev-master": "4.4-dev"
  2499. }
  2500. },
  2501. "autoload": {
  2502. "psr-4": {
  2503. "Symfony\\Bundle\\DebugBundle\\": ""
  2504. },
  2505. "exclude-from-classmap": [
  2506. "/Tests/"
  2507. ]
  2508. },
  2509. "notification-url": "https://packagist.org/downloads/",
  2510. "license": [
  2511. "MIT"
  2512. ],
  2513. "authors": [
  2514. {
  2515. "name": "Fabien Potencier",
  2516. "email": "fabien@symfony.com"
  2517. },
  2518. {
  2519. "name": "Symfony Community",
  2520. "homepage": "https://symfony.com/contributors"
  2521. }
  2522. ],
  2523. "description": "Symfony DebugBundle",
  2524. "homepage": "https://symfony.com",
  2525. "time": "2019-10-12 00:35:04"
  2526. },
  2527. {
  2528. "name": "symfony/dependency-injection",
  2529. "version": "v4.4.2",
  2530. "source": {
  2531. "type": "git",
  2532. "url": "https://github.com/symfony/dependency-injection.git",
  2533. "reference": "79b0358207a3571cc3af02a57d0321927921f539"
  2534. },
  2535. "dist": {
  2536. "type": "zip",
  2537. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/79b0358207a3571cc3af02a57d0321927921f539",
  2538. "reference": "79b0358207a3571cc3af02a57d0321927921f539",
  2539. "shasum": ""
  2540. },
  2541. "require": {
  2542. "php": "^7.1.3",
  2543. "psr/container": "^1.0",
  2544. "symfony/service-contracts": "^1.1.6|^2"
  2545. },
  2546. "conflict": {
  2547. "symfony/config": "<4.3|>=5.0",
  2548. "symfony/finder": "<3.4",
  2549. "symfony/proxy-manager-bridge": "<3.4",
  2550. "symfony/yaml": "<3.4"
  2551. },
  2552. "provide": {
  2553. "psr/container-implementation": "1.0",
  2554. "symfony/service-implementation": "1.0"
  2555. },
  2556. "require-dev": {
  2557. "symfony/config": "^4.3",
  2558. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2559. "symfony/yaml": "^3.4|^4.0|^5.0"
  2560. },
  2561. "suggest": {
  2562. "symfony/config": "",
  2563. "symfony/expression-language": "For using expressions in service container configuration",
  2564. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  2565. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  2566. "symfony/yaml": ""
  2567. },
  2568. "type": "library",
  2569. "extra": {
  2570. "branch-alias": {
  2571. "dev-master": "4.4-dev"
  2572. }
  2573. },
  2574. "autoload": {
  2575. "psr-4": {
  2576. "Symfony\\Component\\DependencyInjection\\": ""
  2577. },
  2578. "exclude-from-classmap": [
  2579. "/Tests/"
  2580. ]
  2581. },
  2582. "notification-url": "https://packagist.org/downloads/",
  2583. "license": [
  2584. "MIT"
  2585. ],
  2586. "authors": [
  2587. {
  2588. "name": "Fabien Potencier",
  2589. "email": "fabien@symfony.com"
  2590. },
  2591. {
  2592. "name": "Symfony Community",
  2593. "homepage": "https://symfony.com/contributors"
  2594. }
  2595. ],
  2596. "description": "Symfony DependencyInjection Component",
  2597. "homepage": "https://symfony.com",
  2598. "time": "2019-12-19 16:00:02"
  2599. },
  2600. {
  2601. "name": "symfony/doctrine-bridge",
  2602. "version": "v4.4.2",
  2603. "source": {
  2604. "type": "git",
  2605. "url": "https://github.com/symfony/doctrine-bridge.git",
  2606. "reference": "3e40beb8dbb06d2967e37938f4c3f20f425137a6"
  2607. },
  2608. "dist": {
  2609. "type": "zip",
  2610. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/3e40beb8dbb06d2967e37938f4c3f20f425137a6",
  2611. "reference": "3e40beb8dbb06d2967e37938f4c3f20f425137a6",
  2612. "shasum": ""
  2613. },
  2614. "require": {
  2615. "doctrine/event-manager": "~1.0",
  2616. "doctrine/persistence": "^1.3",
  2617. "php": "^7.1.3",
  2618. "symfony/polyfill-ctype": "~1.8",
  2619. "symfony/polyfill-mbstring": "~1.0",
  2620. "symfony/service-contracts": "^1.1|^2"
  2621. },
  2622. "conflict": {
  2623. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  2624. "symfony/dependency-injection": "<3.4",
  2625. "symfony/form": "<4.4",
  2626. "symfony/http-kernel": "<4.3.7",
  2627. "symfony/messenger": "<4.3",
  2628. "symfony/security-core": "<4.4",
  2629. "symfony/validator": "<4.4.2|<5.0.2,>=5.0"
  2630. },
  2631. "require-dev": {
  2632. "doctrine/annotations": "~1.7",
  2633. "doctrine/cache": "~1.6",
  2634. "doctrine/collections": "~1.0",
  2635. "doctrine/data-fixtures": "1.0.*",
  2636. "doctrine/dbal": "~2.4",
  2637. "doctrine/orm": "^2.6.3",
  2638. "doctrine/reflection": "~1.0",
  2639. "symfony/config": "^4.2|^5.0",
  2640. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2641. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2642. "symfony/form": "^4.4|^5.0",
  2643. "symfony/http-kernel": "^4.3.7",
  2644. "symfony/messenger": "^4.4|^5.0",
  2645. "symfony/property-access": "^3.4|^4.0|^5.0",
  2646. "symfony/property-info": "^3.4|^4.0|^5.0",
  2647. "symfony/proxy-manager-bridge": "^3.4|^4.0|^5.0",
  2648. "symfony/security-core": "^4.4|^5.0",
  2649. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  2650. "symfony/translation": "^3.4|^4.0|^5.0",
  2651. "symfony/validator": "^4.4.2|^5.0.2",
  2652. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  2653. },
  2654. "suggest": {
  2655. "doctrine/data-fixtures": "",
  2656. "doctrine/dbal": "",
  2657. "doctrine/orm": "",
  2658. "symfony/form": "",
  2659. "symfony/property-info": "",
  2660. "symfony/validator": ""
  2661. },
  2662. "type": "symfony-bridge",
  2663. "extra": {
  2664. "branch-alias": {
  2665. "dev-master": "4.4-dev"
  2666. }
  2667. },
  2668. "autoload": {
  2669. "psr-4": {
  2670. "Symfony\\Bridge\\Doctrine\\": ""
  2671. },
  2672. "exclude-from-classmap": [
  2673. "/Tests/"
  2674. ]
  2675. },
  2676. "notification-url": "https://packagist.org/downloads/",
  2677. "license": [
  2678. "MIT"
  2679. ],
  2680. "authors": [
  2681. {
  2682. "name": "Fabien Potencier",
  2683. "email": "fabien@symfony.com"
  2684. },
  2685. {
  2686. "name": "Symfony Community",
  2687. "homepage": "https://symfony.com/contributors"
  2688. }
  2689. ],
  2690. "description": "Symfony Doctrine Bridge",
  2691. "homepage": "https://symfony.com",
  2692. "time": "2019-12-17 08:15:02"
  2693. },
  2694. {
  2695. "name": "symfony/dom-crawler",
  2696. "version": "v4.4.2",
  2697. "source": {
  2698. "type": "git",
  2699. "url": "https://github.com/symfony/dom-crawler.git",
  2700. "reference": "36bbcab9369fc2f583220890efd43bf262d563fd"
  2701. },
  2702. "dist": {
  2703. "type": "zip",
  2704. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/36bbcab9369fc2f583220890efd43bf262d563fd",
  2705. "reference": "36bbcab9369fc2f583220890efd43bf262d563fd",
  2706. "shasum": ""
  2707. },
  2708. "require": {
  2709. "php": "^7.1.3",
  2710. "symfony/polyfill-ctype": "~1.8",
  2711. "symfony/polyfill-mbstring": "~1.0"
  2712. },
  2713. "conflict": {
  2714. "masterminds/html5": "<2.6"
  2715. },
  2716. "require-dev": {
  2717. "masterminds/html5": "^2.6",
  2718. "symfony/css-selector": "^3.4|^4.0|^5.0"
  2719. },
  2720. "suggest": {
  2721. "symfony/css-selector": ""
  2722. },
  2723. "type": "library",
  2724. "extra": {
  2725. "branch-alias": {
  2726. "dev-master": "4.4-dev"
  2727. }
  2728. },
  2729. "autoload": {
  2730. "psr-4": {
  2731. "Symfony\\Component\\DomCrawler\\": ""
  2732. },
  2733. "exclude-from-classmap": [
  2734. "/Tests/"
  2735. ]
  2736. },
  2737. "notification-url": "https://packagist.org/downloads/",
  2738. "license": [
  2739. "MIT"
  2740. ],
  2741. "authors": [
  2742. {
  2743. "name": "Fabien Potencier",
  2744. "email": "fabien@symfony.com"
  2745. },
  2746. {
  2747. "name": "Symfony Community",
  2748. "homepage": "https://symfony.com/contributors"
  2749. }
  2750. ],
  2751. "description": "Symfony DomCrawler Component",
  2752. "homepage": "https://symfony.com",
  2753. "time": "2019-10-29 11:38:30"
  2754. },
  2755. {
  2756. "name": "symfony/dotenv",
  2757. "version": "v4.4.2",
  2758. "source": {
  2759. "type": "git",
  2760. "url": "https://github.com/symfony/dotenv.git",
  2761. "reference": "c387ab37887f997162a8579d335b38f328d27859"
  2762. },
  2763. "dist": {
  2764. "type": "zip",
  2765. "url": "https://api.github.com/repos/symfony/dotenv/zipball/c387ab37887f997162a8579d335b38f328d27859",
  2766. "reference": "c387ab37887f997162a8579d335b38f328d27859",
  2767. "shasum": ""
  2768. },
  2769. "require": {
  2770. "php": "^7.1.3"
  2771. },
  2772. "require-dev": {
  2773. "symfony/process": "^3.4.2|^4.0|^5.0"
  2774. },
  2775. "type": "library",
  2776. "extra": {
  2777. "branch-alias": {
  2778. "dev-master": "4.4-dev"
  2779. }
  2780. },
  2781. "autoload": {
  2782. "psr-4": {
  2783. "Symfony\\Component\\Dotenv\\": ""
  2784. },
  2785. "exclude-from-classmap": [
  2786. "/Tests/"
  2787. ]
  2788. },
  2789. "notification-url": "https://packagist.org/downloads/",
  2790. "license": [
  2791. "MIT"
  2792. ],
  2793. "authors": [
  2794. {
  2795. "name": "Fabien Potencier",
  2796. "email": "fabien@symfony.com"
  2797. },
  2798. {
  2799. "name": "Symfony Community",
  2800. "homepage": "https://symfony.com/contributors"
  2801. }
  2802. ],
  2803. "description": "Registers environment variables from a .env file",
  2804. "homepage": "https://symfony.com",
  2805. "keywords": [
  2806. "dotenv",
  2807. "env",
  2808. "environment"
  2809. ],
  2810. "time": "2019-12-19 15:57:49"
  2811. },
  2812. {
  2813. "name": "symfony/error-handler",
  2814. "version": "v4.4.2",
  2815. "source": {
  2816. "type": "git",
  2817. "url": "https://github.com/symfony/error-handler.git",
  2818. "reference": "6d7d7712a6ff5215ec26215672293b154f1db8c1"
  2819. },
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://api.github.com/repos/symfony/error-handler/zipball/6d7d7712a6ff5215ec26215672293b154f1db8c1",
  2823. "reference": "6d7d7712a6ff5215ec26215672293b154f1db8c1",
  2824. "shasum": ""
  2825. },
  2826. "require": {
  2827. "php": "^7.1.3",
  2828. "psr/log": "~1.0",
  2829. "symfony/debug": "^4.4",
  2830. "symfony/var-dumper": "^4.4|^5.0"
  2831. },
  2832. "require-dev": {
  2833. "symfony/http-kernel": "^4.4|^5.0",
  2834. "symfony/serializer": "^4.4|^5.0"
  2835. },
  2836. "type": "library",
  2837. "extra": {
  2838. "branch-alias": {
  2839. "dev-master": "4.4-dev"
  2840. }
  2841. },
  2842. "autoload": {
  2843. "psr-4": {
  2844. "Symfony\\Component\\ErrorHandler\\": ""
  2845. },
  2846. "exclude-from-classmap": [
  2847. "/Tests/"
  2848. ]
  2849. },
  2850. "notification-url": "https://packagist.org/downloads/",
  2851. "license": [
  2852. "MIT"
  2853. ],
  2854. "authors": [
  2855. {
  2856. "name": "Fabien Potencier",
  2857. "email": "fabien@symfony.com"
  2858. },
  2859. {
  2860. "name": "Symfony Community",
  2861. "homepage": "https://symfony.com/contributors"
  2862. }
  2863. ],
  2864. "description": "Symfony ErrorHandler Component",
  2865. "homepage": "https://symfony.com",
  2866. "time": "2019-12-16 14:46:54"
  2867. },
  2868. {
  2869. "name": "symfony/event-dispatcher",
  2870. "version": "v4.4.2",
  2871. "source": {
  2872. "type": "git",
  2873. "url": "https://github.com/symfony/event-dispatcher.git",
  2874. "reference": "b3c3068a72623287550fe20b84a2b01dcba2686f"
  2875. },
  2876. "dist": {
  2877. "type": "zip",
  2878. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b3c3068a72623287550fe20b84a2b01dcba2686f",
  2879. "reference": "b3c3068a72623287550fe20b84a2b01dcba2686f",
  2880. "shasum": ""
  2881. },
  2882. "require": {
  2883. "php": "^7.1.3",
  2884. "symfony/event-dispatcher-contracts": "^1.1"
  2885. },
  2886. "conflict": {
  2887. "symfony/dependency-injection": "<3.4"
  2888. },
  2889. "provide": {
  2890. "psr/event-dispatcher-implementation": "1.0",
  2891. "symfony/event-dispatcher-implementation": "1.1"
  2892. },
  2893. "require-dev": {
  2894. "psr/log": "~1.0",
  2895. "symfony/config": "^3.4|^4.0|^5.0",
  2896. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2897. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2898. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  2899. "symfony/service-contracts": "^1.1|^2",
  2900. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  2901. },
  2902. "suggest": {
  2903. "symfony/dependency-injection": "",
  2904. "symfony/http-kernel": ""
  2905. },
  2906. "type": "library",
  2907. "extra": {
  2908. "branch-alias": {
  2909. "dev-master": "4.4-dev"
  2910. }
  2911. },
  2912. "autoload": {
  2913. "psr-4": {
  2914. "Symfony\\Component\\EventDispatcher\\": ""
  2915. },
  2916. "exclude-from-classmap": [
  2917. "/Tests/"
  2918. ]
  2919. },
  2920. "notification-url": "https://packagist.org/downloads/",
  2921. "license": [
  2922. "MIT"
  2923. ],
  2924. "authors": [
  2925. {
  2926. "name": "Fabien Potencier",
  2927. "email": "fabien@symfony.com"
  2928. },
  2929. {
  2930. "name": "Symfony Community",
  2931. "homepage": "https://symfony.com/contributors"
  2932. }
  2933. ],
  2934. "description": "Symfony EventDispatcher Component",
  2935. "homepage": "https://symfony.com",
  2936. "time": "2019-11-28 13:33:56"
  2937. },
  2938. {
  2939. "name": "symfony/event-dispatcher-contracts",
  2940. "version": "v1.1.7",
  2941. "source": {
  2942. "type": "git",
  2943. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2944. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18"
  2945. },
  2946. "dist": {
  2947. "type": "zip",
  2948. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  2949. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  2950. "shasum": ""
  2951. },
  2952. "require": {
  2953. "php": "^7.1.3"
  2954. },
  2955. "suggest": {
  2956. "psr/event-dispatcher": "",
  2957. "symfony/event-dispatcher-implementation": ""
  2958. },
  2959. "type": "library",
  2960. "extra": {
  2961. "branch-alias": {
  2962. "dev-master": "1.1-dev"
  2963. }
  2964. },
  2965. "autoload": {
  2966. "psr-4": {
  2967. "Symfony\\Contracts\\EventDispatcher\\": ""
  2968. }
  2969. },
  2970. "notification-url": "https://packagist.org/downloads/",
  2971. "license": [
  2972. "MIT"
  2973. ],
  2974. "authors": [
  2975. {
  2976. "name": "Nicolas Grekas",
  2977. "email": "p@tchwork.com"
  2978. },
  2979. {
  2980. "name": "Symfony Community",
  2981. "homepage": "https://symfony.com/contributors"
  2982. }
  2983. ],
  2984. "description": "Generic abstractions related to dispatching event",
  2985. "homepage": "https://symfony.com",
  2986. "keywords": [
  2987. "abstractions",
  2988. "contracts",
  2989. "decoupling",
  2990. "interfaces",
  2991. "interoperability",
  2992. "standards"
  2993. ],
  2994. "time": "2019-09-17 09:54:03"
  2995. },
  2996. {
  2997. "name": "symfony/expression-language",
  2998. "version": "v4.4.2",
  2999. "source": {
  3000. "type": "git",
  3001. "url": "https://github.com/symfony/expression-language.git",
  3002. "reference": "539e7ff0b635c8b90d8127bc929da781a96eab2d"
  3003. },
  3004. "dist": {
  3005. "type": "zip",
  3006. "url": "https://api.github.com/repos/symfony/expression-language/zipball/539e7ff0b635c8b90d8127bc929da781a96eab2d",
  3007. "reference": "539e7ff0b635c8b90d8127bc929da781a96eab2d",
  3008. "shasum": ""
  3009. },
  3010. "require": {
  3011. "php": "^7.1.3",
  3012. "symfony/cache": "^3.4|^4.0|^5.0",
  3013. "symfony/service-contracts": "^1.1|^2"
  3014. },
  3015. "type": "library",
  3016. "extra": {
  3017. "branch-alias": {
  3018. "dev-master": "4.4-dev"
  3019. }
  3020. },
  3021. "autoload": {
  3022. "psr-4": {
  3023. "Symfony\\Component\\ExpressionLanguage\\": ""
  3024. },
  3025. "exclude-from-classmap": [
  3026. "/Tests/"
  3027. ]
  3028. },
  3029. "notification-url": "https://packagist.org/downloads/",
  3030. "license": [
  3031. "MIT"
  3032. ],
  3033. "authors": [
  3034. {
  3035. "name": "Fabien Potencier",
  3036. "email": "fabien@symfony.com"
  3037. },
  3038. {
  3039. "name": "Symfony Community",
  3040. "homepage": "https://symfony.com/contributors"
  3041. }
  3042. ],
  3043. "description": "Symfony ExpressionLanguage Component",
  3044. "homepage": "https://symfony.com",
  3045. "time": "2019-12-10 10:33:21"
  3046. },
  3047. {
  3048. "name": "symfony/filesystem",
  3049. "version": "v4.4.2",
  3050. "source": {
  3051. "type": "git",
  3052. "url": "https://github.com/symfony/filesystem.git",
  3053. "reference": "40c2606131d56eff6f193b6e2ceb92414653b591"
  3054. },
  3055. "dist": {
  3056. "type": "zip",
  3057. "url": "https://api.github.com/repos/symfony/filesystem/zipball/40c2606131d56eff6f193b6e2ceb92414653b591",
  3058. "reference": "40c2606131d56eff6f193b6e2ceb92414653b591",
  3059. "shasum": ""
  3060. },
  3061. "require": {
  3062. "php": "^7.1.3",
  3063. "symfony/polyfill-ctype": "~1.8"
  3064. },
  3065. "type": "library",
  3066. "extra": {
  3067. "branch-alias": {
  3068. "dev-master": "4.4-dev"
  3069. }
  3070. },
  3071. "autoload": {
  3072. "psr-4": {
  3073. "Symfony\\Component\\Filesystem\\": ""
  3074. },
  3075. "exclude-from-classmap": [
  3076. "/Tests/"
  3077. ]
  3078. },
  3079. "notification-url": "https://packagist.org/downloads/",
  3080. "license": [
  3081. "MIT"
  3082. ],
  3083. "authors": [
  3084. {
  3085. "name": "Fabien Potencier",
  3086. "email": "fabien@symfony.com"
  3087. },
  3088. {
  3089. "name": "Symfony Community",
  3090. "homepage": "https://symfony.com/contributors"
  3091. }
  3092. ],
  3093. "description": "Symfony Filesystem Component",
  3094. "homepage": "https://symfony.com",
  3095. "time": "2019-11-26 23:16:41"
  3096. },
  3097. {
  3098. "name": "symfony/finder",
  3099. "version": "v4.4.2",
  3100. "source": {
  3101. "type": "git",
  3102. "url": "https://github.com/symfony/finder.git",
  3103. "reference": "ce8743441da64c41e2a667b8eb66070444ed911e"
  3104. },
  3105. "dist": {
  3106. "type": "zip",
  3107. "url": "https://api.github.com/repos/symfony/finder/zipball/ce8743441da64c41e2a667b8eb66070444ed911e",
  3108. "reference": "ce8743441da64c41e2a667b8eb66070444ed911e",
  3109. "shasum": ""
  3110. },
  3111. "require": {
  3112. "php": "^7.1.3"
  3113. },
  3114. "type": "library",
  3115. "extra": {
  3116. "branch-alias": {
  3117. "dev-master": "4.4-dev"
  3118. }
  3119. },
  3120. "autoload": {
  3121. "psr-4": {
  3122. "Symfony\\Component\\Finder\\": ""
  3123. },
  3124. "exclude-from-classmap": [
  3125. "/Tests/"
  3126. ]
  3127. },
  3128. "notification-url": "https://packagist.org/downloads/",
  3129. "license": [
  3130. "MIT"
  3131. ],
  3132. "authors": [
  3133. {
  3134. "name": "Fabien Potencier",
  3135. "email": "fabien@symfony.com"
  3136. },
  3137. {
  3138. "name": "Symfony Community",
  3139. "homepage": "https://symfony.com/contributors"
  3140. }
  3141. ],
  3142. "description": "Symfony Finder Component",
  3143. "homepage": "https://symfony.com",
  3144. "time": "2019-11-17 21:56:56"
  3145. },
  3146. {
  3147. "name": "symfony/flex",
  3148. "version": "v1.6.0",
  3149. "source": {
  3150. "type": "git",
  3151. "url": "https://github.com/symfony/flex.git",
  3152. "reference": "952f45d1c5077e658cb16a61d11603bee873f968"
  3153. },
  3154. "dist": {
  3155. "type": "zip",
  3156. "url": "https://api.github.com/repos/symfony/flex/zipball/952f45d1c5077e658cb16a61d11603bee873f968",
  3157. "reference": "952f45d1c5077e658cb16a61d11603bee873f968",
  3158. "shasum": ""
  3159. },
  3160. "require": {
  3161. "composer-plugin-api": "^1.0",
  3162. "php": "^7.0"
  3163. },
  3164. "require-dev": {
  3165. "composer/composer": "^1.0.2",
  3166. "symfony/dotenv": "^3.4|^4.0|^5.0",
  3167. "symfony/phpunit-bridge": "^3.4.19|^4.1.8|^5.0",
  3168. "symfony/process": "^2.7|^3.0|^4.0|^5.0"
  3169. },
  3170. "type": "composer-plugin",
  3171. "extra": {
  3172. "branch-alias": {
  3173. "dev-master": "1.5-dev"
  3174. },
  3175. "class": "Symfony\\Flex\\Flex"
  3176. },
  3177. "autoload": {
  3178. "psr-4": {
  3179. "Symfony\\Flex\\": "src"
  3180. }
  3181. },
  3182. "notification-url": "https://packagist.org/downloads/",
  3183. "license": [
  3184. "MIT"
  3185. ],
  3186. "authors": [
  3187. {
  3188. "name": "Fabien Potencier",
  3189. "email": "fabien.potencier@gmail.com"
  3190. }
  3191. ],
  3192. "description": "Composer plugin for Symfony",
  3193. "time": "2019-12-13 18:05:11"
  3194. },
  3195. {
  3196. "name": "symfony/form",
  3197. "version": "v4.4.2",
  3198. "source": {
  3199. "type": "git",
  3200. "url": "https://github.com/symfony/form.git",
  3201. "reference": "7ed4441a347fe33299908a9aa24ff8a556848a16"
  3202. },
  3203. "dist": {
  3204. "type": "zip",
  3205. "url": "https://api.github.com/repos/symfony/form/zipball/7ed4441a347fe33299908a9aa24ff8a556848a16",
  3206. "reference": "7ed4441a347fe33299908a9aa24ff8a556848a16",
  3207. "shasum": ""
  3208. },
  3209. "require": {
  3210. "php": "^7.1.3",
  3211. "symfony/event-dispatcher": "^4.3",
  3212. "symfony/intl": "^4.4|^5.0",
  3213. "symfony/options-resolver": "~4.3|^5.0",
  3214. "symfony/polyfill-ctype": "~1.8",
  3215. "symfony/polyfill-mbstring": "~1.0",
  3216. "symfony/property-access": "^3.4|^4.0|^5.0",
  3217. "symfony/service-contracts": "^1.1|^2"
  3218. },
  3219. "conflict": {
  3220. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3221. "symfony/console": "<4.3",
  3222. "symfony/dependency-injection": "<3.4",
  3223. "symfony/doctrine-bridge": "<3.4",
  3224. "symfony/framework-bundle": "<3.4",
  3225. "symfony/http-kernel": "<4.4",
  3226. "symfony/intl": "<4.3",
  3227. "symfony/translation": "<4.2",
  3228. "symfony/twig-bridge": "<3.4.5|<4.0.5,>=4.0"
  3229. },
  3230. "require-dev": {
  3231. "doctrine/collections": "~1.0",
  3232. "symfony/config": "^3.4|^4.0|^5.0",
  3233. "symfony/console": "^4.3|^5.0",
  3234. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3235. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  3236. "symfony/http-kernel": "^4.4",
  3237. "symfony/security-csrf": "^3.4|^4.0|^5.0",
  3238. "symfony/translation": "^4.2|^5.0",
  3239. "symfony/validator": "^3.4.31|^4.3.4|^5.0",
  3240. "symfony/var-dumper": "^4.3|^5.0"
  3241. },
  3242. "suggest": {
  3243. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  3244. "symfony/twig-bridge": "For templating with Twig.",
  3245. "symfony/validator": "For form validation."
  3246. },
  3247. "type": "library",
  3248. "extra": {
  3249. "branch-alias": {
  3250. "dev-master": "4.4-dev"
  3251. }
  3252. },
  3253. "autoload": {
  3254. "psr-4": {
  3255. "Symfony\\Component\\Form\\": ""
  3256. },
  3257. "exclude-from-classmap": [
  3258. "/Tests/"
  3259. ]
  3260. },
  3261. "notification-url": "https://packagist.org/downloads/",
  3262. "license": [
  3263. "MIT"
  3264. ],
  3265. "authors": [
  3266. {
  3267. "name": "Fabien Potencier",
  3268. "email": "fabien@symfony.com"
  3269. },
  3270. {
  3271. "name": "Symfony Community",
  3272. "homepage": "https://symfony.com/contributors"
  3273. }
  3274. ],
  3275. "description": "Symfony Form Component",
  3276. "homepage": "https://symfony.com",
  3277. "time": "2019-12-16 11:07:37"
  3278. },
  3279. {
  3280. "name": "symfony/framework-bundle",
  3281. "version": "v4.4.2",
  3282. "source": {
  3283. "type": "git",
  3284. "url": "https://github.com/symfony/framework-bundle.git",
  3285. "reference": "c80526b4c22f6ddc23080225bf276f094d2c398e"
  3286. },
  3287. "dist": {
  3288. "type": "zip",
  3289. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/c80526b4c22f6ddc23080225bf276f094d2c398e",
  3290. "reference": "c80526b4c22f6ddc23080225bf276f094d2c398e",
  3291. "shasum": ""
  3292. },
  3293. "require": {
  3294. "ext-xml": "*",
  3295. "php": "^7.1.3",
  3296. "symfony/cache": "^4.4|^5.0",
  3297. "symfony/config": "^4.3.4|^5.0",
  3298. "symfony/dependency-injection": "^4.4.1|^5.0.1",
  3299. "symfony/error-handler": "^4.4.1|^5.0.1",
  3300. "symfony/filesystem": "^3.4|^4.0|^5.0",
  3301. "symfony/finder": "^3.4|^4.0|^5.0",
  3302. "symfony/http-foundation": "^4.4|^5.0",
  3303. "symfony/http-kernel": "^4.4",
  3304. "symfony/polyfill-mbstring": "~1.0",
  3305. "symfony/routing": "^4.4|^5.0"
  3306. },
  3307. "conflict": {
  3308. "doctrine/persistence": "<1.3",
  3309. "phpdocumentor/reflection-docblock": "<3.0",
  3310. "phpdocumentor/type-resolver": "<0.2.1",
  3311. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3312. "symfony/asset": "<3.4",
  3313. "symfony/browser-kit": "<4.3",
  3314. "symfony/console": "<4.3",
  3315. "symfony/dom-crawler": "<4.3",
  3316. "symfony/dotenv": "<4.3.6",
  3317. "symfony/form": "<4.3.5",
  3318. "symfony/http-client": "<4.4",
  3319. "symfony/lock": "<4.4",
  3320. "symfony/mailer": "<4.4",
  3321. "symfony/messenger": "<4.4",
  3322. "symfony/mime": "<4.4",
  3323. "symfony/property-info": "<3.4",
  3324. "symfony/security-bundle": "<4.4",
  3325. "symfony/serializer": "<4.4",
  3326. "symfony/stopwatch": "<3.4",
  3327. "symfony/translation": "<4.4",
  3328. "symfony/twig-bridge": "<4.1.1",
  3329. "symfony/twig-bundle": "<4.4",
  3330. "symfony/validator": "<4.4",
  3331. "symfony/web-profiler-bundle": "<4.4",
  3332. "symfony/workflow": "<4.3.6"
  3333. },
  3334. "require-dev": {
  3335. "doctrine/annotations": "~1.7",
  3336. "doctrine/cache": "~1.0",
  3337. "paragonie/sodium_compat": "^1.8",
  3338. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  3339. "symfony/asset": "^3.4|^4.0|^5.0",
  3340. "symfony/browser-kit": "^4.3|^5.0",
  3341. "symfony/console": "^4.3.4|^5.0",
  3342. "symfony/css-selector": "^3.4|^4.0|^5.0",
  3343. "symfony/dom-crawler": "^4.3|^5.0",
  3344. "symfony/dotenv": "^4.3.6|^5.0",
  3345. "symfony/expression-language": "^3.4|^4.0|^5.0",
  3346. "symfony/form": "^4.3.5|^5.0",
  3347. "symfony/http-client": "^4.4|^5.0",
  3348. "symfony/lock": "^4.4|^5.0",
  3349. "symfony/mailer": "^4.4|^5.0",
  3350. "symfony/messenger": "^4.4|^5.0",
  3351. "symfony/mime": "^4.4|^5.0",
  3352. "symfony/polyfill-intl-icu": "~1.0",
  3353. "symfony/process": "^3.4|^4.0|^5.0",
  3354. "symfony/property-info": "^3.4|^4.0|^5.0",
  3355. "symfony/security-csrf": "^3.4|^4.0|^5.0",
  3356. "symfony/security-http": "^3.4|^4.0|^5.0",
  3357. "symfony/serializer": "^4.4|^5.0",
  3358. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  3359. "symfony/templating": "^3.4|^4.0|^5.0",
  3360. "symfony/translation": "^4.4|^5.0",
  3361. "symfony/twig-bundle": "^4.4|^5.0",
  3362. "symfony/validator": "^4.4|^5.0",
  3363. "symfony/web-link": "^4.4|^5.0",
  3364. "symfony/workflow": "^4.3.6|^5.0",
  3365. "symfony/yaml": "^3.4|^4.0|^5.0",
  3366. "twig/twig": "^1.41|^2.10|^3.0"
  3367. },
  3368. "suggest": {
  3369. "ext-apcu": "For best performance of the system caches",
  3370. "symfony/console": "For using the console commands",
  3371. "symfony/form": "For using forms",
  3372. "symfony/property-info": "For using the property_info service",
  3373. "symfony/serializer": "For using the serializer service",
  3374. "symfony/validator": "For using validation",
  3375. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  3376. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  3377. },
  3378. "type": "symfony-bundle",
  3379. "extra": {
  3380. "branch-alias": {
  3381. "dev-master": "4.4-dev"
  3382. }
  3383. },
  3384. "autoload": {
  3385. "psr-4": {
  3386. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3387. },
  3388. "exclude-from-classmap": [
  3389. "/Tests/"
  3390. ]
  3391. },
  3392. "notification-url": "https://packagist.org/downloads/",
  3393. "license": [
  3394. "MIT"
  3395. ],
  3396. "authors": [
  3397. {
  3398. "name": "Fabien Potencier",
  3399. "email": "fabien@symfony.com"
  3400. },
  3401. {
  3402. "name": "Symfony Community",
  3403. "homepage": "https://symfony.com/contributors"
  3404. }
  3405. ],
  3406. "description": "Symfony FrameworkBundle",
  3407. "homepage": "https://symfony.com",
  3408. "time": "2019-12-17 08:15:02"
  3409. },
  3410. {
  3411. "name": "symfony/http-foundation",
  3412. "version": "v4.4.2",
  3413. "source": {
  3414. "type": "git",
  3415. "url": "https://github.com/symfony/http-foundation.git",
  3416. "reference": "fcae1cff5b57b2a9c3aabefeb1527678705ddb62"
  3417. },
  3418. "dist": {
  3419. "type": "zip",
  3420. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fcae1cff5b57b2a9c3aabefeb1527678705ddb62",
  3421. "reference": "fcae1cff5b57b2a9c3aabefeb1527678705ddb62",
  3422. "shasum": ""
  3423. },
  3424. "require": {
  3425. "php": "^7.1.3",
  3426. "symfony/mime": "^4.3|^5.0",
  3427. "symfony/polyfill-mbstring": "~1.1"
  3428. },
  3429. "require-dev": {
  3430. "predis/predis": "~1.0",
  3431. "symfony/expression-language": "^3.4|^4.0|^5.0"
  3432. },
  3433. "type": "library",
  3434. "extra": {
  3435. "branch-alias": {
  3436. "dev-master": "4.4-dev"
  3437. }
  3438. },
  3439. "autoload": {
  3440. "psr-4": {
  3441. "Symfony\\Component\\HttpFoundation\\": ""
  3442. },
  3443. "exclude-from-classmap": [
  3444. "/Tests/"
  3445. ]
  3446. },
  3447. "notification-url": "https://packagist.org/downloads/",
  3448. "license": [
  3449. "MIT"
  3450. ],
  3451. "authors": [
  3452. {
  3453. "name": "Fabien Potencier",
  3454. "email": "fabien@symfony.com"
  3455. },
  3456. {
  3457. "name": "Symfony Community",
  3458. "homepage": "https://symfony.com/contributors"
  3459. }
  3460. ],
  3461. "description": "Symfony HttpFoundation Component",
  3462. "homepage": "https://symfony.com",
  3463. "time": "2019-12-19 15:57:49"
  3464. },
  3465. {
  3466. "name": "symfony/http-kernel",
  3467. "version": "v4.4.2",
  3468. "source": {
  3469. "type": "git",
  3470. "url": "https://github.com/symfony/http-kernel.git",
  3471. "reference": "fe310d2e95cd4c356836c8ecb0895a46d97fede2"
  3472. },
  3473. "dist": {
  3474. "type": "zip",
  3475. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/fe310d2e95cd4c356836c8ecb0895a46d97fede2",
  3476. "reference": "fe310d2e95cd4c356836c8ecb0895a46d97fede2",
  3477. "shasum": ""
  3478. },
  3479. "require": {
  3480. "php": "^7.1.3",
  3481. "psr/log": "~1.0",
  3482. "symfony/error-handler": "^4.4",
  3483. "symfony/event-dispatcher": "^4.4",
  3484. "symfony/http-foundation": "^4.4|^5.0",
  3485. "symfony/polyfill-ctype": "^1.8",
  3486. "symfony/polyfill-php73": "^1.9"
  3487. },
  3488. "conflict": {
  3489. "symfony/browser-kit": "<4.3",
  3490. "symfony/config": "<3.4",
  3491. "symfony/console": ">=5",
  3492. "symfony/dependency-injection": "<4.3",
  3493. "symfony/translation": "<4.2",
  3494. "twig/twig": "<1.34|<2.4,>=2"
  3495. },
  3496. "provide": {
  3497. "psr/log-implementation": "1.0"
  3498. },
  3499. "require-dev": {
  3500. "psr/cache": "~1.0",
  3501. "symfony/browser-kit": "^4.3|^5.0",
  3502. "symfony/config": "^3.4|^4.0|^5.0",
  3503. "symfony/console": "^3.4|^4.0",
  3504. "symfony/css-selector": "^3.4|^4.0|^5.0",
  3505. "symfony/dependency-injection": "^4.3|^5.0",
  3506. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  3507. "symfony/expression-language": "^3.4|^4.0|^5.0",
  3508. "symfony/finder": "^3.4|^4.0|^5.0",
  3509. "symfony/process": "^3.4|^4.0|^5.0",
  3510. "symfony/routing": "^3.4|^4.0|^5.0",
  3511. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  3512. "symfony/templating": "^3.4|^4.0|^5.0",
  3513. "symfony/translation": "^4.2|^5.0",
  3514. "symfony/translation-contracts": "^1.1|^2",
  3515. "twig/twig": "^1.34|^2.4|^3.0"
  3516. },
  3517. "suggest": {
  3518. "symfony/browser-kit": "",
  3519. "symfony/config": "",
  3520. "symfony/console": "",
  3521. "symfony/dependency-injection": ""
  3522. },
  3523. "type": "library",
  3524. "extra": {
  3525. "branch-alias": {
  3526. "dev-master": "4.4-dev"
  3527. }
  3528. },
  3529. "autoload": {
  3530. "psr-4": {
  3531. "Symfony\\Component\\HttpKernel\\": ""
  3532. },
  3533. "exclude-from-classmap": [
  3534. "/Tests/"
  3535. ]
  3536. },
  3537. "notification-url": "https://packagist.org/downloads/",
  3538. "license": [
  3539. "MIT"
  3540. ],
  3541. "authors": [
  3542. {
  3543. "name": "Fabien Potencier",
  3544. "email": "fabien@symfony.com"
  3545. },
  3546. {
  3547. "name": "Symfony Community",
  3548. "homepage": "https://symfony.com/contributors"
  3549. }
  3550. ],
  3551. "description": "Symfony HttpKernel Component",
  3552. "homepage": "https://symfony.com",
  3553. "time": "2019-12-19 16:23:40"
  3554. },
  3555. {
  3556. "name": "symfony/inflector",
  3557. "version": "v4.4.2",
  3558. "source": {
  3559. "type": "git",
  3560. "url": "https://github.com/symfony/inflector.git",
  3561. "reference": "98581481d9ddabe4db3a66e10202fe1fa08d791b"
  3562. },
  3563. "dist": {
  3564. "type": "zip",
  3565. "url": "https://api.github.com/repos/symfony/inflector/zipball/98581481d9ddabe4db3a66e10202fe1fa08d791b",
  3566. "reference": "98581481d9ddabe4db3a66e10202fe1fa08d791b",
  3567. "shasum": ""
  3568. },
  3569. "require": {
  3570. "php": "^7.1.3",
  3571. "symfony/polyfill-ctype": "~1.8"
  3572. },
  3573. "type": "library",
  3574. "extra": {
  3575. "branch-alias": {
  3576. "dev-master": "4.4-dev"
  3577. }
  3578. },
  3579. "autoload": {
  3580. "psr-4": {
  3581. "Symfony\\Component\\Inflector\\": ""
  3582. },
  3583. "exclude-from-classmap": [
  3584. "/Tests/"
  3585. ]
  3586. },
  3587. "notification-url": "https://packagist.org/downloads/",
  3588. "license": [
  3589. "MIT"
  3590. ],
  3591. "authors": [
  3592. {
  3593. "name": "Bernhard Schussek",
  3594. "email": "bschussek@gmail.com"
  3595. },
  3596. {
  3597. "name": "Symfony Community",
  3598. "homepage": "https://symfony.com/contributors"
  3599. }
  3600. ],
  3601. "description": "Symfony Inflector Component",
  3602. "homepage": "https://symfony.com",
  3603. "keywords": [
  3604. "inflection",
  3605. "pluralize",
  3606. "singularize",
  3607. "string",
  3608. "symfony",
  3609. "words"
  3610. ],
  3611. "time": "2019-11-06 12:02:32"
  3612. },
  3613. {
  3614. "name": "symfony/intl",
  3615. "version": "v4.4.2",
  3616. "source": {
  3617. "type": "git",
  3618. "url": "https://github.com/symfony/intl.git",
  3619. "reference": "727fed5372915b5ea5e8177070f5e7e547063f24"
  3620. },
  3621. "dist": {
  3622. "type": "zip",
  3623. "url": "https://api.github.com/repos/symfony/intl/zipball/727fed5372915b5ea5e8177070f5e7e547063f24",
  3624. "reference": "727fed5372915b5ea5e8177070f5e7e547063f24",
  3625. "shasum": ""
  3626. },
  3627. "require": {
  3628. "php": "^7.1.3",
  3629. "symfony/polyfill-intl-icu": "~1.0"
  3630. },
  3631. "require-dev": {
  3632. "symfony/filesystem": "^3.4|^4.0|^5.0"
  3633. },
  3634. "suggest": {
  3635. "ext-intl": "to use the component with locales other than \"en\""
  3636. },
  3637. "type": "library",
  3638. "extra": {
  3639. "branch-alias": {
  3640. "dev-master": "4.4-dev"
  3641. }
  3642. },
  3643. "autoload": {
  3644. "psr-4": {
  3645. "Symfony\\Component\\Intl\\": ""
  3646. },
  3647. "classmap": [
  3648. "Resources/stubs"
  3649. ],
  3650. "exclude-from-classmap": [
  3651. "/Tests/"
  3652. ]
  3653. },
  3654. "notification-url": "https://packagist.org/downloads/",
  3655. "license": [
  3656. "MIT"
  3657. ],
  3658. "authors": [
  3659. {
  3660. "name": "Bernhard Schussek",
  3661. "email": "bschussek@gmail.com"
  3662. },
  3663. {
  3664. "name": "Eriksen Costa",
  3665. "email": "eriksen.costa@infranology.com.br"
  3666. },
  3667. {
  3668. "name": "Igor Wiedler",
  3669. "email": "igor@wiedler.ch"
  3670. },
  3671. {
  3672. "name": "Symfony Community",
  3673. "homepage": "https://symfony.com/contributors"
  3674. }
  3675. ],
  3676. "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
  3677. "homepage": "https://symfony.com",
  3678. "keywords": [
  3679. "i18n",
  3680. "icu",
  3681. "internationalization",
  3682. "intl",
  3683. "l10n",
  3684. "localization"
  3685. ],
  3686. "time": "2019-11-26 23:16:41"
  3687. },
  3688. {
  3689. "name": "symfony/mime",
  3690. "version": "v4.4.2",
  3691. "source": {
  3692. "type": "git",
  3693. "url": "https://github.com/symfony/mime.git",
  3694. "reference": "010cc488e56cafe5f7494dea70aea93100c234df"
  3695. },
  3696. "dist": {
  3697. "type": "zip",
  3698. "url": "https://api.github.com/repos/symfony/mime/zipball/010cc488e56cafe5f7494dea70aea93100c234df",
  3699. "reference": "010cc488e56cafe5f7494dea70aea93100c234df",
  3700. "shasum": ""
  3701. },
  3702. "require": {
  3703. "php": "^7.1.3",
  3704. "symfony/polyfill-intl-idn": "^1.10",
  3705. "symfony/polyfill-mbstring": "^1.0"
  3706. },
  3707. "conflict": {
  3708. "symfony/mailer": "<4.4"
  3709. },
  3710. "require-dev": {
  3711. "egulias/email-validator": "^2.1.10",
  3712. "symfony/dependency-injection": "^3.4|^4.1|^5.0"
  3713. },
  3714. "type": "library",
  3715. "extra": {
  3716. "branch-alias": {
  3717. "dev-master": "4.4-dev"
  3718. }
  3719. },
  3720. "autoload": {
  3721. "psr-4": {
  3722. "Symfony\\Component\\Mime\\": ""
  3723. },
  3724. "exclude-from-classmap": [
  3725. "/Tests/"
  3726. ]
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "MIT"
  3731. ],
  3732. "authors": [
  3733. {
  3734. "name": "Fabien Potencier",
  3735. "email": "fabien@symfony.com"
  3736. },
  3737. {
  3738. "name": "Symfony Community",
  3739. "homepage": "https://symfony.com/contributors"
  3740. }
  3741. ],
  3742. "description": "A library to manipulate MIME messages",
  3743. "homepage": "https://symfony.com",
  3744. "keywords": [
  3745. "mime",
  3746. "mime-type"
  3747. ],
  3748. "time": "2019-11-30 08:27:26"
  3749. },
  3750. {
  3751. "name": "symfony/monolog-bridge",
  3752. "version": "v4.4.2",
  3753. "source": {
  3754. "type": "git",
  3755. "url": "https://github.com/symfony/monolog-bridge.git",
  3756. "reference": "da3718c84f29d4b1ef607e2a13c496186a5975c1"
  3757. },
  3758. "dist": {
  3759. "type": "zip",
  3760. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/da3718c84f29d4b1ef607e2a13c496186a5975c1",
  3761. "reference": "da3718c84f29d4b1ef607e2a13c496186a5975c1",
  3762. "shasum": ""
  3763. },
  3764. "require": {
  3765. "monolog/monolog": "^1.25.1",
  3766. "php": "^7.1.3",
  3767. "symfony/http-kernel": "^4.3",
  3768. "symfony/service-contracts": "^1.1|^2"
  3769. },
  3770. "conflict": {
  3771. "symfony/console": "<3.4",
  3772. "symfony/http-foundation": "<3.4"
  3773. },
  3774. "require-dev": {
  3775. "symfony/console": "^3.4|^4.0|^5.0",
  3776. "symfony/http-client": "^4.4|^5.0",
  3777. "symfony/security-core": "^3.4|^4.0|^5.0",
  3778. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  3779. },
  3780. "suggest": {
  3781. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  3782. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  3783. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  3784. },
  3785. "type": "symfony-bridge",
  3786. "extra": {
  3787. "branch-alias": {
  3788. "dev-master": "4.4-dev"
  3789. }
  3790. },
  3791. "autoload": {
  3792. "psr-4": {
  3793. "Symfony\\Bridge\\Monolog\\": ""
  3794. },
  3795. "exclude-from-classmap": [
  3796. "/Tests/"
  3797. ]
  3798. },
  3799. "notification-url": "https://packagist.org/downloads/",
  3800. "license": [
  3801. "MIT"
  3802. ],
  3803. "authors": [
  3804. {
  3805. "name": "Fabien Potencier",
  3806. "email": "fabien@symfony.com"
  3807. },
  3808. {
  3809. "name": "Symfony Community",
  3810. "homepage": "https://symfony.com/contributors"
  3811. }
  3812. ],
  3813. "description": "Symfony Monolog Bridge",
  3814. "homepage": "https://symfony.com",
  3815. "time": "2019-12-10 10:33:21"
  3816. },
  3817. {
  3818. "name": "symfony/monolog-bundle",
  3819. "version": "v3.5.0",
  3820. "source": {
  3821. "type": "git",
  3822. "url": "https://github.com/symfony/monolog-bundle.git",
  3823. "reference": "dd80460fcfe1fa2050a7103ad818e9d0686ce6fd"
  3824. },
  3825. "dist": {
  3826. "type": "zip",
  3827. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/dd80460fcfe1fa2050a7103ad818e9d0686ce6fd",
  3828. "reference": "dd80460fcfe1fa2050a7103ad818e9d0686ce6fd",
  3829. "shasum": ""
  3830. },
  3831. "require": {
  3832. "monolog/monolog": "~1.22 || ~2.0",
  3833. "php": ">=5.6",
  3834. "symfony/config": "~3.4 || ~4.0 || ^5.0",
  3835. "symfony/dependency-injection": "~3.4.10 || ^4.0.10 || ^5.0",
  3836. "symfony/http-kernel": "~3.4 || ~4.0 || ^5.0",
  3837. "symfony/monolog-bridge": "~3.4 || ~4.0 || ^5.0"
  3838. },
  3839. "require-dev": {
  3840. "symfony/console": "~3.4 || ~4.0 || ^5.0",
  3841. "symfony/phpunit-bridge": "^3.4.19 || ^4.0 || ^5.0",
  3842. "symfony/yaml": "~3.4 || ~4.0 || ^5.0"
  3843. },
  3844. "type": "symfony-bundle",
  3845. "extra": {
  3846. "branch-alias": {
  3847. "dev-master": "3.x-dev"
  3848. }
  3849. },
  3850. "autoload": {
  3851. "psr-4": {
  3852. "Symfony\\Bundle\\MonologBundle\\": ""
  3853. },
  3854. "exclude-from-classmap": [
  3855. "/Tests/"
  3856. ]
  3857. },
  3858. "notification-url": "https://packagist.org/downloads/",
  3859. "license": [
  3860. "MIT"
  3861. ],
  3862. "authors": [
  3863. {
  3864. "name": "Fabien Potencier",
  3865. "email": "fabien@symfony.com"
  3866. },
  3867. {
  3868. "name": "Symfony Community",
  3869. "homepage": "http://symfony.com/contributors"
  3870. }
  3871. ],
  3872. "description": "Symfony MonologBundle",
  3873. "homepage": "http://symfony.com",
  3874. "keywords": [
  3875. "log",
  3876. "logging"
  3877. ],
  3878. "time": "2019-11-13 13:11:14"
  3879. },
  3880. {
  3881. "name": "symfony/options-resolver",
  3882. "version": "v4.4.2",
  3883. "source": {
  3884. "type": "git",
  3885. "url": "https://github.com/symfony/options-resolver.git",
  3886. "reference": "2be23e63f33de16b49294ea6581f462932a77e2f"
  3887. },
  3888. "dist": {
  3889. "type": "zip",
  3890. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/2be23e63f33de16b49294ea6581f462932a77e2f",
  3891. "reference": "2be23e63f33de16b49294ea6581f462932a77e2f",
  3892. "shasum": ""
  3893. },
  3894. "require": {
  3895. "php": "^7.1.3"
  3896. },
  3897. "type": "library",
  3898. "extra": {
  3899. "branch-alias": {
  3900. "dev-master": "4.4-dev"
  3901. }
  3902. },
  3903. "autoload": {
  3904. "psr-4": {
  3905. "Symfony\\Component\\OptionsResolver\\": ""
  3906. },
  3907. "exclude-from-classmap": [
  3908. "/Tests/"
  3909. ]
  3910. },
  3911. "notification-url": "https://packagist.org/downloads/",
  3912. "license": [
  3913. "MIT"
  3914. ],
  3915. "authors": [
  3916. {
  3917. "name": "Fabien Potencier",
  3918. "email": "fabien@symfony.com"
  3919. },
  3920. {
  3921. "name": "Symfony Community",
  3922. "homepage": "https://symfony.com/contributors"
  3923. }
  3924. ],
  3925. "description": "Symfony OptionsResolver Component",
  3926. "homepage": "https://symfony.com",
  3927. "keywords": [
  3928. "config",
  3929. "configuration",
  3930. "options"
  3931. ],
  3932. "time": "2019-10-28 21:57:16"
  3933. },
  3934. {
  3935. "name": "symfony/orm-pack",
  3936. "version": "v1.0.7",
  3937. "source": {
  3938. "type": "git",
  3939. "url": "https://github.com/symfony/orm-pack.git",
  3940. "reference": "c57f5e05232ca40626eb9fa52a32bc8565e9231c"
  3941. },
  3942. "dist": {
  3943. "type": "zip",
  3944. "url": "https://api.github.com/repos/symfony/orm-pack/zipball/c57f5e05232ca40626eb9fa52a32bc8565e9231c",
  3945. "reference": "c57f5e05232ca40626eb9fa52a32bc8565e9231c",
  3946. "shasum": ""
  3947. },
  3948. "require": {
  3949. "doctrine/doctrine-bundle": "^1.6.10|^2.0",
  3950. "doctrine/doctrine-migrations-bundle": "^1.3|^2.0",
  3951. "doctrine/orm": "^2.5.11",
  3952. "php": "^7.0"
  3953. },
  3954. "type": "symfony-pack",
  3955. "notification-url": "https://packagist.org/downloads/",
  3956. "license": [
  3957. "MIT"
  3958. ],
  3959. "description": "A pack for the Doctrine ORM",
  3960. "time": "2019-10-18 05:41:09"
  3961. },
  3962. {
  3963. "name": "symfony/polyfill-intl-icu",
  3964. "version": "v1.13.1",
  3965. "source": {
  3966. "type": "git",
  3967. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  3968. "reference": "b3dffd68afa61ca70f2327f2dd9bbeb6aa53d70b"
  3969. },
  3970. "dist": {
  3971. "type": "zip",
  3972. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/b3dffd68afa61ca70f2327f2dd9bbeb6aa53d70b",
  3973. "reference": "b3dffd68afa61ca70f2327f2dd9bbeb6aa53d70b",
  3974. "shasum": ""
  3975. },
  3976. "require": {
  3977. "php": ">=5.3.3",
  3978. "symfony/intl": "~2.3|~3.0|~4.0|~5.0"
  3979. },
  3980. "suggest": {
  3981. "ext-intl": "For best performance"
  3982. },
  3983. "type": "library",
  3984. "extra": {
  3985. "branch-alias": {
  3986. "dev-master": "1.13-dev"
  3987. }
  3988. },
  3989. "autoload": {
  3990. "files": [
  3991. "bootstrap.php"
  3992. ]
  3993. },
  3994. "notification-url": "https://packagist.org/downloads/",
  3995. "license": [
  3996. "MIT"
  3997. ],
  3998. "authors": [
  3999. {
  4000. "name": "Nicolas Grekas",
  4001. "email": "p@tchwork.com"
  4002. },
  4003. {
  4004. "name": "Symfony Community",
  4005. "homepage": "https://symfony.com/contributors"
  4006. }
  4007. ],
  4008. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4009. "homepage": "https://symfony.com",
  4010. "keywords": [
  4011. "compatibility",
  4012. "icu",
  4013. "intl",
  4014. "polyfill",
  4015. "portable",
  4016. "shim"
  4017. ],
  4018. "time": "2019-11-27 13:56:44"
  4019. },
  4020. {
  4021. "name": "symfony/polyfill-intl-idn",
  4022. "version": "v1.13.1",
  4023. "source": {
  4024. "type": "git",
  4025. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4026. "reference": "6f9c239e61e1b0c9229a28ff89a812dc449c3d46"
  4027. },
  4028. "dist": {
  4029. "type": "zip",
  4030. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6f9c239e61e1b0c9229a28ff89a812dc449c3d46",
  4031. "reference": "6f9c239e61e1b0c9229a28ff89a812dc449c3d46",
  4032. "shasum": ""
  4033. },
  4034. "require": {
  4035. "php": ">=5.3.3",
  4036. "symfony/polyfill-mbstring": "^1.3",
  4037. "symfony/polyfill-php72": "^1.9"
  4038. },
  4039. "suggest": {
  4040. "ext-intl": "For best performance"
  4041. },
  4042. "type": "library",
  4043. "extra": {
  4044. "branch-alias": {
  4045. "dev-master": "1.13-dev"
  4046. }
  4047. },
  4048. "autoload": {
  4049. "psr-4": {
  4050. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4051. },
  4052. "files": [
  4053. "bootstrap.php"
  4054. ]
  4055. },
  4056. "notification-url": "https://packagist.org/downloads/",
  4057. "license": [
  4058. "MIT"
  4059. ],
  4060. "authors": [
  4061. {
  4062. "name": "Laurent Bassin",
  4063. "email": "laurent@bassin.info"
  4064. },
  4065. {
  4066. "name": "Symfony Community",
  4067. "homepage": "https://symfony.com/contributors"
  4068. }
  4069. ],
  4070. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4071. "homepage": "https://symfony.com",
  4072. "keywords": [
  4073. "compatibility",
  4074. "idn",
  4075. "intl",
  4076. "polyfill",
  4077. "portable",
  4078. "shim"
  4079. ],
  4080. "time": "2019-11-27 13:56:44"
  4081. },
  4082. {
  4083. "name": "symfony/polyfill-mbstring",
  4084. "version": "v1.13.1",
  4085. "source": {
  4086. "type": "git",
  4087. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4088. "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f"
  4089. },
  4090. "dist": {
  4091. "type": "zip",
  4092. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7b4aab9743c30be783b73de055d24a39cf4b954f",
  4093. "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f",
  4094. "shasum": ""
  4095. },
  4096. "require": {
  4097. "php": ">=5.3.3"
  4098. },
  4099. "suggest": {
  4100. "ext-mbstring": "For best performance"
  4101. },
  4102. "type": "library",
  4103. "extra": {
  4104. "branch-alias": {
  4105. "dev-master": "1.13-dev"
  4106. }
  4107. },
  4108. "autoload": {
  4109. "psr-4": {
  4110. "Symfony\\Polyfill\\Mbstring\\": ""
  4111. },
  4112. "files": [
  4113. "bootstrap.php"
  4114. ]
  4115. },
  4116. "notification-url": "https://packagist.org/downloads/",
  4117. "license": [
  4118. "MIT"
  4119. ],
  4120. "authors": [
  4121. {
  4122. "name": "Nicolas Grekas",
  4123. "email": "p@tchwork.com"
  4124. },
  4125. {
  4126. "name": "Symfony Community",
  4127. "homepage": "https://symfony.com/contributors"
  4128. }
  4129. ],
  4130. "description": "Symfony polyfill for the Mbstring extension",
  4131. "homepage": "https://symfony.com",
  4132. "keywords": [
  4133. "compatibility",
  4134. "mbstring",
  4135. "polyfill",
  4136. "portable",
  4137. "shim"
  4138. ],
  4139. "time": "2019-11-27 14:18:11"
  4140. },
  4141. {
  4142. "name": "symfony/polyfill-php72",
  4143. "version": "v1.13.1",
  4144. "source": {
  4145. "type": "git",
  4146. "url": "https://github.com/symfony/polyfill-php72.git",
  4147. "reference": "66fea50f6cb37a35eea048d75a7d99a45b586038"
  4148. },
  4149. "dist": {
  4150. "type": "zip",
  4151. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/66fea50f6cb37a35eea048d75a7d99a45b586038",
  4152. "reference": "66fea50f6cb37a35eea048d75a7d99a45b586038",
  4153. "shasum": ""
  4154. },
  4155. "require": {
  4156. "php": ">=5.3.3"
  4157. },
  4158. "type": "library",
  4159. "extra": {
  4160. "branch-alias": {
  4161. "dev-master": "1.13-dev"
  4162. }
  4163. },
  4164. "autoload": {
  4165. "psr-4": {
  4166. "Symfony\\Polyfill\\Php72\\": ""
  4167. },
  4168. "files": [
  4169. "bootstrap.php"
  4170. ]
  4171. },
  4172. "notification-url": "https://packagist.org/downloads/",
  4173. "license": [
  4174. "MIT"
  4175. ],
  4176. "authors": [
  4177. {
  4178. "name": "Nicolas Grekas",
  4179. "email": "p@tchwork.com"
  4180. },
  4181. {
  4182. "name": "Symfony Community",
  4183. "homepage": "https://symfony.com/contributors"
  4184. }
  4185. ],
  4186. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4187. "homepage": "https://symfony.com",
  4188. "keywords": [
  4189. "compatibility",
  4190. "polyfill",
  4191. "portable",
  4192. "shim"
  4193. ],
  4194. "time": "2019-11-27 13:56:44"
  4195. },
  4196. {
  4197. "name": "symfony/polyfill-php73",
  4198. "version": "v1.13.1",
  4199. "source": {
  4200. "type": "git",
  4201. "url": "https://github.com/symfony/polyfill-php73.git",
  4202. "reference": "4b0e2222c55a25b4541305a053013d5647d3a25f"
  4203. },
  4204. "dist": {
  4205. "type": "zip",
  4206. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/4b0e2222c55a25b4541305a053013d5647d3a25f",
  4207. "reference": "4b0e2222c55a25b4541305a053013d5647d3a25f",
  4208. "shasum": ""
  4209. },
  4210. "require": {
  4211. "php": ">=5.3.3"
  4212. },
  4213. "type": "library",
  4214. "extra": {
  4215. "branch-alias": {
  4216. "dev-master": "1.13-dev"
  4217. }
  4218. },
  4219. "autoload": {
  4220. "psr-4": {
  4221. "Symfony\\Polyfill\\Php73\\": ""
  4222. },
  4223. "files": [
  4224. "bootstrap.php"
  4225. ],
  4226. "classmap": [
  4227. "Resources/stubs"
  4228. ]
  4229. },
  4230. "notification-url": "https://packagist.org/downloads/",
  4231. "license": [
  4232. "MIT"
  4233. ],
  4234. "authors": [
  4235. {
  4236. "name": "Nicolas Grekas",
  4237. "email": "p@tchwork.com"
  4238. },
  4239. {
  4240. "name": "Symfony Community",
  4241. "homepage": "https://symfony.com/contributors"
  4242. }
  4243. ],
  4244. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4245. "homepage": "https://symfony.com",
  4246. "keywords": [
  4247. "compatibility",
  4248. "polyfill",
  4249. "portable",
  4250. "shim"
  4251. ],
  4252. "time": "2019-11-27 16:25:15"
  4253. },
  4254. {
  4255. "name": "symfony/process",
  4256. "version": "v4.4.2",
  4257. "source": {
  4258. "type": "git",
  4259. "url": "https://github.com/symfony/process.git",
  4260. "reference": "b84501ad50adb72a94fb460a5b5c91f693e99c9b"
  4261. },
  4262. "dist": {
  4263. "type": "zip",
  4264. "url": "https://api.github.com/repos/symfony/process/zipball/b84501ad50adb72a94fb460a5b5c91f693e99c9b",
  4265. "reference": "b84501ad50adb72a94fb460a5b5c91f693e99c9b",
  4266. "shasum": ""
  4267. },
  4268. "require": {
  4269. "php": "^7.1.3"
  4270. },
  4271. "type": "library",
  4272. "extra": {
  4273. "branch-alias": {
  4274. "dev-master": "4.4-dev"
  4275. }
  4276. },
  4277. "autoload": {
  4278. "psr-4": {
  4279. "Symfony\\Component\\Process\\": ""
  4280. },
  4281. "exclude-from-classmap": [
  4282. "/Tests/"
  4283. ]
  4284. },
  4285. "notification-url": "https://packagist.org/downloads/",
  4286. "license": [
  4287. "MIT"
  4288. ],
  4289. "authors": [
  4290. {
  4291. "name": "Fabien Potencier",
  4292. "email": "fabien@symfony.com"
  4293. },
  4294. {
  4295. "name": "Symfony Community",
  4296. "homepage": "https://symfony.com/contributors"
  4297. }
  4298. ],
  4299. "description": "Symfony Process Component",
  4300. "homepage": "https://symfony.com",
  4301. "time": "2019-12-06 10:06:46"
  4302. },
  4303. {
  4304. "name": "symfony/property-access",
  4305. "version": "v4.4.2",
  4306. "source": {
  4307. "type": "git",
  4308. "url": "https://github.com/symfony/property-access.git",
  4309. "reference": "055fe3134f8f301ff44af314d83463b858ea6413"
  4310. },
  4311. "dist": {
  4312. "type": "zip",
  4313. "url": "https://api.github.com/repos/symfony/property-access/zipball/055fe3134f8f301ff44af314d83463b858ea6413",
  4314. "reference": "055fe3134f8f301ff44af314d83463b858ea6413",
  4315. "shasum": ""
  4316. },
  4317. "require": {
  4318. "php": "^7.1.3",
  4319. "symfony/inflector": "^3.4|^4.0|^5.0"
  4320. },
  4321. "require-dev": {
  4322. "symfony/cache": "^3.4|^4.0|^5.0"
  4323. },
  4324. "suggest": {
  4325. "psr/cache-implementation": "To cache access methods."
  4326. },
  4327. "type": "library",
  4328. "extra": {
  4329. "branch-alias": {
  4330. "dev-master": "4.4-dev"
  4331. }
  4332. },
  4333. "autoload": {
  4334. "psr-4": {
  4335. "Symfony\\Component\\PropertyAccess\\": ""
  4336. },
  4337. "exclude-from-classmap": [
  4338. "/Tests/"
  4339. ]
  4340. },
  4341. "notification-url": "https://packagist.org/downloads/",
  4342. "license": [
  4343. "MIT"
  4344. ],
  4345. "authors": [
  4346. {
  4347. "name": "Fabien Potencier",
  4348. "email": "fabien@symfony.com"
  4349. },
  4350. {
  4351. "name": "Symfony Community",
  4352. "homepage": "https://symfony.com/contributors"
  4353. }
  4354. ],
  4355. "description": "Symfony PropertyAccess Component",
  4356. "homepage": "https://symfony.com",
  4357. "keywords": [
  4358. "access",
  4359. "array",
  4360. "extraction",
  4361. "index",
  4362. "injection",
  4363. "object",
  4364. "property",
  4365. "property path",
  4366. "reflection"
  4367. ],
  4368. "time": "2019-12-10 10:33:21"
  4369. },
  4370. {
  4371. "name": "symfony/property-info",
  4372. "version": "v4.4.2",
  4373. "source": {
  4374. "type": "git",
  4375. "url": "https://github.com/symfony/property-info.git",
  4376. "reference": "8afd280f159697177e48eefa89efd4db60a57665"
  4377. },
  4378. "dist": {
  4379. "type": "zip",
  4380. "url": "https://api.github.com/repos/symfony/property-info/zipball/8afd280f159697177e48eefa89efd4db60a57665",
  4381. "reference": "8afd280f159697177e48eefa89efd4db60a57665",
  4382. "shasum": ""
  4383. },
  4384. "require": {
  4385. "php": "^7.1.3",
  4386. "symfony/inflector": "^3.4|^4.0|^5.0"
  4387. },
  4388. "conflict": {
  4389. "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2",
  4390. "phpdocumentor/type-resolver": "<0.3.0",
  4391. "symfony/dependency-injection": "<3.4"
  4392. },
  4393. "require-dev": {
  4394. "doctrine/annotations": "~1.7",
  4395. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  4396. "symfony/cache": "^3.4|^4.0|^5.0",
  4397. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4398. "symfony/serializer": "^3.4|^4.0|^5.0"
  4399. },
  4400. "suggest": {
  4401. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  4402. "psr/cache-implementation": "To cache results",
  4403. "symfony/doctrine-bridge": "To use Doctrine metadata",
  4404. "symfony/serializer": "To use Serializer metadata"
  4405. },
  4406. "type": "library",
  4407. "extra": {
  4408. "branch-alias": {
  4409. "dev-master": "4.4-dev"
  4410. }
  4411. },
  4412. "autoload": {
  4413. "psr-4": {
  4414. "Symfony\\Component\\PropertyInfo\\": ""
  4415. },
  4416. "exclude-from-classmap": [
  4417. "/Tests/"
  4418. ]
  4419. },
  4420. "notification-url": "https://packagist.org/downloads/",
  4421. "license": [
  4422. "MIT"
  4423. ],
  4424. "authors": [
  4425. {
  4426. "name": "Kévin Dunglas",
  4427. "email": "dunglas@gmail.com"
  4428. },
  4429. {
  4430. "name": "Symfony Community",
  4431. "homepage": "https://symfony.com/contributors"
  4432. }
  4433. ],
  4434. "description": "Symfony Property Info Component",
  4435. "homepage": "https://symfony.com",
  4436. "keywords": [
  4437. "doctrine",
  4438. "phpdoc",
  4439. "property",
  4440. "symfony",
  4441. "type",
  4442. "validator"
  4443. ],
  4444. "time": "2019-11-05 16:11:08"
  4445. },
  4446. {
  4447. "name": "symfony/routing",
  4448. "version": "v4.4.2",
  4449. "source": {
  4450. "type": "git",
  4451. "url": "https://github.com/symfony/routing.git",
  4452. "reference": "628bcafae1b2043969378dcfbf9c196539a38722"
  4453. },
  4454. "dist": {
  4455. "type": "zip",
  4456. "url": "https://api.github.com/repos/symfony/routing/zipball/628bcafae1b2043969378dcfbf9c196539a38722",
  4457. "reference": "628bcafae1b2043969378dcfbf9c196539a38722",
  4458. "shasum": ""
  4459. },
  4460. "require": {
  4461. "php": "^7.1.3"
  4462. },
  4463. "conflict": {
  4464. "symfony/config": "<4.2",
  4465. "symfony/dependency-injection": "<3.4",
  4466. "symfony/yaml": "<3.4"
  4467. },
  4468. "require-dev": {
  4469. "doctrine/annotations": "~1.2",
  4470. "psr/log": "~1.0",
  4471. "symfony/config": "^4.2|^5.0",
  4472. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4473. "symfony/expression-language": "^3.4|^4.0|^5.0",
  4474. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  4475. "symfony/yaml": "^3.4|^4.0|^5.0"
  4476. },
  4477. "suggest": {
  4478. "doctrine/annotations": "For using the annotation loader",
  4479. "symfony/config": "For using the all-in-one router or any loader",
  4480. "symfony/expression-language": "For using expression matching",
  4481. "symfony/http-foundation": "For using a Symfony Request object",
  4482. "symfony/yaml": "For using the YAML loader"
  4483. },
  4484. "type": "library",
  4485. "extra": {
  4486. "branch-alias": {
  4487. "dev-master": "4.4-dev"
  4488. }
  4489. },
  4490. "autoload": {
  4491. "psr-4": {
  4492. "Symfony\\Component\\Routing\\": ""
  4493. },
  4494. "exclude-from-classmap": [
  4495. "/Tests/"
  4496. ]
  4497. },
  4498. "notification-url": "https://packagist.org/downloads/",
  4499. "license": [
  4500. "MIT"
  4501. ],
  4502. "authors": [
  4503. {
  4504. "name": "Fabien Potencier",
  4505. "email": "fabien@symfony.com"
  4506. },
  4507. {
  4508. "name": "Symfony Community",
  4509. "homepage": "https://symfony.com/contributors"
  4510. }
  4511. ],
  4512. "description": "Symfony Routing Component",
  4513. "homepage": "https://symfony.com",
  4514. "keywords": [
  4515. "router",
  4516. "routing",
  4517. "uri",
  4518. "url"
  4519. ],
  4520. "time": "2019-12-12 12:53:52"
  4521. },
  4522. {
  4523. "name": "symfony/security-bundle",
  4524. "version": "v4.4.2",
  4525. "source": {
  4526. "type": "git",
  4527. "url": "https://github.com/symfony/security-bundle.git",
  4528. "reference": "9bf16458fee90bd62c240625dd94e335bad91885"
  4529. },
  4530. "dist": {
  4531. "type": "zip",
  4532. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/9bf16458fee90bd62c240625dd94e335bad91885",
  4533. "reference": "9bf16458fee90bd62c240625dd94e335bad91885",
  4534. "shasum": ""
  4535. },
  4536. "require": {
  4537. "ext-xml": "*",
  4538. "php": "^7.1.3",
  4539. "symfony/config": "^4.2|^5.0",
  4540. "symfony/dependency-injection": "^4.4|^5.0",
  4541. "symfony/http-kernel": "^4.4",
  4542. "symfony/security-core": "^4.4",
  4543. "symfony/security-csrf": "^4.2|^5.0",
  4544. "symfony/security-guard": "^4.2|^5.0",
  4545. "symfony/security-http": "^4.4.1"
  4546. },
  4547. "conflict": {
  4548. "symfony/browser-kit": "<4.2",
  4549. "symfony/console": "<3.4",
  4550. "symfony/framework-bundle": "<4.4",
  4551. "symfony/ldap": "<4.4",
  4552. "symfony/twig-bundle": "<4.4"
  4553. },
  4554. "require-dev": {
  4555. "doctrine/doctrine-bundle": "^1.5|^2.0",
  4556. "symfony/asset": "^3.4|^4.0|^5.0",
  4557. "symfony/browser-kit": "^4.2|^5.0",
  4558. "symfony/console": "^3.4|^4.0|^5.0",
  4559. "symfony/css-selector": "^3.4|^4.0|^5.0",
  4560. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  4561. "symfony/expression-language": "^3.4|^4.0|^5.0",
  4562. "symfony/form": "^3.4|^4.0|^5.0",
  4563. "symfony/framework-bundle": "^4.4|^5.0",
  4564. "symfony/process": "^3.4|^4.0|^5.0",
  4565. "symfony/serializer": "^4.4|^5.0",
  4566. "symfony/translation": "^3.4|^4.0|^5.0",
  4567. "symfony/twig-bridge": "^3.4|^4.0|^5.0",
  4568. "symfony/twig-bundle": "^4.4|^5.0",
  4569. "symfony/validator": "^3.4|^4.0|^5.0",
  4570. "symfony/yaml": "^3.4|^4.0|^5.0",
  4571. "twig/twig": "^1.41|^2.10|^3.0"
  4572. },
  4573. "type": "symfony-bundle",
  4574. "extra": {
  4575. "branch-alias": {
  4576. "dev-master": "4.4-dev"
  4577. }
  4578. },
  4579. "autoload": {
  4580. "psr-4": {
  4581. "Symfony\\Bundle\\SecurityBundle\\": ""
  4582. },
  4583. "exclude-from-classmap": [
  4584. "/Tests/"
  4585. ]
  4586. },
  4587. "notification-url": "https://packagist.org/downloads/",
  4588. "license": [
  4589. "MIT"
  4590. ],
  4591. "authors": [
  4592. {
  4593. "name": "Fabien Potencier",
  4594. "email": "fabien@symfony.com"
  4595. },
  4596. {
  4597. "name": "Symfony Community",
  4598. "homepage": "https://symfony.com/contributors"
  4599. }
  4600. ],
  4601. "description": "Symfony SecurityBundle",
  4602. "homepage": "https://symfony.com",
  4603. "time": "2019-12-16 10:45:21"
  4604. },
  4605. {
  4606. "name": "symfony/security-core",
  4607. "version": "v4.4.2",
  4608. "source": {
  4609. "type": "git",
  4610. "url": "https://github.com/symfony/security-core.git",
  4611. "reference": "52709ee2aafd13d777253d510d96fbf2ccc5a578"
  4612. },
  4613. "dist": {
  4614. "type": "zip",
  4615. "url": "https://api.github.com/repos/symfony/security-core/zipball/52709ee2aafd13d777253d510d96fbf2ccc5a578",
  4616. "reference": "52709ee2aafd13d777253d510d96fbf2ccc5a578",
  4617. "shasum": ""
  4618. },
  4619. "require": {
  4620. "php": "^7.1.3",
  4621. "symfony/event-dispatcher-contracts": "^1.1|^2",
  4622. "symfony/service-contracts": "^1.1.6|^2"
  4623. },
  4624. "conflict": {
  4625. "symfony/event-dispatcher": "<4.3|>=5",
  4626. "symfony/ldap": "<4.4",
  4627. "symfony/security-guard": "<4.3"
  4628. },
  4629. "require-dev": {
  4630. "psr/container": "^1.0",
  4631. "psr/log": "~1.0",
  4632. "symfony/event-dispatcher": "^4.3",
  4633. "symfony/expression-language": "^3.4|^4.0|^5.0",
  4634. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  4635. "symfony/ldap": "^4.4|^5.0",
  4636. "symfony/validator": "^3.4.31|^4.3.4|^5.0"
  4637. },
  4638. "suggest": {
  4639. "psr/container-implementation": "To instantiate the Security class",
  4640. "symfony/event-dispatcher": "",
  4641. "symfony/expression-language": "For using the expression voter",
  4642. "symfony/http-foundation": "",
  4643. "symfony/ldap": "For using LDAP integration",
  4644. "symfony/validator": "For using the user password constraint"
  4645. },
  4646. "type": "library",
  4647. "extra": {
  4648. "branch-alias": {
  4649. "dev-master": "4.4-dev"
  4650. }
  4651. },
  4652. "autoload": {
  4653. "psr-4": {
  4654. "Symfony\\Component\\Security\\Core\\": ""
  4655. },
  4656. "exclude-from-classmap": [
  4657. "/Tests/"
  4658. ]
  4659. },
  4660. "notification-url": "https://packagist.org/downloads/",
  4661. "license": [
  4662. "MIT"
  4663. ],
  4664. "authors": [
  4665. {
  4666. "name": "Fabien Potencier",
  4667. "email": "fabien@symfony.com"
  4668. },
  4669. {
  4670. "name": "Symfony Community",
  4671. "homepage": "https://symfony.com/contributors"
  4672. }
  4673. ],
  4674. "description": "Symfony Security Component - Core Library",
  4675. "homepage": "https://symfony.com",
  4676. "time": "2019-12-16 11:07:37"
  4677. },
  4678. {
  4679. "name": "symfony/security-csrf",
  4680. "version": "v4.4.2",
  4681. "source": {
  4682. "type": "git",
  4683. "url": "https://github.com/symfony/security-csrf.git",
  4684. "reference": "aeed1a2315019b5a090f5ad34c01f1935ea9b757"
  4685. },
  4686. "dist": {
  4687. "type": "zip",
  4688. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/aeed1a2315019b5a090f5ad34c01f1935ea9b757",
  4689. "reference": "aeed1a2315019b5a090f5ad34c01f1935ea9b757",
  4690. "shasum": ""
  4691. },
  4692. "require": {
  4693. "php": "^7.1.3",
  4694. "symfony/security-core": "^3.4|^4.0|^5.0"
  4695. },
  4696. "conflict": {
  4697. "symfony/http-foundation": "<3.4"
  4698. },
  4699. "require-dev": {
  4700. "symfony/http-foundation": "^3.4|^4.0|^5.0"
  4701. },
  4702. "suggest": {
  4703. "symfony/http-foundation": "For using the class SessionTokenStorage."
  4704. },
  4705. "type": "library",
  4706. "extra": {
  4707. "branch-alias": {
  4708. "dev-master": "4.4-dev"
  4709. }
  4710. },
  4711. "autoload": {
  4712. "psr-4": {
  4713. "Symfony\\Component\\Security\\Csrf\\": ""
  4714. },
  4715. "exclude-from-classmap": [
  4716. "/Tests/"
  4717. ]
  4718. },
  4719. "notification-url": "https://packagist.org/downloads/",
  4720. "license": [
  4721. "MIT"
  4722. ],
  4723. "authors": [
  4724. {
  4725. "name": "Fabien Potencier",
  4726. "email": "fabien@symfony.com"
  4727. },
  4728. {
  4729. "name": "Symfony Community",
  4730. "homepage": "https://symfony.com/contributors"
  4731. }
  4732. ],
  4733. "description": "Symfony Security Component - CSRF Library",
  4734. "homepage": "https://symfony.com",
  4735. "time": "2019-10-12 00:35:04"
  4736. },
  4737. {
  4738. "name": "symfony/security-guard",
  4739. "version": "v4.4.2",
  4740. "source": {
  4741. "type": "git",
  4742. "url": "https://github.com/symfony/security-guard.git",
  4743. "reference": "203a81f9fcfc3bbaba7f1103c261a30d2648611b"
  4744. },
  4745. "dist": {
  4746. "type": "zip",
  4747. "url": "https://api.github.com/repos/symfony/security-guard/zipball/203a81f9fcfc3bbaba7f1103c261a30d2648611b",
  4748. "reference": "203a81f9fcfc3bbaba7f1103c261a30d2648611b",
  4749. "shasum": ""
  4750. },
  4751. "require": {
  4752. "php": "^7.1.3",
  4753. "symfony/security-core": "^3.4.22|^4.2.3|^5.0",
  4754. "symfony/security-http": "^4.4.1"
  4755. },
  4756. "require-dev": {
  4757. "psr/log": "~1.0"
  4758. },
  4759. "type": "library",
  4760. "extra": {
  4761. "branch-alias": {
  4762. "dev-master": "4.4-dev"
  4763. }
  4764. },
  4765. "autoload": {
  4766. "psr-4": {
  4767. "Symfony\\Component\\Security\\Guard\\": ""
  4768. },
  4769. "exclude-from-classmap": [
  4770. "/Tests/"
  4771. ]
  4772. },
  4773. "notification-url": "https://packagist.org/downloads/",
  4774. "license": [
  4775. "MIT"
  4776. ],
  4777. "authors": [
  4778. {
  4779. "name": "Fabien Potencier",
  4780. "email": "fabien@symfony.com"
  4781. },
  4782. {
  4783. "name": "Symfony Community",
  4784. "homepage": "https://symfony.com/contributors"
  4785. }
  4786. ],
  4787. "description": "Symfony Security Component - Guard",
  4788. "homepage": "https://symfony.com",
  4789. "time": "2019-12-07 16:27:44"
  4790. },
  4791. {
  4792. "name": "symfony/security-http",
  4793. "version": "v4.4.2",
  4794. "source": {
  4795. "type": "git",
  4796. "url": "https://github.com/symfony/security-http.git",
  4797. "reference": "8ab510f214fd9c37769378b5036da58d444fe142"
  4798. },
  4799. "dist": {
  4800. "type": "zip",
  4801. "url": "https://api.github.com/repos/symfony/security-http/zipball/8ab510f214fd9c37769378b5036da58d444fe142",
  4802. "reference": "8ab510f214fd9c37769378b5036da58d444fe142",
  4803. "shasum": ""
  4804. },
  4805. "require": {
  4806. "php": "^7.1.3",
  4807. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  4808. "symfony/http-kernel": "^4.4",
  4809. "symfony/property-access": "^3.4|^4.0|^5.0",
  4810. "symfony/security-core": "^4.4"
  4811. },
  4812. "conflict": {
  4813. "symfony/event-dispatcher": ">=5",
  4814. "symfony/security-csrf": "<3.4.11|~4.0,<4.0.11"
  4815. },
  4816. "require-dev": {
  4817. "psr/log": "~1.0",
  4818. "symfony/routing": "^3.4|^4.0|^5.0",
  4819. "symfony/security-csrf": "^3.4.11|^4.0.11|^5.0"
  4820. },
  4821. "suggest": {
  4822. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  4823. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  4824. },
  4825. "type": "library",
  4826. "extra": {
  4827. "branch-alias": {
  4828. "dev-master": "4.4-dev"
  4829. }
  4830. },
  4831. "autoload": {
  4832. "psr-4": {
  4833. "Symfony\\Component\\Security\\Http\\": ""
  4834. },
  4835. "exclude-from-classmap": [
  4836. "/Tests/"
  4837. ]
  4838. },
  4839. "notification-url": "https://packagist.org/downloads/",
  4840. "license": [
  4841. "MIT"
  4842. ],
  4843. "authors": [
  4844. {
  4845. "name": "Fabien Potencier",
  4846. "email": "fabien@symfony.com"
  4847. },
  4848. {
  4849. "name": "Symfony Community",
  4850. "homepage": "https://symfony.com/contributors"
  4851. }
  4852. ],
  4853. "description": "Symfony Security Component - HTTP Integration",
  4854. "homepage": "https://symfony.com",
  4855. "time": "2019-12-13 12:11:48"
  4856. },
  4857. {
  4858. "name": "symfony/serializer",
  4859. "version": "v4.4.2",
  4860. "source": {
  4861. "type": "git",
  4862. "url": "https://github.com/symfony/serializer.git",
  4863. "reference": "e5bc3f6dee44dc06e7e640cce4baa741b73ecb6e"
  4864. },
  4865. "dist": {
  4866. "type": "zip",
  4867. "url": "https://api.github.com/repos/symfony/serializer/zipball/e5bc3f6dee44dc06e7e640cce4baa741b73ecb6e",
  4868. "reference": "e5bc3f6dee44dc06e7e640cce4baa741b73ecb6e",
  4869. "shasum": ""
  4870. },
  4871. "require": {
  4872. "php": "^7.1.3",
  4873. "symfony/polyfill-ctype": "~1.8"
  4874. },
  4875. "conflict": {
  4876. "phpdocumentor/type-resolver": "<0.2.1",
  4877. "symfony/dependency-injection": "<3.4",
  4878. "symfony/property-access": "<3.4",
  4879. "symfony/property-info": "<3.4",
  4880. "symfony/yaml": "<3.4"
  4881. },
  4882. "require-dev": {
  4883. "doctrine/annotations": "~1.0",
  4884. "doctrine/cache": "~1.0",
  4885. "phpdocumentor/reflection-docblock": "^3.2|^4.0",
  4886. "symfony/cache": "^3.4|^4.0|^5.0",
  4887. "symfony/config": "^3.4|^4.0|^5.0",
  4888. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4889. "symfony/error-handler": "^4.4|^5.0",
  4890. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  4891. "symfony/property-access": "^3.4|^4.0|^5.0",
  4892. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  4893. "symfony/validator": "^3.4|^4.0|^5.0",
  4894. "symfony/yaml": "^3.4|^4.0|^5.0"
  4895. },
  4896. "suggest": {
  4897. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  4898. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  4899. "psr/cache-implementation": "For using the metadata cache.",
  4900. "symfony/config": "For using the XML mapping loader.",
  4901. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  4902. "symfony/property-access": "For using the ObjectNormalizer.",
  4903. "symfony/property-info": "To deserialize relations.",
  4904. "symfony/yaml": "For using the default YAML mapping loader."
  4905. },
  4906. "type": "library",
  4907. "extra": {
  4908. "branch-alias": {
  4909. "dev-master": "4.4-dev"
  4910. }
  4911. },
  4912. "autoload": {
  4913. "psr-4": {
  4914. "Symfony\\Component\\Serializer\\": ""
  4915. },
  4916. "exclude-from-classmap": [
  4917. "/Tests/"
  4918. ]
  4919. },
  4920. "notification-url": "https://packagist.org/downloads/",
  4921. "license": [
  4922. "MIT"
  4923. ],
  4924. "authors": [
  4925. {
  4926. "name": "Fabien Potencier",
  4927. "email": "fabien@symfony.com"
  4928. },
  4929. {
  4930. "name": "Symfony Community",
  4931. "homepage": "https://symfony.com/contributors"
  4932. }
  4933. ],
  4934. "description": "Symfony Serializer Component",
  4935. "homepage": "https://symfony.com",
  4936. "time": "2019-12-16 11:07:37"
  4937. },
  4938. {
  4939. "name": "symfony/serializer-pack",
  4940. "version": "v1.0.2",
  4941. "source": {
  4942. "type": "git",
  4943. "url": "https://github.com/symfony/serializer-pack.git",
  4944. "reference": "c5f18ba4ff989a42d7d140b7f85406e77cd8c4b2"
  4945. },
  4946. "dist": {
  4947. "type": "zip",
  4948. "url": "https://api.github.com/repos/symfony/serializer-pack/zipball/c5f18ba4ff989a42d7d140b7f85406e77cd8c4b2",
  4949. "reference": "c5f18ba4ff989a42d7d140b7f85406e77cd8c4b2",
  4950. "shasum": ""
  4951. },
  4952. "require": {
  4953. "doctrine/annotations": "^1.0",
  4954. "php": "^7.0",
  4955. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  4956. "symfony/property-access": "*",
  4957. "symfony/property-info": "*",
  4958. "symfony/serializer": "*"
  4959. },
  4960. "type": "symfony-pack",
  4961. "notification-url": "https://packagist.org/downloads/",
  4962. "license": [
  4963. "MIT"
  4964. ],
  4965. "description": "A pack for the Symfony serializer",
  4966. "time": "2018-12-10 12:14:14"
  4967. },
  4968. {
  4969. "name": "symfony/service-contracts",
  4970. "version": "v2.0.1",
  4971. "source": {
  4972. "type": "git",
  4973. "url": "https://github.com/symfony/service-contracts.git",
  4974. "reference": "144c5e51266b281231e947b51223ba14acf1a749"
  4975. },
  4976. "dist": {
  4977. "type": "zip",
  4978. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/144c5e51266b281231e947b51223ba14acf1a749",
  4979. "reference": "144c5e51266b281231e947b51223ba14acf1a749",
  4980. "shasum": ""
  4981. },
  4982. "require": {
  4983. "php": "^7.2.5",
  4984. "psr/container": "^1.0"
  4985. },
  4986. "suggest": {
  4987. "symfony/service-implementation": ""
  4988. },
  4989. "type": "library",
  4990. "extra": {
  4991. "branch-alias": {
  4992. "dev-master": "2.0-dev"
  4993. }
  4994. },
  4995. "autoload": {
  4996. "psr-4": {
  4997. "Symfony\\Contracts\\Service\\": ""
  4998. }
  4999. },
  5000. "notification-url": "https://packagist.org/downloads/",
  5001. "license": [
  5002. "MIT"
  5003. ],
  5004. "authors": [
  5005. {
  5006. "name": "Nicolas Grekas",
  5007. "email": "p@tchwork.com"
  5008. },
  5009. {
  5010. "name": "Symfony Community",
  5011. "homepage": "https://symfony.com/contributors"
  5012. }
  5013. ],
  5014. "description": "Generic abstractions related to writing services",
  5015. "homepage": "https://symfony.com",
  5016. "keywords": [
  5017. "abstractions",
  5018. "contracts",
  5019. "decoupling",
  5020. "interfaces",
  5021. "interoperability",
  5022. "standards"
  5023. ],
  5024. "time": "2019-11-18 17:27:11"
  5025. },
  5026. {
  5027. "name": "symfony/stopwatch",
  5028. "version": "v4.4.2",
  5029. "source": {
  5030. "type": "git",
  5031. "url": "https://github.com/symfony/stopwatch.git",
  5032. "reference": "5745b514fc56ae1907c6b8ed74f94f90f64694e9"
  5033. },
  5034. "dist": {
  5035. "type": "zip",
  5036. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5745b514fc56ae1907c6b8ed74f94f90f64694e9",
  5037. "reference": "5745b514fc56ae1907c6b8ed74f94f90f64694e9",
  5038. "shasum": ""
  5039. },
  5040. "require": {
  5041. "php": "^7.1.3",
  5042. "symfony/service-contracts": "^1.0|^2"
  5043. },
  5044. "type": "library",
  5045. "extra": {
  5046. "branch-alias": {
  5047. "dev-master": "4.4-dev"
  5048. }
  5049. },
  5050. "autoload": {
  5051. "psr-4": {
  5052. "Symfony\\Component\\Stopwatch\\": ""
  5053. },
  5054. "exclude-from-classmap": [
  5055. "/Tests/"
  5056. ]
  5057. },
  5058. "notification-url": "https://packagist.org/downloads/",
  5059. "license": [
  5060. "MIT"
  5061. ],
  5062. "authors": [
  5063. {
  5064. "name": "Fabien Potencier",
  5065. "email": "fabien@symfony.com"
  5066. },
  5067. {
  5068. "name": "Symfony Community",
  5069. "homepage": "https://symfony.com/contributors"
  5070. }
  5071. ],
  5072. "description": "Symfony Stopwatch Component",
  5073. "homepage": "https://symfony.com",
  5074. "time": "2019-11-05 16:11:08"
  5075. },
  5076. {
  5077. "name": "symfony/swiftmailer-bundle",
  5078. "version": "v3.4.0",
  5079. "source": {
  5080. "type": "git",
  5081. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  5082. "reference": "553d2474288349faed873da8ab7c1551a00d26ae"
  5083. },
  5084. "dist": {
  5085. "type": "zip",
  5086. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/553d2474288349faed873da8ab7c1551a00d26ae",
  5087. "reference": "553d2474288349faed873da8ab7c1551a00d26ae",
  5088. "shasum": ""
  5089. },
  5090. "require": {
  5091. "php": ">=7.1",
  5092. "swiftmailer/swiftmailer": "^6.1.3",
  5093. "symfony/config": "^4.3.8|^5.0",
  5094. "symfony/dependency-injection": "^4.3.8|^5.0",
  5095. "symfony/http-kernel": "^4.3.8|^5.0"
  5096. },
  5097. "conflict": {
  5098. "twig/twig": "<1.41|<2.10"
  5099. },
  5100. "require-dev": {
  5101. "symfony/console": "^4.3.8|^5.0",
  5102. "symfony/framework-bundle": "^4.3.8|^5.0",
  5103. "symfony/phpunit-bridge": "^4.3.8|^5.0",
  5104. "symfony/yaml": "^4.3.8|^5.0"
  5105. },
  5106. "suggest": {
  5107. "psr/log": "Allows logging"
  5108. },
  5109. "type": "symfony-bundle",
  5110. "extra": {
  5111. "branch-alias": {
  5112. "dev-master": "3.4-dev"
  5113. }
  5114. },
  5115. "autoload": {
  5116. "psr-4": {
  5117. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  5118. },
  5119. "exclude-from-classmap": [
  5120. "/Tests/"
  5121. ]
  5122. },
  5123. "notification-url": "https://packagist.org/downloads/",
  5124. "license": [
  5125. "MIT"
  5126. ],
  5127. "authors": [
  5128. {
  5129. "name": "Fabien Potencier",
  5130. "email": "fabien@symfony.com"
  5131. },
  5132. {
  5133. "name": "Symfony Community",
  5134. "homepage": "http://symfony.com/contributors"
  5135. }
  5136. ],
  5137. "description": "Symfony SwiftmailerBundle",
  5138. "homepage": "http://symfony.com",
  5139. "time": "2019-11-14 16:18:31"
  5140. },
  5141. {
  5142. "name": "symfony/translation",
  5143. "version": "v4.4.2",
  5144. "source": {
  5145. "type": "git",
  5146. "url": "https://github.com/symfony/translation.git",
  5147. "reference": "f7669f48a9633bf8139bc026c755e894b7206677"
  5148. },
  5149. "dist": {
  5150. "type": "zip",
  5151. "url": "https://api.github.com/repos/symfony/translation/zipball/f7669f48a9633bf8139bc026c755e894b7206677",
  5152. "reference": "f7669f48a9633bf8139bc026c755e894b7206677",
  5153. "shasum": ""
  5154. },
  5155. "require": {
  5156. "php": "^7.1.3",
  5157. "symfony/polyfill-mbstring": "~1.0",
  5158. "symfony/translation-contracts": "^1.1.6|^2"
  5159. },
  5160. "conflict": {
  5161. "symfony/config": "<3.4",
  5162. "symfony/dependency-injection": "<3.4",
  5163. "symfony/http-kernel": "<4.4",
  5164. "symfony/yaml": "<3.4"
  5165. },
  5166. "provide": {
  5167. "symfony/translation-implementation": "1.0"
  5168. },
  5169. "require-dev": {
  5170. "psr/log": "~1.0",
  5171. "symfony/config": "^3.4|^4.0|^5.0",
  5172. "symfony/console": "^3.4|^4.0|^5.0",
  5173. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5174. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  5175. "symfony/http-kernel": "^4.4",
  5176. "symfony/intl": "^3.4|^4.0|^5.0",
  5177. "symfony/service-contracts": "^1.1.2|^2",
  5178. "symfony/yaml": "^3.4|^4.0|^5.0"
  5179. },
  5180. "suggest": {
  5181. "psr/log-implementation": "To use logging capability in translator",
  5182. "symfony/config": "",
  5183. "symfony/yaml": ""
  5184. },
  5185. "type": "library",
  5186. "extra": {
  5187. "branch-alias": {
  5188. "dev-master": "4.4-dev"
  5189. }
  5190. },
  5191. "autoload": {
  5192. "psr-4": {
  5193. "Symfony\\Component\\Translation\\": ""
  5194. },
  5195. "exclude-from-classmap": [
  5196. "/Tests/"
  5197. ]
  5198. },
  5199. "notification-url": "https://packagist.org/downloads/",
  5200. "license": [
  5201. "MIT"
  5202. ],
  5203. "authors": [
  5204. {
  5205. "name": "Fabien Potencier",
  5206. "email": "fabien@symfony.com"
  5207. },
  5208. {
  5209. "name": "Symfony Community",
  5210. "homepage": "https://symfony.com/contributors"
  5211. }
  5212. ],
  5213. "description": "Symfony Translation Component",
  5214. "homepage": "https://symfony.com",
  5215. "time": "2019-12-12 12:53:52"
  5216. },
  5217. {
  5218. "name": "symfony/translation-contracts",
  5219. "version": "v2.0.1",
  5220. "source": {
  5221. "type": "git",
  5222. "url": "https://github.com/symfony/translation-contracts.git",
  5223. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed"
  5224. },
  5225. "dist": {
  5226. "type": "zip",
  5227. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  5228. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  5229. "shasum": ""
  5230. },
  5231. "require": {
  5232. "php": "^7.2.5"
  5233. },
  5234. "suggest": {
  5235. "symfony/translation-implementation": ""
  5236. },
  5237. "type": "library",
  5238. "extra": {
  5239. "branch-alias": {
  5240. "dev-master": "2.0-dev"
  5241. }
  5242. },
  5243. "autoload": {
  5244. "psr-4": {
  5245. "Symfony\\Contracts\\Translation\\": ""
  5246. }
  5247. },
  5248. "notification-url": "https://packagist.org/downloads/",
  5249. "license": [
  5250. "MIT"
  5251. ],
  5252. "authors": [
  5253. {
  5254. "name": "Nicolas Grekas",
  5255. "email": "p@tchwork.com"
  5256. },
  5257. {
  5258. "name": "Symfony Community",
  5259. "homepage": "https://symfony.com/contributors"
  5260. }
  5261. ],
  5262. "description": "Generic abstractions related to translation",
  5263. "homepage": "https://symfony.com",
  5264. "keywords": [
  5265. "abstractions",
  5266. "contracts",
  5267. "decoupling",
  5268. "interfaces",
  5269. "interoperability",
  5270. "standards"
  5271. ],
  5272. "time": "2019-11-18 17:27:11"
  5273. },
  5274. {
  5275. "name": "symfony/twig-bridge",
  5276. "version": "v4.4.2",
  5277. "source": {
  5278. "type": "git",
  5279. "url": "https://github.com/symfony/twig-bridge.git",
  5280. "reference": "936cf6f5b973377345e8ac43870987ef8e747ce3"
  5281. },
  5282. "dist": {
  5283. "type": "zip",
  5284. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/936cf6f5b973377345e8ac43870987ef8e747ce3",
  5285. "reference": "936cf6f5b973377345e8ac43870987ef8e747ce3",
  5286. "shasum": ""
  5287. },
  5288. "require": {
  5289. "php": "^7.1.3",
  5290. "symfony/translation-contracts": "^1.1|^2",
  5291. "twig/twig": "^1.41|^2.10|^3.0"
  5292. },
  5293. "conflict": {
  5294. "symfony/console": "<3.4",
  5295. "symfony/form": "<4.4",
  5296. "symfony/http-foundation": "<4.3",
  5297. "symfony/translation": "<4.2",
  5298. "symfony/workflow": "<4.3"
  5299. },
  5300. "require-dev": {
  5301. "egulias/email-validator": "^2.1.10",
  5302. "symfony/asset": "^3.4|^4.0|^5.0",
  5303. "symfony/console": "^3.4|^4.0|^5.0",
  5304. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5305. "symfony/error-handler": "^4.4|^5.0",
  5306. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5307. "symfony/finder": "^3.4|^4.0|^5.0",
  5308. "symfony/form": "^4.3.5",
  5309. "symfony/http-foundation": "^4.3|^5.0",
  5310. "symfony/http-kernel": "^4.4",
  5311. "symfony/mime": "^4.3|^5.0",
  5312. "symfony/polyfill-intl-icu": "~1.0",
  5313. "symfony/routing": "^3.4|^4.0|^5.0",
  5314. "symfony/security-acl": "^2.8|^3.0",
  5315. "symfony/security-core": "^3.0|^4.0|^5.0",
  5316. "symfony/security-csrf": "^3.4|^4.0|^5.0",
  5317. "symfony/security-http": "^3.4|^4.0|^5.0",
  5318. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  5319. "symfony/templating": "^3.4|^4.0|^5.0",
  5320. "symfony/translation": "^4.2.1|^5.0",
  5321. "symfony/web-link": "^4.4|^5.0",
  5322. "symfony/workflow": "^4.3|^5.0",
  5323. "symfony/yaml": "^3.4|^4.0|^5.0",
  5324. "twig/cssinliner-extra": "^2.12",
  5325. "twig/inky-extra": "^2.12",
  5326. "twig/markdown-extra": "^2.12"
  5327. },
  5328. "suggest": {
  5329. "symfony/asset": "For using the AssetExtension",
  5330. "symfony/expression-language": "For using the ExpressionExtension",
  5331. "symfony/finder": "",
  5332. "symfony/form": "For using the FormExtension",
  5333. "symfony/http-kernel": "For using the HttpKernelExtension",
  5334. "symfony/routing": "For using the RoutingExtension",
  5335. "symfony/security-core": "For using the SecurityExtension",
  5336. "symfony/security-csrf": "For using the CsrfExtension",
  5337. "symfony/security-http": "For using the LogoutUrlExtension",
  5338. "symfony/stopwatch": "For using the StopwatchExtension",
  5339. "symfony/templating": "For using the TwigEngine",
  5340. "symfony/translation": "For using the TranslationExtension",
  5341. "symfony/var-dumper": "For using the DumpExtension",
  5342. "symfony/web-link": "For using the WebLinkExtension",
  5343. "symfony/yaml": "For using the YamlExtension"
  5344. },
  5345. "type": "symfony-bridge",
  5346. "extra": {
  5347. "branch-alias": {
  5348. "dev-master": "4.4-dev"
  5349. }
  5350. },
  5351. "autoload": {
  5352. "psr-4": {
  5353. "Symfony\\Bridge\\Twig\\": ""
  5354. },
  5355. "exclude-from-classmap": [
  5356. "/Tests/"
  5357. ]
  5358. },
  5359. "notification-url": "https://packagist.org/downloads/",
  5360. "license": [
  5361. "MIT"
  5362. ],
  5363. "authors": [
  5364. {
  5365. "name": "Fabien Potencier",
  5366. "email": "fabien@symfony.com"
  5367. },
  5368. {
  5369. "name": "Symfony Community",
  5370. "homepage": "https://symfony.com/contributors"
  5371. }
  5372. ],
  5373. "description": "Symfony Twig Bridge",
  5374. "homepage": "https://symfony.com",
  5375. "time": "2019-12-05 05:58:42"
  5376. },
  5377. {
  5378. "name": "symfony/twig-bundle",
  5379. "version": "v4.4.2",
  5380. "source": {
  5381. "type": "git",
  5382. "url": "https://github.com/symfony/twig-bundle.git",
  5383. "reference": "a6e7bd9731256a55b2270c1283de8bc3bda06e8f"
  5384. },
  5385. "dist": {
  5386. "type": "zip",
  5387. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/a6e7bd9731256a55b2270c1283de8bc3bda06e8f",
  5388. "reference": "a6e7bd9731256a55b2270c1283de8bc3bda06e8f",
  5389. "shasum": ""
  5390. },
  5391. "require": {
  5392. "php": "^7.1.3",
  5393. "symfony/http-foundation": "^4.3|^5.0",
  5394. "symfony/http-kernel": "^4.4",
  5395. "symfony/polyfill-ctype": "~1.8",
  5396. "symfony/twig-bridge": "^4.4|^5.0",
  5397. "twig/twig": "^1.41|^2.10|^3.0"
  5398. },
  5399. "conflict": {
  5400. "symfony/dependency-injection": "<4.1",
  5401. "symfony/framework-bundle": "<4.4",
  5402. "symfony/translation": "<4.2"
  5403. },
  5404. "require-dev": {
  5405. "doctrine/annotations": "~1.7",
  5406. "doctrine/cache": "~1.0",
  5407. "symfony/asset": "^3.4|^4.0|^5.0",
  5408. "symfony/dependency-injection": "^4.2.5|^5.0",
  5409. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5410. "symfony/finder": "^3.4|^4.0|^5.0",
  5411. "symfony/form": "^3.4|^4.0|^5.0",
  5412. "symfony/framework-bundle": "^4.4|^5.0",
  5413. "symfony/routing": "^3.4|^4.0|^5.0",
  5414. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  5415. "symfony/templating": "^3.4|^4.0|^5.0",
  5416. "symfony/translation": "^4.2|^5.0",
  5417. "symfony/web-link": "^3.4|^4.0|^5.0",
  5418. "symfony/yaml": "^3.4|^4.0|^5.0"
  5419. },
  5420. "type": "symfony-bundle",
  5421. "extra": {
  5422. "branch-alias": {
  5423. "dev-master": "4.4-dev"
  5424. }
  5425. },
  5426. "autoload": {
  5427. "psr-4": {
  5428. "Symfony\\Bundle\\TwigBundle\\": ""
  5429. },
  5430. "exclude-from-classmap": [
  5431. "/Tests/"
  5432. ]
  5433. },
  5434. "notification-url": "https://packagist.org/downloads/",
  5435. "license": [
  5436. "MIT"
  5437. ],
  5438. "authors": [
  5439. {
  5440. "name": "Fabien Potencier",
  5441. "email": "fabien@symfony.com"
  5442. },
  5443. {
  5444. "name": "Symfony Community",
  5445. "homepage": "https://symfony.com/contributors"
  5446. }
  5447. ],
  5448. "description": "Symfony TwigBundle",
  5449. "homepage": "https://symfony.com",
  5450. "time": "2019-12-10 11:13:11"
  5451. },
  5452. {
  5453. "name": "symfony/validator",
  5454. "version": "v4.4.2",
  5455. "source": {
  5456. "type": "git",
  5457. "url": "https://github.com/symfony/validator.git",
  5458. "reference": "79eb122bed116c1fbe0769698d5b46acce1860a2"
  5459. },
  5460. "dist": {
  5461. "type": "zip",
  5462. "url": "https://api.github.com/repos/symfony/validator/zipball/79eb122bed116c1fbe0769698d5b46acce1860a2",
  5463. "reference": "79eb122bed116c1fbe0769698d5b46acce1860a2",
  5464. "shasum": ""
  5465. },
  5466. "require": {
  5467. "php": "^7.1.3",
  5468. "symfony/polyfill-ctype": "~1.8",
  5469. "symfony/polyfill-mbstring": "~1.0",
  5470. "symfony/translation-contracts": "^1.1|^2"
  5471. },
  5472. "conflict": {
  5473. "doctrine/lexer": "<1.0.2",
  5474. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5475. "symfony/dependency-injection": "<3.4",
  5476. "symfony/http-kernel": "<4.4",
  5477. "symfony/intl": "<4.3",
  5478. "symfony/translation": ">=5.0",
  5479. "symfony/yaml": "<3.4"
  5480. },
  5481. "require-dev": {
  5482. "doctrine/annotations": "~1.7",
  5483. "doctrine/cache": "~1.0",
  5484. "egulias/email-validator": "^2.1.10",
  5485. "symfony/cache": "^3.4|^4.0|^5.0",
  5486. "symfony/config": "^3.4|^4.0|^5.0",
  5487. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5488. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5489. "symfony/http-client": "^4.3|^5.0",
  5490. "symfony/http-foundation": "^4.1|^5.0",
  5491. "symfony/http-kernel": "^4.4",
  5492. "symfony/intl": "^4.3|^5.0",
  5493. "symfony/property-access": "^3.4|^4.0|^5.0",
  5494. "symfony/property-info": "^3.4|^4.0|^5.0",
  5495. "symfony/translation": "^4.2",
  5496. "symfony/yaml": "^3.4|^4.0|^5.0"
  5497. },
  5498. "suggest": {
  5499. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  5500. "doctrine/cache": "For using the default cached annotation reader.",
  5501. "egulias/email-validator": "Strict (RFC compliant) email validation",
  5502. "psr/cache-implementation": "For using the mapping cache.",
  5503. "symfony/config": "",
  5504. "symfony/expression-language": "For using the Expression validator",
  5505. "symfony/http-foundation": "",
  5506. "symfony/intl": "",
  5507. "symfony/property-access": "For accessing properties within comparison constraints",
  5508. "symfony/property-info": "To automatically add NotNull and Type constraints",
  5509. "symfony/translation": "For translating validation errors.",
  5510. "symfony/yaml": ""
  5511. },
  5512. "type": "library",
  5513. "extra": {
  5514. "branch-alias": {
  5515. "dev-master": "4.4-dev"
  5516. }
  5517. },
  5518. "autoload": {
  5519. "psr-4": {
  5520. "Symfony\\Component\\Validator\\": ""
  5521. },
  5522. "exclude-from-classmap": [
  5523. "/Tests/"
  5524. ]
  5525. },
  5526. "notification-url": "https://packagist.org/downloads/",
  5527. "license": [
  5528. "MIT"
  5529. ],
  5530. "authors": [
  5531. {
  5532. "name": "Fabien Potencier",
  5533. "email": "fabien@symfony.com"
  5534. },
  5535. {
  5536. "name": "Symfony Community",
  5537. "homepage": "https://symfony.com/contributors"
  5538. }
  5539. ],
  5540. "description": "Symfony Validator Component",
  5541. "homepage": "https://symfony.com",
  5542. "time": "2019-12-17 08:15:02"
  5543. },
  5544. {
  5545. "name": "symfony/var-dumper",
  5546. "version": "v4.4.2",
  5547. "source": {
  5548. "type": "git",
  5549. "url": "https://github.com/symfony/var-dumper.git",
  5550. "reference": "be330f919bdb395d1e0c3f2bfb8948512d6bdd99"
  5551. },
  5552. "dist": {
  5553. "type": "zip",
  5554. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/be330f919bdb395d1e0c3f2bfb8948512d6bdd99",
  5555. "reference": "be330f919bdb395d1e0c3f2bfb8948512d6bdd99",
  5556. "shasum": ""
  5557. },
  5558. "require": {
  5559. "php": "^7.1.3",
  5560. "symfony/polyfill-mbstring": "~1.0",
  5561. "symfony/polyfill-php72": "~1.5"
  5562. },
  5563. "conflict": {
  5564. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5565. "symfony/console": "<3.4"
  5566. },
  5567. "require-dev": {
  5568. "ext-iconv": "*",
  5569. "symfony/console": "^3.4|^4.0|^5.0",
  5570. "symfony/process": "^4.4|^5.0",
  5571. "twig/twig": "^1.34|^2.4|^3.0"
  5572. },
  5573. "suggest": {
  5574. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5575. "ext-intl": "To show region name in time zone dump",
  5576. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5577. },
  5578. "bin": [
  5579. "Resources/bin/var-dump-server"
  5580. ],
  5581. "type": "library",
  5582. "extra": {
  5583. "branch-alias": {
  5584. "dev-master": "4.4-dev"
  5585. }
  5586. },
  5587. "autoload": {
  5588. "files": [
  5589. "Resources/functions/dump.php"
  5590. ],
  5591. "psr-4": {
  5592. "Symfony\\Component\\VarDumper\\": ""
  5593. },
  5594. "exclude-from-classmap": [
  5595. "/Tests/"
  5596. ]
  5597. },
  5598. "notification-url": "https://packagist.org/downloads/",
  5599. "license": [
  5600. "MIT"
  5601. ],
  5602. "authors": [
  5603. {
  5604. "name": "Nicolas Grekas",
  5605. "email": "p@tchwork.com"
  5606. },
  5607. {
  5608. "name": "Symfony Community",
  5609. "homepage": "https://symfony.com/contributors"
  5610. }
  5611. ],
  5612. "description": "Symfony mechanism for exploring and dumping PHP variables",
  5613. "homepage": "https://symfony.com",
  5614. "keywords": [
  5615. "debug",
  5616. "dump"
  5617. ],
  5618. "time": "2019-12-18 13:41:29"
  5619. },
  5620. {
  5621. "name": "symfony/var-exporter",
  5622. "version": "v4.4.2",
  5623. "source": {
  5624. "type": "git",
  5625. "url": "https://github.com/symfony/var-exporter.git",
  5626. "reference": "e566070effe60b8d16b99e958cdbd92aa2e470cb"
  5627. },
  5628. "dist": {
  5629. "type": "zip",
  5630. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/e566070effe60b8d16b99e958cdbd92aa2e470cb",
  5631. "reference": "e566070effe60b8d16b99e958cdbd92aa2e470cb",
  5632. "shasum": ""
  5633. },
  5634. "require": {
  5635. "php": "^7.1.3"
  5636. },
  5637. "require-dev": {
  5638. "symfony/var-dumper": "^4.1.1|^5.0"
  5639. },
  5640. "type": "library",
  5641. "extra": {
  5642. "branch-alias": {
  5643. "dev-master": "4.4-dev"
  5644. }
  5645. },
  5646. "autoload": {
  5647. "psr-4": {
  5648. "Symfony\\Component\\VarExporter\\": ""
  5649. },
  5650. "exclude-from-classmap": [
  5651. "/Tests/"
  5652. ]
  5653. },
  5654. "notification-url": "https://packagist.org/downloads/",
  5655. "license": [
  5656. "MIT"
  5657. ],
  5658. "authors": [
  5659. {
  5660. "name": "Nicolas Grekas",
  5661. "email": "p@tchwork.com"
  5662. },
  5663. {
  5664. "name": "Symfony Community",
  5665. "homepage": "https://symfony.com/contributors"
  5666. }
  5667. ],
  5668. "description": "A blend of var_export() + serialize() to turn any serializable data structure to plain PHP code",
  5669. "homepage": "https://symfony.com",
  5670. "keywords": [
  5671. "clone",
  5672. "construct",
  5673. "export",
  5674. "hydrate",
  5675. "instantiate",
  5676. "serialize"
  5677. ],
  5678. "time": "2019-12-01 08:39:58"
  5679. },
  5680. {
  5681. "name": "symfony/web-link",
  5682. "version": "v4.4.2",
  5683. "source": {
  5684. "type": "git",
  5685. "url": "https://github.com/symfony/web-link.git",
  5686. "reference": "bc6432b92681b2f28ced2f3bbcf051e75eea569c"
  5687. },
  5688. "dist": {
  5689. "type": "zip",
  5690. "url": "https://api.github.com/repos/symfony/web-link/zipball/bc6432b92681b2f28ced2f3bbcf051e75eea569c",
  5691. "reference": "bc6432b92681b2f28ced2f3bbcf051e75eea569c",
  5692. "shasum": ""
  5693. },
  5694. "require": {
  5695. "php": "^7.1.3",
  5696. "psr/link": "^1.0",
  5697. "symfony/polyfill-php72": "^1.5"
  5698. },
  5699. "conflict": {
  5700. "symfony/http-kernel": "<4.3"
  5701. },
  5702. "provide": {
  5703. "psr/link-implementation": "1.0"
  5704. },
  5705. "require-dev": {
  5706. "symfony/http-foundation": "^4.4|^5.0",
  5707. "symfony/http-kernel": "^4.3|^5.0"
  5708. },
  5709. "suggest": {
  5710. "symfony/http-kernel": ""
  5711. },
  5712. "type": "library",
  5713. "extra": {
  5714. "branch-alias": {
  5715. "dev-master": "4.4-dev"
  5716. }
  5717. },
  5718. "autoload": {
  5719. "psr-4": {
  5720. "Symfony\\Component\\WebLink\\": ""
  5721. },
  5722. "exclude-from-classmap": [
  5723. "/Tests/"
  5724. ]
  5725. },
  5726. "notification-url": "https://packagist.org/downloads/",
  5727. "license": [
  5728. "MIT"
  5729. ],
  5730. "authors": [
  5731. {
  5732. "name": "Kévin Dunglas",
  5733. "email": "dunglas@gmail.com"
  5734. },
  5735. {
  5736. "name": "Symfony Community",
  5737. "homepage": "https://symfony.com/contributors"
  5738. }
  5739. ],
  5740. "description": "Symfony WebLink Component",
  5741. "homepage": "https://symfony.com",
  5742. "keywords": [
  5743. "dns-prefetch",
  5744. "http",
  5745. "http2",
  5746. "link",
  5747. "performance",
  5748. "prefetch",
  5749. "preload",
  5750. "prerender",
  5751. "psr13",
  5752. "push"
  5753. ],
  5754. "time": "2019-10-12 00:35:04"
  5755. },
  5756. {
  5757. "name": "symfony/web-profiler-bundle",
  5758. "version": "v4.4.2",
  5759. "source": {
  5760. "type": "git",
  5761. "url": "https://github.com/symfony/web-profiler-bundle.git",
  5762. "reference": "92453ec17c365c561d9e65b06050b9e2a65e9306"
  5763. },
  5764. "dist": {
  5765. "type": "zip",
  5766. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/92453ec17c365c561d9e65b06050b9e2a65e9306",
  5767. "reference": "92453ec17c365c561d9e65b06050b9e2a65e9306",
  5768. "shasum": ""
  5769. },
  5770. "require": {
  5771. "php": "^7.1.3",
  5772. "symfony/config": "^4.2|^5.0",
  5773. "symfony/framework-bundle": "^4.4|^5.0",
  5774. "symfony/http-kernel": "^4.4",
  5775. "symfony/routing": "^3.4|^4.0|^5.0",
  5776. "symfony/twig-bundle": "^4.2|^5.0",
  5777. "twig/twig": "^1.41|^2.10|^3.0"
  5778. },
  5779. "conflict": {
  5780. "symfony/form": "<4.3",
  5781. "symfony/messenger": "<4.2"
  5782. },
  5783. "require-dev": {
  5784. "symfony/console": "^3.4|^4.0|^5.0",
  5785. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5786. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  5787. },
  5788. "type": "symfony-bundle",
  5789. "extra": {
  5790. "branch-alias": {
  5791. "dev-master": "4.4-dev"
  5792. }
  5793. },
  5794. "autoload": {
  5795. "psr-4": {
  5796. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  5797. },
  5798. "exclude-from-classmap": [
  5799. "/Tests/"
  5800. ]
  5801. },
  5802. "notification-url": "https://packagist.org/downloads/",
  5803. "license": [
  5804. "MIT"
  5805. ],
  5806. "authors": [
  5807. {
  5808. "name": "Fabien Potencier",
  5809. "email": "fabien@symfony.com"
  5810. },
  5811. {
  5812. "name": "Symfony Community",
  5813. "homepage": "https://symfony.com/contributors"
  5814. }
  5815. ],
  5816. "description": "Symfony WebProfilerBundle",
  5817. "homepage": "https://symfony.com",
  5818. "time": "2019-11-20 10:44:55"
  5819. },
  5820. {
  5821. "name": "symfony/webpack-encore-bundle",
  5822. "version": "v1.7.2",
  5823. "source": {
  5824. "type": "git",
  5825. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  5826. "reference": "787c2fdedde57788013339f05719c82ce07b6058"
  5827. },
  5828. "dist": {
  5829. "type": "zip",
  5830. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/787c2fdedde57788013339f05719c82ce07b6058",
  5831. "reference": "787c2fdedde57788013339f05719c82ce07b6058",
  5832. "shasum": ""
  5833. },
  5834. "require": {
  5835. "php": "^7.1.3",
  5836. "symfony/asset": "^3.4 || ^4.0 || ^5.0",
  5837. "symfony/config": "^3.4 || ^4.0 || ^5.0",
  5838. "symfony/dependency-injection": "^3.4 || ^4.0 || ^5.0",
  5839. "symfony/http-kernel": "^3.4 || ^4.0 || ^5.0",
  5840. "symfony/service-contracts": "^1.0 || ^2.0"
  5841. },
  5842. "require-dev": {
  5843. "symfony/framework-bundle": "^3.4 || ^4.0 || ^5.0",
  5844. "symfony/phpunit-bridge": "^4.3.5 || ^5.0",
  5845. "symfony/twig-bundle": "^3.4 || ^4.0 || ^5.0",
  5846. "symfony/web-link": "^3.4 || ^4.0 || ^5.0"
  5847. },
  5848. "type": "symfony-bundle",
  5849. "extra": {
  5850. "thanks": {
  5851. "name": "symfony/webpack-encore",
  5852. "url": "https://github.com/symfony/webpack-encore"
  5853. }
  5854. },
  5855. "autoload": {
  5856. "psr-4": {
  5857. "Symfony\\WebpackEncoreBundle\\": "src"
  5858. }
  5859. },
  5860. "notification-url": "https://packagist.org/downloads/",
  5861. "license": [
  5862. "MIT"
  5863. ],
  5864. "authors": [
  5865. {
  5866. "name": "Symfony Community",
  5867. "homepage": "https://symfony.com/contributors"
  5868. }
  5869. ],
  5870. "description": "Integration with your Symfony app & Webpack Encore!",
  5871. "time": "2019-11-26 14:48:41"
  5872. },
  5873. {
  5874. "name": "symfony/yaml",
  5875. "version": "v4.4.2",
  5876. "source": {
  5877. "type": "git",
  5878. "url": "https://github.com/symfony/yaml.git",
  5879. "reference": "a08832b974dd5fafe3085a66d41fe4c84bb2628c"
  5880. },
  5881. "dist": {
  5882. "type": "zip",
  5883. "url": "https://api.github.com/repos/symfony/yaml/zipball/a08832b974dd5fafe3085a66d41fe4c84bb2628c",
  5884. "reference": "a08832b974dd5fafe3085a66d41fe4c84bb2628c",
  5885. "shasum": ""
  5886. },
  5887. "require": {
  5888. "php": "^7.1.3",
  5889. "symfony/polyfill-ctype": "~1.8"
  5890. },
  5891. "conflict": {
  5892. "symfony/console": "<3.4"
  5893. },
  5894. "require-dev": {
  5895. "symfony/console": "^3.4|^4.0|^5.0"
  5896. },
  5897. "suggest": {
  5898. "symfony/console": "For validating YAML files using the lint command"
  5899. },
  5900. "type": "library",
  5901. "extra": {
  5902. "branch-alias": {
  5903. "dev-master": "4.4-dev"
  5904. }
  5905. },
  5906. "autoload": {
  5907. "psr-4": {
  5908. "Symfony\\Component\\Yaml\\": ""
  5909. },
  5910. "exclude-from-classmap": [
  5911. "/Tests/"
  5912. ]
  5913. },
  5914. "notification-url": "https://packagist.org/downloads/",
  5915. "license": [
  5916. "MIT"
  5917. ],
  5918. "authors": [
  5919. {
  5920. "name": "Fabien Potencier",
  5921. "email": "fabien@symfony.com"
  5922. },
  5923. {
  5924. "name": "Symfony Community",
  5925. "homepage": "https://symfony.com/contributors"
  5926. }
  5927. ],
  5928. "description": "Symfony Yaml Component",
  5929. "homepage": "https://symfony.com",
  5930. "time": "2019-12-10 10:33:21"
  5931. },
  5932. {
  5933. "name": "twig/twig",
  5934. "version": "v3.0.1",
  5935. "source": {
  5936. "type": "git",
  5937. "url": "https://github.com/twigphp/Twig.git",
  5938. "reference": "28f856a4c57eeb24485916e8a68403f41a133616"
  5939. },
  5940. "dist": {
  5941. "type": "zip",
  5942. "url": "https://api.github.com/repos/twigphp/Twig/zipball/28f856a4c57eeb24485916e8a68403f41a133616",
  5943. "reference": "28f856a4c57eeb24485916e8a68403f41a133616",
  5944. "shasum": ""
  5945. },
  5946. "require": {
  5947. "php": "^7.2.5",
  5948. "symfony/polyfill-ctype": "^1.8",
  5949. "symfony/polyfill-mbstring": "^1.3"
  5950. },
  5951. "require-dev": {
  5952. "psr/container": "^1.0",
  5953. "symfony/phpunit-bridge": "^4.4|^5.0"
  5954. },
  5955. "type": "library",
  5956. "extra": {
  5957. "branch-alias": {
  5958. "dev-master": "3.0-dev"
  5959. }
  5960. },
  5961. "autoload": {
  5962. "psr-4": {
  5963. "Twig\\": "src/"
  5964. }
  5965. },
  5966. "notification-url": "https://packagist.org/downloads/",
  5967. "license": [
  5968. "BSD-3-Clause"
  5969. ],
  5970. "authors": [
  5971. {
  5972. "name": "Fabien Potencier",
  5973. "email": "fabien@symfony.com",
  5974. "homepage": "http://fabien.potencier.org",
  5975. "role": "Lead Developer"
  5976. },
  5977. {
  5978. "name": "Twig Team",
  5979. "role": "Contributors"
  5980. },
  5981. {
  5982. "name": "Armin Ronacher",
  5983. "email": "armin.ronacher@active-4.com",
  5984. "role": "Project Founder"
  5985. }
  5986. ],
  5987. "description": "Twig, the flexible, fast, and secure template language for PHP",
  5988. "homepage": "https://twig.symfony.com",
  5989. "keywords": [
  5990. "templating"
  5991. ],
  5992. "time": "2019-12-28 07:17:28"
  5993. },
  5994. {
  5995. "name": "webmozart/assert",
  5996. "version": "1.6.0",
  5997. "source": {
  5998. "type": "git",
  5999. "url": "https://github.com/webmozart/assert.git",
  6000. "reference": "573381c0a64f155a0d9a23f4b0c797194805b925"
  6001. },
  6002. "dist": {
  6003. "type": "zip",
  6004. "url": "https://api.github.com/repos/webmozart/assert/zipball/573381c0a64f155a0d9a23f4b0c797194805b925",
  6005. "reference": "573381c0a64f155a0d9a23f4b0c797194805b925",
  6006. "shasum": ""
  6007. },
  6008. "require": {
  6009. "php": "^5.3.3 || ^7.0",
  6010. "symfony/polyfill-ctype": "^1.8"
  6011. },
  6012. "conflict": {
  6013. "vimeo/psalm": "<3.6.0"
  6014. },
  6015. "require-dev": {
  6016. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  6017. },
  6018. "type": "library",
  6019. "autoload": {
  6020. "psr-4": {
  6021. "Webmozart\\Assert\\": "src/"
  6022. }
  6023. },
  6024. "notification-url": "https://packagist.org/downloads/",
  6025. "license": [
  6026. "MIT"
  6027. ],
  6028. "authors": [
  6029. {
  6030. "name": "Bernhard Schussek",
  6031. "email": "bschussek@gmail.com"
  6032. }
  6033. ],
  6034. "description": "Assertions to validate method input/output with nice error messages.",
  6035. "keywords": [
  6036. "assert",
  6037. "check",
  6038. "validate"
  6039. ],
  6040. "time": "2019-11-24 13:36:37"
  6041. },
  6042. {
  6043. "name": "zendframework/zend-code",
  6044. "version": "3.4.1",
  6045. "source": {
  6046. "type": "git",
  6047. "url": "https://github.com/zendframework/zend-code.git",
  6048. "reference": "268040548f92c2bfcba164421c1add2ba43abaaa"
  6049. },
  6050. "dist": {
  6051. "type": "zip",
  6052. "url": "https://api.github.com/repos/zendframework/zend-code/zipball/268040548f92c2bfcba164421c1add2ba43abaaa",
  6053. "reference": "268040548f92c2bfcba164421c1add2ba43abaaa",
  6054. "shasum": ""
  6055. },
  6056. "require": {
  6057. "php": "^7.1",
  6058. "zendframework/zend-eventmanager": "^2.6 || ^3.0"
  6059. },
  6060. "conflict": {
  6061. "phpspec/prophecy": "<1.9.0"
  6062. },
  6063. "require-dev": {
  6064. "doctrine/annotations": "^1.7",
  6065. "ext-phar": "*",
  6066. "phpunit/phpunit": "^7.5.16 || ^8.4",
  6067. "zendframework/zend-coding-standard": "^1.0",
  6068. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  6069. },
  6070. "suggest": {
  6071. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  6072. "zendframework/zend-stdlib": "Zend\\Stdlib component"
  6073. },
  6074. "type": "library",
  6075. "extra": {
  6076. "branch-alias": {
  6077. "dev-master": "3.4.x-dev",
  6078. "dev-develop": "3.5.x-dev",
  6079. "dev-dev-4.0": "4.0.x-dev"
  6080. }
  6081. },
  6082. "autoload": {
  6083. "psr-4": {
  6084. "Zend\\Code\\": "src/"
  6085. }
  6086. },
  6087. "notification-url": "https://packagist.org/downloads/",
  6088. "license": [
  6089. "BSD-3-Clause"
  6090. ],
  6091. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  6092. "keywords": [
  6093. "ZendFramework",
  6094. "code",
  6095. "zf"
  6096. ],
  6097. "abandoned": "laminas/laminas-code",
  6098. "time": "2019-12-10 19:21:15"
  6099. },
  6100. {
  6101. "name": "zendframework/zend-eventmanager",
  6102. "version": "3.2.1",
  6103. "source": {
  6104. "type": "git",
  6105. "url": "https://github.com/zendframework/zend-eventmanager.git",
  6106. "reference": "a5e2583a211f73604691586b8406ff7296a946dd"
  6107. },
  6108. "dist": {
  6109. "type": "zip",
  6110. "url": "https://api.github.com/repos/zendframework/zend-eventmanager/zipball/a5e2583a211f73604691586b8406ff7296a946dd",
  6111. "reference": "a5e2583a211f73604691586b8406ff7296a946dd",
  6112. "shasum": ""
  6113. },
  6114. "require": {
  6115. "php": "^5.6 || ^7.0"
  6116. },
  6117. "require-dev": {
  6118. "athletic/athletic": "^0.1",
  6119. "container-interop/container-interop": "^1.1.0",
  6120. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  6121. "zendframework/zend-coding-standard": "~1.0.0",
  6122. "zendframework/zend-stdlib": "^2.7.3 || ^3.0"
  6123. },
  6124. "suggest": {
  6125. "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature",
  6126. "zendframework/zend-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  6127. },
  6128. "type": "library",
  6129. "extra": {
  6130. "branch-alias": {
  6131. "dev-master": "3.2-dev",
  6132. "dev-develop": "3.3-dev"
  6133. }
  6134. },
  6135. "autoload": {
  6136. "psr-4": {
  6137. "Zend\\EventManager\\": "src/"
  6138. }
  6139. },
  6140. "notification-url": "https://packagist.org/downloads/",
  6141. "license": [
  6142. "BSD-3-Clause"
  6143. ],
  6144. "description": "Trigger and listen to events within a PHP application",
  6145. "homepage": "https://github.com/zendframework/zend-eventmanager",
  6146. "keywords": [
  6147. "event",
  6148. "eventmanager",
  6149. "events",
  6150. "zf2"
  6151. ],
  6152. "abandoned": "laminas/laminas-eventmanager",
  6153. "time": "2018-04-25 15:33:34"
  6154. }
  6155. ],
  6156. "packages-dev": [
  6157. {
  6158. "name": "easycorp/easy-log-handler",
  6159. "version": "v1.0.9",
  6160. "source": {
  6161. "type": "git",
  6162. "url": "https://github.com/EasyCorp/easy-log-handler.git",
  6163. "reference": "224e1dfcf9455aceee89cd0af306ac097167fac1"
  6164. },
  6165. "dist": {
  6166. "type": "zip",
  6167. "url": "https://api.github.com/repos/EasyCorp/easy-log-handler/zipball/224e1dfcf9455aceee89cd0af306ac097167fac1",
  6168. "reference": "224e1dfcf9455aceee89cd0af306ac097167fac1",
  6169. "shasum": ""
  6170. },
  6171. "require": {
  6172. "monolog/monolog": "~1.6|~2.0",
  6173. "php": ">=7.1",
  6174. "symfony/yaml": "^3.4|^4.0|^5.0"
  6175. },
  6176. "type": "library",
  6177. "autoload": {
  6178. "psr-4": {
  6179. "EasyCorp\\EasyLog\\": "src"
  6180. }
  6181. },
  6182. "notification-url": "https://packagist.org/downloads/",
  6183. "license": [
  6184. "MIT"
  6185. ],
  6186. "authors": [
  6187. {
  6188. "name": "Javier Eguiluz",
  6189. "email": "javiereguiluz@gmail.com"
  6190. },
  6191. {
  6192. "name": "Project Contributors",
  6193. "homepage": "https://github.com/EasyCorp/easy-log-handler"
  6194. }
  6195. ],
  6196. "description": "A handler for Monolog that optimizes log messages to be processed by humans instead of software. Improve your productivity with logs that are easy to understand.",
  6197. "homepage": "https://github.com/EasyCorp/easy-log-handler",
  6198. "keywords": [
  6199. "easy",
  6200. "log",
  6201. "logging",
  6202. "monolog",
  6203. "productivity"
  6204. ],
  6205. "time": "2019-10-24 07:13:31"
  6206. },
  6207. {
  6208. "name": "nikic/php-parser",
  6209. "version": "v4.3.0",
  6210. "source": {
  6211. "type": "git",
  6212. "url": "https://github.com/nikic/PHP-Parser.git",
  6213. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc"
  6214. },
  6215. "dist": {
  6216. "type": "zip",
  6217. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  6218. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  6219. "shasum": ""
  6220. },
  6221. "require": {
  6222. "ext-tokenizer": "*",
  6223. "php": ">=7.0"
  6224. },
  6225. "require-dev": {
  6226. "ircmaxell/php-yacc": "0.0.5",
  6227. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  6228. },
  6229. "bin": [
  6230. "bin/php-parse"
  6231. ],
  6232. "type": "library",
  6233. "extra": {
  6234. "branch-alias": {
  6235. "dev-master": "4.3-dev"
  6236. }
  6237. },
  6238. "autoload": {
  6239. "psr-4": {
  6240. "PhpParser\\": "lib/PhpParser"
  6241. }
  6242. },
  6243. "notification-url": "https://packagist.org/downloads/",
  6244. "license": [
  6245. "BSD-3-Clause"
  6246. ],
  6247. "authors": [
  6248. {
  6249. "name": "Nikita Popov"
  6250. }
  6251. ],
  6252. "description": "A PHP parser written in PHP",
  6253. "keywords": [
  6254. "parser",
  6255. "php"
  6256. ],
  6257. "time": "2019-11-08 13:50:10"
  6258. },
  6259. {
  6260. "name": "symfony/browser-kit",
  6261. "version": "v5.0.2",
  6262. "source": {
  6263. "type": "git",
  6264. "url": "https://github.com/symfony/browser-kit.git",
  6265. "reference": "a195f83b0ba20e622a5baa726af96826b8f5616b"
  6266. },
  6267. "dist": {
  6268. "type": "zip",
  6269. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/a195f83b0ba20e622a5baa726af96826b8f5616b",
  6270. "reference": "a195f83b0ba20e622a5baa726af96826b8f5616b",
  6271. "shasum": ""
  6272. },
  6273. "require": {
  6274. "php": "^7.2.5",
  6275. "symfony/dom-crawler": "^4.4|^5.0"
  6276. },
  6277. "require-dev": {
  6278. "symfony/css-selector": "^4.4|^5.0",
  6279. "symfony/http-client": "^4.4|^5.0",
  6280. "symfony/mime": "^4.4|^5.0",
  6281. "symfony/process": "^4.4|^5.0"
  6282. },
  6283. "suggest": {
  6284. "symfony/process": ""
  6285. },
  6286. "type": "library",
  6287. "extra": {
  6288. "branch-alias": {
  6289. "dev-master": "5.0-dev"
  6290. }
  6291. },
  6292. "autoload": {
  6293. "psr-4": {
  6294. "Symfony\\Component\\BrowserKit\\": ""
  6295. },
  6296. "exclude-from-classmap": [
  6297. "/Tests/"
  6298. ]
  6299. },
  6300. "notification-url": "https://packagist.org/downloads/",
  6301. "license": [
  6302. "MIT"
  6303. ],
  6304. "authors": [
  6305. {
  6306. "name": "Fabien Potencier",
  6307. "email": "fabien@symfony.com"
  6308. },
  6309. {
  6310. "name": "Symfony Community",
  6311. "homepage": "https://symfony.com/contributors"
  6312. }
  6313. ],
  6314. "description": "Symfony BrowserKit Component",
  6315. "homepage": "https://symfony.com",
  6316. "time": "2019-11-18 17:27:11"
  6317. },
  6318. {
  6319. "name": "symfony/css-selector",
  6320. "version": "v5.0.2",
  6321. "source": {
  6322. "type": "git",
  6323. "url": "https://github.com/symfony/css-selector.git",
  6324. "reference": "19d29e7098b7b2c3313cb03902ca30f100dcb837"
  6325. },
  6326. "dist": {
  6327. "type": "zip",
  6328. "url": "https://api.github.com/repos/symfony/css-selector/zipball/19d29e7098b7b2c3313cb03902ca30f100dcb837",
  6329. "reference": "19d29e7098b7b2c3313cb03902ca30f100dcb837",
  6330. "shasum": ""
  6331. },
  6332. "require": {
  6333. "php": "^7.2.5"
  6334. },
  6335. "type": "library",
  6336. "extra": {
  6337. "branch-alias": {
  6338. "dev-master": "5.0-dev"
  6339. }
  6340. },
  6341. "autoload": {
  6342. "psr-4": {
  6343. "Symfony\\Component\\CssSelector\\": ""
  6344. },
  6345. "exclude-from-classmap": [
  6346. "/Tests/"
  6347. ]
  6348. },
  6349. "notification-url": "https://packagist.org/downloads/",
  6350. "license": [
  6351. "MIT"
  6352. ],
  6353. "authors": [
  6354. {
  6355. "name": "Fabien Potencier",
  6356. "email": "fabien@symfony.com"
  6357. },
  6358. {
  6359. "name": "Jean-François Simon",
  6360. "email": "jeanfrancois.simon@sensiolabs.com"
  6361. },
  6362. {
  6363. "name": "Symfony Community",
  6364. "homepage": "https://symfony.com/contributors"
  6365. }
  6366. ],
  6367. "description": "Symfony CssSelector Component",
  6368. "homepage": "https://symfony.com",
  6369. "time": "2019-11-18 17:27:11"
  6370. },
  6371. {
  6372. "name": "symfony/debug-bundle",
  6373. "version": "v5.0.2",
  6374. "source": {
  6375. "type": "git",
  6376. "url": "https://github.com/symfony/debug-bundle.git",
  6377. "reference": "c9ea0bdc89b9f81d6a292fc42714e807815de027"
  6378. },
  6379. "dist": {
  6380. "type": "zip",
  6381. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/c9ea0bdc89b9f81d6a292fc42714e807815de027",
  6382. "reference": "c9ea0bdc89b9f81d6a292fc42714e807815de027",
  6383. "shasum": ""
  6384. },
  6385. "require": {
  6386. "ext-xml": "*",
  6387. "php": "^7.2.5",
  6388. "symfony/http-kernel": "^4.4|^5.0",
  6389. "symfony/twig-bridge": "^4.4|^5.0",
  6390. "symfony/var-dumper": "^4.4|^5.0"
  6391. },
  6392. "conflict": {
  6393. "symfony/config": "<4.4",
  6394. "symfony/dependency-injection": "<4.4"
  6395. },
  6396. "require-dev": {
  6397. "symfony/config": "^4.4|^5.0",
  6398. "symfony/dependency-injection": "^4.4|^5.0",
  6399. "symfony/web-profiler-bundle": "^4.4|^5.0"
  6400. },
  6401. "suggest": {
  6402. "symfony/config": "For service container configuration",
  6403. "symfony/dependency-injection": "For using as a service from the container"
  6404. },
  6405. "type": "symfony-bundle",
  6406. "extra": {
  6407. "branch-alias": {
  6408. "dev-master": "5.0-dev"
  6409. }
  6410. },
  6411. "autoload": {
  6412. "psr-4": {
  6413. "Symfony\\Bundle\\DebugBundle\\": ""
  6414. },
  6415. "exclude-from-classmap": [
  6416. "/Tests/"
  6417. ]
  6418. },
  6419. "notification-url": "https://packagist.org/downloads/",
  6420. "license": [
  6421. "MIT"
  6422. ],
  6423. "authors": [
  6424. {
  6425. "name": "Fabien Potencier",
  6426. "email": "fabien@symfony.com"
  6427. },
  6428. {
  6429. "name": "Symfony Community",
  6430. "homepage": "https://symfony.com/contributors"
  6431. }
  6432. ],
  6433. "description": "Symfony DebugBundle",
  6434. "homepage": "https://symfony.com",
  6435. "time": "2019-11-18 17:27:11"
  6436. },
  6437. {
  6438. "name": "symfony/debug-pack",
  6439. "version": "v1.0.7",
  6440. "source": {
  6441. "type": "git",
  6442. "url": "https://github.com/symfony/debug-pack.git",
  6443. "reference": "09a4a1e9bf2465987d4f79db0ad6c11cc632bc79"
  6444. },
  6445. "dist": {
  6446. "type": "zip",
  6447. "url": "https://api.github.com/repos/symfony/debug-pack/zipball/09a4a1e9bf2465987d4f79db0ad6c11cc632bc79",
  6448. "reference": "09a4a1e9bf2465987d4f79db0ad6c11cc632bc79",
  6449. "shasum": ""
  6450. },
  6451. "require": {
  6452. "easycorp/easy-log-handler": "^1.0.7",
  6453. "php": "^7.0",
  6454. "symfony/debug-bundle": "*",
  6455. "symfony/monolog-bundle": "^3.0",
  6456. "symfony/profiler-pack": "*",
  6457. "symfony/var-dumper": "*"
  6458. },
  6459. "type": "symfony-pack",
  6460. "notification-url": "https://packagist.org/downloads/",
  6461. "license": [
  6462. "MIT"
  6463. ],
  6464. "description": "A debug pack for Symfony projects",
  6465. "time": "2018-12-10 12:11:11"
  6466. },
  6467. {
  6468. "name": "symfony/dom-crawler",
  6469. "version": "v5.0.2",
  6470. "source": {
  6471. "type": "git",
  6472. "url": "https://github.com/symfony/dom-crawler.git",
  6473. "reference": "0a0a73a0836926898b6fcd6817fe697487a73d97"
  6474. },
  6475. "dist": {
  6476. "type": "zip",
  6477. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/0a0a73a0836926898b6fcd6817fe697487a73d97",
  6478. "reference": "0a0a73a0836926898b6fcd6817fe697487a73d97",
  6479. "shasum": ""
  6480. },
  6481. "require": {
  6482. "php": "^7.2.5",
  6483. "symfony/polyfill-ctype": "~1.8",
  6484. "symfony/polyfill-mbstring": "~1.0"
  6485. },
  6486. "conflict": {
  6487. "masterminds/html5": "<2.6"
  6488. },
  6489. "require-dev": {
  6490. "masterminds/html5": "^2.6",
  6491. "symfony/css-selector": "^4.4|^5.0"
  6492. },
  6493. "suggest": {
  6494. "symfony/css-selector": ""
  6495. },
  6496. "type": "library",
  6497. "extra": {
  6498. "branch-alias": {
  6499. "dev-master": "5.0-dev"
  6500. }
  6501. },
  6502. "autoload": {
  6503. "psr-4": {
  6504. "Symfony\\Component\\DomCrawler\\": ""
  6505. },
  6506. "exclude-from-classmap": [
  6507. "/Tests/"
  6508. ]
  6509. },
  6510. "notification-url": "https://packagist.org/downloads/",
  6511. "license": [
  6512. "MIT"
  6513. ],
  6514. "authors": [
  6515. {
  6516. "name": "Fabien Potencier",
  6517. "email": "fabien@symfony.com"
  6518. },
  6519. {
  6520. "name": "Symfony Community",
  6521. "homepage": "https://symfony.com/contributors"
  6522. }
  6523. ],
  6524. "description": "Symfony DomCrawler Component",
  6525. "homepage": "https://symfony.com",
  6526. "time": "2019-11-18 17:27:11"
  6527. },
  6528. {
  6529. "name": "symfony/maker-bundle",
  6530. "version": "v1.14.3",
  6531. "source": {
  6532. "type": "git",
  6533. "url": "https://github.com/symfony/maker-bundle.git",
  6534. "reference": "c864e7f9b8d1e1f5f60acc3beda11299f637aded"
  6535. },
  6536. "dist": {
  6537. "type": "zip",
  6538. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/c864e7f9b8d1e1f5f60acc3beda11299f637aded",
  6539. "reference": "c864e7f9b8d1e1f5f60acc3beda11299f637aded",
  6540. "shasum": ""
  6541. },
  6542. "require": {
  6543. "doctrine/inflector": "^1.2",
  6544. "nikic/php-parser": "^4.0",
  6545. "php": "^7.0.8",
  6546. "symfony/config": "^3.4|^4.0|^5.0",
  6547. "symfony/console": "^3.4|^4.0|^5.0",
  6548. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  6549. "symfony/filesystem": "^3.4|^4.0|^5.0",
  6550. "symfony/finder": "^3.4|^4.0|^5.0",
  6551. "symfony/framework-bundle": "^3.4|^4.0|^5.0",
  6552. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  6553. },
  6554. "require-dev": {
  6555. "doctrine/doctrine-bundle": "^1.8|^2.0",
  6556. "doctrine/orm": "^2.3",
  6557. "friendsofphp/php-cs-fixer": "^2.8",
  6558. "friendsoftwig/twigcs": "^3.1.2",
  6559. "symfony/http-client": "^4.3|^5.0",
  6560. "symfony/phpunit-bridge": "^4.3|^5.0",
  6561. "symfony/process": "^3.4|^4.0|^5.0",
  6562. "symfony/security-core": "^3.4|^4.0|^5.0",
  6563. "symfony/yaml": "^3.4|^4.0|^5.0"
  6564. },
  6565. "type": "symfony-bundle",
  6566. "extra": {
  6567. "branch-alias": {
  6568. "dev-master": "1.0-dev"
  6569. }
  6570. },
  6571. "autoload": {
  6572. "psr-4": {
  6573. "Symfony\\Bundle\\MakerBundle\\": "src/"
  6574. }
  6575. },
  6576. "notification-url": "https://packagist.org/downloads/",
  6577. "license": [
  6578. "MIT"
  6579. ],
  6580. "authors": [
  6581. {
  6582. "name": "Symfony Community",
  6583. "homepage": "https://symfony.com/contributors"
  6584. }
  6585. ],
  6586. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  6587. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  6588. "keywords": [
  6589. "code generator",
  6590. "generator",
  6591. "scaffold",
  6592. "scaffolding"
  6593. ],
  6594. "time": "2019-11-07 00:56:03"
  6595. },
  6596. {
  6597. "name": "symfony/phpunit-bridge",
  6598. "version": "v5.0.2",
  6599. "source": {
  6600. "type": "git",
  6601. "url": "https://github.com/symfony/phpunit-bridge.git",
  6602. "reference": "010cf42a81e7bec744edfdef5f76d6394f4906a7"
  6603. },
  6604. "dist": {
  6605. "type": "zip",
  6606. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/010cf42a81e7bec744edfdef5f76d6394f4906a7",
  6607. "reference": "010cf42a81e7bec744edfdef5f76d6394f4906a7",
  6608. "shasum": ""
  6609. },
  6610. "require": {
  6611. "php": ">=5.5.9"
  6612. },
  6613. "conflict": {
  6614. "phpunit/phpunit": "<5.4.3"
  6615. },
  6616. "suggest": {
  6617. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  6618. },
  6619. "bin": [
  6620. "bin/simple-phpunit"
  6621. ],
  6622. "type": "symfony-bridge",
  6623. "extra": {
  6624. "branch-alias": {
  6625. "dev-master": "5.0-dev"
  6626. },
  6627. "thanks": {
  6628. "name": "phpunit/phpunit",
  6629. "url": "https://github.com/sebastianbergmann/phpunit"
  6630. }
  6631. },
  6632. "autoload": {
  6633. "files": [
  6634. "bootstrap.php"
  6635. ],
  6636. "psr-4": {
  6637. "Symfony\\Bridge\\PhpUnit\\": ""
  6638. },
  6639. "exclude-from-classmap": [
  6640. "/Tests/"
  6641. ]
  6642. },
  6643. "notification-url": "https://packagist.org/downloads/",
  6644. "license": [
  6645. "MIT"
  6646. ],
  6647. "authors": [
  6648. {
  6649. "name": "Nicolas Grekas",
  6650. "email": "p@tchwork.com"
  6651. },
  6652. {
  6653. "name": "Symfony Community",
  6654. "homepage": "https://symfony.com/contributors"
  6655. }
  6656. ],
  6657. "description": "Symfony PHPUnit Bridge",
  6658. "homepage": "https://symfony.com",
  6659. "time": "2019-11-28 14:20:16"
  6660. },
  6661. {
  6662. "name": "symfony/profiler-pack",
  6663. "version": "v1.0.4",
  6664. "source": {
  6665. "type": "git",
  6666. "url": "https://github.com/symfony/profiler-pack.git",
  6667. "reference": "99c4370632c2a59bb0444852f92140074ef02209"
  6668. },
  6669. "dist": {
  6670. "type": "zip",
  6671. "url": "https://api.github.com/repos/symfony/profiler-pack/zipball/99c4370632c2a59bb0444852f92140074ef02209",
  6672. "reference": "99c4370632c2a59bb0444852f92140074ef02209",
  6673. "shasum": ""
  6674. },
  6675. "require": {
  6676. "php": "^7.0",
  6677. "symfony/stopwatch": "*",
  6678. "symfony/twig-bundle": "*",
  6679. "symfony/web-profiler-bundle": "*"
  6680. },
  6681. "type": "symfony-pack",
  6682. "notification-url": "https://packagist.org/downloads/",
  6683. "license": [
  6684. "MIT"
  6685. ],
  6686. "description": "A pack for the Symfony web profiler",
  6687. "time": "2018-12-10 12:11:44"
  6688. },
  6689. {
  6690. "name": "symfony/test-pack",
  6691. "version": "v1.0.6",
  6692. "source": {
  6693. "type": "git",
  6694. "url": "https://github.com/symfony/test-pack.git",
  6695. "reference": "ff87e800a67d06c423389f77b8209bc9dc469def"
  6696. },
  6697. "dist": {
  6698. "type": "zip",
  6699. "url": "https://api.github.com/repos/symfony/test-pack/zipball/ff87e800a67d06c423389f77b8209bc9dc469def",
  6700. "reference": "ff87e800a67d06c423389f77b8209bc9dc469def",
  6701. "shasum": ""
  6702. },
  6703. "require": {
  6704. "php": "^7.0",
  6705. "symfony/browser-kit": "*",
  6706. "symfony/css-selector": "*",
  6707. "symfony/phpunit-bridge": "*"
  6708. },
  6709. "type": "symfony-pack",
  6710. "notification-url": "https://packagist.org/downloads/",
  6711. "license": [
  6712. "MIT"
  6713. ],
  6714. "description": "A pack for functional and end-to-end testing within a Symfony app",
  6715. "time": "2019-06-21 06:27:32"
  6716. },
  6717. {
  6718. "name": "symfony/web-profiler-bundle",
  6719. "version": "v5.0.2",
  6720. "source": {
  6721. "type": "git",
  6722. "url": "https://github.com/symfony/web-profiler-bundle.git",
  6723. "reference": "6cc40446060e174a690e0f6da90731133b29b664"
  6724. },
  6725. "dist": {
  6726. "type": "zip",
  6727. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/6cc40446060e174a690e0f6da90731133b29b664",
  6728. "reference": "6cc40446060e174a690e0f6da90731133b29b664",
  6729. "shasum": ""
  6730. },
  6731. "require": {
  6732. "php": "^7.2.5",
  6733. "symfony/config": "^4.4|^5.0",
  6734. "symfony/framework-bundle": "^4.4|^5.0",
  6735. "symfony/http-kernel": "^4.4|^5.0",
  6736. "symfony/routing": "^4.4|^5.0",
  6737. "symfony/twig-bundle": "^4.4|^5.0",
  6738. "twig/twig": "^2.10|^3.0"
  6739. },
  6740. "conflict": {
  6741. "symfony/form": "<4.4",
  6742. "symfony/messenger": "<4.4"
  6743. },
  6744. "require-dev": {
  6745. "symfony/console": "^4.4|^5.0",
  6746. "symfony/dependency-injection": "^4.4|^5.0",
  6747. "symfony/stopwatch": "^4.4|^5.0"
  6748. },
  6749. "type": "symfony-bundle",
  6750. "extra": {
  6751. "branch-alias": {
  6752. "dev-master": "5.0-dev"
  6753. }
  6754. },
  6755. "autoload": {
  6756. "psr-4": {
  6757. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  6758. },
  6759. "exclude-from-classmap": [
  6760. "/Tests/"
  6761. ]
  6762. },
  6763. "notification-url": "https://packagist.org/downloads/",
  6764. "license": [
  6765. "MIT"
  6766. ],
  6767. "authors": [
  6768. {
  6769. "name": "Fabien Potencier",
  6770. "email": "fabien@symfony.com"
  6771. },
  6772. {
  6773. "name": "Symfony Community",
  6774. "homepage": "https://symfony.com/contributors"
  6775. }
  6776. ],
  6777. "description": "Symfony WebProfilerBundle",
  6778. "homepage": "https://symfony.com",
  6779. "time": "2019-11-21 07:02:40"
  6780. },
  6781. {
  6782. "name": "symfony/web-server-bundle",
  6783. "version": "v4.4.2",
  6784. "source": {
  6785. "type": "git",
  6786. "url": "https://github.com/symfony/web-server-bundle.git",
  6787. "reference": "301dad4563b21a791a796da9a736408215b9e9fc"
  6788. },
  6789. "dist": {
  6790. "type": "zip",
  6791. "url": "https://api.github.com/repos/symfony/web-server-bundle/zipball/301dad4563b21a791a796da9a736408215b9e9fc",
  6792. "reference": "301dad4563b21a791a796da9a736408215b9e9fc",
  6793. "shasum": ""
  6794. },
  6795. "require": {
  6796. "php": "^7.1.3",
  6797. "symfony/config": "^3.4|^4.0|^5.0",
  6798. "symfony/console": "^3.4|^4.0|^5.0",
  6799. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  6800. "symfony/http-kernel": "^3.4|^4.0|^5.0",
  6801. "symfony/polyfill-ctype": "~1.8",
  6802. "symfony/process": "^3.4.2|^4.0.2|^5.0"
  6803. },
  6804. "suggest": {
  6805. "symfony/expression-language": "For using the filter option of the log server.",
  6806. "symfony/monolog-bridge": "For using the log server."
  6807. },
  6808. "type": "symfony-bundle",
  6809. "extra": {
  6810. "branch-alias": {
  6811. "dev-master": "4.4-dev"
  6812. }
  6813. },
  6814. "autoload": {
  6815. "psr-4": {
  6816. "Symfony\\Bundle\\WebServerBundle\\": ""
  6817. },
  6818. "exclude-from-classmap": [
  6819. "/Tests/"
  6820. ]
  6821. },
  6822. "notification-url": "https://packagist.org/downloads/",
  6823. "license": [
  6824. "MIT"
  6825. ],
  6826. "authors": [
  6827. {
  6828. "name": "Fabien Potencier",
  6829. "email": "fabien@symfony.com"
  6830. },
  6831. {
  6832. "name": "Symfony Community",
  6833. "homepage": "https://symfony.com/contributors"
  6834. }
  6835. ],
  6836. "description": "Symfony WebServerBundle",
  6837. "homepage": "https://symfony.com",
  6838. "time": "2019-11-26 23:16:41"
  6839. }
  6840. ],
  6841. "aliases": [],
  6842. "minimum-stability": "stable",
  6843. "stability-flags": [],
  6844. "prefer-stable": false,
  6845. "prefer-lowest": false,
  6846. "platform": {
  6847. "php": "^7.1.3",
  6848. "ext-ctype": "*",
  6849. "ext-iconv": "*"
  6850. },
  6851. "platform-dev": []
  6852. }