composer.lock 434 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "3056c2a8bb954520f1b9bf2538faef68",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.11.99.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "7413f0b55a051e89485c5cb9f765fe24bb02a7b6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/7413f0b55a051e89485c5cb9f765fe24bb02a7b6",
  20. "reference": "7413f0b55a051e89485c5cb9f765fe24bb02a7b6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer-plugin-api": "^1.1.0 || ^2.0",
  25. "php": "^7 || ^8"
  26. },
  27. "replace": {
  28. "ocramius/package-versions": "1.11.99"
  29. },
  30. "require-dev": {
  31. "composer/composer": "^1.9.3 || ^2.0@dev",
  32. "ext-zip": "^1.13",
  33. "phpunit/phpunit": "^6.5 || ^7"
  34. },
  35. "type": "composer-plugin",
  36. "extra": {
  37. "class": "PackageVersions\\Installer",
  38. "branch-alias": {
  39. "dev-master": "1.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "PackageVersions\\": "src/PackageVersions"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Marco Pivetta",
  54. "email": "ocramius@gmail.com"
  55. },
  56. {
  57. "name": "Jordi Boggiano",
  58. "email": "j.boggiano@seld.be"
  59. }
  60. ],
  61. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  62. "support": {
  63. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  64. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.1"
  65. },
  66. "funding": [
  67. {
  68. "url": "https://packagist.com",
  69. "type": "custom"
  70. },
  71. {
  72. "url": "https://github.com/composer",
  73. "type": "github"
  74. },
  75. {
  76. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  77. "type": "tidelift"
  78. }
  79. ],
  80. "time": "2020-11-11T10:22:58+00:00"
  81. },
  82. {
  83. "name": "doctrine/annotations",
  84. "version": "1.12.1",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/doctrine/annotations.git",
  88. "reference": "b17c5014ef81d212ac539f07a1001832df1b6d3b"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/doctrine/annotations/zipball/b17c5014ef81d212ac539f07a1001832df1b6d3b",
  93. "reference": "b17c5014ef81d212ac539f07a1001832df1b6d3b",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "doctrine/lexer": "1.*",
  98. "ext-tokenizer": "*",
  99. "php": "^7.1 || ^8.0"
  100. },
  101. "require-dev": {
  102. "doctrine/cache": "1.*",
  103. "doctrine/coding-standard": "^6.0 || ^8.1",
  104. "phpstan/phpstan": "^0.12.20",
  105. "phpunit/phpunit": "^7.5 || ^9.1.5"
  106. },
  107. "type": "library",
  108. "autoload": {
  109. "psr-4": {
  110. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  111. }
  112. },
  113. "notification-url": "https://packagist.org/downloads/",
  114. "license": [
  115. "MIT"
  116. ],
  117. "authors": [
  118. {
  119. "name": "Guilherme Blanco",
  120. "email": "guilhermeblanco@gmail.com"
  121. },
  122. {
  123. "name": "Roman Borschel",
  124. "email": "roman@code-factory.org"
  125. },
  126. {
  127. "name": "Benjamin Eberlei",
  128. "email": "kontakt@beberlei.de"
  129. },
  130. {
  131. "name": "Jonathan Wage",
  132. "email": "jonwage@gmail.com"
  133. },
  134. {
  135. "name": "Johannes Schmitt",
  136. "email": "schmittjoh@gmail.com"
  137. }
  138. ],
  139. "description": "Docblock Annotations Parser",
  140. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  141. "keywords": [
  142. "annotations",
  143. "docblock",
  144. "parser"
  145. ],
  146. "support": {
  147. "issues": "https://github.com/doctrine/annotations/issues",
  148. "source": "https://github.com/doctrine/annotations/tree/1.12.1"
  149. },
  150. "time": "2021-02-21T21:00:45+00:00"
  151. },
  152. {
  153. "name": "doctrine/cache",
  154. "version": "1.10.2",
  155. "source": {
  156. "type": "git",
  157. "url": "https://github.com/doctrine/cache.git",
  158. "reference": "13e3381b25847283a91948d04640543941309727"
  159. },
  160. "dist": {
  161. "type": "zip",
  162. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  163. "reference": "13e3381b25847283a91948d04640543941309727",
  164. "shasum": ""
  165. },
  166. "require": {
  167. "php": "~7.1 || ^8.0"
  168. },
  169. "conflict": {
  170. "doctrine/common": ">2.2,<2.4"
  171. },
  172. "require-dev": {
  173. "alcaeus/mongo-php-adapter": "^1.1",
  174. "doctrine/coding-standard": "^6.0",
  175. "mongodb/mongodb": "^1.1",
  176. "phpunit/phpunit": "^7.0",
  177. "predis/predis": "~1.0"
  178. },
  179. "suggest": {
  180. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  181. },
  182. "type": "library",
  183. "extra": {
  184. "branch-alias": {
  185. "dev-master": "1.9.x-dev"
  186. }
  187. },
  188. "autoload": {
  189. "psr-4": {
  190. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  191. }
  192. },
  193. "notification-url": "https://packagist.org/downloads/",
  194. "license": [
  195. "MIT"
  196. ],
  197. "authors": [
  198. {
  199. "name": "Guilherme Blanco",
  200. "email": "guilhermeblanco@gmail.com"
  201. },
  202. {
  203. "name": "Roman Borschel",
  204. "email": "roman@code-factory.org"
  205. },
  206. {
  207. "name": "Benjamin Eberlei",
  208. "email": "kontakt@beberlei.de"
  209. },
  210. {
  211. "name": "Jonathan Wage",
  212. "email": "jonwage@gmail.com"
  213. },
  214. {
  215. "name": "Johannes Schmitt",
  216. "email": "schmittjoh@gmail.com"
  217. }
  218. ],
  219. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  220. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  221. "keywords": [
  222. "abstraction",
  223. "apcu",
  224. "cache",
  225. "caching",
  226. "couchdb",
  227. "memcached",
  228. "php",
  229. "redis",
  230. "xcache"
  231. ],
  232. "support": {
  233. "issues": "https://github.com/doctrine/cache/issues",
  234. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  235. },
  236. "funding": [
  237. {
  238. "url": "https://www.doctrine-project.org/sponsorship.html",
  239. "type": "custom"
  240. },
  241. {
  242. "url": "https://www.patreon.com/phpdoctrine",
  243. "type": "patreon"
  244. },
  245. {
  246. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  247. "type": "tidelift"
  248. }
  249. ],
  250. "time": "2020-07-07T18:54:01+00:00"
  251. },
  252. {
  253. "name": "doctrine/collections",
  254. "version": "1.6.7",
  255. "source": {
  256. "type": "git",
  257. "url": "https://github.com/doctrine/collections.git",
  258. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  259. },
  260. "dist": {
  261. "type": "zip",
  262. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  263. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  264. "shasum": ""
  265. },
  266. "require": {
  267. "php": "^7.1.3 || ^8.0"
  268. },
  269. "require-dev": {
  270. "doctrine/coding-standard": "^6.0",
  271. "phpstan/phpstan-shim": "^0.9.2",
  272. "phpunit/phpunit": "^7.0",
  273. "vimeo/psalm": "^3.8.1"
  274. },
  275. "type": "library",
  276. "autoload": {
  277. "psr-4": {
  278. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  279. }
  280. },
  281. "notification-url": "https://packagist.org/downloads/",
  282. "license": [
  283. "MIT"
  284. ],
  285. "authors": [
  286. {
  287. "name": "Guilherme Blanco",
  288. "email": "guilhermeblanco@gmail.com"
  289. },
  290. {
  291. "name": "Roman Borschel",
  292. "email": "roman@code-factory.org"
  293. },
  294. {
  295. "name": "Benjamin Eberlei",
  296. "email": "kontakt@beberlei.de"
  297. },
  298. {
  299. "name": "Jonathan Wage",
  300. "email": "jonwage@gmail.com"
  301. },
  302. {
  303. "name": "Johannes Schmitt",
  304. "email": "schmittjoh@gmail.com"
  305. }
  306. ],
  307. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  308. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  309. "keywords": [
  310. "array",
  311. "collections",
  312. "iterators",
  313. "php"
  314. ],
  315. "support": {
  316. "issues": "https://github.com/doctrine/collections/issues",
  317. "source": "https://github.com/doctrine/collections/tree/1.6.7"
  318. },
  319. "time": "2020-07-27T17:53:49+00:00"
  320. },
  321. {
  322. "name": "doctrine/common",
  323. "version": "3.1.2",
  324. "source": {
  325. "type": "git",
  326. "url": "https://github.com/doctrine/common.git",
  327. "reference": "a036d90c303f3163b5be8b8fde9b6755b2be4a3a"
  328. },
  329. "dist": {
  330. "type": "zip",
  331. "url": "https://api.github.com/repos/doctrine/common/zipball/a036d90c303f3163b5be8b8fde9b6755b2be4a3a",
  332. "reference": "a036d90c303f3163b5be8b8fde9b6755b2be4a3a",
  333. "shasum": ""
  334. },
  335. "require": {
  336. "doctrine/persistence": "^2.0",
  337. "php": "^7.1 || ^8.0"
  338. },
  339. "require-dev": {
  340. "doctrine/coding-standard": "^6.0 || ^8.0",
  341. "phpstan/phpstan": "^0.12",
  342. "phpstan/phpstan-phpunit": "^0.12",
  343. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  344. "squizlabs/php_codesniffer": "^3.0",
  345. "symfony/phpunit-bridge": "^4.0.5",
  346. "vimeo/psalm": "^4.4"
  347. },
  348. "type": "library",
  349. "autoload": {
  350. "psr-4": {
  351. "Doctrine\\Common\\": "lib/Doctrine/Common"
  352. }
  353. },
  354. "notification-url": "https://packagist.org/downloads/",
  355. "license": [
  356. "MIT"
  357. ],
  358. "authors": [
  359. {
  360. "name": "Guilherme Blanco",
  361. "email": "guilhermeblanco@gmail.com"
  362. },
  363. {
  364. "name": "Roman Borschel",
  365. "email": "roman@code-factory.org"
  366. },
  367. {
  368. "name": "Benjamin Eberlei",
  369. "email": "kontakt@beberlei.de"
  370. },
  371. {
  372. "name": "Jonathan Wage",
  373. "email": "jonwage@gmail.com"
  374. },
  375. {
  376. "name": "Johannes Schmitt",
  377. "email": "schmittjoh@gmail.com"
  378. },
  379. {
  380. "name": "Marco Pivetta",
  381. "email": "ocramius@gmail.com"
  382. }
  383. ],
  384. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  385. "homepage": "https://www.doctrine-project.org/projects/common.html",
  386. "keywords": [
  387. "common",
  388. "doctrine",
  389. "php"
  390. ],
  391. "support": {
  392. "issues": "https://github.com/doctrine/common/issues",
  393. "source": "https://github.com/doctrine/common/tree/3.1.2"
  394. },
  395. "funding": [
  396. {
  397. "url": "https://www.doctrine-project.org/sponsorship.html",
  398. "type": "custom"
  399. },
  400. {
  401. "url": "https://www.patreon.com/phpdoctrine",
  402. "type": "patreon"
  403. },
  404. {
  405. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  406. "type": "tidelift"
  407. }
  408. ],
  409. "time": "2021-02-10T20:18:51+00:00"
  410. },
  411. {
  412. "name": "doctrine/dbal",
  413. "version": "2.13.1",
  414. "source": {
  415. "type": "git",
  416. "url": "https://github.com/doctrine/dbal.git",
  417. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9"
  418. },
  419. "dist": {
  420. "type": "zip",
  421. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c800380457948e65bbd30ba92cc17cda108bf8c9",
  422. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9",
  423. "shasum": ""
  424. },
  425. "require": {
  426. "doctrine/cache": "^1.0",
  427. "doctrine/deprecations": "^0.5.3",
  428. "doctrine/event-manager": "^1.0",
  429. "ext-pdo": "*",
  430. "php": "^7.1 || ^8"
  431. },
  432. "require-dev": {
  433. "doctrine/coding-standard": "8.2.0",
  434. "jetbrains/phpstorm-stubs": "2020.2",
  435. "phpstan/phpstan": "0.12.81",
  436. "phpunit/phpunit": "^7.5.20|^8.5|9.5.0",
  437. "squizlabs/php_codesniffer": "3.6.0",
  438. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  439. "vimeo/psalm": "4.6.4"
  440. },
  441. "suggest": {
  442. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  443. },
  444. "bin": [
  445. "bin/doctrine-dbal"
  446. ],
  447. "type": "library",
  448. "autoload": {
  449. "psr-4": {
  450. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  451. }
  452. },
  453. "notification-url": "https://packagist.org/downloads/",
  454. "license": [
  455. "MIT"
  456. ],
  457. "authors": [
  458. {
  459. "name": "Guilherme Blanco",
  460. "email": "guilhermeblanco@gmail.com"
  461. },
  462. {
  463. "name": "Roman Borschel",
  464. "email": "roman@code-factory.org"
  465. },
  466. {
  467. "name": "Benjamin Eberlei",
  468. "email": "kontakt@beberlei.de"
  469. },
  470. {
  471. "name": "Jonathan Wage",
  472. "email": "jonwage@gmail.com"
  473. }
  474. ],
  475. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  476. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  477. "keywords": [
  478. "abstraction",
  479. "database",
  480. "db2",
  481. "dbal",
  482. "mariadb",
  483. "mssql",
  484. "mysql",
  485. "oci8",
  486. "oracle",
  487. "pdo",
  488. "pgsql",
  489. "postgresql",
  490. "queryobject",
  491. "sasql",
  492. "sql",
  493. "sqlanywhere",
  494. "sqlite",
  495. "sqlserver",
  496. "sqlsrv"
  497. ],
  498. "support": {
  499. "issues": "https://github.com/doctrine/dbal/issues",
  500. "source": "https://github.com/doctrine/dbal/tree/2.13.1"
  501. },
  502. "funding": [
  503. {
  504. "url": "https://www.doctrine-project.org/sponsorship.html",
  505. "type": "custom"
  506. },
  507. {
  508. "url": "https://www.patreon.com/phpdoctrine",
  509. "type": "patreon"
  510. },
  511. {
  512. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  513. "type": "tidelift"
  514. }
  515. ],
  516. "time": "2021-04-17T17:30:19+00:00"
  517. },
  518. {
  519. "name": "doctrine/deprecations",
  520. "version": "v0.5.3",
  521. "source": {
  522. "type": "git",
  523. "url": "https://github.com/doctrine/deprecations.git",
  524. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  525. },
  526. "dist": {
  527. "type": "zip",
  528. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  529. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  530. "shasum": ""
  531. },
  532. "require": {
  533. "php": "^7.1|^8.0"
  534. },
  535. "require-dev": {
  536. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  537. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  538. "psr/log": "^1.0"
  539. },
  540. "suggest": {
  541. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  542. },
  543. "type": "library",
  544. "autoload": {
  545. "psr-4": {
  546. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  547. }
  548. },
  549. "notification-url": "https://packagist.org/downloads/",
  550. "license": [
  551. "MIT"
  552. ],
  553. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  554. "homepage": "https://www.doctrine-project.org/",
  555. "support": {
  556. "issues": "https://github.com/doctrine/deprecations/issues",
  557. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  558. },
  559. "time": "2021-03-21T12:59:47+00:00"
  560. },
  561. {
  562. "name": "doctrine/doctrine-bundle",
  563. "version": "2.3.1",
  564. "source": {
  565. "type": "git",
  566. "url": "https://github.com/doctrine/DoctrineBundle.git",
  567. "reference": "a08bc3b4d8567cdff05e89b272ba1e06e9d71c21"
  568. },
  569. "dist": {
  570. "type": "zip",
  571. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/a08bc3b4d8567cdff05e89b272ba1e06e9d71c21",
  572. "reference": "a08bc3b4d8567cdff05e89b272ba1e06e9d71c21",
  573. "shasum": ""
  574. },
  575. "require": {
  576. "doctrine/dbal": "^2.9.0|^3.0",
  577. "doctrine/persistence": "^1.3.3|^2.0",
  578. "doctrine/sql-formatter": "^1.0.1",
  579. "php": "^7.1 || ^8.0",
  580. "symfony/cache": "^4.3.3|^5.0",
  581. "symfony/config": "^4.3.3|^5.0",
  582. "symfony/console": "^3.4.30|^4.3.3|^5.0",
  583. "symfony/dependency-injection": "^4.3.3|^5.0",
  584. "symfony/doctrine-bridge": "^4.4.7|^5.0",
  585. "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0",
  586. "symfony/service-contracts": "^1.1.1|^2.0"
  587. },
  588. "conflict": {
  589. "doctrine/orm": "<2.6",
  590. "twig/twig": "<1.34|>=2.0,<2.4"
  591. },
  592. "require-dev": {
  593. "doctrine/coding-standard": "^8.0",
  594. "doctrine/orm": "^2.6",
  595. "friendsofphp/proxy-manager-lts": "^1.0",
  596. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.3",
  597. "psalm/plugin-phpunit": "^0.15.1",
  598. "psalm/plugin-symfony": "^2.2.4",
  599. "symfony/phpunit-bridge": "^5.2",
  600. "symfony/property-info": "^4.3.3|^5.0",
  601. "symfony/proxy-manager-bridge": "^3.4|^4.3.3|^5.0",
  602. "symfony/security-bundle": "^4.4|5.0",
  603. "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0",
  604. "symfony/validator": "^3.4.30|^4.3.3|^5.0",
  605. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0",
  606. "symfony/yaml": "^3.4.30|^4.3.3|^5.0",
  607. "twig/twig": "^1.34|^2.12|^3.0",
  608. "vimeo/psalm": "^4.7"
  609. },
  610. "suggest": {
  611. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  612. "ext-pdo": "*",
  613. "symfony/web-profiler-bundle": "To use the data collector."
  614. },
  615. "type": "symfony-bundle",
  616. "autoload": {
  617. "psr-4": {
  618. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  619. }
  620. },
  621. "notification-url": "https://packagist.org/downloads/",
  622. "license": [
  623. "MIT"
  624. ],
  625. "authors": [
  626. {
  627. "name": "Fabien Potencier",
  628. "email": "fabien@symfony.com"
  629. },
  630. {
  631. "name": "Benjamin Eberlei",
  632. "email": "kontakt@beberlei.de"
  633. },
  634. {
  635. "name": "Symfony Community",
  636. "homepage": "http://symfony.com/contributors"
  637. },
  638. {
  639. "name": "Doctrine Project",
  640. "homepage": "http://www.doctrine-project.org/"
  641. }
  642. ],
  643. "description": "Symfony DoctrineBundle",
  644. "homepage": "http://www.doctrine-project.org",
  645. "keywords": [
  646. "database",
  647. "dbal",
  648. "orm",
  649. "persistence"
  650. ],
  651. "support": {
  652. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  653. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.3.1"
  654. },
  655. "funding": [
  656. {
  657. "url": "https://www.doctrine-project.org/sponsorship.html",
  658. "type": "custom"
  659. },
  660. {
  661. "url": "https://www.patreon.com/phpdoctrine",
  662. "type": "patreon"
  663. },
  664. {
  665. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  666. "type": "tidelift"
  667. }
  668. ],
  669. "time": "2021-04-05T14:21:02+00:00"
  670. },
  671. {
  672. "name": "doctrine/doctrine-migrations-bundle",
  673. "version": "3.1.1",
  674. "source": {
  675. "type": "git",
  676. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  677. "reference": "91f0a5e2356029575f3038432cc188b12f9d5da5"
  678. },
  679. "dist": {
  680. "type": "zip",
  681. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/91f0a5e2356029575f3038432cc188b12f9d5da5",
  682. "reference": "91f0a5e2356029575f3038432cc188b12f9d5da5",
  683. "shasum": ""
  684. },
  685. "require": {
  686. "doctrine/doctrine-bundle": "~1.0|~2.0",
  687. "doctrine/migrations": "^3.1",
  688. "php": "^7.2|^8.0",
  689. "symfony/framework-bundle": "~3.4|~4.0|~5.0"
  690. },
  691. "require-dev": {
  692. "doctrine/coding-standard": "^8.0",
  693. "doctrine/orm": "^2.6",
  694. "doctrine/persistence": "^1.3||^2.0",
  695. "phpstan/phpstan": "^0.12",
  696. "phpstan/phpstan-deprecation-rules": "^0.12",
  697. "phpstan/phpstan-phpunit": "^0.12",
  698. "phpstan/phpstan-strict-rules": "^0.12",
  699. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  700. },
  701. "type": "symfony-bundle",
  702. "autoload": {
  703. "psr-4": {
  704. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  705. },
  706. "exclude-from-classmap": [
  707. "/Tests/"
  708. ]
  709. },
  710. "notification-url": "https://packagist.org/downloads/",
  711. "license": [
  712. "MIT"
  713. ],
  714. "authors": [
  715. {
  716. "name": "Fabien Potencier",
  717. "email": "fabien@symfony.com"
  718. },
  719. {
  720. "name": "Doctrine Project",
  721. "homepage": "http://www.doctrine-project.org"
  722. },
  723. {
  724. "name": "Symfony Community",
  725. "homepage": "http://symfony.com/contributors"
  726. }
  727. ],
  728. "description": "Symfony DoctrineMigrationsBundle",
  729. "homepage": "https://www.doctrine-project.org",
  730. "keywords": [
  731. "dbal",
  732. "migrations",
  733. "schema"
  734. ],
  735. "support": {
  736. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  737. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.1.1"
  738. },
  739. "funding": [
  740. {
  741. "url": "https://www.doctrine-project.org/sponsorship.html",
  742. "type": "custom"
  743. },
  744. {
  745. "url": "https://www.patreon.com/phpdoctrine",
  746. "type": "patreon"
  747. },
  748. {
  749. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  750. "type": "tidelift"
  751. }
  752. ],
  753. "time": "2021-04-10T16:48:53+00:00"
  754. },
  755. {
  756. "name": "doctrine/event-manager",
  757. "version": "1.1.1",
  758. "source": {
  759. "type": "git",
  760. "url": "https://github.com/doctrine/event-manager.git",
  761. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  762. },
  763. "dist": {
  764. "type": "zip",
  765. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  766. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  767. "shasum": ""
  768. },
  769. "require": {
  770. "php": "^7.1 || ^8.0"
  771. },
  772. "conflict": {
  773. "doctrine/common": "<2.9@dev"
  774. },
  775. "require-dev": {
  776. "doctrine/coding-standard": "^6.0",
  777. "phpunit/phpunit": "^7.0"
  778. },
  779. "type": "library",
  780. "extra": {
  781. "branch-alias": {
  782. "dev-master": "1.0.x-dev"
  783. }
  784. },
  785. "autoload": {
  786. "psr-4": {
  787. "Doctrine\\Common\\": "lib/Doctrine/Common"
  788. }
  789. },
  790. "notification-url": "https://packagist.org/downloads/",
  791. "license": [
  792. "MIT"
  793. ],
  794. "authors": [
  795. {
  796. "name": "Guilherme Blanco",
  797. "email": "guilhermeblanco@gmail.com"
  798. },
  799. {
  800. "name": "Roman Borschel",
  801. "email": "roman@code-factory.org"
  802. },
  803. {
  804. "name": "Benjamin Eberlei",
  805. "email": "kontakt@beberlei.de"
  806. },
  807. {
  808. "name": "Jonathan Wage",
  809. "email": "jonwage@gmail.com"
  810. },
  811. {
  812. "name": "Johannes Schmitt",
  813. "email": "schmittjoh@gmail.com"
  814. },
  815. {
  816. "name": "Marco Pivetta",
  817. "email": "ocramius@gmail.com"
  818. }
  819. ],
  820. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  821. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  822. "keywords": [
  823. "event",
  824. "event dispatcher",
  825. "event manager",
  826. "event system",
  827. "events"
  828. ],
  829. "support": {
  830. "issues": "https://github.com/doctrine/event-manager/issues",
  831. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  832. },
  833. "funding": [
  834. {
  835. "url": "https://www.doctrine-project.org/sponsorship.html",
  836. "type": "custom"
  837. },
  838. {
  839. "url": "https://www.patreon.com/phpdoctrine",
  840. "type": "patreon"
  841. },
  842. {
  843. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  844. "type": "tidelift"
  845. }
  846. ],
  847. "time": "2020-05-29T18:28:51+00:00"
  848. },
  849. {
  850. "name": "doctrine/inflector",
  851. "version": "2.0.3",
  852. "source": {
  853. "type": "git",
  854. "url": "https://github.com/doctrine/inflector.git",
  855. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  856. },
  857. "dist": {
  858. "type": "zip",
  859. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  860. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  861. "shasum": ""
  862. },
  863. "require": {
  864. "php": "^7.2 || ^8.0"
  865. },
  866. "require-dev": {
  867. "doctrine/coding-standard": "^7.0",
  868. "phpstan/phpstan": "^0.11",
  869. "phpstan/phpstan-phpunit": "^0.11",
  870. "phpstan/phpstan-strict-rules": "^0.11",
  871. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  872. },
  873. "type": "library",
  874. "extra": {
  875. "branch-alias": {
  876. "dev-master": "2.0.x-dev"
  877. }
  878. },
  879. "autoload": {
  880. "psr-4": {
  881. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  882. }
  883. },
  884. "notification-url": "https://packagist.org/downloads/",
  885. "license": [
  886. "MIT"
  887. ],
  888. "authors": [
  889. {
  890. "name": "Guilherme Blanco",
  891. "email": "guilhermeblanco@gmail.com"
  892. },
  893. {
  894. "name": "Roman Borschel",
  895. "email": "roman@code-factory.org"
  896. },
  897. {
  898. "name": "Benjamin Eberlei",
  899. "email": "kontakt@beberlei.de"
  900. },
  901. {
  902. "name": "Jonathan Wage",
  903. "email": "jonwage@gmail.com"
  904. },
  905. {
  906. "name": "Johannes Schmitt",
  907. "email": "schmittjoh@gmail.com"
  908. }
  909. ],
  910. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  911. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  912. "keywords": [
  913. "inflection",
  914. "inflector",
  915. "lowercase",
  916. "manipulation",
  917. "php",
  918. "plural",
  919. "singular",
  920. "strings",
  921. "uppercase",
  922. "words"
  923. ],
  924. "support": {
  925. "issues": "https://github.com/doctrine/inflector/issues",
  926. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  927. },
  928. "funding": [
  929. {
  930. "url": "https://www.doctrine-project.org/sponsorship.html",
  931. "type": "custom"
  932. },
  933. {
  934. "url": "https://www.patreon.com/phpdoctrine",
  935. "type": "patreon"
  936. },
  937. {
  938. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  939. "type": "tidelift"
  940. }
  941. ],
  942. "time": "2020-05-29T15:13:26+00:00"
  943. },
  944. {
  945. "name": "doctrine/instantiator",
  946. "version": "1.4.0",
  947. "source": {
  948. "type": "git",
  949. "url": "https://github.com/doctrine/instantiator.git",
  950. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  951. },
  952. "dist": {
  953. "type": "zip",
  954. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  955. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  956. "shasum": ""
  957. },
  958. "require": {
  959. "php": "^7.1 || ^8.0"
  960. },
  961. "require-dev": {
  962. "doctrine/coding-standard": "^8.0",
  963. "ext-pdo": "*",
  964. "ext-phar": "*",
  965. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  966. "phpstan/phpstan": "^0.12",
  967. "phpstan/phpstan-phpunit": "^0.12",
  968. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  969. },
  970. "type": "library",
  971. "autoload": {
  972. "psr-4": {
  973. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  974. }
  975. },
  976. "notification-url": "https://packagist.org/downloads/",
  977. "license": [
  978. "MIT"
  979. ],
  980. "authors": [
  981. {
  982. "name": "Marco Pivetta",
  983. "email": "ocramius@gmail.com",
  984. "homepage": "https://ocramius.github.io/"
  985. }
  986. ],
  987. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  988. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  989. "keywords": [
  990. "constructor",
  991. "instantiate"
  992. ],
  993. "support": {
  994. "issues": "https://github.com/doctrine/instantiator/issues",
  995. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  996. },
  997. "funding": [
  998. {
  999. "url": "https://www.doctrine-project.org/sponsorship.html",
  1000. "type": "custom"
  1001. },
  1002. {
  1003. "url": "https://www.patreon.com/phpdoctrine",
  1004. "type": "patreon"
  1005. },
  1006. {
  1007. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1008. "type": "tidelift"
  1009. }
  1010. ],
  1011. "time": "2020-11-10T18:47:58+00:00"
  1012. },
  1013. {
  1014. "name": "doctrine/lexer",
  1015. "version": "1.2.1",
  1016. "source": {
  1017. "type": "git",
  1018. "url": "https://github.com/doctrine/lexer.git",
  1019. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1020. },
  1021. "dist": {
  1022. "type": "zip",
  1023. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1024. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1025. "shasum": ""
  1026. },
  1027. "require": {
  1028. "php": "^7.2 || ^8.0"
  1029. },
  1030. "require-dev": {
  1031. "doctrine/coding-standard": "^6.0",
  1032. "phpstan/phpstan": "^0.11.8",
  1033. "phpunit/phpunit": "^8.2"
  1034. },
  1035. "type": "library",
  1036. "extra": {
  1037. "branch-alias": {
  1038. "dev-master": "1.2.x-dev"
  1039. }
  1040. },
  1041. "autoload": {
  1042. "psr-4": {
  1043. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1044. }
  1045. },
  1046. "notification-url": "https://packagist.org/downloads/",
  1047. "license": [
  1048. "MIT"
  1049. ],
  1050. "authors": [
  1051. {
  1052. "name": "Guilherme Blanco",
  1053. "email": "guilhermeblanco@gmail.com"
  1054. },
  1055. {
  1056. "name": "Roman Borschel",
  1057. "email": "roman@code-factory.org"
  1058. },
  1059. {
  1060. "name": "Johannes Schmitt",
  1061. "email": "schmittjoh@gmail.com"
  1062. }
  1063. ],
  1064. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1065. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1066. "keywords": [
  1067. "annotations",
  1068. "docblock",
  1069. "lexer",
  1070. "parser",
  1071. "php"
  1072. ],
  1073. "support": {
  1074. "issues": "https://github.com/doctrine/lexer/issues",
  1075. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1076. },
  1077. "funding": [
  1078. {
  1079. "url": "https://www.doctrine-project.org/sponsorship.html",
  1080. "type": "custom"
  1081. },
  1082. {
  1083. "url": "https://www.patreon.com/phpdoctrine",
  1084. "type": "patreon"
  1085. },
  1086. {
  1087. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1088. "type": "tidelift"
  1089. }
  1090. ],
  1091. "time": "2020-05-25T17:44:05+00:00"
  1092. },
  1093. {
  1094. "name": "doctrine/migrations",
  1095. "version": "3.1.1",
  1096. "source": {
  1097. "type": "git",
  1098. "url": "https://github.com/doctrine/migrations.git",
  1099. "reference": "e543224170a61ffe49fcadb8e7339c345df1baa2"
  1100. },
  1101. "dist": {
  1102. "type": "zip",
  1103. "url": "https://api.github.com/repos/doctrine/migrations/zipball/e543224170a61ffe49fcadb8e7339c345df1baa2",
  1104. "reference": "e543224170a61ffe49fcadb8e7339c345df1baa2",
  1105. "shasum": ""
  1106. },
  1107. "require": {
  1108. "composer/package-versions-deprecated": "^1.8",
  1109. "doctrine/dbal": "^2.10",
  1110. "doctrine/event-manager": "^1.0",
  1111. "friendsofphp/proxy-manager-lts": "^1.0",
  1112. "php": "^7.2 || ^8.0",
  1113. "psr/log": "^1.1.3",
  1114. "symfony/console": "^3.4 || ^4.4.16 || ^5.0",
  1115. "symfony/stopwatch": "^3.4 || ^4.0 || ^5.0"
  1116. },
  1117. "require-dev": {
  1118. "doctrine/coding-standard": "^8.0",
  1119. "doctrine/orm": "^2.6",
  1120. "doctrine/persistence": "^1.3 || ^2.0",
  1121. "doctrine/sql-formatter": "^1.0",
  1122. "ergebnis/composer-normalize": "^2.9",
  1123. "ext-pdo_sqlite": "*",
  1124. "phpstan/phpstan": "^0.12",
  1125. "phpstan/phpstan-deprecation-rules": "^0.12",
  1126. "phpstan/phpstan-phpunit": "^0.12",
  1127. "phpstan/phpstan-strict-rules": "^0.12",
  1128. "phpstan/phpstan-symfony": "^0.12",
  1129. "phpunit/phpunit": "^8.5 || ^9.4",
  1130. "symfony/process": "^3.4 || ^4.0 || ^5.0",
  1131. "symfony/yaml": "^3.4 || ^4.0 || ^5.0"
  1132. },
  1133. "suggest": {
  1134. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1135. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1136. },
  1137. "bin": [
  1138. "bin/doctrine-migrations"
  1139. ],
  1140. "type": "library",
  1141. "extra": {
  1142. "branch-alias": {
  1143. "dev-master": "3.0.x-dev"
  1144. },
  1145. "composer-normalize": {
  1146. "indent-size": 4,
  1147. "indent-style": "space"
  1148. }
  1149. },
  1150. "autoload": {
  1151. "psr-4": {
  1152. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1153. }
  1154. },
  1155. "notification-url": "https://packagist.org/downloads/",
  1156. "license": [
  1157. "MIT"
  1158. ],
  1159. "authors": [
  1160. {
  1161. "name": "Benjamin Eberlei",
  1162. "email": "kontakt@beberlei.de"
  1163. },
  1164. {
  1165. "name": "Jonathan Wage",
  1166. "email": "jonwage@gmail.com"
  1167. },
  1168. {
  1169. "name": "Michael Simonson",
  1170. "email": "contact@mikesimonson.com"
  1171. }
  1172. ],
  1173. "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.",
  1174. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1175. "keywords": [
  1176. "database",
  1177. "dbal",
  1178. "migrations"
  1179. ],
  1180. "support": {
  1181. "issues": "https://github.com/doctrine/migrations/issues",
  1182. "source": "https://github.com/doctrine/migrations/tree/3.1.1"
  1183. },
  1184. "funding": [
  1185. {
  1186. "url": "https://www.doctrine-project.org/sponsorship.html",
  1187. "type": "custom"
  1188. },
  1189. {
  1190. "url": "https://www.patreon.com/phpdoctrine",
  1191. "type": "patreon"
  1192. },
  1193. {
  1194. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1195. "type": "tidelift"
  1196. }
  1197. ],
  1198. "time": "2021-03-14T11:10:58+00:00"
  1199. },
  1200. {
  1201. "name": "doctrine/orm",
  1202. "version": "2.8.4",
  1203. "source": {
  1204. "type": "git",
  1205. "url": "https://github.com/doctrine/orm.git",
  1206. "reference": "a588555ecd837b8d7e89355d9a13902e54d529c7"
  1207. },
  1208. "dist": {
  1209. "type": "zip",
  1210. "url": "https://api.github.com/repos/doctrine/orm/zipball/a588555ecd837b8d7e89355d9a13902e54d529c7",
  1211. "reference": "a588555ecd837b8d7e89355d9a13902e54d529c7",
  1212. "shasum": ""
  1213. },
  1214. "require": {
  1215. "composer/package-versions-deprecated": "^1.8",
  1216. "doctrine/annotations": "^1.11.1",
  1217. "doctrine/cache": "^1.9.1",
  1218. "doctrine/collections": "^1.5",
  1219. "doctrine/common": "^3.0.3",
  1220. "doctrine/dbal": "^2.10.0",
  1221. "doctrine/event-manager": "^1.1",
  1222. "doctrine/inflector": "^1.4|^2.0",
  1223. "doctrine/instantiator": "^1.3",
  1224. "doctrine/lexer": "^1.0",
  1225. "doctrine/persistence": "^2.0",
  1226. "ext-pdo": "*",
  1227. "php": "^7.2|^8.0",
  1228. "symfony/console": "^3.0|^4.0|^5.0"
  1229. },
  1230. "require-dev": {
  1231. "doctrine/coding-standard": "^8.0",
  1232. "phpstan/phpstan": "^0.12.18",
  1233. "phpunit/phpunit": "^8.5|^9.4",
  1234. "symfony/yaml": "^3.4|^4.0|^5.0",
  1235. "vimeo/psalm": "4.1.1"
  1236. },
  1237. "suggest": {
  1238. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1239. },
  1240. "bin": [
  1241. "bin/doctrine"
  1242. ],
  1243. "type": "library",
  1244. "autoload": {
  1245. "psr-4": {
  1246. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1247. }
  1248. },
  1249. "notification-url": "https://packagist.org/downloads/",
  1250. "license": [
  1251. "MIT"
  1252. ],
  1253. "authors": [
  1254. {
  1255. "name": "Guilherme Blanco",
  1256. "email": "guilhermeblanco@gmail.com"
  1257. },
  1258. {
  1259. "name": "Roman Borschel",
  1260. "email": "roman@code-factory.org"
  1261. },
  1262. {
  1263. "name": "Benjamin Eberlei",
  1264. "email": "kontakt@beberlei.de"
  1265. },
  1266. {
  1267. "name": "Jonathan Wage",
  1268. "email": "jonwage@gmail.com"
  1269. },
  1270. {
  1271. "name": "Marco Pivetta",
  1272. "email": "ocramius@gmail.com"
  1273. }
  1274. ],
  1275. "description": "Object-Relational-Mapper for PHP",
  1276. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1277. "keywords": [
  1278. "database",
  1279. "orm"
  1280. ],
  1281. "support": {
  1282. "issues": "https://github.com/doctrine/orm/issues",
  1283. "source": "https://github.com/doctrine/orm/tree/2.8.4"
  1284. },
  1285. "time": "2021-04-05T18:38:36+00:00"
  1286. },
  1287. {
  1288. "name": "doctrine/persistence",
  1289. "version": "2.1.0",
  1290. "source": {
  1291. "type": "git",
  1292. "url": "https://github.com/doctrine/persistence.git",
  1293. "reference": "9899c16934053880876b920a3b8b02ed2337ac1d"
  1294. },
  1295. "dist": {
  1296. "type": "zip",
  1297. "url": "https://api.github.com/repos/doctrine/persistence/zipball/9899c16934053880876b920a3b8b02ed2337ac1d",
  1298. "reference": "9899c16934053880876b920a3b8b02ed2337ac1d",
  1299. "shasum": ""
  1300. },
  1301. "require": {
  1302. "doctrine/annotations": "^1.0",
  1303. "doctrine/cache": "^1.0",
  1304. "doctrine/collections": "^1.0",
  1305. "doctrine/event-manager": "^1.0",
  1306. "php": "^7.1 || ^8.0"
  1307. },
  1308. "conflict": {
  1309. "doctrine/common": "<2.10@dev"
  1310. },
  1311. "require-dev": {
  1312. "composer/package-versions-deprecated": "^1.11",
  1313. "doctrine/coding-standard": "^6.0 || ^8.0",
  1314. "doctrine/common": "^3.0",
  1315. "phpstan/phpstan": "^0.12",
  1316. "phpunit/phpunit": "^7.5.20 || ^8.0 || ^9.0",
  1317. "vimeo/psalm": "^3.11"
  1318. },
  1319. "type": "library",
  1320. "autoload": {
  1321. "psr-4": {
  1322. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1323. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1324. }
  1325. },
  1326. "notification-url": "https://packagist.org/downloads/",
  1327. "license": [
  1328. "MIT"
  1329. ],
  1330. "authors": [
  1331. {
  1332. "name": "Guilherme Blanco",
  1333. "email": "guilhermeblanco@gmail.com"
  1334. },
  1335. {
  1336. "name": "Roman Borschel",
  1337. "email": "roman@code-factory.org"
  1338. },
  1339. {
  1340. "name": "Benjamin Eberlei",
  1341. "email": "kontakt@beberlei.de"
  1342. },
  1343. {
  1344. "name": "Jonathan Wage",
  1345. "email": "jonwage@gmail.com"
  1346. },
  1347. {
  1348. "name": "Johannes Schmitt",
  1349. "email": "schmittjoh@gmail.com"
  1350. },
  1351. {
  1352. "name": "Marco Pivetta",
  1353. "email": "ocramius@gmail.com"
  1354. }
  1355. ],
  1356. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1357. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1358. "keywords": [
  1359. "mapper",
  1360. "object",
  1361. "odm",
  1362. "orm",
  1363. "persistence"
  1364. ],
  1365. "support": {
  1366. "issues": "https://github.com/doctrine/persistence/issues",
  1367. "source": "https://github.com/doctrine/persistence/tree/2.1.0"
  1368. },
  1369. "time": "2020-10-24T22:13:54+00:00"
  1370. },
  1371. {
  1372. "name": "doctrine/sql-formatter",
  1373. "version": "1.1.1",
  1374. "source": {
  1375. "type": "git",
  1376. "url": "https://github.com/doctrine/sql-formatter.git",
  1377. "reference": "56070bebac6e77230ed7d306ad13528e60732871"
  1378. },
  1379. "dist": {
  1380. "type": "zip",
  1381. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/56070bebac6e77230ed7d306ad13528e60732871",
  1382. "reference": "56070bebac6e77230ed7d306ad13528e60732871",
  1383. "shasum": ""
  1384. },
  1385. "require": {
  1386. "php": "^7.1 || ^8.0"
  1387. },
  1388. "require-dev": {
  1389. "bamarni/composer-bin-plugin": "^1.4"
  1390. },
  1391. "bin": [
  1392. "bin/sql-formatter"
  1393. ],
  1394. "type": "library",
  1395. "extra": {
  1396. "branch-alias": {
  1397. "dev-master": "1.x-dev"
  1398. }
  1399. },
  1400. "autoload": {
  1401. "psr-4": {
  1402. "Doctrine\\SqlFormatter\\": "src"
  1403. }
  1404. },
  1405. "notification-url": "https://packagist.org/downloads/",
  1406. "license": [
  1407. "MIT"
  1408. ],
  1409. "authors": [
  1410. {
  1411. "name": "Jeremy Dorn",
  1412. "email": "jeremy@jeremydorn.com",
  1413. "homepage": "http://jeremydorn.com/"
  1414. }
  1415. ],
  1416. "description": "a PHP SQL highlighting library",
  1417. "homepage": "https://github.com/doctrine/sql-formatter/",
  1418. "keywords": [
  1419. "highlight",
  1420. "sql"
  1421. ],
  1422. "support": {
  1423. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1424. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.x"
  1425. },
  1426. "time": "2020-07-30T16:57:33+00:00"
  1427. },
  1428. {
  1429. "name": "egulias/email-validator",
  1430. "version": "3.1.1",
  1431. "source": {
  1432. "type": "git",
  1433. "url": "https://github.com/egulias/EmailValidator.git",
  1434. "reference": "c81f18a3efb941d8c4d2e025f6183b5c6d697307"
  1435. },
  1436. "dist": {
  1437. "type": "zip",
  1438. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/c81f18a3efb941d8c4d2e025f6183b5c6d697307",
  1439. "reference": "c81f18a3efb941d8c4d2e025f6183b5c6d697307",
  1440. "shasum": ""
  1441. },
  1442. "require": {
  1443. "doctrine/lexer": "^1.2",
  1444. "php": ">=7.2",
  1445. "symfony/polyfill-intl-idn": "^1.15"
  1446. },
  1447. "require-dev": {
  1448. "php-coveralls/php-coveralls": "^2.2",
  1449. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1450. "vimeo/psalm": "^4"
  1451. },
  1452. "suggest": {
  1453. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1454. },
  1455. "type": "library",
  1456. "extra": {
  1457. "branch-alias": {
  1458. "dev-master": "3.0.x-dev"
  1459. }
  1460. },
  1461. "autoload": {
  1462. "psr-4": {
  1463. "Egulias\\EmailValidator\\": "src"
  1464. }
  1465. },
  1466. "notification-url": "https://packagist.org/downloads/",
  1467. "license": [
  1468. "MIT"
  1469. ],
  1470. "authors": [
  1471. {
  1472. "name": "Eduardo Gulias Davis"
  1473. }
  1474. ],
  1475. "description": "A library for validating emails against several RFCs",
  1476. "homepage": "https://github.com/egulias/EmailValidator",
  1477. "keywords": [
  1478. "email",
  1479. "emailvalidation",
  1480. "emailvalidator",
  1481. "validation",
  1482. "validator"
  1483. ],
  1484. "support": {
  1485. "issues": "https://github.com/egulias/EmailValidator/issues",
  1486. "source": "https://github.com/egulias/EmailValidator/tree/3.1.1"
  1487. },
  1488. "funding": [
  1489. {
  1490. "url": "https://github.com/egulias",
  1491. "type": "github"
  1492. }
  1493. ],
  1494. "time": "2021-04-01T18:37:14+00:00"
  1495. },
  1496. {
  1497. "name": "firebase/php-jwt",
  1498. "version": "v5.2.1",
  1499. "source": {
  1500. "type": "git",
  1501. "url": "https://github.com/firebase/php-jwt.git",
  1502. "reference": "f42c9110abe98dd6cfe9053c49bc86acc70b2d23"
  1503. },
  1504. "dist": {
  1505. "type": "zip",
  1506. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/f42c9110abe98dd6cfe9053c49bc86acc70b2d23",
  1507. "reference": "f42c9110abe98dd6cfe9053c49bc86acc70b2d23",
  1508. "shasum": ""
  1509. },
  1510. "require": {
  1511. "php": ">=5.3.0"
  1512. },
  1513. "require-dev": {
  1514. "phpunit/phpunit": ">=4.8 <=9"
  1515. },
  1516. "type": "library",
  1517. "autoload": {
  1518. "psr-4": {
  1519. "Firebase\\JWT\\": "src"
  1520. }
  1521. },
  1522. "notification-url": "https://packagist.org/downloads/",
  1523. "license": [
  1524. "BSD-3-Clause"
  1525. ],
  1526. "authors": [
  1527. {
  1528. "name": "Neuman Vong",
  1529. "email": "neuman+pear@twilio.com",
  1530. "role": "Developer"
  1531. },
  1532. {
  1533. "name": "Anant Narayanan",
  1534. "email": "anant@php.net",
  1535. "role": "Developer"
  1536. }
  1537. ],
  1538. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1539. "homepage": "https://github.com/firebase/php-jwt",
  1540. "keywords": [
  1541. "jwt",
  1542. "php"
  1543. ],
  1544. "support": {
  1545. "issues": "https://github.com/firebase/php-jwt/issues",
  1546. "source": "https://github.com/firebase/php-jwt/tree/v5.2.1"
  1547. },
  1548. "time": "2021-02-12T00:02:00+00:00"
  1549. },
  1550. {
  1551. "name": "friendsofphp/proxy-manager-lts",
  1552. "version": "v1.0.3",
  1553. "source": {
  1554. "type": "git",
  1555. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1556. "reference": "121af47c9aee9c03031bdeca3fac0540f59aa5c3"
  1557. },
  1558. "dist": {
  1559. "type": "zip",
  1560. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/121af47c9aee9c03031bdeca3fac0540f59aa5c3",
  1561. "reference": "121af47c9aee9c03031bdeca3fac0540f59aa5c3",
  1562. "shasum": ""
  1563. },
  1564. "require": {
  1565. "laminas/laminas-code": "~3.4.1|^4.0",
  1566. "php": ">=7.1",
  1567. "symfony/filesystem": "^4.4.17|^5.0"
  1568. },
  1569. "conflict": {
  1570. "laminas/laminas-stdlib": "<3.2.1",
  1571. "zendframework/zend-stdlib": "<3.2.1"
  1572. },
  1573. "replace": {
  1574. "ocramius/proxy-manager": "^2.1"
  1575. },
  1576. "require-dev": {
  1577. "ext-phar": "*",
  1578. "symfony/phpunit-bridge": "^5.2"
  1579. },
  1580. "type": "library",
  1581. "extra": {
  1582. "thanks": {
  1583. "name": "ocramius/proxy-manager",
  1584. "url": "https://github.com/Ocramius/ProxyManager"
  1585. }
  1586. },
  1587. "autoload": {
  1588. "psr-4": {
  1589. "ProxyManager\\": "src/ProxyManager"
  1590. }
  1591. },
  1592. "notification-url": "https://packagist.org/downloads/",
  1593. "license": [
  1594. "MIT"
  1595. ],
  1596. "authors": [
  1597. {
  1598. "name": "Marco Pivetta",
  1599. "email": "ocramius@gmail.com",
  1600. "homepage": "http://ocramius.github.io/"
  1601. },
  1602. {
  1603. "name": "Nicolas Grekas",
  1604. "email": "p@tchwork.com"
  1605. }
  1606. ],
  1607. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1608. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1609. "keywords": [
  1610. "aop",
  1611. "lazy loading",
  1612. "proxy",
  1613. "proxy pattern",
  1614. "service proxies"
  1615. ],
  1616. "support": {
  1617. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1618. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.3"
  1619. },
  1620. "funding": [
  1621. {
  1622. "url": "https://github.com/Ocramius",
  1623. "type": "github"
  1624. },
  1625. {
  1626. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1627. "type": "tidelift"
  1628. }
  1629. ],
  1630. "time": "2021-01-14T21:52:44+00:00"
  1631. },
  1632. {
  1633. "name": "friendsofsymfony/ckeditor-bundle",
  1634. "version": "2.3.0",
  1635. "source": {
  1636. "type": "git",
  1637. "url": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle.git",
  1638. "reference": "282c79b0d3eda68855ea4c8732ab8d249cd5fbd0"
  1639. },
  1640. "dist": {
  1641. "type": "zip",
  1642. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSCKEditorBundle/zipball/282c79b0d3eda68855ea4c8732ab8d249cd5fbd0",
  1643. "reference": "282c79b0d3eda68855ea4c8732ab8d249cd5fbd0",
  1644. "shasum": ""
  1645. },
  1646. "require": {
  1647. "ext-json": "*",
  1648. "ext-zip": "*",
  1649. "php": "^7.1|^8.0",
  1650. "symfony/asset": "^4.4 || ^5.0",
  1651. "symfony/config": "^4.4 || ^5.0",
  1652. "symfony/dependency-injection": "^4.4 || ^5.0",
  1653. "symfony/expression-language": "^4.4 || ^5.0",
  1654. "symfony/form": "^4.4 || ^5.0",
  1655. "symfony/framework-bundle": "^4.4 || ^5.0",
  1656. "symfony/http-foundation": "^4.4 || ^5.0",
  1657. "symfony/http-kernel": "^4.4 || ^5.0",
  1658. "symfony/options-resolver": "^4.4 || ^5.0",
  1659. "symfony/property-access": "^4.4 || ^5.0",
  1660. "symfony/routing": "^4.4 || ^5.0",
  1661. "symfony/twig-bundle": "^4.4 || ^5.0",
  1662. "twig/twig": "^2.4 || ^3.0"
  1663. },
  1664. "conflict": {
  1665. "sebastian/environment": "<1.3.4",
  1666. "sebastian/exporter": "<2.0.0"
  1667. },
  1668. "require-dev": {
  1669. "friendsofphp/php-cs-fixer": "^2.0",
  1670. "matthiasnoback/symfony-dependency-injection-test": "^3.0 || ^4.0",
  1671. "symfony/console": "^4.4 || ^5.0",
  1672. "symfony/phpunit-bridge": "^4.4 || ^5.0",
  1673. "symfony/yaml": "^4.4 || ^5.0"
  1674. },
  1675. "suggest": {
  1676. "egeloen/form-extra-bundle": "Allows to load CKEditor asynchronously"
  1677. },
  1678. "type": "symfony-bundle",
  1679. "extra": {
  1680. "branch-alias": {
  1681. "dev-master": "3.x-dev"
  1682. }
  1683. },
  1684. "autoload": {
  1685. "psr-4": {
  1686. "FOS\\CKEditorBundle\\": "src/"
  1687. }
  1688. },
  1689. "notification-url": "https://packagist.org/downloads/",
  1690. "license": [
  1691. "MIT"
  1692. ],
  1693. "authors": [
  1694. {
  1695. "name": "Eric GELOEN",
  1696. "email": "geloen.eric@gmail.com"
  1697. },
  1698. {
  1699. "name": "FriendsOfSymfony Community",
  1700. "homepage": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle/graphs/contributors"
  1701. }
  1702. ],
  1703. "description": "Provides a CKEditor integration for your Symfony project.",
  1704. "keywords": [
  1705. "CKEditor"
  1706. ],
  1707. "support": {
  1708. "issues": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle/issues",
  1709. "source": "https://github.com/FriendsOfSymfony/FOSCKEditorBundle/tree/2.3.0"
  1710. },
  1711. "time": "2020-12-26T14:29:00+00:00"
  1712. },
  1713. {
  1714. "name": "google/apiclient",
  1715. "version": "v2.9.1",
  1716. "source": {
  1717. "type": "git",
  1718. "url": "https://github.com/googleapis/google-api-php-client.git",
  1719. "reference": "2fb6e702aca5d68203fa737f89f6f774022494c6"
  1720. },
  1721. "dist": {
  1722. "type": "zip",
  1723. "url": "https://api.github.com/repos/googleapis/google-api-php-client/zipball/2fb6e702aca5d68203fa737f89f6f774022494c6",
  1724. "reference": "2fb6e702aca5d68203fa737f89f6f774022494c6",
  1725. "shasum": ""
  1726. },
  1727. "require": {
  1728. "firebase/php-jwt": "~2.0||~3.0||~4.0||~5.0",
  1729. "google/apiclient-services": "~0.13",
  1730. "google/auth": "^1.10",
  1731. "guzzlehttp/guzzle": "~5.3.3||~6.0||~7.0",
  1732. "guzzlehttp/psr7": "^1.2",
  1733. "monolog/monolog": "^1.17|^2.0",
  1734. "php": "^5.6|^7.0|^8.0",
  1735. "phpseclib/phpseclib": "~2.0||^3.0.2"
  1736. },
  1737. "require-dev": {
  1738. "cache/filesystem-adapter": "^0.3.2|^1.1",
  1739. "composer/composer": "^1.10",
  1740. "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
  1741. "phpcompatibility/php-compatibility": "^9.2",
  1742. "phpunit/phpunit": "^5.7||^8.5.13",
  1743. "squizlabs/php_codesniffer": "~2.3",
  1744. "symfony/css-selector": "~2.1",
  1745. "symfony/dom-crawler": "~2.1"
  1746. },
  1747. "suggest": {
  1748. "cache/filesystem-adapter": "For caching certs and tokens (using Google\\Client::setCache)"
  1749. },
  1750. "type": "library",
  1751. "extra": {
  1752. "branch-alias": {
  1753. "dev-master": "2.x-dev"
  1754. }
  1755. },
  1756. "autoload": {
  1757. "psr-4": {
  1758. "Google\\": "src/"
  1759. },
  1760. "files": [
  1761. "src/aliases.php"
  1762. ],
  1763. "classmap": [
  1764. "src/aliases.php"
  1765. ]
  1766. },
  1767. "notification-url": "https://packagist.org/downloads/",
  1768. "license": [
  1769. "Apache-2.0"
  1770. ],
  1771. "description": "Client library for Google APIs",
  1772. "homepage": "http://developers.google.com/api-client-library/php",
  1773. "keywords": [
  1774. "google"
  1775. ],
  1776. "support": {
  1777. "issues": "https://github.com/googleapis/google-api-php-client/issues",
  1778. "source": "https://github.com/googleapis/google-api-php-client/tree/v2.9.1"
  1779. },
  1780. "time": "2021-01-19T17:48:59+00:00"
  1781. },
  1782. {
  1783. "name": "google/apiclient-services",
  1784. "version": "v0.170.0",
  1785. "source": {
  1786. "type": "git",
  1787. "url": "https://github.com/googleapis/google-api-php-client-services.git",
  1788. "reference": "b45ddc3d82b2c8f328d869d55db88c1885d898ee"
  1789. },
  1790. "dist": {
  1791. "type": "zip",
  1792. "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/b45ddc3d82b2c8f328d869d55db88c1885d898ee",
  1793. "reference": "b45ddc3d82b2c8f328d869d55db88c1885d898ee",
  1794. "shasum": ""
  1795. },
  1796. "require": {
  1797. "php": ">=5.4"
  1798. },
  1799. "require-dev": {
  1800. "phpunit/phpunit": "^4.8|^5"
  1801. },
  1802. "type": "library",
  1803. "autoload": {
  1804. "psr-0": {
  1805. "Google_Service_": "src"
  1806. }
  1807. },
  1808. "notification-url": "https://packagist.org/downloads/",
  1809. "license": [
  1810. "Apache-2.0"
  1811. ],
  1812. "description": "Client library for Google APIs",
  1813. "homepage": "http://developers.google.com/api-client-library/php",
  1814. "keywords": [
  1815. "google"
  1816. ],
  1817. "support": {
  1818. "issues": "https://github.com/googleapis/google-api-php-client-services/issues",
  1819. "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.170.0"
  1820. },
  1821. "time": "2021-04-20T20:34:12+00:00"
  1822. },
  1823. {
  1824. "name": "google/auth",
  1825. "version": "v1.15.1",
  1826. "source": {
  1827. "type": "git",
  1828. "url": "https://github.com/googleapis/google-auth-library-php.git",
  1829. "reference": "4e0c9367719df9703e96f5ad613041b87742471c"
  1830. },
  1831. "dist": {
  1832. "type": "zip",
  1833. "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/4e0c9367719df9703e96f5ad613041b87742471c",
  1834. "reference": "4e0c9367719df9703e96f5ad613041b87742471c",
  1835. "shasum": ""
  1836. },
  1837. "require": {
  1838. "firebase/php-jwt": "~2.0|~3.0|~4.0|~5.0",
  1839. "guzzlehttp/guzzle": "^5.3.1|^6.2.1|^7.0",
  1840. "guzzlehttp/psr7": "^1.2",
  1841. "php": ">=5.4",
  1842. "psr/cache": "^1.0",
  1843. "psr/http-message": "^1.0"
  1844. },
  1845. "require-dev": {
  1846. "guzzlehttp/promises": "0.1.1|^1.3",
  1847. "kelvinmo/simplejwt": "^0.2.5|^0.5.1",
  1848. "phpseclib/phpseclib": "^2.0.31",
  1849. "phpunit/phpunit": "^4.8.36|^5.7",
  1850. "sebastian/comparator": ">=1.2.3",
  1851. "squizlabs/php_codesniffer": "^3.5"
  1852. },
  1853. "suggest": {
  1854. "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
  1855. },
  1856. "type": "library",
  1857. "autoload": {
  1858. "psr-4": {
  1859. "Google\\Auth\\": "src"
  1860. }
  1861. },
  1862. "notification-url": "https://packagist.org/downloads/",
  1863. "license": [
  1864. "Apache-2.0"
  1865. ],
  1866. "description": "Google Auth Library for PHP",
  1867. "homepage": "http://github.com/google/google-auth-library-php",
  1868. "keywords": [
  1869. "Authentication",
  1870. "google",
  1871. "oauth2"
  1872. ],
  1873. "support": {
  1874. "docs": "https://googleapis.github.io/google-auth-library-php/master/",
  1875. "issues": "https://github.com/googleapis/google-auth-library-php/issues",
  1876. "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.15.1"
  1877. },
  1878. "time": "2021-04-21T17:42:05+00:00"
  1879. },
  1880. {
  1881. "name": "guzzlehttp/guzzle",
  1882. "version": "7.3.0",
  1883. "source": {
  1884. "type": "git",
  1885. "url": "https://github.com/guzzle/guzzle.git",
  1886. "reference": "7008573787b430c1c1f650e3722d9bba59967628"
  1887. },
  1888. "dist": {
  1889. "type": "zip",
  1890. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628",
  1891. "reference": "7008573787b430c1c1f650e3722d9bba59967628",
  1892. "shasum": ""
  1893. },
  1894. "require": {
  1895. "ext-json": "*",
  1896. "guzzlehttp/promises": "^1.4",
  1897. "guzzlehttp/psr7": "^1.7 || ^2.0",
  1898. "php": "^7.2.5 || ^8.0",
  1899. "psr/http-client": "^1.0"
  1900. },
  1901. "provide": {
  1902. "psr/http-client-implementation": "1.0"
  1903. },
  1904. "require-dev": {
  1905. "bamarni/composer-bin-plugin": "^1.4.1",
  1906. "ext-curl": "*",
  1907. "php-http/client-integration-tests": "^3.0",
  1908. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  1909. "psr/log": "^1.1"
  1910. },
  1911. "suggest": {
  1912. "ext-curl": "Required for CURL handler support",
  1913. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1914. "psr/log": "Required for using the Log middleware"
  1915. },
  1916. "type": "library",
  1917. "extra": {
  1918. "branch-alias": {
  1919. "dev-master": "7.3-dev"
  1920. }
  1921. },
  1922. "autoload": {
  1923. "psr-4": {
  1924. "GuzzleHttp\\": "src/"
  1925. },
  1926. "files": [
  1927. "src/functions_include.php"
  1928. ]
  1929. },
  1930. "notification-url": "https://packagist.org/downloads/",
  1931. "license": [
  1932. "MIT"
  1933. ],
  1934. "authors": [
  1935. {
  1936. "name": "Michael Dowling",
  1937. "email": "mtdowling@gmail.com",
  1938. "homepage": "https://github.com/mtdowling"
  1939. },
  1940. {
  1941. "name": "Márk Sági-Kazár",
  1942. "email": "mark.sagikazar@gmail.com",
  1943. "homepage": "https://sagikazarmark.hu"
  1944. }
  1945. ],
  1946. "description": "Guzzle is a PHP HTTP client library",
  1947. "homepage": "http://guzzlephp.org/",
  1948. "keywords": [
  1949. "client",
  1950. "curl",
  1951. "framework",
  1952. "http",
  1953. "http client",
  1954. "psr-18",
  1955. "psr-7",
  1956. "rest",
  1957. "web service"
  1958. ],
  1959. "support": {
  1960. "issues": "https://github.com/guzzle/guzzle/issues",
  1961. "source": "https://github.com/guzzle/guzzle/tree/7.3.0"
  1962. },
  1963. "funding": [
  1964. {
  1965. "url": "https://github.com/GrahamCampbell",
  1966. "type": "github"
  1967. },
  1968. {
  1969. "url": "https://github.com/Nyholm",
  1970. "type": "github"
  1971. },
  1972. {
  1973. "url": "https://github.com/alexeyshockov",
  1974. "type": "github"
  1975. },
  1976. {
  1977. "url": "https://github.com/gmponos",
  1978. "type": "github"
  1979. }
  1980. ],
  1981. "time": "2021-03-23T11:33:13+00:00"
  1982. },
  1983. {
  1984. "name": "guzzlehttp/promises",
  1985. "version": "1.4.1",
  1986. "source": {
  1987. "type": "git",
  1988. "url": "https://github.com/guzzle/promises.git",
  1989. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1990. },
  1991. "dist": {
  1992. "type": "zip",
  1993. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1994. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1995. "shasum": ""
  1996. },
  1997. "require": {
  1998. "php": ">=5.5"
  1999. },
  2000. "require-dev": {
  2001. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2002. },
  2003. "type": "library",
  2004. "extra": {
  2005. "branch-alias": {
  2006. "dev-master": "1.4-dev"
  2007. }
  2008. },
  2009. "autoload": {
  2010. "psr-4": {
  2011. "GuzzleHttp\\Promise\\": "src/"
  2012. },
  2013. "files": [
  2014. "src/functions_include.php"
  2015. ]
  2016. },
  2017. "notification-url": "https://packagist.org/downloads/",
  2018. "license": [
  2019. "MIT"
  2020. ],
  2021. "authors": [
  2022. {
  2023. "name": "Michael Dowling",
  2024. "email": "mtdowling@gmail.com",
  2025. "homepage": "https://github.com/mtdowling"
  2026. }
  2027. ],
  2028. "description": "Guzzle promises library",
  2029. "keywords": [
  2030. "promise"
  2031. ],
  2032. "support": {
  2033. "issues": "https://github.com/guzzle/promises/issues",
  2034. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  2035. },
  2036. "time": "2021-03-07T09:25:29+00:00"
  2037. },
  2038. {
  2039. "name": "guzzlehttp/psr7",
  2040. "version": "1.8.1",
  2041. "source": {
  2042. "type": "git",
  2043. "url": "https://github.com/guzzle/psr7.git",
  2044. "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1"
  2045. },
  2046. "dist": {
  2047. "type": "zip",
  2048. "url": "https://api.github.com/repos/guzzle/psr7/zipball/35ea11d335fd638b5882ff1725228b3d35496ab1",
  2049. "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1",
  2050. "shasum": ""
  2051. },
  2052. "require": {
  2053. "php": ">=5.4.0",
  2054. "psr/http-message": "~1.0",
  2055. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  2056. },
  2057. "provide": {
  2058. "psr/http-message-implementation": "1.0"
  2059. },
  2060. "require-dev": {
  2061. "ext-zlib": "*",
  2062. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  2063. },
  2064. "suggest": {
  2065. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2066. },
  2067. "type": "library",
  2068. "extra": {
  2069. "branch-alias": {
  2070. "dev-master": "1.7-dev"
  2071. }
  2072. },
  2073. "autoload": {
  2074. "psr-4": {
  2075. "GuzzleHttp\\Psr7\\": "src/"
  2076. },
  2077. "files": [
  2078. "src/functions_include.php"
  2079. ]
  2080. },
  2081. "notification-url": "https://packagist.org/downloads/",
  2082. "license": [
  2083. "MIT"
  2084. ],
  2085. "authors": [
  2086. {
  2087. "name": "Michael Dowling",
  2088. "email": "mtdowling@gmail.com",
  2089. "homepage": "https://github.com/mtdowling"
  2090. },
  2091. {
  2092. "name": "Tobias Schultze",
  2093. "homepage": "https://github.com/Tobion"
  2094. }
  2095. ],
  2096. "description": "PSR-7 message implementation that also provides common utility methods",
  2097. "keywords": [
  2098. "http",
  2099. "message",
  2100. "psr-7",
  2101. "request",
  2102. "response",
  2103. "stream",
  2104. "uri",
  2105. "url"
  2106. ],
  2107. "support": {
  2108. "issues": "https://github.com/guzzle/psr7/issues",
  2109. "source": "https://github.com/guzzle/psr7/tree/1.8.1"
  2110. },
  2111. "time": "2021-03-21T16:25:00+00:00"
  2112. },
  2113. {
  2114. "name": "laminas/laminas-code",
  2115. "version": "4.2.0",
  2116. "source": {
  2117. "type": "git",
  2118. "url": "https://github.com/laminas/laminas-code.git",
  2119. "reference": "e7e8f8a9c267520051d8026ff1da74823a3d8b97"
  2120. },
  2121. "dist": {
  2122. "type": "zip",
  2123. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/e7e8f8a9c267520051d8026ff1da74823a3d8b97",
  2124. "reference": "e7e8f8a9c267520051d8026ff1da74823a3d8b97",
  2125. "shasum": ""
  2126. },
  2127. "require": {
  2128. "laminas/laminas-eventmanager": "^3.3",
  2129. "php": "^7.4 || ~8.0.0"
  2130. },
  2131. "conflict": {
  2132. "phpspec/prophecy": "<1.9.0"
  2133. },
  2134. "replace": {
  2135. "zendframework/zend-code": "self.version"
  2136. },
  2137. "require-dev": {
  2138. "doctrine/annotations": "^1.10.4",
  2139. "ext-phar": "*",
  2140. "laminas/laminas-coding-standard": "^2.1.4",
  2141. "laminas/laminas-stdlib": "^3.3.0",
  2142. "phpunit/phpunit": "^9.4.2",
  2143. "psalm/plugin-phpunit": "^0.14.0",
  2144. "vimeo/psalm": "^4.3.1"
  2145. },
  2146. "suggest": {
  2147. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  2148. "laminas/laminas-stdlib": "Laminas\\Stdlib component",
  2149. "laminas/laminas-zendframework-bridge": "A bridge with Zend Framework"
  2150. },
  2151. "type": "library",
  2152. "autoload": {
  2153. "psr-4": {
  2154. "Laminas\\Code\\": "src/"
  2155. }
  2156. },
  2157. "notification-url": "https://packagist.org/downloads/",
  2158. "license": [
  2159. "BSD-3-Clause"
  2160. ],
  2161. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  2162. "homepage": "https://laminas.dev",
  2163. "keywords": [
  2164. "code",
  2165. "laminas",
  2166. "laminasframework"
  2167. ],
  2168. "support": {
  2169. "chat": "https://laminas.dev/chat",
  2170. "docs": "https://docs.laminas.dev/laminas-code/",
  2171. "forum": "https://discourse.laminas.dev",
  2172. "issues": "https://github.com/laminas/laminas-code/issues",
  2173. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  2174. "source": "https://github.com/laminas/laminas-code"
  2175. },
  2176. "funding": [
  2177. {
  2178. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2179. "type": "community_bridge"
  2180. }
  2181. ],
  2182. "time": "2021-04-14T22:05:06+00:00"
  2183. },
  2184. {
  2185. "name": "laminas/laminas-eventmanager",
  2186. "version": "3.3.1",
  2187. "source": {
  2188. "type": "git",
  2189. "url": "https://github.com/laminas/laminas-eventmanager.git",
  2190. "reference": "966c859b67867b179fde1eff0cd38df51472ce4a"
  2191. },
  2192. "dist": {
  2193. "type": "zip",
  2194. "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/966c859b67867b179fde1eff0cd38df51472ce4a",
  2195. "reference": "966c859b67867b179fde1eff0cd38df51472ce4a",
  2196. "shasum": ""
  2197. },
  2198. "require": {
  2199. "laminas/laminas-zendframework-bridge": "^1.0",
  2200. "php": "^7.3 || ^8.0"
  2201. },
  2202. "replace": {
  2203. "zendframework/zend-eventmanager": "^3.2.1"
  2204. },
  2205. "require-dev": {
  2206. "container-interop/container-interop": "^1.1",
  2207. "laminas/laminas-coding-standard": "~1.0.0",
  2208. "laminas/laminas-stdlib": "^2.7.3 || ^3.0",
  2209. "phpbench/phpbench": "^0.17.1",
  2210. "phpunit/phpunit": "^8.5.8"
  2211. },
  2212. "suggest": {
  2213. "container-interop/container-interop": "^1.1, to use the lazy listeners feature",
  2214. "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  2215. },
  2216. "type": "library",
  2217. "autoload": {
  2218. "psr-4": {
  2219. "Laminas\\EventManager\\": "src/"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "BSD-3-Clause"
  2225. ],
  2226. "description": "Trigger and listen to events within a PHP application",
  2227. "homepage": "https://laminas.dev",
  2228. "keywords": [
  2229. "event",
  2230. "eventmanager",
  2231. "events",
  2232. "laminas"
  2233. ],
  2234. "support": {
  2235. "chat": "https://laminas.dev/chat",
  2236. "docs": "https://docs.laminas.dev/laminas-eventmanager/",
  2237. "forum": "https://discourse.laminas.dev",
  2238. "issues": "https://github.com/laminas/laminas-eventmanager/issues",
  2239. "rss": "https://github.com/laminas/laminas-eventmanager/releases.atom",
  2240. "source": "https://github.com/laminas/laminas-eventmanager"
  2241. },
  2242. "funding": [
  2243. {
  2244. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2245. "type": "community_bridge"
  2246. }
  2247. ],
  2248. "time": "2021-03-08T15:24:29+00:00"
  2249. },
  2250. {
  2251. "name": "laminas/laminas-zendframework-bridge",
  2252. "version": "1.2.0",
  2253. "source": {
  2254. "type": "git",
  2255. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  2256. "reference": "6cccbddfcfc742eb02158d6137ca5687d92cee32"
  2257. },
  2258. "dist": {
  2259. "type": "zip",
  2260. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6cccbddfcfc742eb02158d6137ca5687d92cee32",
  2261. "reference": "6cccbddfcfc742eb02158d6137ca5687d92cee32",
  2262. "shasum": ""
  2263. },
  2264. "require": {
  2265. "php": "^7.3 || ^8.0"
  2266. },
  2267. "require-dev": {
  2268. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  2269. "psalm/plugin-phpunit": "^0.15.1",
  2270. "squizlabs/php_codesniffer": "^3.5",
  2271. "vimeo/psalm": "^4.6"
  2272. },
  2273. "type": "library",
  2274. "extra": {
  2275. "laminas": {
  2276. "module": "Laminas\\ZendFrameworkBridge"
  2277. }
  2278. },
  2279. "autoload": {
  2280. "files": [
  2281. "src/autoload.php"
  2282. ],
  2283. "psr-4": {
  2284. "Laminas\\ZendFrameworkBridge\\": "src//"
  2285. }
  2286. },
  2287. "notification-url": "https://packagist.org/downloads/",
  2288. "license": [
  2289. "BSD-3-Clause"
  2290. ],
  2291. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  2292. "keywords": [
  2293. "ZendFramework",
  2294. "autoloading",
  2295. "laminas",
  2296. "zf"
  2297. ],
  2298. "support": {
  2299. "forum": "https://discourse.laminas.dev/",
  2300. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  2301. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  2302. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  2303. },
  2304. "funding": [
  2305. {
  2306. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2307. "type": "community_bridge"
  2308. }
  2309. ],
  2310. "time": "2021-02-25T21:54:58+00:00"
  2311. },
  2312. {
  2313. "name": "monolog/monolog",
  2314. "version": "2.2.0",
  2315. "source": {
  2316. "type": "git",
  2317. "url": "https://github.com/Seldaek/monolog.git",
  2318. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2319. },
  2320. "dist": {
  2321. "type": "zip",
  2322. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2323. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2324. "shasum": ""
  2325. },
  2326. "require": {
  2327. "php": ">=7.2",
  2328. "psr/log": "^1.0.1"
  2329. },
  2330. "provide": {
  2331. "psr/log-implementation": "1.0.0"
  2332. },
  2333. "require-dev": {
  2334. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2335. "doctrine/couchdb": "~1.0@dev",
  2336. "elasticsearch/elasticsearch": "^7",
  2337. "graylog2/gelf-php": "^1.4.2",
  2338. "mongodb/mongodb": "^1.8",
  2339. "php-amqplib/php-amqplib": "~2.4",
  2340. "php-console/php-console": "^3.1.3",
  2341. "phpspec/prophecy": "^1.6.1",
  2342. "phpstan/phpstan": "^0.12.59",
  2343. "phpunit/phpunit": "^8.5",
  2344. "predis/predis": "^1.1",
  2345. "rollbar/rollbar": "^1.3",
  2346. "ruflin/elastica": ">=0.90 <7.0.1",
  2347. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2348. },
  2349. "suggest": {
  2350. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2351. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2352. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2353. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2354. "ext-mbstring": "Allow to work properly with unicode symbols",
  2355. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2356. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2357. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2358. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2359. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2360. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2361. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2362. },
  2363. "type": "library",
  2364. "extra": {
  2365. "branch-alias": {
  2366. "dev-main": "2.x-dev"
  2367. }
  2368. },
  2369. "autoload": {
  2370. "psr-4": {
  2371. "Monolog\\": "src/Monolog"
  2372. }
  2373. },
  2374. "notification-url": "https://packagist.org/downloads/",
  2375. "license": [
  2376. "MIT"
  2377. ],
  2378. "authors": [
  2379. {
  2380. "name": "Jordi Boggiano",
  2381. "email": "j.boggiano@seld.be",
  2382. "homepage": "https://seld.be"
  2383. }
  2384. ],
  2385. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2386. "homepage": "https://github.com/Seldaek/monolog",
  2387. "keywords": [
  2388. "log",
  2389. "logging",
  2390. "psr-3"
  2391. ],
  2392. "support": {
  2393. "issues": "https://github.com/Seldaek/monolog/issues",
  2394. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  2395. },
  2396. "funding": [
  2397. {
  2398. "url": "https://github.com/Seldaek",
  2399. "type": "github"
  2400. },
  2401. {
  2402. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2403. "type": "tidelift"
  2404. }
  2405. ],
  2406. "time": "2020-12-14T13:15:25+00:00"
  2407. },
  2408. {
  2409. "name": "paragonie/constant_time_encoding",
  2410. "version": "v2.4.0",
  2411. "source": {
  2412. "type": "git",
  2413. "url": "https://github.com/paragonie/constant_time_encoding.git",
  2414. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
  2415. },
  2416. "dist": {
  2417. "type": "zip",
  2418. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  2419. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  2420. "shasum": ""
  2421. },
  2422. "require": {
  2423. "php": "^7|^8"
  2424. },
  2425. "require-dev": {
  2426. "phpunit/phpunit": "^6|^7|^8|^9",
  2427. "vimeo/psalm": "^1|^2|^3|^4"
  2428. },
  2429. "type": "library",
  2430. "autoload": {
  2431. "psr-4": {
  2432. "ParagonIE\\ConstantTime\\": "src/"
  2433. }
  2434. },
  2435. "notification-url": "https://packagist.org/downloads/",
  2436. "license": [
  2437. "MIT"
  2438. ],
  2439. "authors": [
  2440. {
  2441. "name": "Paragon Initiative Enterprises",
  2442. "email": "security@paragonie.com",
  2443. "homepage": "https://paragonie.com",
  2444. "role": "Maintainer"
  2445. },
  2446. {
  2447. "name": "Steve 'Sc00bz' Thomas",
  2448. "email": "steve@tobtu.com",
  2449. "homepage": "https://www.tobtu.com",
  2450. "role": "Original Developer"
  2451. }
  2452. ],
  2453. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  2454. "keywords": [
  2455. "base16",
  2456. "base32",
  2457. "base32_decode",
  2458. "base32_encode",
  2459. "base64",
  2460. "base64_decode",
  2461. "base64_encode",
  2462. "bin2hex",
  2463. "encoding",
  2464. "hex",
  2465. "hex2bin",
  2466. "rfc4648"
  2467. ],
  2468. "support": {
  2469. "email": "info@paragonie.com",
  2470. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  2471. "source": "https://github.com/paragonie/constant_time_encoding"
  2472. },
  2473. "time": "2020-12-06T15:14:20+00:00"
  2474. },
  2475. {
  2476. "name": "phpdocumentor/reflection-common",
  2477. "version": "2.2.0",
  2478. "source": {
  2479. "type": "git",
  2480. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2481. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2482. },
  2483. "dist": {
  2484. "type": "zip",
  2485. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2486. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2487. "shasum": ""
  2488. },
  2489. "require": {
  2490. "php": "^7.2 || ^8.0"
  2491. },
  2492. "type": "library",
  2493. "extra": {
  2494. "branch-alias": {
  2495. "dev-2.x": "2.x-dev"
  2496. }
  2497. },
  2498. "autoload": {
  2499. "psr-4": {
  2500. "phpDocumentor\\Reflection\\": "src/"
  2501. }
  2502. },
  2503. "notification-url": "https://packagist.org/downloads/",
  2504. "license": [
  2505. "MIT"
  2506. ],
  2507. "authors": [
  2508. {
  2509. "name": "Jaap van Otterdijk",
  2510. "email": "opensource@ijaap.nl"
  2511. }
  2512. ],
  2513. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2514. "homepage": "http://www.phpdoc.org",
  2515. "keywords": [
  2516. "FQSEN",
  2517. "phpDocumentor",
  2518. "phpdoc",
  2519. "reflection",
  2520. "static analysis"
  2521. ],
  2522. "support": {
  2523. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2524. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2525. },
  2526. "time": "2020-06-27T09:03:43+00:00"
  2527. },
  2528. {
  2529. "name": "phpdocumentor/reflection-docblock",
  2530. "version": "5.2.2",
  2531. "source": {
  2532. "type": "git",
  2533. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2534. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  2535. },
  2536. "dist": {
  2537. "type": "zip",
  2538. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  2539. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  2540. "shasum": ""
  2541. },
  2542. "require": {
  2543. "ext-filter": "*",
  2544. "php": "^7.2 || ^8.0",
  2545. "phpdocumentor/reflection-common": "^2.2",
  2546. "phpdocumentor/type-resolver": "^1.3",
  2547. "webmozart/assert": "^1.9.1"
  2548. },
  2549. "require-dev": {
  2550. "mockery/mockery": "~1.3.2"
  2551. },
  2552. "type": "library",
  2553. "extra": {
  2554. "branch-alias": {
  2555. "dev-master": "5.x-dev"
  2556. }
  2557. },
  2558. "autoload": {
  2559. "psr-4": {
  2560. "phpDocumentor\\Reflection\\": "src"
  2561. }
  2562. },
  2563. "notification-url": "https://packagist.org/downloads/",
  2564. "license": [
  2565. "MIT"
  2566. ],
  2567. "authors": [
  2568. {
  2569. "name": "Mike van Riel",
  2570. "email": "me@mikevanriel.com"
  2571. },
  2572. {
  2573. "name": "Jaap van Otterdijk",
  2574. "email": "account@ijaap.nl"
  2575. }
  2576. ],
  2577. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2578. "support": {
  2579. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2580. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  2581. },
  2582. "time": "2020-09-03T19:13:55+00:00"
  2583. },
  2584. {
  2585. "name": "phpdocumentor/type-resolver",
  2586. "version": "1.4.0",
  2587. "source": {
  2588. "type": "git",
  2589. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2590. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  2591. },
  2592. "dist": {
  2593. "type": "zip",
  2594. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  2595. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  2596. "shasum": ""
  2597. },
  2598. "require": {
  2599. "php": "^7.2 || ^8.0",
  2600. "phpdocumentor/reflection-common": "^2.0"
  2601. },
  2602. "require-dev": {
  2603. "ext-tokenizer": "*"
  2604. },
  2605. "type": "library",
  2606. "extra": {
  2607. "branch-alias": {
  2608. "dev-1.x": "1.x-dev"
  2609. }
  2610. },
  2611. "autoload": {
  2612. "psr-4": {
  2613. "phpDocumentor\\Reflection\\": "src"
  2614. }
  2615. },
  2616. "notification-url": "https://packagist.org/downloads/",
  2617. "license": [
  2618. "MIT"
  2619. ],
  2620. "authors": [
  2621. {
  2622. "name": "Mike van Riel",
  2623. "email": "me@mikevanriel.com"
  2624. }
  2625. ],
  2626. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2627. "support": {
  2628. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2629. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  2630. },
  2631. "time": "2020-09-17T18:55:26+00:00"
  2632. },
  2633. {
  2634. "name": "phpseclib/phpseclib",
  2635. "version": "3.0.8",
  2636. "source": {
  2637. "type": "git",
  2638. "url": "https://github.com/phpseclib/phpseclib.git",
  2639. "reference": "d9615a6fb970d9933866ca8b4036ec3407b020b6"
  2640. },
  2641. "dist": {
  2642. "type": "zip",
  2643. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/d9615a6fb970d9933866ca8b4036ec3407b020b6",
  2644. "reference": "d9615a6fb970d9933866ca8b4036ec3407b020b6",
  2645. "shasum": ""
  2646. },
  2647. "require": {
  2648. "paragonie/constant_time_encoding": "^1|^2",
  2649. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  2650. "php": ">=5.6.1"
  2651. },
  2652. "require-dev": {
  2653. "phing/phing": "~2.7",
  2654. "phpunit/phpunit": "^5.7|^6.0|^9.4",
  2655. "squizlabs/php_codesniffer": "~2.0"
  2656. },
  2657. "suggest": {
  2658. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  2659. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  2660. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  2661. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  2662. },
  2663. "type": "library",
  2664. "autoload": {
  2665. "files": [
  2666. "phpseclib/bootstrap.php"
  2667. ],
  2668. "psr-4": {
  2669. "phpseclib3\\": "phpseclib/"
  2670. }
  2671. },
  2672. "notification-url": "https://packagist.org/downloads/",
  2673. "license": [
  2674. "MIT"
  2675. ],
  2676. "authors": [
  2677. {
  2678. "name": "Jim Wigginton",
  2679. "email": "terrafrost@php.net",
  2680. "role": "Lead Developer"
  2681. },
  2682. {
  2683. "name": "Patrick Monnerat",
  2684. "email": "pm@datasphere.ch",
  2685. "role": "Developer"
  2686. },
  2687. {
  2688. "name": "Andreas Fischer",
  2689. "email": "bantu@phpbb.com",
  2690. "role": "Developer"
  2691. },
  2692. {
  2693. "name": "Hans-Jürgen Petrich",
  2694. "email": "petrich@tronic-media.com",
  2695. "role": "Developer"
  2696. },
  2697. {
  2698. "name": "Graham Campbell",
  2699. "email": "graham@alt-three.com",
  2700. "role": "Developer"
  2701. }
  2702. ],
  2703. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  2704. "homepage": "http://phpseclib.sourceforge.net",
  2705. "keywords": [
  2706. "BigInteger",
  2707. "aes",
  2708. "asn.1",
  2709. "asn1",
  2710. "blowfish",
  2711. "crypto",
  2712. "cryptography",
  2713. "encryption",
  2714. "rsa",
  2715. "security",
  2716. "sftp",
  2717. "signature",
  2718. "signing",
  2719. "ssh",
  2720. "twofish",
  2721. "x.509",
  2722. "x509"
  2723. ],
  2724. "support": {
  2725. "issues": "https://github.com/phpseclib/phpseclib/issues",
  2726. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.8"
  2727. },
  2728. "funding": [
  2729. {
  2730. "url": "https://github.com/terrafrost",
  2731. "type": "github"
  2732. },
  2733. {
  2734. "url": "https://www.patreon.com/phpseclib",
  2735. "type": "patreon"
  2736. },
  2737. {
  2738. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  2739. "type": "tidelift"
  2740. }
  2741. ],
  2742. "time": "2021-04-19T03:20:48+00:00"
  2743. },
  2744. {
  2745. "name": "psr/cache",
  2746. "version": "1.0.1",
  2747. "source": {
  2748. "type": "git",
  2749. "url": "https://github.com/php-fig/cache.git",
  2750. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2751. },
  2752. "dist": {
  2753. "type": "zip",
  2754. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2755. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2756. "shasum": ""
  2757. },
  2758. "require": {
  2759. "php": ">=5.3.0"
  2760. },
  2761. "type": "library",
  2762. "extra": {
  2763. "branch-alias": {
  2764. "dev-master": "1.0.x-dev"
  2765. }
  2766. },
  2767. "autoload": {
  2768. "psr-4": {
  2769. "Psr\\Cache\\": "src/"
  2770. }
  2771. },
  2772. "notification-url": "https://packagist.org/downloads/",
  2773. "license": [
  2774. "MIT"
  2775. ],
  2776. "authors": [
  2777. {
  2778. "name": "PHP-FIG",
  2779. "homepage": "http://www.php-fig.org/"
  2780. }
  2781. ],
  2782. "description": "Common interface for caching libraries",
  2783. "keywords": [
  2784. "cache",
  2785. "psr",
  2786. "psr-6"
  2787. ],
  2788. "support": {
  2789. "source": "https://github.com/php-fig/cache/tree/master"
  2790. },
  2791. "time": "2016-08-06T20:24:11+00:00"
  2792. },
  2793. {
  2794. "name": "psr/container",
  2795. "version": "1.1.1",
  2796. "source": {
  2797. "type": "git",
  2798. "url": "https://github.com/php-fig/container.git",
  2799. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  2800. },
  2801. "dist": {
  2802. "type": "zip",
  2803. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  2804. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  2805. "shasum": ""
  2806. },
  2807. "require": {
  2808. "php": ">=7.2.0"
  2809. },
  2810. "type": "library",
  2811. "autoload": {
  2812. "psr-4": {
  2813. "Psr\\Container\\": "src/"
  2814. }
  2815. },
  2816. "notification-url": "https://packagist.org/downloads/",
  2817. "license": [
  2818. "MIT"
  2819. ],
  2820. "authors": [
  2821. {
  2822. "name": "PHP-FIG",
  2823. "homepage": "https://www.php-fig.org/"
  2824. }
  2825. ],
  2826. "description": "Common Container Interface (PHP FIG PSR-11)",
  2827. "homepage": "https://github.com/php-fig/container",
  2828. "keywords": [
  2829. "PSR-11",
  2830. "container",
  2831. "container-interface",
  2832. "container-interop",
  2833. "psr"
  2834. ],
  2835. "support": {
  2836. "issues": "https://github.com/php-fig/container/issues",
  2837. "source": "https://github.com/php-fig/container/tree/1.1.1"
  2838. },
  2839. "time": "2021-03-05T17:36:06+00:00"
  2840. },
  2841. {
  2842. "name": "psr/event-dispatcher",
  2843. "version": "1.0.0",
  2844. "source": {
  2845. "type": "git",
  2846. "url": "https://github.com/php-fig/event-dispatcher.git",
  2847. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2848. },
  2849. "dist": {
  2850. "type": "zip",
  2851. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2852. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2853. "shasum": ""
  2854. },
  2855. "require": {
  2856. "php": ">=7.2.0"
  2857. },
  2858. "type": "library",
  2859. "extra": {
  2860. "branch-alias": {
  2861. "dev-master": "1.0.x-dev"
  2862. }
  2863. },
  2864. "autoload": {
  2865. "psr-4": {
  2866. "Psr\\EventDispatcher\\": "src/"
  2867. }
  2868. },
  2869. "notification-url": "https://packagist.org/downloads/",
  2870. "license": [
  2871. "MIT"
  2872. ],
  2873. "authors": [
  2874. {
  2875. "name": "PHP-FIG",
  2876. "homepage": "http://www.php-fig.org/"
  2877. }
  2878. ],
  2879. "description": "Standard interfaces for event handling.",
  2880. "keywords": [
  2881. "events",
  2882. "psr",
  2883. "psr-14"
  2884. ],
  2885. "support": {
  2886. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2887. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2888. },
  2889. "time": "2019-01-08T18:20:26+00:00"
  2890. },
  2891. {
  2892. "name": "psr/http-client",
  2893. "version": "1.0.1",
  2894. "source": {
  2895. "type": "git",
  2896. "url": "https://github.com/php-fig/http-client.git",
  2897. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2898. },
  2899. "dist": {
  2900. "type": "zip",
  2901. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2902. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2903. "shasum": ""
  2904. },
  2905. "require": {
  2906. "php": "^7.0 || ^8.0",
  2907. "psr/http-message": "^1.0"
  2908. },
  2909. "type": "library",
  2910. "extra": {
  2911. "branch-alias": {
  2912. "dev-master": "1.0.x-dev"
  2913. }
  2914. },
  2915. "autoload": {
  2916. "psr-4": {
  2917. "Psr\\Http\\Client\\": "src/"
  2918. }
  2919. },
  2920. "notification-url": "https://packagist.org/downloads/",
  2921. "license": [
  2922. "MIT"
  2923. ],
  2924. "authors": [
  2925. {
  2926. "name": "PHP-FIG",
  2927. "homepage": "http://www.php-fig.org/"
  2928. }
  2929. ],
  2930. "description": "Common interface for HTTP clients",
  2931. "homepage": "https://github.com/php-fig/http-client",
  2932. "keywords": [
  2933. "http",
  2934. "http-client",
  2935. "psr",
  2936. "psr-18"
  2937. ],
  2938. "support": {
  2939. "source": "https://github.com/php-fig/http-client/tree/master"
  2940. },
  2941. "time": "2020-06-29T06:28:15+00:00"
  2942. },
  2943. {
  2944. "name": "psr/http-message",
  2945. "version": "1.0.1",
  2946. "source": {
  2947. "type": "git",
  2948. "url": "https://github.com/php-fig/http-message.git",
  2949. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2950. },
  2951. "dist": {
  2952. "type": "zip",
  2953. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2954. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2955. "shasum": ""
  2956. },
  2957. "require": {
  2958. "php": ">=5.3.0"
  2959. },
  2960. "type": "library",
  2961. "extra": {
  2962. "branch-alias": {
  2963. "dev-master": "1.0.x-dev"
  2964. }
  2965. },
  2966. "autoload": {
  2967. "psr-4": {
  2968. "Psr\\Http\\Message\\": "src/"
  2969. }
  2970. },
  2971. "notification-url": "https://packagist.org/downloads/",
  2972. "license": [
  2973. "MIT"
  2974. ],
  2975. "authors": [
  2976. {
  2977. "name": "PHP-FIG",
  2978. "homepage": "http://www.php-fig.org/"
  2979. }
  2980. ],
  2981. "description": "Common interface for HTTP messages",
  2982. "homepage": "https://github.com/php-fig/http-message",
  2983. "keywords": [
  2984. "http",
  2985. "http-message",
  2986. "psr",
  2987. "psr-7",
  2988. "request",
  2989. "response"
  2990. ],
  2991. "support": {
  2992. "source": "https://github.com/php-fig/http-message/tree/master"
  2993. },
  2994. "time": "2016-08-06T14:39:51+00:00"
  2995. },
  2996. {
  2997. "name": "psr/link",
  2998. "version": "1.0.0",
  2999. "source": {
  3000. "type": "git",
  3001. "url": "https://github.com/php-fig/link.git",
  3002. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  3003. },
  3004. "dist": {
  3005. "type": "zip",
  3006. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  3007. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  3008. "shasum": ""
  3009. },
  3010. "require": {
  3011. "php": ">=5.3.0"
  3012. },
  3013. "type": "library",
  3014. "extra": {
  3015. "branch-alias": {
  3016. "dev-master": "1.0.x-dev"
  3017. }
  3018. },
  3019. "autoload": {
  3020. "psr-4": {
  3021. "Psr\\Link\\": "src/"
  3022. }
  3023. },
  3024. "notification-url": "https://packagist.org/downloads/",
  3025. "license": [
  3026. "MIT"
  3027. ],
  3028. "authors": [
  3029. {
  3030. "name": "PHP-FIG",
  3031. "homepage": "http://www.php-fig.org/"
  3032. }
  3033. ],
  3034. "description": "Common interfaces for HTTP links",
  3035. "keywords": [
  3036. "http",
  3037. "http-link",
  3038. "link",
  3039. "psr",
  3040. "psr-13",
  3041. "rest"
  3042. ],
  3043. "support": {
  3044. "source": "https://github.com/php-fig/link/tree/master"
  3045. },
  3046. "time": "2016-10-28T16:06:13+00:00"
  3047. },
  3048. {
  3049. "name": "psr/log",
  3050. "version": "1.1.3",
  3051. "source": {
  3052. "type": "git",
  3053. "url": "https://github.com/php-fig/log.git",
  3054. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3055. },
  3056. "dist": {
  3057. "type": "zip",
  3058. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3059. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3060. "shasum": ""
  3061. },
  3062. "require": {
  3063. "php": ">=5.3.0"
  3064. },
  3065. "type": "library",
  3066. "extra": {
  3067. "branch-alias": {
  3068. "dev-master": "1.1.x-dev"
  3069. }
  3070. },
  3071. "autoload": {
  3072. "psr-4": {
  3073. "Psr\\Log\\": "Psr/Log/"
  3074. }
  3075. },
  3076. "notification-url": "https://packagist.org/downloads/",
  3077. "license": [
  3078. "MIT"
  3079. ],
  3080. "authors": [
  3081. {
  3082. "name": "PHP-FIG",
  3083. "homepage": "http://www.php-fig.org/"
  3084. }
  3085. ],
  3086. "description": "Common interface for logging libraries",
  3087. "homepage": "https://github.com/php-fig/log",
  3088. "keywords": [
  3089. "log",
  3090. "psr",
  3091. "psr-3"
  3092. ],
  3093. "support": {
  3094. "source": "https://github.com/php-fig/log/tree/1.1.3"
  3095. },
  3096. "time": "2020-03-23T09:12:05+00:00"
  3097. },
  3098. {
  3099. "name": "ralouphie/getallheaders",
  3100. "version": "3.0.3",
  3101. "source": {
  3102. "type": "git",
  3103. "url": "https://github.com/ralouphie/getallheaders.git",
  3104. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3105. },
  3106. "dist": {
  3107. "type": "zip",
  3108. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3109. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3110. "shasum": ""
  3111. },
  3112. "require": {
  3113. "php": ">=5.6"
  3114. },
  3115. "require-dev": {
  3116. "php-coveralls/php-coveralls": "^2.1",
  3117. "phpunit/phpunit": "^5 || ^6.5"
  3118. },
  3119. "type": "library",
  3120. "autoload": {
  3121. "files": [
  3122. "src/getallheaders.php"
  3123. ]
  3124. },
  3125. "notification-url": "https://packagist.org/downloads/",
  3126. "license": [
  3127. "MIT"
  3128. ],
  3129. "authors": [
  3130. {
  3131. "name": "Ralph Khattar",
  3132. "email": "ralph.khattar@gmail.com"
  3133. }
  3134. ],
  3135. "description": "A polyfill for getallheaders.",
  3136. "support": {
  3137. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3138. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3139. },
  3140. "time": "2019-03-08T08:55:37+00:00"
  3141. },
  3142. {
  3143. "name": "sensio/framework-extra-bundle",
  3144. "version": "v5.6.1",
  3145. "source": {
  3146. "type": "git",
  3147. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  3148. "reference": "430d14c01836b77c28092883d195a43ce413ee32"
  3149. },
  3150. "dist": {
  3151. "type": "zip",
  3152. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/430d14c01836b77c28092883d195a43ce413ee32",
  3153. "reference": "430d14c01836b77c28092883d195a43ce413ee32",
  3154. "shasum": ""
  3155. },
  3156. "require": {
  3157. "doctrine/annotations": "^1.0",
  3158. "php": ">=7.2.5",
  3159. "symfony/config": "^4.4|^5.0",
  3160. "symfony/dependency-injection": "^4.4|^5.0",
  3161. "symfony/framework-bundle": "^4.4|^5.0",
  3162. "symfony/http-kernel": "^4.4|^5.0"
  3163. },
  3164. "conflict": {
  3165. "doctrine/doctrine-cache-bundle": "<1.3.1",
  3166. "doctrine/persistence": "<1.3"
  3167. },
  3168. "require-dev": {
  3169. "doctrine/dbal": "^2.10|^3.0",
  3170. "doctrine/doctrine-bundle": "^1.11|^2.0",
  3171. "doctrine/orm": "^2.5",
  3172. "nyholm/psr7": "^1.1",
  3173. "symfony/browser-kit": "^4.4|^5.0",
  3174. "symfony/doctrine-bridge": "^4.4|^5.0",
  3175. "symfony/dom-crawler": "^4.4|^5.0",
  3176. "symfony/expression-language": "^4.4|^5.0",
  3177. "symfony/finder": "^4.4|^5.0",
  3178. "symfony/monolog-bridge": "^4.0|^5.0",
  3179. "symfony/monolog-bundle": "^3.2",
  3180. "symfony/phpunit-bridge": "^4.4.9|^5.0.9",
  3181. "symfony/psr-http-message-bridge": "^1.1",
  3182. "symfony/security-bundle": "^4.4|^5.0",
  3183. "symfony/twig-bundle": "^4.4|^5.0",
  3184. "symfony/yaml": "^4.4|^5.0",
  3185. "twig/twig": "^1.34|^2.4|^3.0"
  3186. },
  3187. "type": "symfony-bundle",
  3188. "extra": {
  3189. "branch-alias": {
  3190. "dev-master": "5.6.x-dev"
  3191. }
  3192. },
  3193. "autoload": {
  3194. "psr-4": {
  3195. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  3196. },
  3197. "exclude-from-classmap": [
  3198. "/tests/"
  3199. ]
  3200. },
  3201. "notification-url": "https://packagist.org/downloads/",
  3202. "license": [
  3203. "MIT"
  3204. ],
  3205. "authors": [
  3206. {
  3207. "name": "Fabien Potencier",
  3208. "email": "fabien@symfony.com"
  3209. }
  3210. ],
  3211. "description": "This bundle provides a way to configure your controllers with annotations",
  3212. "keywords": [
  3213. "annotations",
  3214. "controllers"
  3215. ],
  3216. "support": {
  3217. "issues": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/issues",
  3218. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v5.6.1"
  3219. },
  3220. "time": "2020-08-25T19:10:18+00:00"
  3221. },
  3222. {
  3223. "name": "studio-42/elfinder",
  3224. "version": "2.1.57",
  3225. "source": {
  3226. "type": "git",
  3227. "url": "https://github.com/Studio-42/elFinder.git",
  3228. "reference": "087524b1d7a4d76cfd848dee2093cd8daf987f78"
  3229. },
  3230. "dist": {
  3231. "type": "zip",
  3232. "url": "https://api.github.com/repos/Studio-42/elFinder/zipball/087524b1d7a4d76cfd848dee2093cd8daf987f78",
  3233. "reference": "087524b1d7a4d76cfd848dee2093cd8daf987f78",
  3234. "shasum": ""
  3235. },
  3236. "require": {
  3237. "php": ">=5.2"
  3238. },
  3239. "suggest": {
  3240. "barryvdh/elfinder-flysystem-driver": "VolumeDriver for elFinder to use Flysystem as a root.",
  3241. "google/apiclient": "VolumeDriver GoogleDrive require `google/apiclient:^2.0.",
  3242. "kunalvarma05/dropbox-php-sdk": "VolumeDriver `Dropbox`2 require `kunalvarma05/dropbox-php-sdk.",
  3243. "nao-pon/flysystem-google-drive": "require in GoogleDrive network volume mounting with Flysystem."
  3244. },
  3245. "type": "library",
  3246. "autoload": {
  3247. "classmap": [
  3248. "php"
  3249. ]
  3250. },
  3251. "notification-url": "https://packagist.org/downloads/",
  3252. "license": [
  3253. "BSD-3-Clause"
  3254. ],
  3255. "authors": [
  3256. {
  3257. "name": "Dmitry Levashov",
  3258. "email": "dio@std42.ru",
  3259. "homepage": "http://std42.ru"
  3260. },
  3261. {
  3262. "name": "Troex Nevelin",
  3263. "email": "troex@fury.scancode.ru",
  3264. "homepage": "http://std42.ru"
  3265. },
  3266. {
  3267. "name": "Naoki Sawada",
  3268. "email": "hypweb+elfinder@gmail.com",
  3269. "homepage": "http://xoops.hypweb.net"
  3270. },
  3271. {
  3272. "name": "Community contributions",
  3273. "homepage": "https://github.com/Studio-42/elFinder/contributors"
  3274. }
  3275. ],
  3276. "description": "File manager for web",
  3277. "homepage": "http://elfinder.org",
  3278. "support": {
  3279. "issues": "https://github.com/Studio-42/elFinder/issues",
  3280. "source": "https://github.com/Studio-42/elFinder/tree/2.1"
  3281. },
  3282. "time": "2020-06-05T08:06:57+00:00"
  3283. },
  3284. {
  3285. "name": "symfony/amqp-messenger",
  3286. "version": "v5.2.4",
  3287. "source": {
  3288. "type": "git",
  3289. "url": "https://github.com/symfony/amqp-messenger.git",
  3290. "reference": "cf309a35ed08caa77886ee6a352b8491c7681424"
  3291. },
  3292. "dist": {
  3293. "type": "zip",
  3294. "url": "https://api.github.com/repos/symfony/amqp-messenger/zipball/cf309a35ed08caa77886ee6a352b8491c7681424",
  3295. "reference": "cf309a35ed08caa77886ee6a352b8491c7681424",
  3296. "shasum": ""
  3297. },
  3298. "require": {
  3299. "php": ">=7.2.5",
  3300. "symfony/deprecation-contracts": "^2.1",
  3301. "symfony/messenger": "^5.1"
  3302. },
  3303. "require-dev": {
  3304. "symfony/event-dispatcher": "^4.4|^5.0",
  3305. "symfony/process": "^4.4|^5.0",
  3306. "symfony/property-access": "^4.4|^5.0",
  3307. "symfony/serializer": "^4.4|^5.0"
  3308. },
  3309. "type": "symfony-bridge",
  3310. "autoload": {
  3311. "psr-4": {
  3312. "Symfony\\Component\\Messenger\\Bridge\\Amqp\\": ""
  3313. },
  3314. "exclude-from-classmap": [
  3315. "/Tests/"
  3316. ]
  3317. },
  3318. "notification-url": "https://packagist.org/downloads/",
  3319. "license": [
  3320. "MIT"
  3321. ],
  3322. "authors": [
  3323. {
  3324. "name": "Fabien Potencier",
  3325. "email": "fabien@symfony.com"
  3326. },
  3327. {
  3328. "name": "Symfony Community",
  3329. "homepage": "https://symfony.com/contributors"
  3330. }
  3331. ],
  3332. "description": "Symfony AMQP extension Messenger Bridge",
  3333. "homepage": "https://symfony.com",
  3334. "support": {
  3335. "source": "https://github.com/symfony/amqp-messenger/tree/v5.2.4"
  3336. },
  3337. "funding": [
  3338. {
  3339. "url": "https://symfony.com/sponsor",
  3340. "type": "custom"
  3341. },
  3342. {
  3343. "url": "https://github.com/fabpot",
  3344. "type": "github"
  3345. },
  3346. {
  3347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3348. "type": "tidelift"
  3349. }
  3350. ],
  3351. "time": "2021-01-27T11:19:04+00:00"
  3352. },
  3353. {
  3354. "name": "symfony/asset",
  3355. "version": "v5.2.4",
  3356. "source": {
  3357. "type": "git",
  3358. "url": "https://github.com/symfony/asset.git",
  3359. "reference": "54a42aa50f9359d1184bf7e954521b45ca3d5828"
  3360. },
  3361. "dist": {
  3362. "type": "zip",
  3363. "url": "https://api.github.com/repos/symfony/asset/zipball/54a42aa50f9359d1184bf7e954521b45ca3d5828",
  3364. "reference": "54a42aa50f9359d1184bf7e954521b45ca3d5828",
  3365. "shasum": ""
  3366. },
  3367. "require": {
  3368. "php": ">=7.2.5"
  3369. },
  3370. "require-dev": {
  3371. "symfony/http-client": "^4.4|^5.0",
  3372. "symfony/http-foundation": "^4.4|^5.0",
  3373. "symfony/http-kernel": "^4.4|^5.0"
  3374. },
  3375. "suggest": {
  3376. "symfony/http-foundation": ""
  3377. },
  3378. "type": "library",
  3379. "autoload": {
  3380. "psr-4": {
  3381. "Symfony\\Component\\Asset\\": ""
  3382. },
  3383. "exclude-from-classmap": [
  3384. "/Tests/"
  3385. ]
  3386. },
  3387. "notification-url": "https://packagist.org/downloads/",
  3388. "license": [
  3389. "MIT"
  3390. ],
  3391. "authors": [
  3392. {
  3393. "name": "Fabien Potencier",
  3394. "email": "fabien@symfony.com"
  3395. },
  3396. {
  3397. "name": "Symfony Community",
  3398. "homepage": "https://symfony.com/contributors"
  3399. }
  3400. ],
  3401. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  3402. "homepage": "https://symfony.com",
  3403. "support": {
  3404. "source": "https://github.com/symfony/asset/tree/v5.2.4"
  3405. },
  3406. "funding": [
  3407. {
  3408. "url": "https://symfony.com/sponsor",
  3409. "type": "custom"
  3410. },
  3411. {
  3412. "url": "https://github.com/fabpot",
  3413. "type": "github"
  3414. },
  3415. {
  3416. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3417. "type": "tidelift"
  3418. }
  3419. ],
  3420. "time": "2021-01-27T10:01:46+00:00"
  3421. },
  3422. {
  3423. "name": "symfony/cache",
  3424. "version": "v5.2.6",
  3425. "source": {
  3426. "type": "git",
  3427. "url": "https://github.com/symfony/cache.git",
  3428. "reference": "093d69bb10c959553c8beb828b8d4ea250a247dd"
  3429. },
  3430. "dist": {
  3431. "type": "zip",
  3432. "url": "https://api.github.com/repos/symfony/cache/zipball/093d69bb10c959553c8beb828b8d4ea250a247dd",
  3433. "reference": "093d69bb10c959553c8beb828b8d4ea250a247dd",
  3434. "shasum": ""
  3435. },
  3436. "require": {
  3437. "php": ">=7.2.5",
  3438. "psr/cache": "^1.0|^2.0",
  3439. "psr/log": "^1.1",
  3440. "symfony/cache-contracts": "^1.1.7|^2",
  3441. "symfony/polyfill-php80": "^1.15",
  3442. "symfony/service-contracts": "^1.1|^2",
  3443. "symfony/var-exporter": "^4.4|^5.0"
  3444. },
  3445. "conflict": {
  3446. "doctrine/dbal": "<2.10",
  3447. "symfony/dependency-injection": "<4.4",
  3448. "symfony/http-kernel": "<4.4",
  3449. "symfony/var-dumper": "<4.4"
  3450. },
  3451. "provide": {
  3452. "psr/cache-implementation": "1.0|2.0",
  3453. "psr/simple-cache-implementation": "1.0",
  3454. "symfony/cache-implementation": "1.0|2.0"
  3455. },
  3456. "require-dev": {
  3457. "cache/integration-tests": "dev-master",
  3458. "doctrine/cache": "^1.6",
  3459. "doctrine/dbal": "^2.10|^3.0",
  3460. "predis/predis": "^1.1",
  3461. "psr/simple-cache": "^1.0",
  3462. "symfony/config": "^4.4|^5.0",
  3463. "symfony/dependency-injection": "^4.4|^5.0",
  3464. "symfony/filesystem": "^4.4|^5.0",
  3465. "symfony/http-kernel": "^4.4|^5.0",
  3466. "symfony/messenger": "^4.4|^5.0",
  3467. "symfony/var-dumper": "^4.4|^5.0"
  3468. },
  3469. "type": "library",
  3470. "autoload": {
  3471. "psr-4": {
  3472. "Symfony\\Component\\Cache\\": ""
  3473. },
  3474. "exclude-from-classmap": [
  3475. "/Tests/"
  3476. ]
  3477. },
  3478. "notification-url": "https://packagist.org/downloads/",
  3479. "license": [
  3480. "MIT"
  3481. ],
  3482. "authors": [
  3483. {
  3484. "name": "Nicolas Grekas",
  3485. "email": "p@tchwork.com"
  3486. },
  3487. {
  3488. "name": "Symfony Community",
  3489. "homepage": "https://symfony.com/contributors"
  3490. }
  3491. ],
  3492. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  3493. "homepage": "https://symfony.com",
  3494. "keywords": [
  3495. "caching",
  3496. "psr6"
  3497. ],
  3498. "support": {
  3499. "source": "https://github.com/symfony/cache/tree/v5.2.6"
  3500. },
  3501. "funding": [
  3502. {
  3503. "url": "https://symfony.com/sponsor",
  3504. "type": "custom"
  3505. },
  3506. {
  3507. "url": "https://github.com/fabpot",
  3508. "type": "github"
  3509. },
  3510. {
  3511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3512. "type": "tidelift"
  3513. }
  3514. ],
  3515. "time": "2021-03-16T09:10:13+00:00"
  3516. },
  3517. {
  3518. "name": "symfony/cache-contracts",
  3519. "version": "v2.4.0",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://github.com/symfony/cache-contracts.git",
  3523. "reference": "c0446463729b89dd4fa62e9aeecc80287323615d"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/c0446463729b89dd4fa62e9aeecc80287323615d",
  3528. "reference": "c0446463729b89dd4fa62e9aeecc80287323615d",
  3529. "shasum": ""
  3530. },
  3531. "require": {
  3532. "php": ">=7.2.5",
  3533. "psr/cache": "^1.0|^2.0|^3.0"
  3534. },
  3535. "suggest": {
  3536. "symfony/cache-implementation": ""
  3537. },
  3538. "type": "library",
  3539. "extra": {
  3540. "branch-alias": {
  3541. "dev-main": "2.4-dev"
  3542. },
  3543. "thanks": {
  3544. "name": "symfony/contracts",
  3545. "url": "https://github.com/symfony/contracts"
  3546. }
  3547. },
  3548. "autoload": {
  3549. "psr-4": {
  3550. "Symfony\\Contracts\\Cache\\": ""
  3551. }
  3552. },
  3553. "notification-url": "https://packagist.org/downloads/",
  3554. "license": [
  3555. "MIT"
  3556. ],
  3557. "authors": [
  3558. {
  3559. "name": "Nicolas Grekas",
  3560. "email": "p@tchwork.com"
  3561. },
  3562. {
  3563. "name": "Symfony Community",
  3564. "homepage": "https://symfony.com/contributors"
  3565. }
  3566. ],
  3567. "description": "Generic abstractions related to caching",
  3568. "homepage": "https://symfony.com",
  3569. "keywords": [
  3570. "abstractions",
  3571. "contracts",
  3572. "decoupling",
  3573. "interfaces",
  3574. "interoperability",
  3575. "standards"
  3576. ],
  3577. "support": {
  3578. "source": "https://github.com/symfony/cache-contracts/tree/v2.4.0"
  3579. },
  3580. "funding": [
  3581. {
  3582. "url": "https://symfony.com/sponsor",
  3583. "type": "custom"
  3584. },
  3585. {
  3586. "url": "https://github.com/fabpot",
  3587. "type": "github"
  3588. },
  3589. {
  3590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3591. "type": "tidelift"
  3592. }
  3593. ],
  3594. "time": "2021-03-23T23:28:01+00:00"
  3595. },
  3596. {
  3597. "name": "symfony/config",
  3598. "version": "v5.2.4",
  3599. "source": {
  3600. "type": "git",
  3601. "url": "https://github.com/symfony/config.git",
  3602. "reference": "212d54675bf203ff8aef7d8cee8eecfb72f4a263"
  3603. },
  3604. "dist": {
  3605. "type": "zip",
  3606. "url": "https://api.github.com/repos/symfony/config/zipball/212d54675bf203ff8aef7d8cee8eecfb72f4a263",
  3607. "reference": "212d54675bf203ff8aef7d8cee8eecfb72f4a263",
  3608. "shasum": ""
  3609. },
  3610. "require": {
  3611. "php": ">=7.2.5",
  3612. "symfony/deprecation-contracts": "^2.1",
  3613. "symfony/filesystem": "^4.4|^5.0",
  3614. "symfony/polyfill-ctype": "~1.8",
  3615. "symfony/polyfill-php80": "^1.15"
  3616. },
  3617. "conflict": {
  3618. "symfony/finder": "<4.4"
  3619. },
  3620. "require-dev": {
  3621. "symfony/event-dispatcher": "^4.4|^5.0",
  3622. "symfony/finder": "^4.4|^5.0",
  3623. "symfony/messenger": "^4.4|^5.0",
  3624. "symfony/service-contracts": "^1.1|^2",
  3625. "symfony/yaml": "^4.4|^5.0"
  3626. },
  3627. "suggest": {
  3628. "symfony/yaml": "To use the yaml reference dumper"
  3629. },
  3630. "type": "library",
  3631. "autoload": {
  3632. "psr-4": {
  3633. "Symfony\\Component\\Config\\": ""
  3634. },
  3635. "exclude-from-classmap": [
  3636. "/Tests/"
  3637. ]
  3638. },
  3639. "notification-url": "https://packagist.org/downloads/",
  3640. "license": [
  3641. "MIT"
  3642. ],
  3643. "authors": [
  3644. {
  3645. "name": "Fabien Potencier",
  3646. "email": "fabien@symfony.com"
  3647. },
  3648. {
  3649. "name": "Symfony Community",
  3650. "homepage": "https://symfony.com/contributors"
  3651. }
  3652. ],
  3653. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  3654. "homepage": "https://symfony.com",
  3655. "support": {
  3656. "source": "https://github.com/symfony/config/tree/v5.2.4"
  3657. },
  3658. "funding": [
  3659. {
  3660. "url": "https://symfony.com/sponsor",
  3661. "type": "custom"
  3662. },
  3663. {
  3664. "url": "https://github.com/fabpot",
  3665. "type": "github"
  3666. },
  3667. {
  3668. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3669. "type": "tidelift"
  3670. }
  3671. ],
  3672. "time": "2021-02-23T23:58:19+00:00"
  3673. },
  3674. {
  3675. "name": "symfony/console",
  3676. "version": "v5.2.6",
  3677. "source": {
  3678. "type": "git",
  3679. "url": "https://github.com/symfony/console.git",
  3680. "reference": "35f039df40a3b335ebf310f244cb242b3a83ac8d"
  3681. },
  3682. "dist": {
  3683. "type": "zip",
  3684. "url": "https://api.github.com/repos/symfony/console/zipball/35f039df40a3b335ebf310f244cb242b3a83ac8d",
  3685. "reference": "35f039df40a3b335ebf310f244cb242b3a83ac8d",
  3686. "shasum": ""
  3687. },
  3688. "require": {
  3689. "php": ">=7.2.5",
  3690. "symfony/polyfill-mbstring": "~1.0",
  3691. "symfony/polyfill-php73": "^1.8",
  3692. "symfony/polyfill-php80": "^1.15",
  3693. "symfony/service-contracts": "^1.1|^2",
  3694. "symfony/string": "^5.1"
  3695. },
  3696. "conflict": {
  3697. "symfony/dependency-injection": "<4.4",
  3698. "symfony/dotenv": "<5.1",
  3699. "symfony/event-dispatcher": "<4.4",
  3700. "symfony/lock": "<4.4",
  3701. "symfony/process": "<4.4"
  3702. },
  3703. "provide": {
  3704. "psr/log-implementation": "1.0"
  3705. },
  3706. "require-dev": {
  3707. "psr/log": "~1.0",
  3708. "symfony/config": "^4.4|^5.0",
  3709. "symfony/dependency-injection": "^4.4|^5.0",
  3710. "symfony/event-dispatcher": "^4.4|^5.0",
  3711. "symfony/lock": "^4.4|^5.0",
  3712. "symfony/process": "^4.4|^5.0",
  3713. "symfony/var-dumper": "^4.4|^5.0"
  3714. },
  3715. "suggest": {
  3716. "psr/log": "For using the console logger",
  3717. "symfony/event-dispatcher": "",
  3718. "symfony/lock": "",
  3719. "symfony/process": ""
  3720. },
  3721. "type": "library",
  3722. "autoload": {
  3723. "psr-4": {
  3724. "Symfony\\Component\\Console\\": ""
  3725. },
  3726. "exclude-from-classmap": [
  3727. "/Tests/"
  3728. ]
  3729. },
  3730. "notification-url": "https://packagist.org/downloads/",
  3731. "license": [
  3732. "MIT"
  3733. ],
  3734. "authors": [
  3735. {
  3736. "name": "Fabien Potencier",
  3737. "email": "fabien@symfony.com"
  3738. },
  3739. {
  3740. "name": "Symfony Community",
  3741. "homepage": "https://symfony.com/contributors"
  3742. }
  3743. ],
  3744. "description": "Eases the creation of beautiful and testable command line interfaces",
  3745. "homepage": "https://symfony.com",
  3746. "keywords": [
  3747. "cli",
  3748. "command line",
  3749. "console",
  3750. "terminal"
  3751. ],
  3752. "support": {
  3753. "source": "https://github.com/symfony/console/tree/v5.2.6"
  3754. },
  3755. "funding": [
  3756. {
  3757. "url": "https://symfony.com/sponsor",
  3758. "type": "custom"
  3759. },
  3760. {
  3761. "url": "https://github.com/fabpot",
  3762. "type": "github"
  3763. },
  3764. {
  3765. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3766. "type": "tidelift"
  3767. }
  3768. ],
  3769. "time": "2021-03-28T09:42:18+00:00"
  3770. },
  3771. {
  3772. "name": "symfony/dependency-injection",
  3773. "version": "v5.2.6",
  3774. "source": {
  3775. "type": "git",
  3776. "url": "https://github.com/symfony/dependency-injection.git",
  3777. "reference": "1e66194bed2a69fa395d26bf1067e5e34483afac"
  3778. },
  3779. "dist": {
  3780. "type": "zip",
  3781. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/1e66194bed2a69fa395d26bf1067e5e34483afac",
  3782. "reference": "1e66194bed2a69fa395d26bf1067e5e34483afac",
  3783. "shasum": ""
  3784. },
  3785. "require": {
  3786. "php": ">=7.2.5",
  3787. "psr/container": "^1.0",
  3788. "symfony/deprecation-contracts": "^2.1",
  3789. "symfony/polyfill-php80": "^1.15",
  3790. "symfony/service-contracts": "^1.1.6|^2"
  3791. },
  3792. "conflict": {
  3793. "symfony/config": "<5.1",
  3794. "symfony/finder": "<4.4",
  3795. "symfony/proxy-manager-bridge": "<4.4",
  3796. "symfony/yaml": "<4.4"
  3797. },
  3798. "provide": {
  3799. "psr/container-implementation": "1.0",
  3800. "symfony/service-implementation": "1.0|2.0"
  3801. },
  3802. "require-dev": {
  3803. "symfony/config": "^5.1",
  3804. "symfony/expression-language": "^4.4|^5.0",
  3805. "symfony/yaml": "^4.4|^5.0"
  3806. },
  3807. "suggest": {
  3808. "symfony/config": "",
  3809. "symfony/expression-language": "For using expressions in service container configuration",
  3810. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3811. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3812. "symfony/yaml": ""
  3813. },
  3814. "type": "library",
  3815. "autoload": {
  3816. "psr-4": {
  3817. "Symfony\\Component\\DependencyInjection\\": ""
  3818. },
  3819. "exclude-from-classmap": [
  3820. "/Tests/"
  3821. ]
  3822. },
  3823. "notification-url": "https://packagist.org/downloads/",
  3824. "license": [
  3825. "MIT"
  3826. ],
  3827. "authors": [
  3828. {
  3829. "name": "Fabien Potencier",
  3830. "email": "fabien@symfony.com"
  3831. },
  3832. {
  3833. "name": "Symfony Community",
  3834. "homepage": "https://symfony.com/contributors"
  3835. }
  3836. ],
  3837. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  3838. "homepage": "https://symfony.com",
  3839. "support": {
  3840. "source": "https://github.com/symfony/dependency-injection/tree/v5.2.6"
  3841. },
  3842. "funding": [
  3843. {
  3844. "url": "https://symfony.com/sponsor",
  3845. "type": "custom"
  3846. },
  3847. {
  3848. "url": "https://github.com/fabpot",
  3849. "type": "github"
  3850. },
  3851. {
  3852. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3853. "type": "tidelift"
  3854. }
  3855. ],
  3856. "time": "2021-03-22T11:10:24+00:00"
  3857. },
  3858. {
  3859. "name": "symfony/deprecation-contracts",
  3860. "version": "v2.4.0",
  3861. "source": {
  3862. "type": "git",
  3863. "url": "https://github.com/symfony/deprecation-contracts.git",
  3864. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  3865. },
  3866. "dist": {
  3867. "type": "zip",
  3868. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  3869. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  3870. "shasum": ""
  3871. },
  3872. "require": {
  3873. "php": ">=7.1"
  3874. },
  3875. "type": "library",
  3876. "extra": {
  3877. "branch-alias": {
  3878. "dev-main": "2.4-dev"
  3879. },
  3880. "thanks": {
  3881. "name": "symfony/contracts",
  3882. "url": "https://github.com/symfony/contracts"
  3883. }
  3884. },
  3885. "autoload": {
  3886. "files": [
  3887. "function.php"
  3888. ]
  3889. },
  3890. "notification-url": "https://packagist.org/downloads/",
  3891. "license": [
  3892. "MIT"
  3893. ],
  3894. "authors": [
  3895. {
  3896. "name": "Nicolas Grekas",
  3897. "email": "p@tchwork.com"
  3898. },
  3899. {
  3900. "name": "Symfony Community",
  3901. "homepage": "https://symfony.com/contributors"
  3902. }
  3903. ],
  3904. "description": "A generic function and convention to trigger deprecation notices",
  3905. "homepage": "https://symfony.com",
  3906. "support": {
  3907. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  3908. },
  3909. "funding": [
  3910. {
  3911. "url": "https://symfony.com/sponsor",
  3912. "type": "custom"
  3913. },
  3914. {
  3915. "url": "https://github.com/fabpot",
  3916. "type": "github"
  3917. },
  3918. {
  3919. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3920. "type": "tidelift"
  3921. }
  3922. ],
  3923. "time": "2021-03-23T23:28:01+00:00"
  3924. },
  3925. {
  3926. "name": "symfony/doctrine-bridge",
  3927. "version": "v5.2.6",
  3928. "source": {
  3929. "type": "git",
  3930. "url": "https://github.com/symfony/doctrine-bridge.git",
  3931. "reference": "72b6d743c6108e2b8d15ab94e1a8a224c4d0d144"
  3932. },
  3933. "dist": {
  3934. "type": "zip",
  3935. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/72b6d743c6108e2b8d15ab94e1a8a224c4d0d144",
  3936. "reference": "72b6d743c6108e2b8d15ab94e1a8a224c4d0d144",
  3937. "shasum": ""
  3938. },
  3939. "require": {
  3940. "doctrine/event-manager": "~1.0",
  3941. "doctrine/persistence": "^2",
  3942. "php": ">=7.2.5",
  3943. "symfony/deprecation-contracts": "^2.1",
  3944. "symfony/polyfill-ctype": "~1.8",
  3945. "symfony/polyfill-mbstring": "~1.0",
  3946. "symfony/polyfill-php80": "^1.15",
  3947. "symfony/service-contracts": "^1.1|^2"
  3948. },
  3949. "conflict": {
  3950. "doctrine/dbal": "<2.10",
  3951. "phpunit/phpunit": "<5.4.3",
  3952. "symfony/dependency-injection": "<4.4",
  3953. "symfony/form": "<5.1",
  3954. "symfony/http-kernel": "<5",
  3955. "symfony/messenger": "<4.4",
  3956. "symfony/property-info": "<5",
  3957. "symfony/security-bundle": "<5",
  3958. "symfony/security-core": "<5",
  3959. "symfony/validator": "<5.2"
  3960. },
  3961. "require-dev": {
  3962. "composer/package-versions-deprecated": "^1.8",
  3963. "doctrine/annotations": "^1.10.4",
  3964. "doctrine/cache": "~1.6",
  3965. "doctrine/collections": "~1.0",
  3966. "doctrine/data-fixtures": "^1.1",
  3967. "doctrine/dbal": "^2.10|^3.0",
  3968. "doctrine/orm": "^2.7.3",
  3969. "symfony/cache": "^5.1",
  3970. "symfony/config": "^4.4|^5.0",
  3971. "symfony/dependency-injection": "^4.4|^5.0",
  3972. "symfony/doctrine-messenger": "^5.1",
  3973. "symfony/expression-language": "^4.4|^5.0",
  3974. "symfony/form": "^5.1.3",
  3975. "symfony/http-kernel": "^5.0",
  3976. "symfony/messenger": "^4.4|^5.0",
  3977. "symfony/property-access": "^4.4|^5.0",
  3978. "symfony/property-info": "^5.0",
  3979. "symfony/proxy-manager-bridge": "^4.4|^5.0",
  3980. "symfony/security-core": "^5.0",
  3981. "symfony/stopwatch": "^4.4|^5.0",
  3982. "symfony/translation": "^4.4|^5.0",
  3983. "symfony/uid": "^5.1",
  3984. "symfony/validator": "^5.2",
  3985. "symfony/var-dumper": "^4.4|^5.0"
  3986. },
  3987. "suggest": {
  3988. "doctrine/data-fixtures": "",
  3989. "doctrine/dbal": "",
  3990. "doctrine/orm": "",
  3991. "symfony/form": "",
  3992. "symfony/property-info": "",
  3993. "symfony/validator": ""
  3994. },
  3995. "type": "symfony-bridge",
  3996. "autoload": {
  3997. "psr-4": {
  3998. "Symfony\\Bridge\\Doctrine\\": ""
  3999. },
  4000. "exclude-from-classmap": [
  4001. "/Tests/"
  4002. ]
  4003. },
  4004. "notification-url": "https://packagist.org/downloads/",
  4005. "license": [
  4006. "MIT"
  4007. ],
  4008. "authors": [
  4009. {
  4010. "name": "Fabien Potencier",
  4011. "email": "fabien@symfony.com"
  4012. },
  4013. {
  4014. "name": "Symfony Community",
  4015. "homepage": "https://symfony.com/contributors"
  4016. }
  4017. ],
  4018. "description": "Provides integration for Doctrine with various Symfony components",
  4019. "homepage": "https://symfony.com",
  4020. "support": {
  4021. "source": "https://github.com/symfony/doctrine-bridge/tree/v5.2.6"
  4022. },
  4023. "funding": [
  4024. {
  4025. "url": "https://symfony.com/sponsor",
  4026. "type": "custom"
  4027. },
  4028. {
  4029. "url": "https://github.com/fabpot",
  4030. "type": "github"
  4031. },
  4032. {
  4033. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4034. "type": "tidelift"
  4035. }
  4036. ],
  4037. "time": "2021-03-10T22:10:15+00:00"
  4038. },
  4039. {
  4040. "name": "symfony/doctrine-messenger",
  4041. "version": "v5.2.5",
  4042. "source": {
  4043. "type": "git",
  4044. "url": "https://github.com/symfony/doctrine-messenger.git",
  4045. "reference": "10136ef0e31ca9839254bd909ef42421b61bc118"
  4046. },
  4047. "dist": {
  4048. "type": "zip",
  4049. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/10136ef0e31ca9839254bd909ef42421b61bc118",
  4050. "reference": "10136ef0e31ca9839254bd909ef42421b61bc118",
  4051. "shasum": ""
  4052. },
  4053. "require": {
  4054. "php": ">=7.2.5",
  4055. "symfony/messenger": "^5.1",
  4056. "symfony/service-contracts": "^1.1|^2"
  4057. },
  4058. "conflict": {
  4059. "doctrine/dbal": "<2.10",
  4060. "doctrine/persistence": "<1.3"
  4061. },
  4062. "require-dev": {
  4063. "doctrine/dbal": "^2.10|^3.0",
  4064. "doctrine/persistence": "^1.3|^2",
  4065. "symfony/property-access": "^4.4|^5.0",
  4066. "symfony/serializer": "^4.4|^5.0"
  4067. },
  4068. "type": "symfony-bridge",
  4069. "autoload": {
  4070. "psr-4": {
  4071. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  4072. },
  4073. "exclude-from-classmap": [
  4074. "/Tests/"
  4075. ]
  4076. },
  4077. "notification-url": "https://packagist.org/downloads/",
  4078. "license": [
  4079. "MIT"
  4080. ],
  4081. "authors": [
  4082. {
  4083. "name": "Fabien Potencier",
  4084. "email": "fabien@symfony.com"
  4085. },
  4086. {
  4087. "name": "Symfony Community",
  4088. "homepage": "https://symfony.com/contributors"
  4089. }
  4090. ],
  4091. "description": "Symfony Doctrine Messenger Bridge",
  4092. "homepage": "https://symfony.com",
  4093. "support": {
  4094. "source": "https://github.com/symfony/doctrine-messenger/tree/v5.2.5"
  4095. },
  4096. "funding": [
  4097. {
  4098. "url": "https://symfony.com/sponsor",
  4099. "type": "custom"
  4100. },
  4101. {
  4102. "url": "https://github.com/fabpot",
  4103. "type": "github"
  4104. },
  4105. {
  4106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4107. "type": "tidelift"
  4108. }
  4109. ],
  4110. "time": "2021-03-05T12:14:19+00:00"
  4111. },
  4112. {
  4113. "name": "symfony/dotenv",
  4114. "version": "v5.2.4",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/symfony/dotenv.git",
  4118. "reference": "783f12027c6b40ab0e93d6136d9f642d1d67cd6b"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/symfony/dotenv/zipball/783f12027c6b40ab0e93d6136d9f642d1d67cd6b",
  4123. "reference": "783f12027c6b40ab0e93d6136d9f642d1d67cd6b",
  4124. "shasum": ""
  4125. },
  4126. "require": {
  4127. "php": ">=7.2.5",
  4128. "symfony/deprecation-contracts": "^2.1"
  4129. },
  4130. "require-dev": {
  4131. "symfony/process": "^4.4|^5.0"
  4132. },
  4133. "type": "library",
  4134. "autoload": {
  4135. "psr-4": {
  4136. "Symfony\\Component\\Dotenv\\": ""
  4137. },
  4138. "exclude-from-classmap": [
  4139. "/Tests/"
  4140. ]
  4141. },
  4142. "notification-url": "https://packagist.org/downloads/",
  4143. "license": [
  4144. "MIT"
  4145. ],
  4146. "authors": [
  4147. {
  4148. "name": "Fabien Potencier",
  4149. "email": "fabien@symfony.com"
  4150. },
  4151. {
  4152. "name": "Symfony Community",
  4153. "homepage": "https://symfony.com/contributors"
  4154. }
  4155. ],
  4156. "description": "Registers environment variables from a .env file",
  4157. "homepage": "https://symfony.com",
  4158. "keywords": [
  4159. "dotenv",
  4160. "env",
  4161. "environment"
  4162. ],
  4163. "support": {
  4164. "source": "https://github.com/symfony/dotenv/tree/v5.2.4"
  4165. },
  4166. "funding": [
  4167. {
  4168. "url": "https://symfony.com/sponsor",
  4169. "type": "custom"
  4170. },
  4171. {
  4172. "url": "https://github.com/fabpot",
  4173. "type": "github"
  4174. },
  4175. {
  4176. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4177. "type": "tidelift"
  4178. }
  4179. ],
  4180. "time": "2021-01-27T10:01:46+00:00"
  4181. },
  4182. {
  4183. "name": "symfony/error-handler",
  4184. "version": "v5.2.6",
  4185. "source": {
  4186. "type": "git",
  4187. "url": "https://github.com/symfony/error-handler.git",
  4188. "reference": "bdb7fb4188da7f4211e4b88350ba0dfdad002b03"
  4189. },
  4190. "dist": {
  4191. "type": "zip",
  4192. "url": "https://api.github.com/repos/symfony/error-handler/zipball/bdb7fb4188da7f4211e4b88350ba0dfdad002b03",
  4193. "reference": "bdb7fb4188da7f4211e4b88350ba0dfdad002b03",
  4194. "shasum": ""
  4195. },
  4196. "require": {
  4197. "php": ">=7.2.5",
  4198. "psr/log": "^1.0",
  4199. "symfony/polyfill-php80": "^1.15",
  4200. "symfony/var-dumper": "^4.4|^5.0"
  4201. },
  4202. "require-dev": {
  4203. "symfony/deprecation-contracts": "^2.1",
  4204. "symfony/http-kernel": "^4.4|^5.0",
  4205. "symfony/serializer": "^4.4|^5.0"
  4206. },
  4207. "type": "library",
  4208. "autoload": {
  4209. "psr-4": {
  4210. "Symfony\\Component\\ErrorHandler\\": ""
  4211. },
  4212. "exclude-from-classmap": [
  4213. "/Tests/"
  4214. ]
  4215. },
  4216. "notification-url": "https://packagist.org/downloads/",
  4217. "license": [
  4218. "MIT"
  4219. ],
  4220. "authors": [
  4221. {
  4222. "name": "Fabien Potencier",
  4223. "email": "fabien@symfony.com"
  4224. },
  4225. {
  4226. "name": "Symfony Community",
  4227. "homepage": "https://symfony.com/contributors"
  4228. }
  4229. ],
  4230. "description": "Provides tools to manage errors and ease debugging PHP code",
  4231. "homepage": "https://symfony.com",
  4232. "support": {
  4233. "source": "https://github.com/symfony/error-handler/tree/v5.2.6"
  4234. },
  4235. "funding": [
  4236. {
  4237. "url": "https://symfony.com/sponsor",
  4238. "type": "custom"
  4239. },
  4240. {
  4241. "url": "https://github.com/fabpot",
  4242. "type": "github"
  4243. },
  4244. {
  4245. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4246. "type": "tidelift"
  4247. }
  4248. ],
  4249. "time": "2021-03-16T09:07:47+00:00"
  4250. },
  4251. {
  4252. "name": "symfony/event-dispatcher",
  4253. "version": "v5.2.4",
  4254. "source": {
  4255. "type": "git",
  4256. "url": "https://github.com/symfony/event-dispatcher.git",
  4257. "reference": "d08d6ec121a425897951900ab692b612a61d6240"
  4258. },
  4259. "dist": {
  4260. "type": "zip",
  4261. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d08d6ec121a425897951900ab692b612a61d6240",
  4262. "reference": "d08d6ec121a425897951900ab692b612a61d6240",
  4263. "shasum": ""
  4264. },
  4265. "require": {
  4266. "php": ">=7.2.5",
  4267. "symfony/deprecation-contracts": "^2.1",
  4268. "symfony/event-dispatcher-contracts": "^2",
  4269. "symfony/polyfill-php80": "^1.15"
  4270. },
  4271. "conflict": {
  4272. "symfony/dependency-injection": "<4.4"
  4273. },
  4274. "provide": {
  4275. "psr/event-dispatcher-implementation": "1.0",
  4276. "symfony/event-dispatcher-implementation": "2.0"
  4277. },
  4278. "require-dev": {
  4279. "psr/log": "~1.0",
  4280. "symfony/config": "^4.4|^5.0",
  4281. "symfony/dependency-injection": "^4.4|^5.0",
  4282. "symfony/error-handler": "^4.4|^5.0",
  4283. "symfony/expression-language": "^4.4|^5.0",
  4284. "symfony/http-foundation": "^4.4|^5.0",
  4285. "symfony/service-contracts": "^1.1|^2",
  4286. "symfony/stopwatch": "^4.4|^5.0"
  4287. },
  4288. "suggest": {
  4289. "symfony/dependency-injection": "",
  4290. "symfony/http-kernel": ""
  4291. },
  4292. "type": "library",
  4293. "autoload": {
  4294. "psr-4": {
  4295. "Symfony\\Component\\EventDispatcher\\": ""
  4296. },
  4297. "exclude-from-classmap": [
  4298. "/Tests/"
  4299. ]
  4300. },
  4301. "notification-url": "https://packagist.org/downloads/",
  4302. "license": [
  4303. "MIT"
  4304. ],
  4305. "authors": [
  4306. {
  4307. "name": "Fabien Potencier",
  4308. "email": "fabien@symfony.com"
  4309. },
  4310. {
  4311. "name": "Symfony Community",
  4312. "homepage": "https://symfony.com/contributors"
  4313. }
  4314. ],
  4315. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4316. "homepage": "https://symfony.com",
  4317. "support": {
  4318. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.4"
  4319. },
  4320. "funding": [
  4321. {
  4322. "url": "https://symfony.com/sponsor",
  4323. "type": "custom"
  4324. },
  4325. {
  4326. "url": "https://github.com/fabpot",
  4327. "type": "github"
  4328. },
  4329. {
  4330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4331. "type": "tidelift"
  4332. }
  4333. ],
  4334. "time": "2021-02-18T17:12:37+00:00"
  4335. },
  4336. {
  4337. "name": "symfony/event-dispatcher-contracts",
  4338. "version": "v2.4.0",
  4339. "source": {
  4340. "type": "git",
  4341. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4342. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  4343. },
  4344. "dist": {
  4345. "type": "zip",
  4346. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  4347. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  4348. "shasum": ""
  4349. },
  4350. "require": {
  4351. "php": ">=7.2.5",
  4352. "psr/event-dispatcher": "^1"
  4353. },
  4354. "suggest": {
  4355. "symfony/event-dispatcher-implementation": ""
  4356. },
  4357. "type": "library",
  4358. "extra": {
  4359. "branch-alias": {
  4360. "dev-main": "2.4-dev"
  4361. },
  4362. "thanks": {
  4363. "name": "symfony/contracts",
  4364. "url": "https://github.com/symfony/contracts"
  4365. }
  4366. },
  4367. "autoload": {
  4368. "psr-4": {
  4369. "Symfony\\Contracts\\EventDispatcher\\": ""
  4370. }
  4371. },
  4372. "notification-url": "https://packagist.org/downloads/",
  4373. "license": [
  4374. "MIT"
  4375. ],
  4376. "authors": [
  4377. {
  4378. "name": "Nicolas Grekas",
  4379. "email": "p@tchwork.com"
  4380. },
  4381. {
  4382. "name": "Symfony Community",
  4383. "homepage": "https://symfony.com/contributors"
  4384. }
  4385. ],
  4386. "description": "Generic abstractions related to dispatching event",
  4387. "homepage": "https://symfony.com",
  4388. "keywords": [
  4389. "abstractions",
  4390. "contracts",
  4391. "decoupling",
  4392. "interfaces",
  4393. "interoperability",
  4394. "standards"
  4395. ],
  4396. "support": {
  4397. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  4398. },
  4399. "funding": [
  4400. {
  4401. "url": "https://symfony.com/sponsor",
  4402. "type": "custom"
  4403. },
  4404. {
  4405. "url": "https://github.com/fabpot",
  4406. "type": "github"
  4407. },
  4408. {
  4409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4410. "type": "tidelift"
  4411. }
  4412. ],
  4413. "time": "2021-03-23T23:28:01+00:00"
  4414. },
  4415. {
  4416. "name": "symfony/expression-language",
  4417. "version": "v5.2.4",
  4418. "source": {
  4419. "type": "git",
  4420. "url": "https://github.com/symfony/expression-language.git",
  4421. "reference": "3fc560e62bc5121751b792b11505db03a12cf83c"
  4422. },
  4423. "dist": {
  4424. "type": "zip",
  4425. "url": "https://api.github.com/repos/symfony/expression-language/zipball/3fc560e62bc5121751b792b11505db03a12cf83c",
  4426. "reference": "3fc560e62bc5121751b792b11505db03a12cf83c",
  4427. "shasum": ""
  4428. },
  4429. "require": {
  4430. "php": ">=7.2.5",
  4431. "symfony/cache": "^4.4|^5.0",
  4432. "symfony/polyfill-php80": "^1.15",
  4433. "symfony/service-contracts": "^1.1|^2"
  4434. },
  4435. "type": "library",
  4436. "autoload": {
  4437. "psr-4": {
  4438. "Symfony\\Component\\ExpressionLanguage\\": ""
  4439. },
  4440. "exclude-from-classmap": [
  4441. "/Tests/"
  4442. ]
  4443. },
  4444. "notification-url": "https://packagist.org/downloads/",
  4445. "license": [
  4446. "MIT"
  4447. ],
  4448. "authors": [
  4449. {
  4450. "name": "Fabien Potencier",
  4451. "email": "fabien@symfony.com"
  4452. },
  4453. {
  4454. "name": "Symfony Community",
  4455. "homepage": "https://symfony.com/contributors"
  4456. }
  4457. ],
  4458. "description": "Provides an engine that can compile and evaluate expressions",
  4459. "homepage": "https://symfony.com",
  4460. "support": {
  4461. "source": "https://github.com/symfony/expression-language/tree/v5.2.4"
  4462. },
  4463. "funding": [
  4464. {
  4465. "url": "https://symfony.com/sponsor",
  4466. "type": "custom"
  4467. },
  4468. {
  4469. "url": "https://github.com/fabpot",
  4470. "type": "github"
  4471. },
  4472. {
  4473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4474. "type": "tidelift"
  4475. }
  4476. ],
  4477. "time": "2021-02-12T10:38:38+00:00"
  4478. },
  4479. {
  4480. "name": "symfony/filesystem",
  4481. "version": "v5.2.6",
  4482. "source": {
  4483. "type": "git",
  4484. "url": "https://github.com/symfony/filesystem.git",
  4485. "reference": "8c86a82f51658188119e62cff0a050a12d09836f"
  4486. },
  4487. "dist": {
  4488. "type": "zip",
  4489. "url": "https://api.github.com/repos/symfony/filesystem/zipball/8c86a82f51658188119e62cff0a050a12d09836f",
  4490. "reference": "8c86a82f51658188119e62cff0a050a12d09836f",
  4491. "shasum": ""
  4492. },
  4493. "require": {
  4494. "php": ">=7.2.5",
  4495. "symfony/polyfill-ctype": "~1.8"
  4496. },
  4497. "type": "library",
  4498. "autoload": {
  4499. "psr-4": {
  4500. "Symfony\\Component\\Filesystem\\": ""
  4501. },
  4502. "exclude-from-classmap": [
  4503. "/Tests/"
  4504. ]
  4505. },
  4506. "notification-url": "https://packagist.org/downloads/",
  4507. "license": [
  4508. "MIT"
  4509. ],
  4510. "authors": [
  4511. {
  4512. "name": "Fabien Potencier",
  4513. "email": "fabien@symfony.com"
  4514. },
  4515. {
  4516. "name": "Symfony Community",
  4517. "homepage": "https://symfony.com/contributors"
  4518. }
  4519. ],
  4520. "description": "Provides basic utilities for the filesystem",
  4521. "homepage": "https://symfony.com",
  4522. "support": {
  4523. "source": "https://github.com/symfony/filesystem/tree/v5.2.6"
  4524. },
  4525. "funding": [
  4526. {
  4527. "url": "https://symfony.com/sponsor",
  4528. "type": "custom"
  4529. },
  4530. {
  4531. "url": "https://github.com/fabpot",
  4532. "type": "github"
  4533. },
  4534. {
  4535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4536. "type": "tidelift"
  4537. }
  4538. ],
  4539. "time": "2021-03-28T14:30:26+00:00"
  4540. },
  4541. {
  4542. "name": "symfony/finder",
  4543. "version": "v5.2.4",
  4544. "source": {
  4545. "type": "git",
  4546. "url": "https://github.com/symfony/finder.git",
  4547. "reference": "0d639a0943822626290d169965804f79400e6a04"
  4548. },
  4549. "dist": {
  4550. "type": "zip",
  4551. "url": "https://api.github.com/repos/symfony/finder/zipball/0d639a0943822626290d169965804f79400e6a04",
  4552. "reference": "0d639a0943822626290d169965804f79400e6a04",
  4553. "shasum": ""
  4554. },
  4555. "require": {
  4556. "php": ">=7.2.5"
  4557. },
  4558. "type": "library",
  4559. "autoload": {
  4560. "psr-4": {
  4561. "Symfony\\Component\\Finder\\": ""
  4562. },
  4563. "exclude-from-classmap": [
  4564. "/Tests/"
  4565. ]
  4566. },
  4567. "notification-url": "https://packagist.org/downloads/",
  4568. "license": [
  4569. "MIT"
  4570. ],
  4571. "authors": [
  4572. {
  4573. "name": "Fabien Potencier",
  4574. "email": "fabien@symfony.com"
  4575. },
  4576. {
  4577. "name": "Symfony Community",
  4578. "homepage": "https://symfony.com/contributors"
  4579. }
  4580. ],
  4581. "description": "Finds files and directories via an intuitive fluent interface",
  4582. "homepage": "https://symfony.com",
  4583. "support": {
  4584. "source": "https://github.com/symfony/finder/tree/v5.2.4"
  4585. },
  4586. "funding": [
  4587. {
  4588. "url": "https://symfony.com/sponsor",
  4589. "type": "custom"
  4590. },
  4591. {
  4592. "url": "https://github.com/fabpot",
  4593. "type": "github"
  4594. },
  4595. {
  4596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4597. "type": "tidelift"
  4598. }
  4599. ],
  4600. "time": "2021-02-15T18:55:04+00:00"
  4601. },
  4602. {
  4603. "name": "symfony/flex",
  4604. "version": "v1.12.2",
  4605. "source": {
  4606. "type": "git",
  4607. "url": "https://github.com/symfony/flex.git",
  4608. "reference": "e472606b4b3173564f0edbca8f5d32b52fc4f2c9"
  4609. },
  4610. "dist": {
  4611. "type": "zip",
  4612. "url": "https://api.github.com/repos/symfony/flex/zipball/e472606b4b3173564f0edbca8f5d32b52fc4f2c9",
  4613. "reference": "e472606b4b3173564f0edbca8f5d32b52fc4f2c9",
  4614. "shasum": ""
  4615. },
  4616. "require": {
  4617. "composer-plugin-api": "^1.0|^2.0",
  4618. "php": ">=7.1"
  4619. },
  4620. "require-dev": {
  4621. "composer/composer": "^1.0.2|^2.0",
  4622. "symfony/dotenv": "^4.4|^5.0",
  4623. "symfony/filesystem": "^4.4|^5.0",
  4624. "symfony/phpunit-bridge": "^4.4|^5.0",
  4625. "symfony/process": "^3.4|^4.4|^5.0"
  4626. },
  4627. "type": "composer-plugin",
  4628. "extra": {
  4629. "branch-alias": {
  4630. "dev-main": "1.12-dev"
  4631. },
  4632. "class": "Symfony\\Flex\\Flex"
  4633. },
  4634. "autoload": {
  4635. "psr-4": {
  4636. "Symfony\\Flex\\": "src"
  4637. }
  4638. },
  4639. "notification-url": "https://packagist.org/downloads/",
  4640. "license": [
  4641. "MIT"
  4642. ],
  4643. "authors": [
  4644. {
  4645. "name": "Fabien Potencier",
  4646. "email": "fabien.potencier@gmail.com"
  4647. }
  4648. ],
  4649. "description": "Composer plugin for Symfony",
  4650. "support": {
  4651. "issues": "https://github.com/symfony/flex/issues",
  4652. "source": "https://github.com/symfony/flex/tree/v1.12.2"
  4653. },
  4654. "funding": [
  4655. {
  4656. "url": "https://symfony.com/sponsor",
  4657. "type": "custom"
  4658. },
  4659. {
  4660. "url": "https://github.com/fabpot",
  4661. "type": "github"
  4662. },
  4663. {
  4664. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4665. "type": "tidelift"
  4666. }
  4667. ],
  4668. "time": "2021-02-16T14:05:05+00:00"
  4669. },
  4670. {
  4671. "name": "symfony/form",
  4672. "version": "v5.2.6",
  4673. "source": {
  4674. "type": "git",
  4675. "url": "https://github.com/symfony/form.git",
  4676. "reference": "40fbaed8d4238e37fdd1fecce8e0678a3eb0e48b"
  4677. },
  4678. "dist": {
  4679. "type": "zip",
  4680. "url": "https://api.github.com/repos/symfony/form/zipball/40fbaed8d4238e37fdd1fecce8e0678a3eb0e48b",
  4681. "reference": "40fbaed8d4238e37fdd1fecce8e0678a3eb0e48b",
  4682. "shasum": ""
  4683. },
  4684. "require": {
  4685. "php": ">=7.2.5",
  4686. "symfony/deprecation-contracts": "^2.1",
  4687. "symfony/event-dispatcher": "^4.4|^5.0",
  4688. "symfony/intl": "^4.4|^5.0",
  4689. "symfony/options-resolver": "^5.1",
  4690. "symfony/polyfill-ctype": "~1.8",
  4691. "symfony/polyfill-mbstring": "~1.0",
  4692. "symfony/polyfill-php80": "^1.15",
  4693. "symfony/property-access": "^5.0.8",
  4694. "symfony/service-contracts": "^1.1|^2"
  4695. },
  4696. "conflict": {
  4697. "phpunit/phpunit": "<5.4.3",
  4698. "symfony/console": "<4.4",
  4699. "symfony/dependency-injection": "<4.4",
  4700. "symfony/doctrine-bridge": "<4.4",
  4701. "symfony/error-handler": "<4.4.5",
  4702. "symfony/framework-bundle": "<4.4",
  4703. "symfony/http-kernel": "<4.4",
  4704. "symfony/intl": "<4.4",
  4705. "symfony/translation": "<4.4",
  4706. "symfony/translation-contracts": "<1.1.7",
  4707. "symfony/twig-bridge": "<4.4"
  4708. },
  4709. "require-dev": {
  4710. "doctrine/collections": "~1.0",
  4711. "symfony/config": "^4.4|^5.0",
  4712. "symfony/console": "^4.4|^5.0",
  4713. "symfony/dependency-injection": "^4.4|^5.0",
  4714. "symfony/expression-language": "^4.4|^5.0",
  4715. "symfony/http-foundation": "^4.4|^5.0",
  4716. "symfony/http-kernel": "^4.4|^5.0",
  4717. "symfony/security-csrf": "^4.4|^5.0",
  4718. "symfony/translation": "^4.4|^5.0",
  4719. "symfony/validator": "^4.4.17|^5.1.9",
  4720. "symfony/var-dumper": "^4.4|^5.0"
  4721. },
  4722. "suggest": {
  4723. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  4724. "symfony/twig-bridge": "For templating with Twig.",
  4725. "symfony/validator": "For form validation."
  4726. },
  4727. "type": "library",
  4728. "autoload": {
  4729. "psr-4": {
  4730. "Symfony\\Component\\Form\\": ""
  4731. },
  4732. "exclude-from-classmap": [
  4733. "/Tests/"
  4734. ]
  4735. },
  4736. "notification-url": "https://packagist.org/downloads/",
  4737. "license": [
  4738. "MIT"
  4739. ],
  4740. "authors": [
  4741. {
  4742. "name": "Fabien Potencier",
  4743. "email": "fabien@symfony.com"
  4744. },
  4745. {
  4746. "name": "Symfony Community",
  4747. "homepage": "https://symfony.com/contributors"
  4748. }
  4749. ],
  4750. "description": "Allows to easily create, process and reuse HTML forms",
  4751. "homepage": "https://symfony.com",
  4752. "support": {
  4753. "source": "https://github.com/symfony/form/tree/v5.2.6"
  4754. },
  4755. "funding": [
  4756. {
  4757. "url": "https://symfony.com/sponsor",
  4758. "type": "custom"
  4759. },
  4760. {
  4761. "url": "https://github.com/fabpot",
  4762. "type": "github"
  4763. },
  4764. {
  4765. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4766. "type": "tidelift"
  4767. }
  4768. ],
  4769. "time": "2021-03-28T09:59:03+00:00"
  4770. },
  4771. {
  4772. "name": "symfony/framework-bundle",
  4773. "version": "v5.2.6",
  4774. "source": {
  4775. "type": "git",
  4776. "url": "https://github.com/symfony/framework-bundle.git",
  4777. "reference": "8889da18c6faa76c6149a90e6542be4afe723f2f"
  4778. },
  4779. "dist": {
  4780. "type": "zip",
  4781. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/8889da18c6faa76c6149a90e6542be4afe723f2f",
  4782. "reference": "8889da18c6faa76c6149a90e6542be4afe723f2f",
  4783. "shasum": ""
  4784. },
  4785. "require": {
  4786. "ext-xml": "*",
  4787. "php": ">=7.2.5",
  4788. "symfony/cache": "^5.2",
  4789. "symfony/config": "^5.0",
  4790. "symfony/dependency-injection": "^5.2",
  4791. "symfony/deprecation-contracts": "^2.1",
  4792. "symfony/error-handler": "^4.4.1|^5.0.1",
  4793. "symfony/event-dispatcher": "^5.1",
  4794. "symfony/filesystem": "^4.4|^5.0",
  4795. "symfony/finder": "^4.4|^5.0",
  4796. "symfony/http-foundation": "^5.2.1",
  4797. "symfony/http-kernel": "^5.2.1",
  4798. "symfony/polyfill-mbstring": "~1.0",
  4799. "symfony/polyfill-php80": "^1.15",
  4800. "symfony/routing": "^5.2"
  4801. },
  4802. "conflict": {
  4803. "doctrine/persistence": "<1.3",
  4804. "phpdocumentor/reflection-docblock": "<3.2.2",
  4805. "phpdocumentor/type-resolver": "<1.4.0",
  4806. "phpunit/phpunit": "<5.4.3",
  4807. "symfony/asset": "<5.1",
  4808. "symfony/browser-kit": "<4.4",
  4809. "symfony/console": "<5.2.5",
  4810. "symfony/dom-crawler": "<4.4",
  4811. "symfony/dotenv": "<5.1",
  4812. "symfony/form": "<5.2",
  4813. "symfony/http-client": "<4.4",
  4814. "symfony/lock": "<4.4",
  4815. "symfony/mailer": "<5.2",
  4816. "symfony/messenger": "<4.4",
  4817. "symfony/mime": "<4.4",
  4818. "symfony/property-access": "<5.2",
  4819. "symfony/property-info": "<4.4",
  4820. "symfony/serializer": "<5.2",
  4821. "symfony/stopwatch": "<4.4",
  4822. "symfony/translation": "<5.0",
  4823. "symfony/twig-bridge": "<4.4",
  4824. "symfony/twig-bundle": "<4.4",
  4825. "symfony/validator": "<5.2",
  4826. "symfony/web-profiler-bundle": "<4.4",
  4827. "symfony/workflow": "<5.2"
  4828. },
  4829. "require-dev": {
  4830. "doctrine/annotations": "^1.10.4",
  4831. "doctrine/cache": "~1.0",
  4832. "doctrine/persistence": "^1.3|^2.0",
  4833. "paragonie/sodium_compat": "^1.8",
  4834. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4835. "symfony/asset": "^5.1",
  4836. "symfony/browser-kit": "^4.4|^5.0",
  4837. "symfony/console": "^5.2",
  4838. "symfony/css-selector": "^4.4|^5.0",
  4839. "symfony/dom-crawler": "^4.4|^5.0",
  4840. "symfony/dotenv": "^5.1",
  4841. "symfony/expression-language": "^4.4|^5.0",
  4842. "symfony/form": "^5.2",
  4843. "symfony/http-client": "^4.4|^5.0",
  4844. "symfony/lock": "^4.4|^5.0",
  4845. "symfony/mailer": "^5.2",
  4846. "symfony/messenger": "^5.2",
  4847. "symfony/mime": "^4.4|^5.0",
  4848. "symfony/polyfill-intl-icu": "~1.0",
  4849. "symfony/process": "^4.4|^5.0",
  4850. "symfony/property-info": "^4.4|^5.0",
  4851. "symfony/security-bundle": "^5.1",
  4852. "symfony/security-core": "^4.4|^5.2",
  4853. "symfony/security-csrf": "^4.4|^5.0",
  4854. "symfony/security-http": "^4.4|^5.0",
  4855. "symfony/serializer": "^5.2",
  4856. "symfony/stopwatch": "^4.4|^5.0",
  4857. "symfony/string": "^5.0",
  4858. "symfony/translation": "^5.0",
  4859. "symfony/twig-bundle": "^4.4|^5.0",
  4860. "symfony/validator": "^5.2",
  4861. "symfony/web-link": "^4.4|^5.0",
  4862. "symfony/workflow": "^5.2",
  4863. "symfony/yaml": "^4.4|^5.0",
  4864. "twig/twig": "^2.10|^3.0"
  4865. },
  4866. "suggest": {
  4867. "ext-apcu": "For best performance of the system caches",
  4868. "symfony/console": "For using the console commands",
  4869. "symfony/form": "For using forms",
  4870. "symfony/property-info": "For using the property_info service",
  4871. "symfony/serializer": "For using the serializer service",
  4872. "symfony/validator": "For using validation",
  4873. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  4874. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  4875. },
  4876. "type": "symfony-bundle",
  4877. "autoload": {
  4878. "psr-4": {
  4879. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4880. },
  4881. "exclude-from-classmap": [
  4882. "/Tests/"
  4883. ]
  4884. },
  4885. "notification-url": "https://packagist.org/downloads/",
  4886. "license": [
  4887. "MIT"
  4888. ],
  4889. "authors": [
  4890. {
  4891. "name": "Fabien Potencier",
  4892. "email": "fabien@symfony.com"
  4893. },
  4894. {
  4895. "name": "Symfony Community",
  4896. "homepage": "https://symfony.com/contributors"
  4897. }
  4898. ],
  4899. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  4900. "homepage": "https://symfony.com",
  4901. "support": {
  4902. "source": "https://github.com/symfony/framework-bundle/tree/v5.2.6"
  4903. },
  4904. "funding": [
  4905. {
  4906. "url": "https://symfony.com/sponsor",
  4907. "type": "custom"
  4908. },
  4909. {
  4910. "url": "https://github.com/fabpot",
  4911. "type": "github"
  4912. },
  4913. {
  4914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4915. "type": "tidelift"
  4916. }
  4917. ],
  4918. "time": "2021-03-22T14:43:01+00:00"
  4919. },
  4920. {
  4921. "name": "symfony/http-client",
  4922. "version": "v5.2.6",
  4923. "source": {
  4924. "type": "git",
  4925. "url": "https://github.com/symfony/http-client.git",
  4926. "reference": "3c3075467da15bc2edf38d2ac20d34719e794bd8"
  4927. },
  4928. "dist": {
  4929. "type": "zip",
  4930. "url": "https://api.github.com/repos/symfony/http-client/zipball/3c3075467da15bc2edf38d2ac20d34719e794bd8",
  4931. "reference": "3c3075467da15bc2edf38d2ac20d34719e794bd8",
  4932. "shasum": ""
  4933. },
  4934. "require": {
  4935. "php": ">=7.2.5",
  4936. "psr/log": "^1.0",
  4937. "symfony/http-client-contracts": "^2.2",
  4938. "symfony/polyfill-php73": "^1.11",
  4939. "symfony/polyfill-php80": "^1.15",
  4940. "symfony/service-contracts": "^1.0|^2"
  4941. },
  4942. "provide": {
  4943. "php-http/async-client-implementation": "*",
  4944. "php-http/client-implementation": "*",
  4945. "psr/http-client-implementation": "1.0",
  4946. "symfony/http-client-implementation": "2.2"
  4947. },
  4948. "require-dev": {
  4949. "amphp/amp": "^2.5",
  4950. "amphp/http-client": "^4.2.1",
  4951. "amphp/http-tunnel": "^1.0",
  4952. "amphp/socket": "^1.1",
  4953. "guzzlehttp/promises": "^1.4",
  4954. "nyholm/psr7": "^1.0",
  4955. "php-http/httplug": "^1.0|^2.0",
  4956. "psr/http-client": "^1.0",
  4957. "symfony/dependency-injection": "^4.4|^5.0",
  4958. "symfony/http-kernel": "^4.4.13|^5.1.5",
  4959. "symfony/process": "^4.4|^5.0",
  4960. "symfony/stopwatch": "^4.4|^5.0"
  4961. },
  4962. "type": "library",
  4963. "autoload": {
  4964. "psr-4": {
  4965. "Symfony\\Component\\HttpClient\\": ""
  4966. },
  4967. "exclude-from-classmap": [
  4968. "/Tests/"
  4969. ]
  4970. },
  4971. "notification-url": "https://packagist.org/downloads/",
  4972. "license": [
  4973. "MIT"
  4974. ],
  4975. "authors": [
  4976. {
  4977. "name": "Nicolas Grekas",
  4978. "email": "p@tchwork.com"
  4979. },
  4980. {
  4981. "name": "Symfony Community",
  4982. "homepage": "https://symfony.com/contributors"
  4983. }
  4984. ],
  4985. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4986. "homepage": "https://symfony.com",
  4987. "support": {
  4988. "source": "https://github.com/symfony/http-client/tree/v5.2.6"
  4989. },
  4990. "funding": [
  4991. {
  4992. "url": "https://symfony.com/sponsor",
  4993. "type": "custom"
  4994. },
  4995. {
  4996. "url": "https://github.com/fabpot",
  4997. "type": "github"
  4998. },
  4999. {
  5000. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5001. "type": "tidelift"
  5002. }
  5003. ],
  5004. "time": "2021-03-28T09:42:18+00:00"
  5005. },
  5006. {
  5007. "name": "symfony/http-client-contracts",
  5008. "version": "v2.4.0",
  5009. "source": {
  5010. "type": "git",
  5011. "url": "https://github.com/symfony/http-client-contracts.git",
  5012. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5013. },
  5014. "dist": {
  5015. "type": "zip",
  5016. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5017. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5018. "shasum": ""
  5019. },
  5020. "require": {
  5021. "php": ">=7.2.5"
  5022. },
  5023. "suggest": {
  5024. "symfony/http-client-implementation": ""
  5025. },
  5026. "type": "library",
  5027. "extra": {
  5028. "branch-alias": {
  5029. "dev-main": "2.4-dev"
  5030. },
  5031. "thanks": {
  5032. "name": "symfony/contracts",
  5033. "url": "https://github.com/symfony/contracts"
  5034. }
  5035. },
  5036. "autoload": {
  5037. "psr-4": {
  5038. "Symfony\\Contracts\\HttpClient\\": ""
  5039. }
  5040. },
  5041. "notification-url": "https://packagist.org/downloads/",
  5042. "license": [
  5043. "MIT"
  5044. ],
  5045. "authors": [
  5046. {
  5047. "name": "Nicolas Grekas",
  5048. "email": "p@tchwork.com"
  5049. },
  5050. {
  5051. "name": "Symfony Community",
  5052. "homepage": "https://symfony.com/contributors"
  5053. }
  5054. ],
  5055. "description": "Generic abstractions related to HTTP clients",
  5056. "homepage": "https://symfony.com",
  5057. "keywords": [
  5058. "abstractions",
  5059. "contracts",
  5060. "decoupling",
  5061. "interfaces",
  5062. "interoperability",
  5063. "standards"
  5064. ],
  5065. "support": {
  5066. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5067. },
  5068. "funding": [
  5069. {
  5070. "url": "https://symfony.com/sponsor",
  5071. "type": "custom"
  5072. },
  5073. {
  5074. "url": "https://github.com/fabpot",
  5075. "type": "github"
  5076. },
  5077. {
  5078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5079. "type": "tidelift"
  5080. }
  5081. ],
  5082. "time": "2021-04-11T23:07:08+00:00"
  5083. },
  5084. {
  5085. "name": "symfony/http-foundation",
  5086. "version": "v5.2.4",
  5087. "source": {
  5088. "type": "git",
  5089. "url": "https://github.com/symfony/http-foundation.git",
  5090. "reference": "54499baea7f7418bce7b5ec92770fd0799e8e9bf"
  5091. },
  5092. "dist": {
  5093. "type": "zip",
  5094. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/54499baea7f7418bce7b5ec92770fd0799e8e9bf",
  5095. "reference": "54499baea7f7418bce7b5ec92770fd0799e8e9bf",
  5096. "shasum": ""
  5097. },
  5098. "require": {
  5099. "php": ">=7.2.5",
  5100. "symfony/deprecation-contracts": "^2.1",
  5101. "symfony/polyfill-mbstring": "~1.1",
  5102. "symfony/polyfill-php80": "^1.15"
  5103. },
  5104. "require-dev": {
  5105. "predis/predis": "~1.0",
  5106. "symfony/cache": "^4.4|^5.0",
  5107. "symfony/expression-language": "^4.4|^5.0",
  5108. "symfony/mime": "^4.4|^5.0"
  5109. },
  5110. "suggest": {
  5111. "symfony/mime": "To use the file extension guesser"
  5112. },
  5113. "type": "library",
  5114. "autoload": {
  5115. "psr-4": {
  5116. "Symfony\\Component\\HttpFoundation\\": ""
  5117. },
  5118. "exclude-from-classmap": [
  5119. "/Tests/"
  5120. ]
  5121. },
  5122. "notification-url": "https://packagist.org/downloads/",
  5123. "license": [
  5124. "MIT"
  5125. ],
  5126. "authors": [
  5127. {
  5128. "name": "Fabien Potencier",
  5129. "email": "fabien@symfony.com"
  5130. },
  5131. {
  5132. "name": "Symfony Community",
  5133. "homepage": "https://symfony.com/contributors"
  5134. }
  5135. ],
  5136. "description": "Defines an object-oriented layer for the HTTP specification",
  5137. "homepage": "https://symfony.com",
  5138. "support": {
  5139. "source": "https://github.com/symfony/http-foundation/tree/v5.2.4"
  5140. },
  5141. "funding": [
  5142. {
  5143. "url": "https://symfony.com/sponsor",
  5144. "type": "custom"
  5145. },
  5146. {
  5147. "url": "https://github.com/fabpot",
  5148. "type": "github"
  5149. },
  5150. {
  5151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5152. "type": "tidelift"
  5153. }
  5154. ],
  5155. "time": "2021-02-25T17:16:57+00:00"
  5156. },
  5157. {
  5158. "name": "symfony/http-kernel",
  5159. "version": "v5.2.6",
  5160. "source": {
  5161. "type": "git",
  5162. "url": "https://github.com/symfony/http-kernel.git",
  5163. "reference": "f34de4c61ca46df73857f7f36b9a3805bdd7e3b2"
  5164. },
  5165. "dist": {
  5166. "type": "zip",
  5167. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f34de4c61ca46df73857f7f36b9a3805bdd7e3b2",
  5168. "reference": "f34de4c61ca46df73857f7f36b9a3805bdd7e3b2",
  5169. "shasum": ""
  5170. },
  5171. "require": {
  5172. "php": ">=7.2.5",
  5173. "psr/log": "~1.0",
  5174. "symfony/deprecation-contracts": "^2.1",
  5175. "symfony/error-handler": "^4.4|^5.0",
  5176. "symfony/event-dispatcher": "^5.0",
  5177. "symfony/http-client-contracts": "^1.1|^2",
  5178. "symfony/http-foundation": "^4.4|^5.0",
  5179. "symfony/polyfill-ctype": "^1.8",
  5180. "symfony/polyfill-php73": "^1.9",
  5181. "symfony/polyfill-php80": "^1.15"
  5182. },
  5183. "conflict": {
  5184. "symfony/browser-kit": "<4.4",
  5185. "symfony/cache": "<5.0",
  5186. "symfony/config": "<5.0",
  5187. "symfony/console": "<4.4",
  5188. "symfony/dependency-injection": "<5.1.8",
  5189. "symfony/doctrine-bridge": "<5.0",
  5190. "symfony/form": "<5.0",
  5191. "symfony/http-client": "<5.0",
  5192. "symfony/mailer": "<5.0",
  5193. "symfony/messenger": "<5.0",
  5194. "symfony/translation": "<5.0",
  5195. "symfony/twig-bridge": "<5.0",
  5196. "symfony/validator": "<5.0",
  5197. "twig/twig": "<2.13"
  5198. },
  5199. "provide": {
  5200. "psr/log-implementation": "1.0"
  5201. },
  5202. "require-dev": {
  5203. "psr/cache": "^1.0|^2.0|^3.0",
  5204. "symfony/browser-kit": "^4.4|^5.0",
  5205. "symfony/config": "^5.0",
  5206. "symfony/console": "^4.4|^5.0",
  5207. "symfony/css-selector": "^4.4|^5.0",
  5208. "symfony/dependency-injection": "^5.1.8",
  5209. "symfony/dom-crawler": "^4.4|^5.0",
  5210. "symfony/expression-language": "^4.4|^5.0",
  5211. "symfony/finder": "^4.4|^5.0",
  5212. "symfony/process": "^4.4|^5.0",
  5213. "symfony/routing": "^4.4|^5.0",
  5214. "symfony/stopwatch": "^4.4|^5.0",
  5215. "symfony/translation": "^4.4|^5.0",
  5216. "symfony/translation-contracts": "^1.1|^2",
  5217. "twig/twig": "^2.13|^3.0.4"
  5218. },
  5219. "suggest": {
  5220. "symfony/browser-kit": "",
  5221. "symfony/config": "",
  5222. "symfony/console": "",
  5223. "symfony/dependency-injection": ""
  5224. },
  5225. "type": "library",
  5226. "autoload": {
  5227. "psr-4": {
  5228. "Symfony\\Component\\HttpKernel\\": ""
  5229. },
  5230. "exclude-from-classmap": [
  5231. "/Tests/"
  5232. ]
  5233. },
  5234. "notification-url": "https://packagist.org/downloads/",
  5235. "license": [
  5236. "MIT"
  5237. ],
  5238. "authors": [
  5239. {
  5240. "name": "Fabien Potencier",
  5241. "email": "fabien@symfony.com"
  5242. },
  5243. {
  5244. "name": "Symfony Community",
  5245. "homepage": "https://symfony.com/contributors"
  5246. }
  5247. ],
  5248. "description": "Provides a structured process for converting a Request into a Response",
  5249. "homepage": "https://symfony.com",
  5250. "support": {
  5251. "source": "https://github.com/symfony/http-kernel/tree/v5.2.6"
  5252. },
  5253. "funding": [
  5254. {
  5255. "url": "https://symfony.com/sponsor",
  5256. "type": "custom"
  5257. },
  5258. {
  5259. "url": "https://github.com/fabpot",
  5260. "type": "github"
  5261. },
  5262. {
  5263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5264. "type": "tidelift"
  5265. }
  5266. ],
  5267. "time": "2021-03-29T05:16:58+00:00"
  5268. },
  5269. {
  5270. "name": "symfony/intl",
  5271. "version": "v5.2.4",
  5272. "source": {
  5273. "type": "git",
  5274. "url": "https://github.com/symfony/intl.git",
  5275. "reference": "11b4217e394c80a2e313d3a4a37262fbe65a7add"
  5276. },
  5277. "dist": {
  5278. "type": "zip",
  5279. "url": "https://api.github.com/repos/symfony/intl/zipball/11b4217e394c80a2e313d3a4a37262fbe65a7add",
  5280. "reference": "11b4217e394c80a2e313d3a4a37262fbe65a7add",
  5281. "shasum": ""
  5282. },
  5283. "require": {
  5284. "php": ">=7.2.5",
  5285. "symfony/polyfill-intl-icu": "~1.0",
  5286. "symfony/polyfill-php80": "^1.15"
  5287. },
  5288. "require-dev": {
  5289. "symfony/filesystem": "^4.4|^5.0"
  5290. },
  5291. "suggest": {
  5292. "ext-intl": "to use the component with locales other than \"en\""
  5293. },
  5294. "type": "library",
  5295. "autoload": {
  5296. "psr-4": {
  5297. "Symfony\\Component\\Intl\\": ""
  5298. },
  5299. "classmap": [
  5300. "Resources/stubs"
  5301. ],
  5302. "exclude-from-classmap": [
  5303. "/Tests/"
  5304. ]
  5305. },
  5306. "notification-url": "https://packagist.org/downloads/",
  5307. "license": [
  5308. "MIT"
  5309. ],
  5310. "authors": [
  5311. {
  5312. "name": "Bernhard Schussek",
  5313. "email": "bschussek@gmail.com"
  5314. },
  5315. {
  5316. "name": "Eriksen Costa",
  5317. "email": "eriksen.costa@infranology.com.br"
  5318. },
  5319. {
  5320. "name": "Igor Wiedler",
  5321. "email": "igor@wiedler.ch"
  5322. },
  5323. {
  5324. "name": "Symfony Community",
  5325. "homepage": "https://symfony.com/contributors"
  5326. }
  5327. ],
  5328. "description": "Provides a PHP replacement layer for the C intl extension that includes additional data from the ICU library",
  5329. "homepage": "https://symfony.com",
  5330. "keywords": [
  5331. "i18n",
  5332. "icu",
  5333. "internationalization",
  5334. "intl",
  5335. "l10n",
  5336. "localization"
  5337. ],
  5338. "support": {
  5339. "source": "https://github.com/symfony/intl/tree/v5.2.4"
  5340. },
  5341. "funding": [
  5342. {
  5343. "url": "https://symfony.com/sponsor",
  5344. "type": "custom"
  5345. },
  5346. {
  5347. "url": "https://github.com/fabpot",
  5348. "type": "github"
  5349. },
  5350. {
  5351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5352. "type": "tidelift"
  5353. }
  5354. ],
  5355. "time": "2021-02-18T22:42:36+00:00"
  5356. },
  5357. {
  5358. "name": "symfony/mailer",
  5359. "version": "v5.2.6",
  5360. "source": {
  5361. "type": "git",
  5362. "url": "https://github.com/symfony/mailer.git",
  5363. "reference": "04475b8368b6c7a559581ee8a0650c919ec79274"
  5364. },
  5365. "dist": {
  5366. "type": "zip",
  5367. "url": "https://api.github.com/repos/symfony/mailer/zipball/04475b8368b6c7a559581ee8a0650c919ec79274",
  5368. "reference": "04475b8368b6c7a559581ee8a0650c919ec79274",
  5369. "shasum": ""
  5370. },
  5371. "require": {
  5372. "egulias/email-validator": "^2.1.10|^3",
  5373. "php": ">=7.2.5",
  5374. "psr/log": "~1.0",
  5375. "symfony/event-dispatcher": "^4.4|^5.0",
  5376. "symfony/mime": "^5.2.6",
  5377. "symfony/polyfill-php80": "^1.15",
  5378. "symfony/service-contracts": "^1.1|^2"
  5379. },
  5380. "conflict": {
  5381. "symfony/http-kernel": "<4.4"
  5382. },
  5383. "require-dev": {
  5384. "symfony/amazon-mailer": "^4.4|^5.0",
  5385. "symfony/google-mailer": "^4.4|^5.0",
  5386. "symfony/http-client-contracts": "^1.1|^2",
  5387. "symfony/mailchimp-mailer": "^4.4|^5.0",
  5388. "symfony/mailgun-mailer": "^4.4|^5.0",
  5389. "symfony/mailjet-mailer": "^4.4|^5.0",
  5390. "symfony/messenger": "^4.4|^5.0",
  5391. "symfony/postmark-mailer": "^4.4|^5.0",
  5392. "symfony/sendgrid-mailer": "^4.4|^5.0"
  5393. },
  5394. "type": "library",
  5395. "autoload": {
  5396. "psr-4": {
  5397. "Symfony\\Component\\Mailer\\": ""
  5398. },
  5399. "exclude-from-classmap": [
  5400. "/Tests/"
  5401. ]
  5402. },
  5403. "notification-url": "https://packagist.org/downloads/",
  5404. "license": [
  5405. "MIT"
  5406. ],
  5407. "authors": [
  5408. {
  5409. "name": "Fabien Potencier",
  5410. "email": "fabien@symfony.com"
  5411. },
  5412. {
  5413. "name": "Symfony Community",
  5414. "homepage": "https://symfony.com/contributors"
  5415. }
  5416. ],
  5417. "description": "Helps sending emails",
  5418. "homepage": "https://symfony.com",
  5419. "support": {
  5420. "source": "https://github.com/symfony/mailer/tree/v5.2.6"
  5421. },
  5422. "funding": [
  5423. {
  5424. "url": "https://symfony.com/sponsor",
  5425. "type": "custom"
  5426. },
  5427. {
  5428. "url": "https://github.com/fabpot",
  5429. "type": "github"
  5430. },
  5431. {
  5432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5433. "type": "tidelift"
  5434. }
  5435. ],
  5436. "time": "2021-03-12T13:18:39+00:00"
  5437. },
  5438. {
  5439. "name": "symfony/messenger",
  5440. "version": "v5.2.5",
  5441. "source": {
  5442. "type": "git",
  5443. "url": "https://github.com/symfony/messenger.git",
  5444. "reference": "bc012fde3b96cfa3adf22f4d8a2e17860dc24a65"
  5445. },
  5446. "dist": {
  5447. "type": "zip",
  5448. "url": "https://api.github.com/repos/symfony/messenger/zipball/bc012fde3b96cfa3adf22f4d8a2e17860dc24a65",
  5449. "reference": "bc012fde3b96cfa3adf22f4d8a2e17860dc24a65",
  5450. "shasum": ""
  5451. },
  5452. "require": {
  5453. "php": ">=7.2.5",
  5454. "psr/log": "~1.0",
  5455. "symfony/amqp-messenger": "^5.1",
  5456. "symfony/deprecation-contracts": "^2.1",
  5457. "symfony/doctrine-messenger": "^5.1",
  5458. "symfony/polyfill-php80": "^1.15",
  5459. "symfony/redis-messenger": "^5.1"
  5460. },
  5461. "conflict": {
  5462. "symfony/event-dispatcher": "<4.4",
  5463. "symfony/framework-bundle": "<4.4",
  5464. "symfony/http-kernel": "<4.4"
  5465. },
  5466. "require-dev": {
  5467. "psr/cache": "^1.0|^2.0|^3.0",
  5468. "symfony/console": "^4.4|^5.0",
  5469. "symfony/dependency-injection": "^4.4|^5.0",
  5470. "symfony/event-dispatcher": "^4.4|^5.0",
  5471. "symfony/http-kernel": "^4.4|^5.0",
  5472. "symfony/process": "^4.4|^5.0",
  5473. "symfony/property-access": "^4.4|^5.0",
  5474. "symfony/serializer": "^4.4|^5.0",
  5475. "symfony/service-contracts": "^1.1|^2",
  5476. "symfony/stopwatch": "^4.4|^5.0",
  5477. "symfony/validator": "^4.4|^5.0"
  5478. },
  5479. "suggest": {
  5480. "enqueue/messenger-adapter": "For using the php-enqueue library as a transport."
  5481. },
  5482. "type": "library",
  5483. "autoload": {
  5484. "psr-4": {
  5485. "Symfony\\Component\\Messenger\\": ""
  5486. },
  5487. "exclude-from-classmap": [
  5488. "/Tests/"
  5489. ]
  5490. },
  5491. "notification-url": "https://packagist.org/downloads/",
  5492. "license": [
  5493. "MIT"
  5494. ],
  5495. "authors": [
  5496. {
  5497. "name": "Samuel Roze",
  5498. "email": "samuel.roze@gmail.com"
  5499. },
  5500. {
  5501. "name": "Symfony Community",
  5502. "homepage": "https://symfony.com/contributors"
  5503. }
  5504. ],
  5505. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  5506. "homepage": "https://symfony.com",
  5507. "support": {
  5508. "source": "https://github.com/symfony/messenger/tree/v5.2.5"
  5509. },
  5510. "funding": [
  5511. {
  5512. "url": "https://symfony.com/sponsor",
  5513. "type": "custom"
  5514. },
  5515. {
  5516. "url": "https://github.com/fabpot",
  5517. "type": "github"
  5518. },
  5519. {
  5520. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5521. "type": "tidelift"
  5522. }
  5523. ],
  5524. "time": "2021-03-06T07:59:01+00:00"
  5525. },
  5526. {
  5527. "name": "symfony/mime",
  5528. "version": "v5.2.6",
  5529. "source": {
  5530. "type": "git",
  5531. "url": "https://github.com/symfony/mime.git",
  5532. "reference": "1b2092244374cbe48ae733673f2ca0818b37197b"
  5533. },
  5534. "dist": {
  5535. "type": "zip",
  5536. "url": "https://api.github.com/repos/symfony/mime/zipball/1b2092244374cbe48ae733673f2ca0818b37197b",
  5537. "reference": "1b2092244374cbe48ae733673f2ca0818b37197b",
  5538. "shasum": ""
  5539. },
  5540. "require": {
  5541. "php": ">=7.2.5",
  5542. "symfony/deprecation-contracts": "^2.1",
  5543. "symfony/polyfill-intl-idn": "^1.10",
  5544. "symfony/polyfill-mbstring": "^1.0",
  5545. "symfony/polyfill-php80": "^1.15"
  5546. },
  5547. "conflict": {
  5548. "egulias/email-validator": "~3.0.0",
  5549. "phpdocumentor/reflection-docblock": "<3.2.2",
  5550. "phpdocumentor/type-resolver": "<1.4.0",
  5551. "symfony/mailer": "<4.4"
  5552. },
  5553. "require-dev": {
  5554. "egulias/email-validator": "^2.1.10|^3.1",
  5555. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5556. "symfony/dependency-injection": "^4.4|^5.0",
  5557. "symfony/property-access": "^4.4|^5.1",
  5558. "symfony/property-info": "^4.4|^5.1",
  5559. "symfony/serializer": "^5.2"
  5560. },
  5561. "type": "library",
  5562. "autoload": {
  5563. "psr-4": {
  5564. "Symfony\\Component\\Mime\\": ""
  5565. },
  5566. "exclude-from-classmap": [
  5567. "/Tests/"
  5568. ]
  5569. },
  5570. "notification-url": "https://packagist.org/downloads/",
  5571. "license": [
  5572. "MIT"
  5573. ],
  5574. "authors": [
  5575. {
  5576. "name": "Fabien Potencier",
  5577. "email": "fabien@symfony.com"
  5578. },
  5579. {
  5580. "name": "Symfony Community",
  5581. "homepage": "https://symfony.com/contributors"
  5582. }
  5583. ],
  5584. "description": "Allows manipulating MIME messages",
  5585. "homepage": "https://symfony.com",
  5586. "keywords": [
  5587. "mime",
  5588. "mime-type"
  5589. ],
  5590. "support": {
  5591. "source": "https://github.com/symfony/mime/tree/v5.2.6"
  5592. },
  5593. "funding": [
  5594. {
  5595. "url": "https://symfony.com/sponsor",
  5596. "type": "custom"
  5597. },
  5598. {
  5599. "url": "https://github.com/fabpot",
  5600. "type": "github"
  5601. },
  5602. {
  5603. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5604. "type": "tidelift"
  5605. }
  5606. ],
  5607. "time": "2021-03-12T13:18:39+00:00"
  5608. },
  5609. {
  5610. "name": "symfony/monolog-bridge",
  5611. "version": "v5.2.5",
  5612. "source": {
  5613. "type": "git",
  5614. "url": "https://github.com/symfony/monolog-bridge.git",
  5615. "reference": "8a330ab86c4bdf3983b26abf64bf85574edf0d52"
  5616. },
  5617. "dist": {
  5618. "type": "zip",
  5619. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/8a330ab86c4bdf3983b26abf64bf85574edf0d52",
  5620. "reference": "8a330ab86c4bdf3983b26abf64bf85574edf0d52",
  5621. "shasum": ""
  5622. },
  5623. "require": {
  5624. "monolog/monolog": "^1.25.1|^2",
  5625. "php": ">=7.2.5",
  5626. "symfony/deprecation-contracts": "^2.1",
  5627. "symfony/http-kernel": "^4.4|^5.0",
  5628. "symfony/service-contracts": "^1.1|^2"
  5629. },
  5630. "conflict": {
  5631. "symfony/console": "<4.4",
  5632. "symfony/http-foundation": "<4.4"
  5633. },
  5634. "require-dev": {
  5635. "symfony/console": "^4.4|^5.0",
  5636. "symfony/http-client": "^4.4|^5.0",
  5637. "symfony/mailer": "^4.4|^5.0",
  5638. "symfony/mime": "^4.4|^5.0",
  5639. "symfony/security-core": "^4.4|^5.0",
  5640. "symfony/var-dumper": "^4.4|^5.0"
  5641. },
  5642. "suggest": {
  5643. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  5644. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  5645. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  5646. },
  5647. "type": "symfony-bridge",
  5648. "autoload": {
  5649. "psr-4": {
  5650. "Symfony\\Bridge\\Monolog\\": ""
  5651. },
  5652. "exclude-from-classmap": [
  5653. "/Tests/"
  5654. ]
  5655. },
  5656. "notification-url": "https://packagist.org/downloads/",
  5657. "license": [
  5658. "MIT"
  5659. ],
  5660. "authors": [
  5661. {
  5662. "name": "Fabien Potencier",
  5663. "email": "fabien@symfony.com"
  5664. },
  5665. {
  5666. "name": "Symfony Community",
  5667. "homepage": "https://symfony.com/contributors"
  5668. }
  5669. ],
  5670. "description": "Provides integration for Monolog with various Symfony components",
  5671. "homepage": "https://symfony.com",
  5672. "support": {
  5673. "source": "https://github.com/symfony/monolog-bridge/tree/v5.2.5"
  5674. },
  5675. "funding": [
  5676. {
  5677. "url": "https://symfony.com/sponsor",
  5678. "type": "custom"
  5679. },
  5680. {
  5681. "url": "https://github.com/fabpot",
  5682. "type": "github"
  5683. },
  5684. {
  5685. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5686. "type": "tidelift"
  5687. }
  5688. ],
  5689. "time": "2021-03-06T07:59:01+00:00"
  5690. },
  5691. {
  5692. "name": "symfony/monolog-bundle",
  5693. "version": "v3.7.0",
  5694. "source": {
  5695. "type": "git",
  5696. "url": "https://github.com/symfony/monolog-bundle.git",
  5697. "reference": "4054b2e940a25195ae15f0a49ab0c51718922eb4"
  5698. },
  5699. "dist": {
  5700. "type": "zip",
  5701. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/4054b2e940a25195ae15f0a49ab0c51718922eb4",
  5702. "reference": "4054b2e940a25195ae15f0a49ab0c51718922eb4",
  5703. "shasum": ""
  5704. },
  5705. "require": {
  5706. "monolog/monolog": "~1.22 || ~2.0",
  5707. "php": ">=7.1.3",
  5708. "symfony/config": "~4.4 || ^5.0",
  5709. "symfony/dependency-injection": "^4.4 || ^5.0",
  5710. "symfony/http-kernel": "~4.4 || ^5.0",
  5711. "symfony/monolog-bridge": "~4.4 || ^5.0"
  5712. },
  5713. "require-dev": {
  5714. "symfony/console": "~4.4 || ^5.0",
  5715. "symfony/phpunit-bridge": "^5.1",
  5716. "symfony/yaml": "~4.4 || ^5.0"
  5717. },
  5718. "type": "symfony-bundle",
  5719. "extra": {
  5720. "branch-alias": {
  5721. "dev-master": "3.x-dev"
  5722. }
  5723. },
  5724. "autoload": {
  5725. "psr-4": {
  5726. "Symfony\\Bundle\\MonologBundle\\": ""
  5727. },
  5728. "exclude-from-classmap": [
  5729. "/Tests/"
  5730. ]
  5731. },
  5732. "notification-url": "https://packagist.org/downloads/",
  5733. "license": [
  5734. "MIT"
  5735. ],
  5736. "authors": [
  5737. {
  5738. "name": "Fabien Potencier",
  5739. "email": "fabien@symfony.com"
  5740. },
  5741. {
  5742. "name": "Symfony Community",
  5743. "homepage": "https://symfony.com/contributors"
  5744. }
  5745. ],
  5746. "description": "Symfony MonologBundle",
  5747. "homepage": "https://symfony.com",
  5748. "keywords": [
  5749. "log",
  5750. "logging"
  5751. ],
  5752. "support": {
  5753. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5754. "source": "https://github.com/symfony/monolog-bundle/tree/v3.7.0"
  5755. },
  5756. "funding": [
  5757. {
  5758. "url": "https://symfony.com/sponsor",
  5759. "type": "custom"
  5760. },
  5761. {
  5762. "url": "https://github.com/fabpot",
  5763. "type": "github"
  5764. },
  5765. {
  5766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5767. "type": "tidelift"
  5768. }
  5769. ],
  5770. "time": "2021-03-31T07:20:47+00:00"
  5771. },
  5772. {
  5773. "name": "symfony/options-resolver",
  5774. "version": "v5.2.4",
  5775. "source": {
  5776. "type": "git",
  5777. "url": "https://github.com/symfony/options-resolver.git",
  5778. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce"
  5779. },
  5780. "dist": {
  5781. "type": "zip",
  5782. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  5783. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  5784. "shasum": ""
  5785. },
  5786. "require": {
  5787. "php": ">=7.2.5",
  5788. "symfony/deprecation-contracts": "^2.1",
  5789. "symfony/polyfill-php73": "~1.0",
  5790. "symfony/polyfill-php80": "^1.15"
  5791. },
  5792. "type": "library",
  5793. "autoload": {
  5794. "psr-4": {
  5795. "Symfony\\Component\\OptionsResolver\\": ""
  5796. },
  5797. "exclude-from-classmap": [
  5798. "/Tests/"
  5799. ]
  5800. },
  5801. "notification-url": "https://packagist.org/downloads/",
  5802. "license": [
  5803. "MIT"
  5804. ],
  5805. "authors": [
  5806. {
  5807. "name": "Fabien Potencier",
  5808. "email": "fabien@symfony.com"
  5809. },
  5810. {
  5811. "name": "Symfony Community",
  5812. "homepage": "https://symfony.com/contributors"
  5813. }
  5814. ],
  5815. "description": "Provides an improved replacement for the array_replace PHP function",
  5816. "homepage": "https://symfony.com",
  5817. "keywords": [
  5818. "config",
  5819. "configuration",
  5820. "options"
  5821. ],
  5822. "support": {
  5823. "source": "https://github.com/symfony/options-resolver/tree/v5.2.4"
  5824. },
  5825. "funding": [
  5826. {
  5827. "url": "https://symfony.com/sponsor",
  5828. "type": "custom"
  5829. },
  5830. {
  5831. "url": "https://github.com/fabpot",
  5832. "type": "github"
  5833. },
  5834. {
  5835. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5836. "type": "tidelift"
  5837. }
  5838. ],
  5839. "time": "2021-01-27T12:56:27+00:00"
  5840. },
  5841. {
  5842. "name": "symfony/polyfill-intl-grapheme",
  5843. "version": "v1.22.1",
  5844. "source": {
  5845. "type": "git",
  5846. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5847. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170"
  5848. },
  5849. "dist": {
  5850. "type": "zip",
  5851. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/5601e09b69f26c1828b13b6bb87cb07cddba3170",
  5852. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170",
  5853. "shasum": ""
  5854. },
  5855. "require": {
  5856. "php": ">=7.1"
  5857. },
  5858. "suggest": {
  5859. "ext-intl": "For best performance"
  5860. },
  5861. "type": "library",
  5862. "extra": {
  5863. "branch-alias": {
  5864. "dev-main": "1.22-dev"
  5865. },
  5866. "thanks": {
  5867. "name": "symfony/polyfill",
  5868. "url": "https://github.com/symfony/polyfill"
  5869. }
  5870. },
  5871. "autoload": {
  5872. "psr-4": {
  5873. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5874. },
  5875. "files": [
  5876. "bootstrap.php"
  5877. ]
  5878. },
  5879. "notification-url": "https://packagist.org/downloads/",
  5880. "license": [
  5881. "MIT"
  5882. ],
  5883. "authors": [
  5884. {
  5885. "name": "Nicolas Grekas",
  5886. "email": "p@tchwork.com"
  5887. },
  5888. {
  5889. "name": "Symfony Community",
  5890. "homepage": "https://symfony.com/contributors"
  5891. }
  5892. ],
  5893. "description": "Symfony polyfill for intl's grapheme_* functions",
  5894. "homepage": "https://symfony.com",
  5895. "keywords": [
  5896. "compatibility",
  5897. "grapheme",
  5898. "intl",
  5899. "polyfill",
  5900. "portable",
  5901. "shim"
  5902. ],
  5903. "support": {
  5904. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.1"
  5905. },
  5906. "funding": [
  5907. {
  5908. "url": "https://symfony.com/sponsor",
  5909. "type": "custom"
  5910. },
  5911. {
  5912. "url": "https://github.com/fabpot",
  5913. "type": "github"
  5914. },
  5915. {
  5916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5917. "type": "tidelift"
  5918. }
  5919. ],
  5920. "time": "2021-01-22T09:19:47+00:00"
  5921. },
  5922. {
  5923. "name": "symfony/polyfill-intl-icu",
  5924. "version": "v1.22.1",
  5925. "source": {
  5926. "type": "git",
  5927. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5928. "reference": "af1842919c7e7364aaaa2798b29839e3ba168588"
  5929. },
  5930. "dist": {
  5931. "type": "zip",
  5932. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/af1842919c7e7364aaaa2798b29839e3ba168588",
  5933. "reference": "af1842919c7e7364aaaa2798b29839e3ba168588",
  5934. "shasum": ""
  5935. },
  5936. "require": {
  5937. "php": ">=7.1"
  5938. },
  5939. "suggest": {
  5940. "ext-intl": "For best performance and support of other locales than \"en\""
  5941. },
  5942. "type": "library",
  5943. "extra": {
  5944. "branch-alias": {
  5945. "dev-main": "1.22-dev"
  5946. },
  5947. "thanks": {
  5948. "name": "symfony/polyfill",
  5949. "url": "https://github.com/symfony/polyfill"
  5950. }
  5951. },
  5952. "autoload": {
  5953. "files": [
  5954. "bootstrap.php"
  5955. ],
  5956. "psr-4": {
  5957. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5958. },
  5959. "classmap": [
  5960. "Resources/stubs"
  5961. ],
  5962. "exclude-from-classmap": [
  5963. "/Tests/"
  5964. ]
  5965. },
  5966. "notification-url": "https://packagist.org/downloads/",
  5967. "license": [
  5968. "MIT"
  5969. ],
  5970. "authors": [
  5971. {
  5972. "name": "Nicolas Grekas",
  5973. "email": "p@tchwork.com"
  5974. },
  5975. {
  5976. "name": "Symfony Community",
  5977. "homepage": "https://symfony.com/contributors"
  5978. }
  5979. ],
  5980. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5981. "homepage": "https://symfony.com",
  5982. "keywords": [
  5983. "compatibility",
  5984. "icu",
  5985. "intl",
  5986. "polyfill",
  5987. "portable",
  5988. "shim"
  5989. ],
  5990. "support": {
  5991. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.22.1"
  5992. },
  5993. "funding": [
  5994. {
  5995. "url": "https://symfony.com/sponsor",
  5996. "type": "custom"
  5997. },
  5998. {
  5999. "url": "https://github.com/fabpot",
  6000. "type": "github"
  6001. },
  6002. {
  6003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6004. "type": "tidelift"
  6005. }
  6006. ],
  6007. "time": "2021-01-22T09:19:47+00:00"
  6008. },
  6009. {
  6010. "name": "symfony/polyfill-intl-idn",
  6011. "version": "v1.22.1",
  6012. "source": {
  6013. "type": "git",
  6014. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6015. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483"
  6016. },
  6017. "dist": {
  6018. "type": "zip",
  6019. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483",
  6020. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483",
  6021. "shasum": ""
  6022. },
  6023. "require": {
  6024. "php": ">=7.1",
  6025. "symfony/polyfill-intl-normalizer": "^1.10",
  6026. "symfony/polyfill-php72": "^1.10"
  6027. },
  6028. "suggest": {
  6029. "ext-intl": "For best performance"
  6030. },
  6031. "type": "library",
  6032. "extra": {
  6033. "branch-alias": {
  6034. "dev-main": "1.22-dev"
  6035. },
  6036. "thanks": {
  6037. "name": "symfony/polyfill",
  6038. "url": "https://github.com/symfony/polyfill"
  6039. }
  6040. },
  6041. "autoload": {
  6042. "psr-4": {
  6043. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6044. },
  6045. "files": [
  6046. "bootstrap.php"
  6047. ]
  6048. },
  6049. "notification-url": "https://packagist.org/downloads/",
  6050. "license": [
  6051. "MIT"
  6052. ],
  6053. "authors": [
  6054. {
  6055. "name": "Laurent Bassin",
  6056. "email": "laurent@bassin.info"
  6057. },
  6058. {
  6059. "name": "Trevor Rowbotham",
  6060. "email": "trevor.rowbotham@pm.me"
  6061. },
  6062. {
  6063. "name": "Symfony Community",
  6064. "homepage": "https://symfony.com/contributors"
  6065. }
  6066. ],
  6067. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6068. "homepage": "https://symfony.com",
  6069. "keywords": [
  6070. "compatibility",
  6071. "idn",
  6072. "intl",
  6073. "polyfill",
  6074. "portable",
  6075. "shim"
  6076. ],
  6077. "support": {
  6078. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.1"
  6079. },
  6080. "funding": [
  6081. {
  6082. "url": "https://symfony.com/sponsor",
  6083. "type": "custom"
  6084. },
  6085. {
  6086. "url": "https://github.com/fabpot",
  6087. "type": "github"
  6088. },
  6089. {
  6090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6091. "type": "tidelift"
  6092. }
  6093. ],
  6094. "time": "2021-01-22T09:19:47+00:00"
  6095. },
  6096. {
  6097. "name": "symfony/polyfill-intl-normalizer",
  6098. "version": "v1.22.1",
  6099. "source": {
  6100. "type": "git",
  6101. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6102. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248"
  6103. },
  6104. "dist": {
  6105. "type": "zip",
  6106. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6107. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6108. "shasum": ""
  6109. },
  6110. "require": {
  6111. "php": ">=7.1"
  6112. },
  6113. "suggest": {
  6114. "ext-intl": "For best performance"
  6115. },
  6116. "type": "library",
  6117. "extra": {
  6118. "branch-alias": {
  6119. "dev-main": "1.22-dev"
  6120. },
  6121. "thanks": {
  6122. "name": "symfony/polyfill",
  6123. "url": "https://github.com/symfony/polyfill"
  6124. }
  6125. },
  6126. "autoload": {
  6127. "psr-4": {
  6128. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6129. },
  6130. "files": [
  6131. "bootstrap.php"
  6132. ],
  6133. "classmap": [
  6134. "Resources/stubs"
  6135. ]
  6136. },
  6137. "notification-url": "https://packagist.org/downloads/",
  6138. "license": [
  6139. "MIT"
  6140. ],
  6141. "authors": [
  6142. {
  6143. "name": "Nicolas Grekas",
  6144. "email": "p@tchwork.com"
  6145. },
  6146. {
  6147. "name": "Symfony Community",
  6148. "homepage": "https://symfony.com/contributors"
  6149. }
  6150. ],
  6151. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6152. "homepage": "https://symfony.com",
  6153. "keywords": [
  6154. "compatibility",
  6155. "intl",
  6156. "normalizer",
  6157. "polyfill",
  6158. "portable",
  6159. "shim"
  6160. ],
  6161. "support": {
  6162. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1"
  6163. },
  6164. "funding": [
  6165. {
  6166. "url": "https://symfony.com/sponsor",
  6167. "type": "custom"
  6168. },
  6169. {
  6170. "url": "https://github.com/fabpot",
  6171. "type": "github"
  6172. },
  6173. {
  6174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6175. "type": "tidelift"
  6176. }
  6177. ],
  6178. "time": "2021-01-22T09:19:47+00:00"
  6179. },
  6180. {
  6181. "name": "symfony/polyfill-mbstring",
  6182. "version": "v1.22.1",
  6183. "source": {
  6184. "type": "git",
  6185. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6186. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  6187. },
  6188. "dist": {
  6189. "type": "zip",
  6190. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  6191. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  6192. "shasum": ""
  6193. },
  6194. "require": {
  6195. "php": ">=7.1"
  6196. },
  6197. "suggest": {
  6198. "ext-mbstring": "For best performance"
  6199. },
  6200. "type": "library",
  6201. "extra": {
  6202. "branch-alias": {
  6203. "dev-main": "1.22-dev"
  6204. },
  6205. "thanks": {
  6206. "name": "symfony/polyfill",
  6207. "url": "https://github.com/symfony/polyfill"
  6208. }
  6209. },
  6210. "autoload": {
  6211. "psr-4": {
  6212. "Symfony\\Polyfill\\Mbstring\\": ""
  6213. },
  6214. "files": [
  6215. "bootstrap.php"
  6216. ]
  6217. },
  6218. "notification-url": "https://packagist.org/downloads/",
  6219. "license": [
  6220. "MIT"
  6221. ],
  6222. "authors": [
  6223. {
  6224. "name": "Nicolas Grekas",
  6225. "email": "p@tchwork.com"
  6226. },
  6227. {
  6228. "name": "Symfony Community",
  6229. "homepage": "https://symfony.com/contributors"
  6230. }
  6231. ],
  6232. "description": "Symfony polyfill for the Mbstring extension",
  6233. "homepage": "https://symfony.com",
  6234. "keywords": [
  6235. "compatibility",
  6236. "mbstring",
  6237. "polyfill",
  6238. "portable",
  6239. "shim"
  6240. ],
  6241. "support": {
  6242. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  6243. },
  6244. "funding": [
  6245. {
  6246. "url": "https://symfony.com/sponsor",
  6247. "type": "custom"
  6248. },
  6249. {
  6250. "url": "https://github.com/fabpot",
  6251. "type": "github"
  6252. },
  6253. {
  6254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6255. "type": "tidelift"
  6256. }
  6257. ],
  6258. "time": "2021-01-22T09:19:47+00:00"
  6259. },
  6260. {
  6261. "name": "symfony/polyfill-php73",
  6262. "version": "v1.22.1",
  6263. "source": {
  6264. "type": "git",
  6265. "url": "https://github.com/symfony/polyfill-php73.git",
  6266. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  6267. },
  6268. "dist": {
  6269. "type": "zip",
  6270. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6271. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6272. "shasum": ""
  6273. },
  6274. "require": {
  6275. "php": ">=7.1"
  6276. },
  6277. "type": "library",
  6278. "extra": {
  6279. "branch-alias": {
  6280. "dev-main": "1.22-dev"
  6281. },
  6282. "thanks": {
  6283. "name": "symfony/polyfill",
  6284. "url": "https://github.com/symfony/polyfill"
  6285. }
  6286. },
  6287. "autoload": {
  6288. "psr-4": {
  6289. "Symfony\\Polyfill\\Php73\\": ""
  6290. },
  6291. "files": [
  6292. "bootstrap.php"
  6293. ],
  6294. "classmap": [
  6295. "Resources/stubs"
  6296. ]
  6297. },
  6298. "notification-url": "https://packagist.org/downloads/",
  6299. "license": [
  6300. "MIT"
  6301. ],
  6302. "authors": [
  6303. {
  6304. "name": "Nicolas Grekas",
  6305. "email": "p@tchwork.com"
  6306. },
  6307. {
  6308. "name": "Symfony Community",
  6309. "homepage": "https://symfony.com/contributors"
  6310. }
  6311. ],
  6312. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6313. "homepage": "https://symfony.com",
  6314. "keywords": [
  6315. "compatibility",
  6316. "polyfill",
  6317. "portable",
  6318. "shim"
  6319. ],
  6320. "support": {
  6321. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1"
  6322. },
  6323. "funding": [
  6324. {
  6325. "url": "https://symfony.com/sponsor",
  6326. "type": "custom"
  6327. },
  6328. {
  6329. "url": "https://github.com/fabpot",
  6330. "type": "github"
  6331. },
  6332. {
  6333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6334. "type": "tidelift"
  6335. }
  6336. ],
  6337. "time": "2021-01-07T16:49:33+00:00"
  6338. },
  6339. {
  6340. "name": "symfony/polyfill-php80",
  6341. "version": "v1.22.1",
  6342. "source": {
  6343. "type": "git",
  6344. "url": "https://github.com/symfony/polyfill-php80.git",
  6345. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  6346. },
  6347. "dist": {
  6348. "type": "zip",
  6349. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6350. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6351. "shasum": ""
  6352. },
  6353. "require": {
  6354. "php": ">=7.1"
  6355. },
  6356. "type": "library",
  6357. "extra": {
  6358. "branch-alias": {
  6359. "dev-main": "1.22-dev"
  6360. },
  6361. "thanks": {
  6362. "name": "symfony/polyfill",
  6363. "url": "https://github.com/symfony/polyfill"
  6364. }
  6365. },
  6366. "autoload": {
  6367. "psr-4": {
  6368. "Symfony\\Polyfill\\Php80\\": ""
  6369. },
  6370. "files": [
  6371. "bootstrap.php"
  6372. ],
  6373. "classmap": [
  6374. "Resources/stubs"
  6375. ]
  6376. },
  6377. "notification-url": "https://packagist.org/downloads/",
  6378. "license": [
  6379. "MIT"
  6380. ],
  6381. "authors": [
  6382. {
  6383. "name": "Ion Bazan",
  6384. "email": "ion.bazan@gmail.com"
  6385. },
  6386. {
  6387. "name": "Nicolas Grekas",
  6388. "email": "p@tchwork.com"
  6389. },
  6390. {
  6391. "name": "Symfony Community",
  6392. "homepage": "https://symfony.com/contributors"
  6393. }
  6394. ],
  6395. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6396. "homepage": "https://symfony.com",
  6397. "keywords": [
  6398. "compatibility",
  6399. "polyfill",
  6400. "portable",
  6401. "shim"
  6402. ],
  6403. "support": {
  6404. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  6405. },
  6406. "funding": [
  6407. {
  6408. "url": "https://symfony.com/sponsor",
  6409. "type": "custom"
  6410. },
  6411. {
  6412. "url": "https://github.com/fabpot",
  6413. "type": "github"
  6414. },
  6415. {
  6416. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6417. "type": "tidelift"
  6418. }
  6419. ],
  6420. "time": "2021-01-07T16:49:33+00:00"
  6421. },
  6422. {
  6423. "name": "symfony/process",
  6424. "version": "v5.2.4",
  6425. "source": {
  6426. "type": "git",
  6427. "url": "https://github.com/symfony/process.git",
  6428. "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f"
  6429. },
  6430. "dist": {
  6431. "type": "zip",
  6432. "url": "https://api.github.com/repos/symfony/process/zipball/313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
  6433. "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
  6434. "shasum": ""
  6435. },
  6436. "require": {
  6437. "php": ">=7.2.5",
  6438. "symfony/polyfill-php80": "^1.15"
  6439. },
  6440. "type": "library",
  6441. "autoload": {
  6442. "psr-4": {
  6443. "Symfony\\Component\\Process\\": ""
  6444. },
  6445. "exclude-from-classmap": [
  6446. "/Tests/"
  6447. ]
  6448. },
  6449. "notification-url": "https://packagist.org/downloads/",
  6450. "license": [
  6451. "MIT"
  6452. ],
  6453. "authors": [
  6454. {
  6455. "name": "Fabien Potencier",
  6456. "email": "fabien@symfony.com"
  6457. },
  6458. {
  6459. "name": "Symfony Community",
  6460. "homepage": "https://symfony.com/contributors"
  6461. }
  6462. ],
  6463. "description": "Executes commands in sub-processes",
  6464. "homepage": "https://symfony.com",
  6465. "support": {
  6466. "source": "https://github.com/symfony/process/tree/v5.2.4"
  6467. },
  6468. "funding": [
  6469. {
  6470. "url": "https://symfony.com/sponsor",
  6471. "type": "custom"
  6472. },
  6473. {
  6474. "url": "https://github.com/fabpot",
  6475. "type": "github"
  6476. },
  6477. {
  6478. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6479. "type": "tidelift"
  6480. }
  6481. ],
  6482. "time": "2021-01-27T10:15:41+00:00"
  6483. },
  6484. {
  6485. "name": "symfony/property-access",
  6486. "version": "v5.2.4",
  6487. "source": {
  6488. "type": "git",
  6489. "url": "https://github.com/symfony/property-access.git",
  6490. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3"
  6491. },
  6492. "dist": {
  6493. "type": "zip",
  6494. "url": "https://api.github.com/repos/symfony/property-access/zipball/3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6495. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6496. "shasum": ""
  6497. },
  6498. "require": {
  6499. "php": ">=7.2.5",
  6500. "symfony/deprecation-contracts": "^2.1",
  6501. "symfony/polyfill-php80": "^1.15",
  6502. "symfony/property-info": "^5.2"
  6503. },
  6504. "require-dev": {
  6505. "symfony/cache": "^4.4|^5.0"
  6506. },
  6507. "suggest": {
  6508. "psr/cache-implementation": "To cache access methods."
  6509. },
  6510. "type": "library",
  6511. "autoload": {
  6512. "psr-4": {
  6513. "Symfony\\Component\\PropertyAccess\\": ""
  6514. },
  6515. "exclude-from-classmap": [
  6516. "/Tests/"
  6517. ]
  6518. },
  6519. "notification-url": "https://packagist.org/downloads/",
  6520. "license": [
  6521. "MIT"
  6522. ],
  6523. "authors": [
  6524. {
  6525. "name": "Fabien Potencier",
  6526. "email": "fabien@symfony.com"
  6527. },
  6528. {
  6529. "name": "Symfony Community",
  6530. "homepage": "https://symfony.com/contributors"
  6531. }
  6532. ],
  6533. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6534. "homepage": "https://symfony.com",
  6535. "keywords": [
  6536. "access",
  6537. "array",
  6538. "extraction",
  6539. "index",
  6540. "injection",
  6541. "object",
  6542. "property",
  6543. "property path",
  6544. "reflection"
  6545. ],
  6546. "support": {
  6547. "source": "https://github.com/symfony/property-access/tree/v5.2.4"
  6548. },
  6549. "funding": [
  6550. {
  6551. "url": "https://symfony.com/sponsor",
  6552. "type": "custom"
  6553. },
  6554. {
  6555. "url": "https://github.com/fabpot",
  6556. "type": "github"
  6557. },
  6558. {
  6559. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6560. "type": "tidelift"
  6561. }
  6562. ],
  6563. "time": "2021-01-27T10:15:41+00:00"
  6564. },
  6565. {
  6566. "name": "symfony/property-info",
  6567. "version": "v5.2.4",
  6568. "source": {
  6569. "type": "git",
  6570. "url": "https://github.com/symfony/property-info.git",
  6571. "reference": "7185bbc74e6f49c3f1b5936b4d9e4ca133921189"
  6572. },
  6573. "dist": {
  6574. "type": "zip",
  6575. "url": "https://api.github.com/repos/symfony/property-info/zipball/7185bbc74e6f49c3f1b5936b4d9e4ca133921189",
  6576. "reference": "7185bbc74e6f49c3f1b5936b4d9e4ca133921189",
  6577. "shasum": ""
  6578. },
  6579. "require": {
  6580. "php": ">=7.2.5",
  6581. "symfony/deprecation-contracts": "^2.1",
  6582. "symfony/polyfill-php80": "^1.15",
  6583. "symfony/string": "^5.1"
  6584. },
  6585. "conflict": {
  6586. "phpdocumentor/reflection-docblock": "<3.2.2",
  6587. "phpdocumentor/type-resolver": "<1.4.0",
  6588. "symfony/dependency-injection": "<4.4"
  6589. },
  6590. "require-dev": {
  6591. "doctrine/annotations": "^1.10.4",
  6592. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6593. "symfony/cache": "^4.4|^5.0",
  6594. "symfony/dependency-injection": "^4.4|^5.0",
  6595. "symfony/serializer": "^4.4|^5.0"
  6596. },
  6597. "suggest": {
  6598. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6599. "psr/cache-implementation": "To cache results",
  6600. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6601. "symfony/serializer": "To use Serializer metadata"
  6602. },
  6603. "type": "library",
  6604. "autoload": {
  6605. "psr-4": {
  6606. "Symfony\\Component\\PropertyInfo\\": ""
  6607. },
  6608. "exclude-from-classmap": [
  6609. "/Tests/"
  6610. ]
  6611. },
  6612. "notification-url": "https://packagist.org/downloads/",
  6613. "license": [
  6614. "MIT"
  6615. ],
  6616. "authors": [
  6617. {
  6618. "name": "Kévin Dunglas",
  6619. "email": "dunglas@gmail.com"
  6620. },
  6621. {
  6622. "name": "Symfony Community",
  6623. "homepage": "https://symfony.com/contributors"
  6624. }
  6625. ],
  6626. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6627. "homepage": "https://symfony.com",
  6628. "keywords": [
  6629. "doctrine",
  6630. "phpdoc",
  6631. "property",
  6632. "symfony",
  6633. "type",
  6634. "validator"
  6635. ],
  6636. "support": {
  6637. "source": "https://github.com/symfony/property-info/tree/v5.2.4"
  6638. },
  6639. "funding": [
  6640. {
  6641. "url": "https://symfony.com/sponsor",
  6642. "type": "custom"
  6643. },
  6644. {
  6645. "url": "https://github.com/fabpot",
  6646. "type": "github"
  6647. },
  6648. {
  6649. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6650. "type": "tidelift"
  6651. }
  6652. ],
  6653. "time": "2021-02-17T15:24:54+00:00"
  6654. },
  6655. {
  6656. "name": "symfony/redis-messenger",
  6657. "version": "v5.2.4",
  6658. "source": {
  6659. "type": "git",
  6660. "url": "https://github.com/symfony/redis-messenger.git",
  6661. "reference": "7e68914bf35cda948ee4d9081b8eaed9fd783fe5"
  6662. },
  6663. "dist": {
  6664. "type": "zip",
  6665. "url": "https://api.github.com/repos/symfony/redis-messenger/zipball/7e68914bf35cda948ee4d9081b8eaed9fd783fe5",
  6666. "reference": "7e68914bf35cda948ee4d9081b8eaed9fd783fe5",
  6667. "shasum": ""
  6668. },
  6669. "require": {
  6670. "php": ">=7.2.5",
  6671. "symfony/deprecation-contracts": "^2.1",
  6672. "symfony/messenger": "^5.1"
  6673. },
  6674. "require-dev": {
  6675. "symfony/property-access": "^4.4|^5.0",
  6676. "symfony/serializer": "^4.4|^5.0"
  6677. },
  6678. "type": "symfony-bridge",
  6679. "autoload": {
  6680. "psr-4": {
  6681. "Symfony\\Component\\Messenger\\Bridge\\Redis\\": ""
  6682. },
  6683. "exclude-from-classmap": [
  6684. "/Tests/"
  6685. ]
  6686. },
  6687. "notification-url": "https://packagist.org/downloads/",
  6688. "license": [
  6689. "MIT"
  6690. ],
  6691. "authors": [
  6692. {
  6693. "name": "Fabien Potencier",
  6694. "email": "fabien@symfony.com"
  6695. },
  6696. {
  6697. "name": "Symfony Community",
  6698. "homepage": "https://symfony.com/contributors"
  6699. }
  6700. ],
  6701. "description": "Symfony Redis extension Messenger Bridge",
  6702. "homepage": "https://symfony.com",
  6703. "support": {
  6704. "source": "https://github.com/symfony/redis-messenger/tree/v5.2.4"
  6705. },
  6706. "funding": [
  6707. {
  6708. "url": "https://symfony.com/sponsor",
  6709. "type": "custom"
  6710. },
  6711. {
  6712. "url": "https://github.com/fabpot",
  6713. "type": "github"
  6714. },
  6715. {
  6716. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6717. "type": "tidelift"
  6718. }
  6719. ],
  6720. "time": "2021-01-27T11:24:50+00:00"
  6721. },
  6722. {
  6723. "name": "symfony/routing",
  6724. "version": "v5.2.6",
  6725. "source": {
  6726. "type": "git",
  6727. "url": "https://github.com/symfony/routing.git",
  6728. "reference": "31fba555f178afd04d54fd26953501b2c3f0c6e6"
  6729. },
  6730. "dist": {
  6731. "type": "zip",
  6732. "url": "https://api.github.com/repos/symfony/routing/zipball/31fba555f178afd04d54fd26953501b2c3f0c6e6",
  6733. "reference": "31fba555f178afd04d54fd26953501b2c3f0c6e6",
  6734. "shasum": ""
  6735. },
  6736. "require": {
  6737. "php": ">=7.2.5",
  6738. "symfony/deprecation-contracts": "^2.1",
  6739. "symfony/polyfill-php80": "^1.15"
  6740. },
  6741. "conflict": {
  6742. "symfony/config": "<5.0",
  6743. "symfony/dependency-injection": "<4.4",
  6744. "symfony/yaml": "<4.4"
  6745. },
  6746. "require-dev": {
  6747. "doctrine/annotations": "^1.10.4",
  6748. "psr/log": "~1.0",
  6749. "symfony/config": "^5.0",
  6750. "symfony/dependency-injection": "^4.4|^5.0",
  6751. "symfony/expression-language": "^4.4|^5.0",
  6752. "symfony/http-foundation": "^4.4|^5.0",
  6753. "symfony/yaml": "^4.4|^5.0"
  6754. },
  6755. "suggest": {
  6756. "doctrine/annotations": "For using the annotation loader",
  6757. "symfony/config": "For using the all-in-one router or any loader",
  6758. "symfony/expression-language": "For using expression matching",
  6759. "symfony/http-foundation": "For using a Symfony Request object",
  6760. "symfony/yaml": "For using the YAML loader"
  6761. },
  6762. "type": "library",
  6763. "autoload": {
  6764. "psr-4": {
  6765. "Symfony\\Component\\Routing\\": ""
  6766. },
  6767. "exclude-from-classmap": [
  6768. "/Tests/"
  6769. ]
  6770. },
  6771. "notification-url": "https://packagist.org/downloads/",
  6772. "license": [
  6773. "MIT"
  6774. ],
  6775. "authors": [
  6776. {
  6777. "name": "Fabien Potencier",
  6778. "email": "fabien@symfony.com"
  6779. },
  6780. {
  6781. "name": "Symfony Community",
  6782. "homepage": "https://symfony.com/contributors"
  6783. }
  6784. ],
  6785. "description": "Maps an HTTP request to a set of configuration variables",
  6786. "homepage": "https://symfony.com",
  6787. "keywords": [
  6788. "router",
  6789. "routing",
  6790. "uri",
  6791. "url"
  6792. ],
  6793. "support": {
  6794. "source": "https://github.com/symfony/routing/tree/v5.2.6"
  6795. },
  6796. "funding": [
  6797. {
  6798. "url": "https://symfony.com/sponsor",
  6799. "type": "custom"
  6800. },
  6801. {
  6802. "url": "https://github.com/fabpot",
  6803. "type": "github"
  6804. },
  6805. {
  6806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6807. "type": "tidelift"
  6808. }
  6809. ],
  6810. "time": "2021-03-14T13:53:33+00:00"
  6811. },
  6812. {
  6813. "name": "symfony/security-bundle",
  6814. "version": "v5.2.6",
  6815. "source": {
  6816. "type": "git",
  6817. "url": "https://github.com/symfony/security-bundle.git",
  6818. "reference": "26550782d6e6db6fbfd7702ae0ccef7964c3535d"
  6819. },
  6820. "dist": {
  6821. "type": "zip",
  6822. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/26550782d6e6db6fbfd7702ae0ccef7964c3535d",
  6823. "reference": "26550782d6e6db6fbfd7702ae0ccef7964c3535d",
  6824. "shasum": ""
  6825. },
  6826. "require": {
  6827. "ext-xml": "*",
  6828. "php": ">=7.2.5",
  6829. "symfony/config": "^4.4|^5.0",
  6830. "symfony/dependency-injection": "^5.2",
  6831. "symfony/deprecation-contracts": "^2.1",
  6832. "symfony/event-dispatcher": "^5.1",
  6833. "symfony/http-kernel": "^5.0",
  6834. "symfony/polyfill-php80": "^1.15",
  6835. "symfony/security-core": "^5.2",
  6836. "symfony/security-csrf": "^4.4|^5.0",
  6837. "symfony/security-guard": "^5.2",
  6838. "symfony/security-http": "^5.2"
  6839. },
  6840. "conflict": {
  6841. "symfony/browser-kit": "<4.4",
  6842. "symfony/console": "<4.4",
  6843. "symfony/framework-bundle": "<4.4",
  6844. "symfony/ldap": "<4.4",
  6845. "symfony/twig-bundle": "<4.4"
  6846. },
  6847. "require-dev": {
  6848. "doctrine/doctrine-bundle": "^2.0",
  6849. "symfony/asset": "^4.4|^5.0",
  6850. "symfony/browser-kit": "^4.4|^5.0",
  6851. "symfony/console": "^4.4|^5.0",
  6852. "symfony/css-selector": "^4.4|^5.0",
  6853. "symfony/dom-crawler": "^4.4|^5.0",
  6854. "symfony/expression-language": "^4.4|^5.0",
  6855. "symfony/form": "^4.4|^5.0",
  6856. "symfony/framework-bundle": "^5.2",
  6857. "symfony/process": "^4.4|^5.0",
  6858. "symfony/rate-limiter": "^5.2",
  6859. "symfony/serializer": "^4.4|^5.0",
  6860. "symfony/translation": "^4.4|^5.0",
  6861. "symfony/twig-bridge": "^4.4|^5.0",
  6862. "symfony/twig-bundle": "^4.4|^5.0",
  6863. "symfony/validator": "^4.4|^5.0",
  6864. "symfony/yaml": "^4.4|^5.0",
  6865. "twig/twig": "^2.13|^3.0.4"
  6866. },
  6867. "type": "symfony-bundle",
  6868. "autoload": {
  6869. "psr-4": {
  6870. "Symfony\\Bundle\\SecurityBundle\\": ""
  6871. },
  6872. "exclude-from-classmap": [
  6873. "/Tests/"
  6874. ]
  6875. },
  6876. "notification-url": "https://packagist.org/downloads/",
  6877. "license": [
  6878. "MIT"
  6879. ],
  6880. "authors": [
  6881. {
  6882. "name": "Fabien Potencier",
  6883. "email": "fabien@symfony.com"
  6884. },
  6885. {
  6886. "name": "Symfony Community",
  6887. "homepage": "https://symfony.com/contributors"
  6888. }
  6889. ],
  6890. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6891. "homepage": "https://symfony.com",
  6892. "support": {
  6893. "source": "https://github.com/symfony/security-bundle/tree/v5.2.6"
  6894. },
  6895. "funding": [
  6896. {
  6897. "url": "https://symfony.com/sponsor",
  6898. "type": "custom"
  6899. },
  6900. {
  6901. "url": "https://github.com/fabpot",
  6902. "type": "github"
  6903. },
  6904. {
  6905. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6906. "type": "tidelift"
  6907. }
  6908. ],
  6909. "time": "2021-03-23T12:45:44+00:00"
  6910. },
  6911. {
  6912. "name": "symfony/security-core",
  6913. "version": "v5.2.6",
  6914. "source": {
  6915. "type": "git",
  6916. "url": "https://github.com/symfony/security-core.git",
  6917. "reference": "9dcedab1c2c637fc9a377b3a9313a61087609760"
  6918. },
  6919. "dist": {
  6920. "type": "zip",
  6921. "url": "https://api.github.com/repos/symfony/security-core/zipball/9dcedab1c2c637fc9a377b3a9313a61087609760",
  6922. "reference": "9dcedab1c2c637fc9a377b3a9313a61087609760",
  6923. "shasum": ""
  6924. },
  6925. "require": {
  6926. "php": ">=7.2.5",
  6927. "symfony/deprecation-contracts": "^2.1",
  6928. "symfony/event-dispatcher-contracts": "^1.1|^2",
  6929. "symfony/polyfill-php80": "^1.15",
  6930. "symfony/service-contracts": "^1.1.6|^2"
  6931. },
  6932. "conflict": {
  6933. "symfony/event-dispatcher": "<4.4",
  6934. "symfony/ldap": "<4.4",
  6935. "symfony/security-guard": "<4.4",
  6936. "symfony/validator": "<5.2"
  6937. },
  6938. "require-dev": {
  6939. "psr/container": "^1.0|^2.0",
  6940. "psr/log": "~1.0",
  6941. "symfony/event-dispatcher": "^4.4|^5.0",
  6942. "symfony/expression-language": "^4.4|^5.0",
  6943. "symfony/http-foundation": "^4.4|^5.0",
  6944. "symfony/ldap": "^4.4|^5.0",
  6945. "symfony/translation": "^4.4|^5.0",
  6946. "symfony/validator": "^5.2"
  6947. },
  6948. "suggest": {
  6949. "psr/container-implementation": "To instantiate the Security class",
  6950. "symfony/event-dispatcher": "",
  6951. "symfony/expression-language": "For using the expression voter",
  6952. "symfony/http-foundation": "",
  6953. "symfony/ldap": "For using LDAP integration",
  6954. "symfony/validator": "For using the user password constraint"
  6955. },
  6956. "type": "library",
  6957. "autoload": {
  6958. "psr-4": {
  6959. "Symfony\\Component\\Security\\Core\\": ""
  6960. },
  6961. "exclude-from-classmap": [
  6962. "/Tests/"
  6963. ]
  6964. },
  6965. "notification-url": "https://packagist.org/downloads/",
  6966. "license": [
  6967. "MIT"
  6968. ],
  6969. "authors": [
  6970. {
  6971. "name": "Fabien Potencier",
  6972. "email": "fabien@symfony.com"
  6973. },
  6974. {
  6975. "name": "Symfony Community",
  6976. "homepage": "https://symfony.com/contributors"
  6977. }
  6978. ],
  6979. "description": "Symfony Security Component - Core Library",
  6980. "homepage": "https://symfony.com",
  6981. "support": {
  6982. "source": "https://github.com/symfony/security-core/tree/v5.2.6"
  6983. },
  6984. "funding": [
  6985. {
  6986. "url": "https://symfony.com/sponsor",
  6987. "type": "custom"
  6988. },
  6989. {
  6990. "url": "https://github.com/fabpot",
  6991. "type": "github"
  6992. },
  6993. {
  6994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6995. "type": "tidelift"
  6996. }
  6997. ],
  6998. "time": "2021-03-10T22:10:15+00:00"
  6999. },
  7000. {
  7001. "name": "symfony/security-csrf",
  7002. "version": "v5.2.4",
  7003. "source": {
  7004. "type": "git",
  7005. "url": "https://github.com/symfony/security-csrf.git",
  7006. "reference": "e22ef49d5d3773014942f3dfe301b168a4a833dc"
  7007. },
  7008. "dist": {
  7009. "type": "zip",
  7010. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/e22ef49d5d3773014942f3dfe301b168a4a833dc",
  7011. "reference": "e22ef49d5d3773014942f3dfe301b168a4a833dc",
  7012. "shasum": ""
  7013. },
  7014. "require": {
  7015. "php": ">=7.2.5",
  7016. "symfony/security-core": "^4.4|^5.0"
  7017. },
  7018. "conflict": {
  7019. "symfony/http-foundation": "<4.4"
  7020. },
  7021. "require-dev": {
  7022. "symfony/http-foundation": "^4.4|^5.0"
  7023. },
  7024. "suggest": {
  7025. "symfony/http-foundation": "For using the class SessionTokenStorage."
  7026. },
  7027. "type": "library",
  7028. "autoload": {
  7029. "psr-4": {
  7030. "Symfony\\Component\\Security\\Csrf\\": ""
  7031. },
  7032. "exclude-from-classmap": [
  7033. "/Tests/"
  7034. ]
  7035. },
  7036. "notification-url": "https://packagist.org/downloads/",
  7037. "license": [
  7038. "MIT"
  7039. ],
  7040. "authors": [
  7041. {
  7042. "name": "Fabien Potencier",
  7043. "email": "fabien@symfony.com"
  7044. },
  7045. {
  7046. "name": "Symfony Community",
  7047. "homepage": "https://symfony.com/contributors"
  7048. }
  7049. ],
  7050. "description": "Symfony Security Component - CSRF Library",
  7051. "homepage": "https://symfony.com",
  7052. "support": {
  7053. "source": "https://github.com/symfony/security-csrf/tree/v5.2.4"
  7054. },
  7055. "funding": [
  7056. {
  7057. "url": "https://symfony.com/sponsor",
  7058. "type": "custom"
  7059. },
  7060. {
  7061. "url": "https://github.com/fabpot",
  7062. "type": "github"
  7063. },
  7064. {
  7065. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7066. "type": "tidelift"
  7067. }
  7068. ],
  7069. "time": "2021-01-27T10:01:46+00:00"
  7070. },
  7071. {
  7072. "name": "symfony/security-guard",
  7073. "version": "v5.2.4",
  7074. "source": {
  7075. "type": "git",
  7076. "url": "https://github.com/symfony/security-guard.git",
  7077. "reference": "a191352047f2ea0d927c62e1a2f261cf906d1bde"
  7078. },
  7079. "dist": {
  7080. "type": "zip",
  7081. "url": "https://api.github.com/repos/symfony/security-guard/zipball/a191352047f2ea0d927c62e1a2f261cf906d1bde",
  7082. "reference": "a191352047f2ea0d927c62e1a2f261cf906d1bde",
  7083. "shasum": ""
  7084. },
  7085. "require": {
  7086. "php": ">=7.2.5",
  7087. "symfony/polyfill-php80": "^1.15",
  7088. "symfony/security-core": "^5.0",
  7089. "symfony/security-http": "^4.4.1|^5.0.1"
  7090. },
  7091. "require-dev": {
  7092. "psr/log": "~1.0"
  7093. },
  7094. "type": "library",
  7095. "autoload": {
  7096. "psr-4": {
  7097. "Symfony\\Component\\Security\\Guard\\": ""
  7098. },
  7099. "exclude-from-classmap": [
  7100. "/Tests/"
  7101. ]
  7102. },
  7103. "notification-url": "https://packagist.org/downloads/",
  7104. "license": [
  7105. "MIT"
  7106. ],
  7107. "authors": [
  7108. {
  7109. "name": "Fabien Potencier",
  7110. "email": "fabien@symfony.com"
  7111. },
  7112. {
  7113. "name": "Symfony Community",
  7114. "homepage": "https://symfony.com/contributors"
  7115. }
  7116. ],
  7117. "description": "Symfony Security Component - Guard",
  7118. "homepage": "https://symfony.com",
  7119. "support": {
  7120. "source": "https://github.com/symfony/security-guard/tree/v5.2.4"
  7121. },
  7122. "funding": [
  7123. {
  7124. "url": "https://symfony.com/sponsor",
  7125. "type": "custom"
  7126. },
  7127. {
  7128. "url": "https://github.com/fabpot",
  7129. "type": "github"
  7130. },
  7131. {
  7132. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7133. "type": "tidelift"
  7134. }
  7135. ],
  7136. "time": "2021-01-27T10:15:41+00:00"
  7137. },
  7138. {
  7139. "name": "symfony/security-http",
  7140. "version": "v5.2.6",
  7141. "source": {
  7142. "type": "git",
  7143. "url": "https://github.com/symfony/security-http.git",
  7144. "reference": "a4b3d122ee0c263850ca1ed620faa1b3a8e7584b"
  7145. },
  7146. "dist": {
  7147. "type": "zip",
  7148. "url": "https://api.github.com/repos/symfony/security-http/zipball/a4b3d122ee0c263850ca1ed620faa1b3a8e7584b",
  7149. "reference": "a4b3d122ee0c263850ca1ed620faa1b3a8e7584b",
  7150. "shasum": ""
  7151. },
  7152. "require": {
  7153. "php": ">=7.2.5",
  7154. "symfony/deprecation-contracts": "^2.1",
  7155. "symfony/http-foundation": "^5.2",
  7156. "symfony/http-kernel": "^5.2",
  7157. "symfony/polyfill-php80": "^1.15",
  7158. "symfony/property-access": "^4.4|^5.0",
  7159. "symfony/security-core": "^5.2"
  7160. },
  7161. "conflict": {
  7162. "symfony/event-dispatcher": "<4.3",
  7163. "symfony/security-csrf": "<4.4"
  7164. },
  7165. "require-dev": {
  7166. "psr/log": "~1.0",
  7167. "symfony/cache": "^4.4|^5.0",
  7168. "symfony/rate-limiter": "^5.2",
  7169. "symfony/routing": "^4.4|^5.0",
  7170. "symfony/security-csrf": "^4.4|^5.0",
  7171. "symfony/translation": "^4.4|^5.0"
  7172. },
  7173. "suggest": {
  7174. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  7175. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  7176. },
  7177. "type": "library",
  7178. "autoload": {
  7179. "psr-4": {
  7180. "Symfony\\Component\\Security\\Http\\": ""
  7181. },
  7182. "exclude-from-classmap": [
  7183. "/Tests/"
  7184. ]
  7185. },
  7186. "notification-url": "https://packagist.org/downloads/",
  7187. "license": [
  7188. "MIT"
  7189. ],
  7190. "authors": [
  7191. {
  7192. "name": "Fabien Potencier",
  7193. "email": "fabien@symfony.com"
  7194. },
  7195. {
  7196. "name": "Symfony Community",
  7197. "homepage": "https://symfony.com/contributors"
  7198. }
  7199. ],
  7200. "description": "Symfony Security Component - HTTP Integration",
  7201. "homepage": "https://symfony.com",
  7202. "support": {
  7203. "source": "https://github.com/symfony/security-http/tree/v5.2.6"
  7204. },
  7205. "funding": [
  7206. {
  7207. "url": "https://symfony.com/sponsor",
  7208. "type": "custom"
  7209. },
  7210. {
  7211. "url": "https://github.com/fabpot",
  7212. "type": "github"
  7213. },
  7214. {
  7215. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7216. "type": "tidelift"
  7217. }
  7218. ],
  7219. "time": "2021-03-28T17:23:00+00:00"
  7220. },
  7221. {
  7222. "name": "symfony/serializer",
  7223. "version": "v5.2.4",
  7224. "source": {
  7225. "type": "git",
  7226. "url": "https://github.com/symfony/serializer.git",
  7227. "reference": "a285f474a72397ccbd384900abc968ffcb511dda"
  7228. },
  7229. "dist": {
  7230. "type": "zip",
  7231. "url": "https://api.github.com/repos/symfony/serializer/zipball/a285f474a72397ccbd384900abc968ffcb511dda",
  7232. "reference": "a285f474a72397ccbd384900abc968ffcb511dda",
  7233. "shasum": ""
  7234. },
  7235. "require": {
  7236. "php": ">=7.2.5",
  7237. "symfony/polyfill-ctype": "~1.8",
  7238. "symfony/polyfill-php80": "^1.15"
  7239. },
  7240. "conflict": {
  7241. "phpdocumentor/reflection-docblock": "<3.2.2",
  7242. "phpdocumentor/type-resolver": "<1.4.0",
  7243. "symfony/dependency-injection": "<4.4",
  7244. "symfony/property-access": "<4.4",
  7245. "symfony/property-info": "<4.4",
  7246. "symfony/yaml": "<4.4"
  7247. },
  7248. "require-dev": {
  7249. "doctrine/annotations": "^1.10.4",
  7250. "doctrine/cache": "~1.0",
  7251. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7252. "symfony/cache": "^4.4|^5.0",
  7253. "symfony/config": "^4.4|^5.0",
  7254. "symfony/dependency-injection": "^4.4|^5.0",
  7255. "symfony/error-handler": "^4.4|^5.0",
  7256. "symfony/filesystem": "^4.4|^5.0",
  7257. "symfony/form": "^4.4|^5.0",
  7258. "symfony/http-foundation": "^4.4|^5.0",
  7259. "symfony/http-kernel": "^4.4|^5.0",
  7260. "symfony/mime": "^4.4|^5.0",
  7261. "symfony/property-access": "^4.4.9|^5.0.9",
  7262. "symfony/property-info": "^4.4|^5.0",
  7263. "symfony/uid": "^5.1",
  7264. "symfony/validator": "^4.4|^5.0",
  7265. "symfony/var-exporter": "^4.4|^5.0",
  7266. "symfony/yaml": "^4.4|^5.0"
  7267. },
  7268. "suggest": {
  7269. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  7270. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  7271. "psr/cache-implementation": "For using the metadata cache.",
  7272. "symfony/config": "For using the XML mapping loader.",
  7273. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  7274. "symfony/property-access": "For using the ObjectNormalizer.",
  7275. "symfony/property-info": "To deserialize relations.",
  7276. "symfony/var-exporter": "For using the metadata compiler.",
  7277. "symfony/yaml": "For using the default YAML mapping loader."
  7278. },
  7279. "type": "library",
  7280. "autoload": {
  7281. "psr-4": {
  7282. "Symfony\\Component\\Serializer\\": ""
  7283. },
  7284. "exclude-from-classmap": [
  7285. "/Tests/"
  7286. ]
  7287. },
  7288. "notification-url": "https://packagist.org/downloads/",
  7289. "license": [
  7290. "MIT"
  7291. ],
  7292. "authors": [
  7293. {
  7294. "name": "Fabien Potencier",
  7295. "email": "fabien@symfony.com"
  7296. },
  7297. {
  7298. "name": "Symfony Community",
  7299. "homepage": "https://symfony.com/contributors"
  7300. }
  7301. ],
  7302. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7303. "homepage": "https://symfony.com",
  7304. "support": {
  7305. "source": "https://github.com/symfony/serializer/tree/v5.2.4"
  7306. },
  7307. "funding": [
  7308. {
  7309. "url": "https://symfony.com/sponsor",
  7310. "type": "custom"
  7311. },
  7312. {
  7313. "url": "https://github.com/fabpot",
  7314. "type": "github"
  7315. },
  7316. {
  7317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7318. "type": "tidelift"
  7319. }
  7320. ],
  7321. "time": "2021-03-02T12:14:02+00:00"
  7322. },
  7323. {
  7324. "name": "symfony/serializer-pack",
  7325. "version": "v1.0.4",
  7326. "source": {
  7327. "type": "git",
  7328. "url": "https://github.com/symfony/serializer-pack.git",
  7329. "reference": "61173947057d5e1bf1c79e2a6ab6a8430be0602e"
  7330. },
  7331. "dist": {
  7332. "type": "zip",
  7333. "url": "https://api.github.com/repos/symfony/serializer-pack/zipball/61173947057d5e1bf1c79e2a6ab6a8430be0602e",
  7334. "reference": "61173947057d5e1bf1c79e2a6ab6a8430be0602e",
  7335. "shasum": ""
  7336. },
  7337. "require": {
  7338. "doctrine/annotations": "^1.0",
  7339. "phpdocumentor/reflection-docblock": "*",
  7340. "symfony/property-access": "*",
  7341. "symfony/property-info": "*",
  7342. "symfony/serializer": "*"
  7343. },
  7344. "type": "symfony-pack",
  7345. "notification-url": "https://packagist.org/downloads/",
  7346. "license": [
  7347. "MIT"
  7348. ],
  7349. "description": "A pack for the Symfony serializer",
  7350. "support": {
  7351. "issues": "https://github.com/symfony/serializer-pack/issues",
  7352. "source": "https://github.com/symfony/serializer-pack/tree/v1.0.4"
  7353. },
  7354. "funding": [
  7355. {
  7356. "url": "https://symfony.com/sponsor",
  7357. "type": "custom"
  7358. },
  7359. {
  7360. "url": "https://github.com/fabpot",
  7361. "type": "github"
  7362. },
  7363. {
  7364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7365. "type": "tidelift"
  7366. }
  7367. ],
  7368. "time": "2020-10-19T08:52:16+00:00"
  7369. },
  7370. {
  7371. "name": "symfony/service-contracts",
  7372. "version": "v2.4.0",
  7373. "source": {
  7374. "type": "git",
  7375. "url": "https://github.com/symfony/service-contracts.git",
  7376. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  7377. },
  7378. "dist": {
  7379. "type": "zip",
  7380. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7381. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7382. "shasum": ""
  7383. },
  7384. "require": {
  7385. "php": ">=7.2.5",
  7386. "psr/container": "^1.1"
  7387. },
  7388. "suggest": {
  7389. "symfony/service-implementation": ""
  7390. },
  7391. "type": "library",
  7392. "extra": {
  7393. "branch-alias": {
  7394. "dev-main": "2.4-dev"
  7395. },
  7396. "thanks": {
  7397. "name": "symfony/contracts",
  7398. "url": "https://github.com/symfony/contracts"
  7399. }
  7400. },
  7401. "autoload": {
  7402. "psr-4": {
  7403. "Symfony\\Contracts\\Service\\": ""
  7404. }
  7405. },
  7406. "notification-url": "https://packagist.org/downloads/",
  7407. "license": [
  7408. "MIT"
  7409. ],
  7410. "authors": [
  7411. {
  7412. "name": "Nicolas Grekas",
  7413. "email": "p@tchwork.com"
  7414. },
  7415. {
  7416. "name": "Symfony Community",
  7417. "homepage": "https://symfony.com/contributors"
  7418. }
  7419. ],
  7420. "description": "Generic abstractions related to writing services",
  7421. "homepage": "https://symfony.com",
  7422. "keywords": [
  7423. "abstractions",
  7424. "contracts",
  7425. "decoupling",
  7426. "interfaces",
  7427. "interoperability",
  7428. "standards"
  7429. ],
  7430. "support": {
  7431. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  7432. },
  7433. "funding": [
  7434. {
  7435. "url": "https://symfony.com/sponsor",
  7436. "type": "custom"
  7437. },
  7438. {
  7439. "url": "https://github.com/fabpot",
  7440. "type": "github"
  7441. },
  7442. {
  7443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7444. "type": "tidelift"
  7445. }
  7446. ],
  7447. "time": "2021-04-01T10:43:52+00:00"
  7448. },
  7449. {
  7450. "name": "symfony/stopwatch",
  7451. "version": "v5.2.4",
  7452. "source": {
  7453. "type": "git",
  7454. "url": "https://github.com/symfony/stopwatch.git",
  7455. "reference": "b12274acfab9d9850c52583d136a24398cdf1a0c"
  7456. },
  7457. "dist": {
  7458. "type": "zip",
  7459. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/b12274acfab9d9850c52583d136a24398cdf1a0c",
  7460. "reference": "b12274acfab9d9850c52583d136a24398cdf1a0c",
  7461. "shasum": ""
  7462. },
  7463. "require": {
  7464. "php": ">=7.2.5",
  7465. "symfony/service-contracts": "^1.0|^2"
  7466. },
  7467. "type": "library",
  7468. "autoload": {
  7469. "psr-4": {
  7470. "Symfony\\Component\\Stopwatch\\": ""
  7471. },
  7472. "exclude-from-classmap": [
  7473. "/Tests/"
  7474. ]
  7475. },
  7476. "notification-url": "https://packagist.org/downloads/",
  7477. "license": [
  7478. "MIT"
  7479. ],
  7480. "authors": [
  7481. {
  7482. "name": "Fabien Potencier",
  7483. "email": "fabien@symfony.com"
  7484. },
  7485. {
  7486. "name": "Symfony Community",
  7487. "homepage": "https://symfony.com/contributors"
  7488. }
  7489. ],
  7490. "description": "Provides a way to profile code",
  7491. "homepage": "https://symfony.com",
  7492. "support": {
  7493. "source": "https://github.com/symfony/stopwatch/tree/v5.2.4"
  7494. },
  7495. "funding": [
  7496. {
  7497. "url": "https://symfony.com/sponsor",
  7498. "type": "custom"
  7499. },
  7500. {
  7501. "url": "https://github.com/fabpot",
  7502. "type": "github"
  7503. },
  7504. {
  7505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7506. "type": "tidelift"
  7507. }
  7508. ],
  7509. "time": "2021-01-27T10:15:41+00:00"
  7510. },
  7511. {
  7512. "name": "symfony/string",
  7513. "version": "v5.2.6",
  7514. "source": {
  7515. "type": "git",
  7516. "url": "https://github.com/symfony/string.git",
  7517. "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572"
  7518. },
  7519. "dist": {
  7520. "type": "zip",
  7521. "url": "https://api.github.com/repos/symfony/string/zipball/ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572",
  7522. "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572",
  7523. "shasum": ""
  7524. },
  7525. "require": {
  7526. "php": ">=7.2.5",
  7527. "symfony/polyfill-ctype": "~1.8",
  7528. "symfony/polyfill-intl-grapheme": "~1.0",
  7529. "symfony/polyfill-intl-normalizer": "~1.0",
  7530. "symfony/polyfill-mbstring": "~1.0",
  7531. "symfony/polyfill-php80": "~1.15"
  7532. },
  7533. "require-dev": {
  7534. "symfony/error-handler": "^4.4|^5.0",
  7535. "symfony/http-client": "^4.4|^5.0",
  7536. "symfony/translation-contracts": "^1.1|^2",
  7537. "symfony/var-exporter": "^4.4|^5.0"
  7538. },
  7539. "type": "library",
  7540. "autoload": {
  7541. "psr-4": {
  7542. "Symfony\\Component\\String\\": ""
  7543. },
  7544. "files": [
  7545. "Resources/functions.php"
  7546. ],
  7547. "exclude-from-classmap": [
  7548. "/Tests/"
  7549. ]
  7550. },
  7551. "notification-url": "https://packagist.org/downloads/",
  7552. "license": [
  7553. "MIT"
  7554. ],
  7555. "authors": [
  7556. {
  7557. "name": "Nicolas Grekas",
  7558. "email": "p@tchwork.com"
  7559. },
  7560. {
  7561. "name": "Symfony Community",
  7562. "homepage": "https://symfony.com/contributors"
  7563. }
  7564. ],
  7565. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7566. "homepage": "https://symfony.com",
  7567. "keywords": [
  7568. "grapheme",
  7569. "i18n",
  7570. "string",
  7571. "unicode",
  7572. "utf-8",
  7573. "utf8"
  7574. ],
  7575. "support": {
  7576. "source": "https://github.com/symfony/string/tree/v5.2.6"
  7577. },
  7578. "funding": [
  7579. {
  7580. "url": "https://symfony.com/sponsor",
  7581. "type": "custom"
  7582. },
  7583. {
  7584. "url": "https://github.com/fabpot",
  7585. "type": "github"
  7586. },
  7587. {
  7588. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7589. "type": "tidelift"
  7590. }
  7591. ],
  7592. "time": "2021-03-17T17:12:15+00:00"
  7593. },
  7594. {
  7595. "name": "symfony/translation",
  7596. "version": "v5.2.6",
  7597. "source": {
  7598. "type": "git",
  7599. "url": "https://github.com/symfony/translation.git",
  7600. "reference": "2cc7f45d96db9adfcf89adf4401d9dfed509f4e1"
  7601. },
  7602. "dist": {
  7603. "type": "zip",
  7604. "url": "https://api.github.com/repos/symfony/translation/zipball/2cc7f45d96db9adfcf89adf4401d9dfed509f4e1",
  7605. "reference": "2cc7f45d96db9adfcf89adf4401d9dfed509f4e1",
  7606. "shasum": ""
  7607. },
  7608. "require": {
  7609. "php": ">=7.2.5",
  7610. "symfony/polyfill-mbstring": "~1.0",
  7611. "symfony/polyfill-php80": "^1.15",
  7612. "symfony/translation-contracts": "^2.3"
  7613. },
  7614. "conflict": {
  7615. "symfony/config": "<4.4",
  7616. "symfony/dependency-injection": "<5.0",
  7617. "symfony/http-kernel": "<5.0",
  7618. "symfony/twig-bundle": "<5.0",
  7619. "symfony/yaml": "<4.4"
  7620. },
  7621. "provide": {
  7622. "symfony/translation-implementation": "2.3"
  7623. },
  7624. "require-dev": {
  7625. "psr/log": "~1.0",
  7626. "symfony/config": "^4.4|^5.0",
  7627. "symfony/console": "^4.4|^5.0",
  7628. "symfony/dependency-injection": "^5.0",
  7629. "symfony/finder": "^4.4|^5.0",
  7630. "symfony/http-kernel": "^5.0",
  7631. "symfony/intl": "^4.4|^5.0",
  7632. "symfony/service-contracts": "^1.1.2|^2",
  7633. "symfony/yaml": "^4.4|^5.0"
  7634. },
  7635. "suggest": {
  7636. "psr/log-implementation": "To use logging capability in translator",
  7637. "symfony/config": "",
  7638. "symfony/yaml": ""
  7639. },
  7640. "type": "library",
  7641. "autoload": {
  7642. "files": [
  7643. "Resources/functions.php"
  7644. ],
  7645. "psr-4": {
  7646. "Symfony\\Component\\Translation\\": ""
  7647. },
  7648. "exclude-from-classmap": [
  7649. "/Tests/"
  7650. ]
  7651. },
  7652. "notification-url": "https://packagist.org/downloads/",
  7653. "license": [
  7654. "MIT"
  7655. ],
  7656. "authors": [
  7657. {
  7658. "name": "Fabien Potencier",
  7659. "email": "fabien@symfony.com"
  7660. },
  7661. {
  7662. "name": "Symfony Community",
  7663. "homepage": "https://symfony.com/contributors"
  7664. }
  7665. ],
  7666. "description": "Provides tools to internationalize your application",
  7667. "homepage": "https://symfony.com",
  7668. "support": {
  7669. "source": "https://github.com/symfony/translation/tree/v5.2.6"
  7670. },
  7671. "funding": [
  7672. {
  7673. "url": "https://symfony.com/sponsor",
  7674. "type": "custom"
  7675. },
  7676. {
  7677. "url": "https://github.com/fabpot",
  7678. "type": "github"
  7679. },
  7680. {
  7681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7682. "type": "tidelift"
  7683. }
  7684. ],
  7685. "time": "2021-03-23T19:33:48+00:00"
  7686. },
  7687. {
  7688. "name": "symfony/translation-contracts",
  7689. "version": "v2.4.0",
  7690. "source": {
  7691. "type": "git",
  7692. "url": "https://github.com/symfony/translation-contracts.git",
  7693. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7694. },
  7695. "dist": {
  7696. "type": "zip",
  7697. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7698. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7699. "shasum": ""
  7700. },
  7701. "require": {
  7702. "php": ">=7.2.5"
  7703. },
  7704. "suggest": {
  7705. "symfony/translation-implementation": ""
  7706. },
  7707. "type": "library",
  7708. "extra": {
  7709. "branch-alias": {
  7710. "dev-main": "2.4-dev"
  7711. },
  7712. "thanks": {
  7713. "name": "symfony/contracts",
  7714. "url": "https://github.com/symfony/contracts"
  7715. }
  7716. },
  7717. "autoload": {
  7718. "psr-4": {
  7719. "Symfony\\Contracts\\Translation\\": ""
  7720. }
  7721. },
  7722. "notification-url": "https://packagist.org/downloads/",
  7723. "license": [
  7724. "MIT"
  7725. ],
  7726. "authors": [
  7727. {
  7728. "name": "Nicolas Grekas",
  7729. "email": "p@tchwork.com"
  7730. },
  7731. {
  7732. "name": "Symfony Community",
  7733. "homepage": "https://symfony.com/contributors"
  7734. }
  7735. ],
  7736. "description": "Generic abstractions related to translation",
  7737. "homepage": "https://symfony.com",
  7738. "keywords": [
  7739. "abstractions",
  7740. "contracts",
  7741. "decoupling",
  7742. "interfaces",
  7743. "interoperability",
  7744. "standards"
  7745. ],
  7746. "support": {
  7747. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7748. },
  7749. "funding": [
  7750. {
  7751. "url": "https://symfony.com/sponsor",
  7752. "type": "custom"
  7753. },
  7754. {
  7755. "url": "https://github.com/fabpot",
  7756. "type": "github"
  7757. },
  7758. {
  7759. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7760. "type": "tidelift"
  7761. }
  7762. ],
  7763. "time": "2021-03-23T23:28:01+00:00"
  7764. },
  7765. {
  7766. "name": "symfony/twig-bridge",
  7767. "version": "v5.2.6",
  7768. "source": {
  7769. "type": "git",
  7770. "url": "https://github.com/symfony/twig-bridge.git",
  7771. "reference": "a65d8d38c66f147f29b73d53d14e8c9a983653b8"
  7772. },
  7773. "dist": {
  7774. "type": "zip",
  7775. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/a65d8d38c66f147f29b73d53d14e8c9a983653b8",
  7776. "reference": "a65d8d38c66f147f29b73d53d14e8c9a983653b8",
  7777. "shasum": ""
  7778. },
  7779. "require": {
  7780. "php": ">=7.2.5",
  7781. "symfony/polyfill-php80": "^1.15",
  7782. "symfony/translation-contracts": "^1.1|^2",
  7783. "twig/twig": "^2.13|^3.0.4"
  7784. },
  7785. "conflict": {
  7786. "phpdocumentor/reflection-docblock": "<3.2.2",
  7787. "phpdocumentor/type-resolver": "<1.4.0",
  7788. "symfony/console": "<4.4",
  7789. "symfony/form": "<5.1",
  7790. "symfony/http-foundation": "<4.4",
  7791. "symfony/http-kernel": "<4.4",
  7792. "symfony/translation": "<5.2",
  7793. "symfony/workflow": "<5.2"
  7794. },
  7795. "require-dev": {
  7796. "egulias/email-validator": "^2.1.10|^3",
  7797. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7798. "symfony/asset": "^4.4|^5.0",
  7799. "symfony/console": "^4.4|^5.0",
  7800. "symfony/dependency-injection": "^4.4|^5.0",
  7801. "symfony/expression-language": "^4.4|^5.0",
  7802. "symfony/finder": "^4.4|^5.0",
  7803. "symfony/form": "^5.1.9",
  7804. "symfony/http-foundation": "^4.4|^5.0",
  7805. "symfony/http-kernel": "^4.4|^5.0",
  7806. "symfony/intl": "^4.4|^5.0",
  7807. "symfony/mime": "^5.2",
  7808. "symfony/polyfill-intl-icu": "~1.0",
  7809. "symfony/property-info": "^4.4|^5.1",
  7810. "symfony/routing": "^4.4|^5.0",
  7811. "symfony/security-acl": "^2.8|^3.0",
  7812. "symfony/security-core": "^4.4|^5.0",
  7813. "symfony/security-csrf": "^4.4|^5.0",
  7814. "symfony/security-http": "^4.4|^5.0",
  7815. "symfony/serializer": "^5.2",
  7816. "symfony/stopwatch": "^4.4|^5.0",
  7817. "symfony/translation": "^5.2",
  7818. "symfony/web-link": "^4.4|^5.0",
  7819. "symfony/workflow": "^5.2",
  7820. "symfony/yaml": "^4.4|^5.0",
  7821. "twig/cssinliner-extra": "^2.12|^3",
  7822. "twig/inky-extra": "^2.12|^3",
  7823. "twig/markdown-extra": "^2.12|^3"
  7824. },
  7825. "suggest": {
  7826. "symfony/asset": "For using the AssetExtension",
  7827. "symfony/expression-language": "For using the ExpressionExtension",
  7828. "symfony/finder": "",
  7829. "symfony/form": "For using the FormExtension",
  7830. "symfony/http-kernel": "For using the HttpKernelExtension",
  7831. "symfony/routing": "For using the RoutingExtension",
  7832. "symfony/security-core": "For using the SecurityExtension",
  7833. "symfony/security-csrf": "For using the CsrfExtension",
  7834. "symfony/security-http": "For using the LogoutUrlExtension",
  7835. "symfony/stopwatch": "For using the StopwatchExtension",
  7836. "symfony/translation": "For using the TranslationExtension",
  7837. "symfony/var-dumper": "For using the DumpExtension",
  7838. "symfony/web-link": "For using the WebLinkExtension",
  7839. "symfony/yaml": "For using the YamlExtension"
  7840. },
  7841. "type": "symfony-bridge",
  7842. "autoload": {
  7843. "psr-4": {
  7844. "Symfony\\Bridge\\Twig\\": ""
  7845. },
  7846. "exclude-from-classmap": [
  7847. "/Tests/"
  7848. ]
  7849. },
  7850. "notification-url": "https://packagist.org/downloads/",
  7851. "license": [
  7852. "MIT"
  7853. ],
  7854. "authors": [
  7855. {
  7856. "name": "Fabien Potencier",
  7857. "email": "fabien@symfony.com"
  7858. },
  7859. {
  7860. "name": "Symfony Community",
  7861. "homepage": "https://symfony.com/contributors"
  7862. }
  7863. ],
  7864. "description": "Provides integration for Twig with various Symfony components",
  7865. "homepage": "https://symfony.com",
  7866. "support": {
  7867. "source": "https://github.com/symfony/twig-bridge/tree/v5.2.6"
  7868. },
  7869. "funding": [
  7870. {
  7871. "url": "https://symfony.com/sponsor",
  7872. "type": "custom"
  7873. },
  7874. {
  7875. "url": "https://github.com/fabpot",
  7876. "type": "github"
  7877. },
  7878. {
  7879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7880. "type": "tidelift"
  7881. }
  7882. ],
  7883. "time": "2021-03-16T09:10:13+00:00"
  7884. },
  7885. {
  7886. "name": "symfony/twig-bundle",
  7887. "version": "v5.2.4",
  7888. "source": {
  7889. "type": "git",
  7890. "url": "https://github.com/symfony/twig-bundle.git",
  7891. "reference": "5ebbb5f0e8bfaa0b4b37cb25ff97f83b18caf221"
  7892. },
  7893. "dist": {
  7894. "type": "zip",
  7895. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/5ebbb5f0e8bfaa0b4b37cb25ff97f83b18caf221",
  7896. "reference": "5ebbb5f0e8bfaa0b4b37cb25ff97f83b18caf221",
  7897. "shasum": ""
  7898. },
  7899. "require": {
  7900. "php": ">=7.2.5",
  7901. "symfony/config": "^4.4|^5.0",
  7902. "symfony/http-foundation": "^4.4|^5.0",
  7903. "symfony/http-kernel": "^5.0",
  7904. "symfony/polyfill-ctype": "~1.8",
  7905. "symfony/twig-bridge": "^5.0",
  7906. "twig/twig": "^2.13|^3.0.4"
  7907. },
  7908. "conflict": {
  7909. "symfony/dependency-injection": "<5.2",
  7910. "symfony/framework-bundle": "<5.0",
  7911. "symfony/translation": "<5.0"
  7912. },
  7913. "require-dev": {
  7914. "doctrine/annotations": "^1.10.4",
  7915. "doctrine/cache": "~1.0",
  7916. "symfony/asset": "^4.4|^5.0",
  7917. "symfony/dependency-injection": "^5.2",
  7918. "symfony/expression-language": "^4.4|^5.0",
  7919. "symfony/finder": "^4.4|^5.0",
  7920. "symfony/form": "^4.4|^5.0",
  7921. "symfony/framework-bundle": "^5.0",
  7922. "symfony/routing": "^4.4|^5.0",
  7923. "symfony/stopwatch": "^4.4|^5.0",
  7924. "symfony/translation": "^5.0",
  7925. "symfony/web-link": "^4.4|^5.0",
  7926. "symfony/yaml": "^4.4|^5.0"
  7927. },
  7928. "type": "symfony-bundle",
  7929. "autoload": {
  7930. "psr-4": {
  7931. "Symfony\\Bundle\\TwigBundle\\": ""
  7932. },
  7933. "exclude-from-classmap": [
  7934. "/Tests/"
  7935. ]
  7936. },
  7937. "notification-url": "https://packagist.org/downloads/",
  7938. "license": [
  7939. "MIT"
  7940. ],
  7941. "authors": [
  7942. {
  7943. "name": "Fabien Potencier",
  7944. "email": "fabien@symfony.com"
  7945. },
  7946. {
  7947. "name": "Symfony Community",
  7948. "homepage": "https://symfony.com/contributors"
  7949. }
  7950. ],
  7951. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7952. "homepage": "https://symfony.com",
  7953. "support": {
  7954. "source": "https://github.com/symfony/twig-bundle/tree/v5.2.4"
  7955. },
  7956. "funding": [
  7957. {
  7958. "url": "https://symfony.com/sponsor",
  7959. "type": "custom"
  7960. },
  7961. {
  7962. "url": "https://github.com/fabpot",
  7963. "type": "github"
  7964. },
  7965. {
  7966. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7967. "type": "tidelift"
  7968. }
  7969. ],
  7970. "time": "2021-01-27T10:15:41+00:00"
  7971. },
  7972. {
  7973. "name": "symfony/twig-pack",
  7974. "version": "v1.0.1",
  7975. "source": {
  7976. "type": "git",
  7977. "url": "https://github.com/symfony/twig-pack.git",
  7978. "reference": "08a73e833e07921c464336deb7630f93e85ef930"
  7979. },
  7980. "dist": {
  7981. "type": "zip",
  7982. "url": "https://api.github.com/repos/symfony/twig-pack/zipball/08a73e833e07921c464336deb7630f93e85ef930",
  7983. "reference": "08a73e833e07921c464336deb7630f93e85ef930",
  7984. "shasum": ""
  7985. },
  7986. "require": {
  7987. "symfony/twig-bundle": "*",
  7988. "twig/extra-bundle": "^2.12|^3.0",
  7989. "twig/twig": "^2.12|^3.0"
  7990. },
  7991. "type": "symfony-pack",
  7992. "notification-url": "https://packagist.org/downloads/",
  7993. "license": [
  7994. "MIT"
  7995. ],
  7996. "description": "A Twig pack for Symfony projects",
  7997. "support": {
  7998. "issues": "https://github.com/symfony/twig-pack/issues",
  7999. "source": "https://github.com/symfony/twig-pack/tree/v1.0.1"
  8000. },
  8001. "funding": [
  8002. {
  8003. "url": "https://symfony.com/sponsor",
  8004. "type": "custom"
  8005. },
  8006. {
  8007. "url": "https://github.com/fabpot",
  8008. "type": "github"
  8009. },
  8010. {
  8011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8012. "type": "tidelift"
  8013. }
  8014. ],
  8015. "time": "2020-10-19T08:46:41+00:00"
  8016. },
  8017. {
  8018. "name": "symfony/validator",
  8019. "version": "v5.2.6",
  8020. "source": {
  8021. "type": "git",
  8022. "url": "https://github.com/symfony/validator.git",
  8023. "reference": "67354644f9baba3cc122134c255b7461b7e0fe31"
  8024. },
  8025. "dist": {
  8026. "type": "zip",
  8027. "url": "https://api.github.com/repos/symfony/validator/zipball/67354644f9baba3cc122134c255b7461b7e0fe31",
  8028. "reference": "67354644f9baba3cc122134c255b7461b7e0fe31",
  8029. "shasum": ""
  8030. },
  8031. "require": {
  8032. "php": ">=7.2.5",
  8033. "symfony/deprecation-contracts": "^2.1",
  8034. "symfony/polyfill-ctype": "~1.8",
  8035. "symfony/polyfill-mbstring": "~1.0",
  8036. "symfony/polyfill-php73": "~1.0",
  8037. "symfony/polyfill-php80": "^1.15",
  8038. "symfony/translation-contracts": "^1.1|^2"
  8039. },
  8040. "conflict": {
  8041. "doctrine/lexer": "<1.0.2",
  8042. "phpunit/phpunit": "<5.4.3",
  8043. "symfony/dependency-injection": "<4.4",
  8044. "symfony/expression-language": "<5.1",
  8045. "symfony/http-kernel": "<4.4",
  8046. "symfony/intl": "<4.4",
  8047. "symfony/translation": "<4.4",
  8048. "symfony/yaml": "<4.4"
  8049. },
  8050. "require-dev": {
  8051. "doctrine/annotations": "^1.10.4",
  8052. "doctrine/cache": "~1.0",
  8053. "egulias/email-validator": "^2.1.10|^3",
  8054. "symfony/cache": "^4.4|^5.0",
  8055. "symfony/config": "^4.4|^5.0",
  8056. "symfony/console": "^4.4|^5.0",
  8057. "symfony/dependency-injection": "^4.4|^5.0",
  8058. "symfony/expression-language": "^5.1",
  8059. "symfony/finder": "^4.4|^5.0",
  8060. "symfony/http-client": "^4.4|^5.0",
  8061. "symfony/http-foundation": "^4.4|^5.0",
  8062. "symfony/http-kernel": "^4.4|^5.0",
  8063. "symfony/intl": "^4.4|^5.0",
  8064. "symfony/mime": "^4.4|^5.0",
  8065. "symfony/property-access": "^4.4|^5.0",
  8066. "symfony/property-info": "^4.4|^5.0",
  8067. "symfony/translation": "^4.4|^5.0",
  8068. "symfony/yaml": "^4.4|^5.0"
  8069. },
  8070. "suggest": {
  8071. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8072. "doctrine/cache": "For using the default cached annotation reader.",
  8073. "egulias/email-validator": "Strict (RFC compliant) email validation",
  8074. "psr/cache-implementation": "For using the mapping cache.",
  8075. "symfony/config": "",
  8076. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  8077. "symfony/http-foundation": "",
  8078. "symfony/intl": "",
  8079. "symfony/property-access": "For accessing properties within comparison constraints",
  8080. "symfony/property-info": "To automatically add NotNull and Type constraints",
  8081. "symfony/translation": "For translating validation errors.",
  8082. "symfony/yaml": ""
  8083. },
  8084. "type": "library",
  8085. "autoload": {
  8086. "psr-4": {
  8087. "Symfony\\Component\\Validator\\": ""
  8088. },
  8089. "exclude-from-classmap": [
  8090. "/Tests/"
  8091. ]
  8092. },
  8093. "notification-url": "https://packagist.org/downloads/",
  8094. "license": [
  8095. "MIT"
  8096. ],
  8097. "authors": [
  8098. {
  8099. "name": "Fabien Potencier",
  8100. "email": "fabien@symfony.com"
  8101. },
  8102. {
  8103. "name": "Symfony Community",
  8104. "homepage": "https://symfony.com/contributors"
  8105. }
  8106. ],
  8107. "description": "Provides tools to validate values",
  8108. "homepage": "https://symfony.com",
  8109. "support": {
  8110. "source": "https://github.com/symfony/validator/tree/v5.2.6"
  8111. },
  8112. "funding": [
  8113. {
  8114. "url": "https://symfony.com/sponsor",
  8115. "type": "custom"
  8116. },
  8117. {
  8118. "url": "https://github.com/fabpot",
  8119. "type": "github"
  8120. },
  8121. {
  8122. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8123. "type": "tidelift"
  8124. }
  8125. ],
  8126. "time": "2021-03-23T12:45:44+00:00"
  8127. },
  8128. {
  8129. "name": "symfony/var-dumper",
  8130. "version": "v5.2.6",
  8131. "source": {
  8132. "type": "git",
  8133. "url": "https://github.com/symfony/var-dumper.git",
  8134. "reference": "89412a68ea2e675b4e44f260a5666729f77f668e"
  8135. },
  8136. "dist": {
  8137. "type": "zip",
  8138. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/89412a68ea2e675b4e44f260a5666729f77f668e",
  8139. "reference": "89412a68ea2e675b4e44f260a5666729f77f668e",
  8140. "shasum": ""
  8141. },
  8142. "require": {
  8143. "php": ">=7.2.5",
  8144. "symfony/polyfill-mbstring": "~1.0",
  8145. "symfony/polyfill-php80": "^1.15"
  8146. },
  8147. "conflict": {
  8148. "phpunit/phpunit": "<5.4.3",
  8149. "symfony/console": "<4.4"
  8150. },
  8151. "require-dev": {
  8152. "ext-iconv": "*",
  8153. "symfony/console": "^4.4|^5.0",
  8154. "symfony/process": "^4.4|^5.0",
  8155. "twig/twig": "^2.13|^3.0.4"
  8156. },
  8157. "suggest": {
  8158. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8159. "ext-intl": "To show region name in time zone dump",
  8160. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8161. },
  8162. "bin": [
  8163. "Resources/bin/var-dump-server"
  8164. ],
  8165. "type": "library",
  8166. "autoload": {
  8167. "files": [
  8168. "Resources/functions/dump.php"
  8169. ],
  8170. "psr-4": {
  8171. "Symfony\\Component\\VarDumper\\": ""
  8172. },
  8173. "exclude-from-classmap": [
  8174. "/Tests/"
  8175. ]
  8176. },
  8177. "notification-url": "https://packagist.org/downloads/",
  8178. "license": [
  8179. "MIT"
  8180. ],
  8181. "authors": [
  8182. {
  8183. "name": "Nicolas Grekas",
  8184. "email": "p@tchwork.com"
  8185. },
  8186. {
  8187. "name": "Symfony Community",
  8188. "homepage": "https://symfony.com/contributors"
  8189. }
  8190. ],
  8191. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8192. "homepage": "https://symfony.com",
  8193. "keywords": [
  8194. "debug",
  8195. "dump"
  8196. ],
  8197. "support": {
  8198. "source": "https://github.com/symfony/var-dumper/tree/v5.2.6"
  8199. },
  8200. "funding": [
  8201. {
  8202. "url": "https://symfony.com/sponsor",
  8203. "type": "custom"
  8204. },
  8205. {
  8206. "url": "https://github.com/fabpot",
  8207. "type": "github"
  8208. },
  8209. {
  8210. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8211. "type": "tidelift"
  8212. }
  8213. ],
  8214. "time": "2021-03-28T09:42:18+00:00"
  8215. },
  8216. {
  8217. "name": "symfony/var-exporter",
  8218. "version": "v5.2.4",
  8219. "source": {
  8220. "type": "git",
  8221. "url": "https://github.com/symfony/var-exporter.git",
  8222. "reference": "5aed4875ab514c8cb9b6ff4772baa25fa4c10307"
  8223. },
  8224. "dist": {
  8225. "type": "zip",
  8226. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/5aed4875ab514c8cb9b6ff4772baa25fa4c10307",
  8227. "reference": "5aed4875ab514c8cb9b6ff4772baa25fa4c10307",
  8228. "shasum": ""
  8229. },
  8230. "require": {
  8231. "php": ">=7.2.5",
  8232. "symfony/polyfill-php80": "^1.15"
  8233. },
  8234. "require-dev": {
  8235. "symfony/var-dumper": "^4.4.9|^5.0.9"
  8236. },
  8237. "type": "library",
  8238. "autoload": {
  8239. "psr-4": {
  8240. "Symfony\\Component\\VarExporter\\": ""
  8241. },
  8242. "exclude-from-classmap": [
  8243. "/Tests/"
  8244. ]
  8245. },
  8246. "notification-url": "https://packagist.org/downloads/",
  8247. "license": [
  8248. "MIT"
  8249. ],
  8250. "authors": [
  8251. {
  8252. "name": "Nicolas Grekas",
  8253. "email": "p@tchwork.com"
  8254. },
  8255. {
  8256. "name": "Symfony Community",
  8257. "homepage": "https://symfony.com/contributors"
  8258. }
  8259. ],
  8260. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8261. "homepage": "https://symfony.com",
  8262. "keywords": [
  8263. "clone",
  8264. "construct",
  8265. "export",
  8266. "hydrate",
  8267. "instantiate",
  8268. "serialize"
  8269. ],
  8270. "support": {
  8271. "source": "https://github.com/symfony/var-exporter/tree/v5.2.4"
  8272. },
  8273. "funding": [
  8274. {
  8275. "url": "https://symfony.com/sponsor",
  8276. "type": "custom"
  8277. },
  8278. {
  8279. "url": "https://github.com/fabpot",
  8280. "type": "github"
  8281. },
  8282. {
  8283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8284. "type": "tidelift"
  8285. }
  8286. ],
  8287. "time": "2021-01-27T10:01:46+00:00"
  8288. },
  8289. {
  8290. "name": "symfony/web-link",
  8291. "version": "v5.2.5",
  8292. "source": {
  8293. "type": "git",
  8294. "url": "https://github.com/symfony/web-link.git",
  8295. "reference": "118ef73c177a033955af1342ec54f08dd1bf6d8e"
  8296. },
  8297. "dist": {
  8298. "type": "zip",
  8299. "url": "https://api.github.com/repos/symfony/web-link/zipball/118ef73c177a033955af1342ec54f08dd1bf6d8e",
  8300. "reference": "118ef73c177a033955af1342ec54f08dd1bf6d8e",
  8301. "shasum": ""
  8302. },
  8303. "require": {
  8304. "php": ">=7.2.5",
  8305. "psr/link": "^1.0"
  8306. },
  8307. "conflict": {
  8308. "symfony/http-kernel": "<4.4"
  8309. },
  8310. "provide": {
  8311. "psr/link-implementation": "1.0"
  8312. },
  8313. "require-dev": {
  8314. "symfony/http-foundation": "^4.4|^5.0",
  8315. "symfony/http-kernel": "^4.4|^5.0"
  8316. },
  8317. "suggest": {
  8318. "symfony/http-kernel": ""
  8319. },
  8320. "type": "library",
  8321. "autoload": {
  8322. "psr-4": {
  8323. "Symfony\\Component\\WebLink\\": ""
  8324. },
  8325. "exclude-from-classmap": [
  8326. "/Tests/"
  8327. ]
  8328. },
  8329. "notification-url": "https://packagist.org/downloads/",
  8330. "license": [
  8331. "MIT"
  8332. ],
  8333. "authors": [
  8334. {
  8335. "name": "Kévin Dunglas",
  8336. "email": "dunglas@gmail.com"
  8337. },
  8338. {
  8339. "name": "Symfony Community",
  8340. "homepage": "https://symfony.com/contributors"
  8341. }
  8342. ],
  8343. "description": "Manages links between resources",
  8344. "homepage": "https://symfony.com",
  8345. "keywords": [
  8346. "dns-prefetch",
  8347. "http",
  8348. "http2",
  8349. "link",
  8350. "performance",
  8351. "prefetch",
  8352. "preload",
  8353. "prerender",
  8354. "psr13",
  8355. "push"
  8356. ],
  8357. "support": {
  8358. "source": "https://github.com/symfony/web-link/tree/v5.2.5"
  8359. },
  8360. "funding": [
  8361. {
  8362. "url": "https://symfony.com/sponsor",
  8363. "type": "custom"
  8364. },
  8365. {
  8366. "url": "https://github.com/fabpot",
  8367. "type": "github"
  8368. },
  8369. {
  8370. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8371. "type": "tidelift"
  8372. }
  8373. ],
  8374. "time": "2021-03-07T15:51:33+00:00"
  8375. },
  8376. {
  8377. "name": "symfony/yaml",
  8378. "version": "v5.2.5",
  8379. "source": {
  8380. "type": "git",
  8381. "url": "https://github.com/symfony/yaml.git",
  8382. "reference": "298a08ddda623485208506fcee08817807a251dd"
  8383. },
  8384. "dist": {
  8385. "type": "zip",
  8386. "url": "https://api.github.com/repos/symfony/yaml/zipball/298a08ddda623485208506fcee08817807a251dd",
  8387. "reference": "298a08ddda623485208506fcee08817807a251dd",
  8388. "shasum": ""
  8389. },
  8390. "require": {
  8391. "php": ">=7.2.5",
  8392. "symfony/deprecation-contracts": "^2.1",
  8393. "symfony/polyfill-ctype": "~1.8"
  8394. },
  8395. "conflict": {
  8396. "symfony/console": "<4.4"
  8397. },
  8398. "require-dev": {
  8399. "symfony/console": "^4.4|^5.0"
  8400. },
  8401. "suggest": {
  8402. "symfony/console": "For validating YAML files using the lint command"
  8403. },
  8404. "bin": [
  8405. "Resources/bin/yaml-lint"
  8406. ],
  8407. "type": "library",
  8408. "autoload": {
  8409. "psr-4": {
  8410. "Symfony\\Component\\Yaml\\": ""
  8411. },
  8412. "exclude-from-classmap": [
  8413. "/Tests/"
  8414. ]
  8415. },
  8416. "notification-url": "https://packagist.org/downloads/",
  8417. "license": [
  8418. "MIT"
  8419. ],
  8420. "authors": [
  8421. {
  8422. "name": "Fabien Potencier",
  8423. "email": "fabien@symfony.com"
  8424. },
  8425. {
  8426. "name": "Symfony Community",
  8427. "homepage": "https://symfony.com/contributors"
  8428. }
  8429. ],
  8430. "description": "Loads and dumps YAML files",
  8431. "homepage": "https://symfony.com",
  8432. "support": {
  8433. "source": "https://github.com/symfony/yaml/tree/v5.2.5"
  8434. },
  8435. "funding": [
  8436. {
  8437. "url": "https://symfony.com/sponsor",
  8438. "type": "custom"
  8439. },
  8440. {
  8441. "url": "https://github.com/fabpot",
  8442. "type": "github"
  8443. },
  8444. {
  8445. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8446. "type": "tidelift"
  8447. }
  8448. ],
  8449. "time": "2021-03-06T07:59:01+00:00"
  8450. },
  8451. {
  8452. "name": "twig/extra-bundle",
  8453. "version": "v3.3.0",
  8454. "source": {
  8455. "type": "git",
  8456. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8457. "reference": "e2d27a86c3f47859eb07808fa7c8679d30fcbdde"
  8458. },
  8459. "dist": {
  8460. "type": "zip",
  8461. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/e2d27a86c3f47859eb07808fa7c8679d30fcbdde",
  8462. "reference": "e2d27a86c3f47859eb07808fa7c8679d30fcbdde",
  8463. "shasum": ""
  8464. },
  8465. "require": {
  8466. "php": "^7.1.3|^8.0",
  8467. "symfony/framework-bundle": "^4.3|^5.0",
  8468. "symfony/twig-bundle": "^4.3|^5.0",
  8469. "twig/twig": "^2.4|^3.0"
  8470. },
  8471. "require-dev": {
  8472. "symfony/phpunit-bridge": "^4.4.9|^5.0.9",
  8473. "twig/cache-extra": "^3.0",
  8474. "twig/cssinliner-extra": "^2.12|^3.0",
  8475. "twig/html-extra": "^2.12|^3.0",
  8476. "twig/inky-extra": "^2.12|^3.0",
  8477. "twig/intl-extra": "^2.12|^3.0",
  8478. "twig/markdown-extra": "^2.12|^3.0",
  8479. "twig/string-extra": "^2.12|^3.0"
  8480. },
  8481. "type": "symfony-bundle",
  8482. "extra": {
  8483. "branch-alias": {
  8484. "dev-master": "3.2-dev"
  8485. }
  8486. },
  8487. "autoload": {
  8488. "psr-4": {
  8489. "Twig\\Extra\\TwigExtraBundle\\": ""
  8490. },
  8491. "exclude-from-classmap": [
  8492. "/Tests/"
  8493. ]
  8494. },
  8495. "notification-url": "https://packagist.org/downloads/",
  8496. "license": [
  8497. "MIT"
  8498. ],
  8499. "authors": [
  8500. {
  8501. "name": "Fabien Potencier",
  8502. "email": "fabien@symfony.com",
  8503. "homepage": "http://fabien.potencier.org",
  8504. "role": "Lead Developer"
  8505. }
  8506. ],
  8507. "description": "A Symfony bundle for extra Twig extensions",
  8508. "homepage": "https://twig.symfony.com",
  8509. "keywords": [
  8510. "bundle",
  8511. "extra",
  8512. "twig"
  8513. ],
  8514. "support": {
  8515. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.3.0"
  8516. },
  8517. "funding": [
  8518. {
  8519. "url": "https://github.com/fabpot",
  8520. "type": "github"
  8521. },
  8522. {
  8523. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8524. "type": "tidelift"
  8525. }
  8526. ],
  8527. "time": "2021-02-06T21:13:17+00:00"
  8528. },
  8529. {
  8530. "name": "twig/intl-extra",
  8531. "version": "v3.3.0",
  8532. "source": {
  8533. "type": "git",
  8534. "url": "https://github.com/twigphp/intl-extra.git",
  8535. "reference": "919e8f945c30bd3efeb6a4d79722cda538116658"
  8536. },
  8537. "dist": {
  8538. "type": "zip",
  8539. "url": "https://api.github.com/repos/twigphp/intl-extra/zipball/919e8f945c30bd3efeb6a4d79722cda538116658",
  8540. "reference": "919e8f945c30bd3efeb6a4d79722cda538116658",
  8541. "shasum": ""
  8542. },
  8543. "require": {
  8544. "php": ">=7.1.3",
  8545. "symfony/intl": "^4.3|^5.0",
  8546. "twig/twig": "^2.4|^3.0"
  8547. },
  8548. "require-dev": {
  8549. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  8550. },
  8551. "type": "library",
  8552. "extra": {
  8553. "branch-alias": {
  8554. "dev-master": "3.2-dev"
  8555. }
  8556. },
  8557. "autoload": {
  8558. "psr-4": {
  8559. "Twig\\Extra\\Intl\\": ""
  8560. },
  8561. "exclude-from-classmap": [
  8562. "/Tests/"
  8563. ]
  8564. },
  8565. "notification-url": "https://packagist.org/downloads/",
  8566. "license": [
  8567. "MIT"
  8568. ],
  8569. "authors": [
  8570. {
  8571. "name": "Fabien Potencier",
  8572. "email": "fabien@symfony.com",
  8573. "homepage": "http://fabien.potencier.org",
  8574. "role": "Lead Developer"
  8575. }
  8576. ],
  8577. "description": "A Twig extension for Intl",
  8578. "homepage": "https://twig.symfony.com",
  8579. "keywords": [
  8580. "intl",
  8581. "twig"
  8582. ],
  8583. "support": {
  8584. "source": "https://github.com/twigphp/intl-extra/tree/v3.3.0"
  8585. },
  8586. "funding": [
  8587. {
  8588. "url": "https://github.com/fabpot",
  8589. "type": "github"
  8590. },
  8591. {
  8592. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8593. "type": "tidelift"
  8594. }
  8595. ],
  8596. "time": "2021-01-01T14:58:18+00:00"
  8597. },
  8598. {
  8599. "name": "twig/string-extra",
  8600. "version": "v3.3.0",
  8601. "source": {
  8602. "type": "git",
  8603. "url": "https://github.com/twigphp/string-extra.git",
  8604. "reference": "8a8bb5631e8e27573fae741211b9c752b9b0b428"
  8605. },
  8606. "dist": {
  8607. "type": "zip",
  8608. "url": "https://api.github.com/repos/twigphp/string-extra/zipball/8a8bb5631e8e27573fae741211b9c752b9b0b428",
  8609. "reference": "8a8bb5631e8e27573fae741211b9c752b9b0b428",
  8610. "shasum": ""
  8611. },
  8612. "require": {
  8613. "php": ">=7.2.5",
  8614. "symfony/string": "^5.0",
  8615. "symfony/translation-contracts": "^1.1|^2",
  8616. "twig/twig": "^2.4|^3.0"
  8617. },
  8618. "require-dev": {
  8619. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  8620. },
  8621. "type": "library",
  8622. "extra": {
  8623. "branch-alias": {
  8624. "dev-master": "3.2-dev"
  8625. }
  8626. },
  8627. "autoload": {
  8628. "psr-4": {
  8629. "Twig\\Extra\\String\\": ""
  8630. },
  8631. "exclude-from-classmap": [
  8632. "/Tests/"
  8633. ]
  8634. },
  8635. "notification-url": "https://packagist.org/downloads/",
  8636. "license": [
  8637. "MIT"
  8638. ],
  8639. "authors": [
  8640. {
  8641. "name": "Fabien Potencier",
  8642. "email": "fabien@symfony.com",
  8643. "homepage": "http://fabien.potencier.org",
  8644. "role": "Lead Developer"
  8645. }
  8646. ],
  8647. "description": "A Twig extension for Symfony String",
  8648. "homepage": "https://twig.symfony.com",
  8649. "keywords": [
  8650. "html",
  8651. "string",
  8652. "twig",
  8653. "unicode"
  8654. ],
  8655. "support": {
  8656. "source": "https://github.com/twigphp/string-extra/tree/v3.3.0"
  8657. },
  8658. "funding": [
  8659. {
  8660. "url": "https://github.com/fabpot",
  8661. "type": "github"
  8662. },
  8663. {
  8664. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8665. "type": "tidelift"
  8666. }
  8667. ],
  8668. "time": "2021-01-29T14:39:43+00:00"
  8669. },
  8670. {
  8671. "name": "twig/twig",
  8672. "version": "v3.3.0",
  8673. "source": {
  8674. "type": "git",
  8675. "url": "https://github.com/twigphp/Twig.git",
  8676. "reference": "1f3b7e2c06cc05d42936a8ad508ff1db7975cdc5"
  8677. },
  8678. "dist": {
  8679. "type": "zip",
  8680. "url": "https://api.github.com/repos/twigphp/Twig/zipball/1f3b7e2c06cc05d42936a8ad508ff1db7975cdc5",
  8681. "reference": "1f3b7e2c06cc05d42936a8ad508ff1db7975cdc5",
  8682. "shasum": ""
  8683. },
  8684. "require": {
  8685. "php": ">=7.2.5",
  8686. "symfony/polyfill-ctype": "^1.8",
  8687. "symfony/polyfill-mbstring": "^1.3"
  8688. },
  8689. "require-dev": {
  8690. "psr/container": "^1.0",
  8691. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  8692. },
  8693. "type": "library",
  8694. "extra": {
  8695. "branch-alias": {
  8696. "dev-master": "3.3-dev"
  8697. }
  8698. },
  8699. "autoload": {
  8700. "psr-4": {
  8701. "Twig\\": "src/"
  8702. }
  8703. },
  8704. "notification-url": "https://packagist.org/downloads/",
  8705. "license": [
  8706. "BSD-3-Clause"
  8707. ],
  8708. "authors": [
  8709. {
  8710. "name": "Fabien Potencier",
  8711. "email": "fabien@symfony.com",
  8712. "homepage": "http://fabien.potencier.org",
  8713. "role": "Lead Developer"
  8714. },
  8715. {
  8716. "name": "Twig Team",
  8717. "role": "Contributors"
  8718. },
  8719. {
  8720. "name": "Armin Ronacher",
  8721. "email": "armin.ronacher@active-4.com",
  8722. "role": "Project Founder"
  8723. }
  8724. ],
  8725. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8726. "homepage": "https://twig.symfony.com",
  8727. "keywords": [
  8728. "templating"
  8729. ],
  8730. "support": {
  8731. "issues": "https://github.com/twigphp/Twig/issues",
  8732. "source": "https://github.com/twigphp/Twig/tree/v3.3.0"
  8733. },
  8734. "funding": [
  8735. {
  8736. "url": "https://github.com/fabpot",
  8737. "type": "github"
  8738. },
  8739. {
  8740. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8741. "type": "tidelift"
  8742. }
  8743. ],
  8744. "time": "2021-02-08T09:54:36+00:00"
  8745. },
  8746. {
  8747. "name": "webmozart/assert",
  8748. "version": "1.10.0",
  8749. "source": {
  8750. "type": "git",
  8751. "url": "https://github.com/webmozarts/assert.git",
  8752. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  8753. },
  8754. "dist": {
  8755. "type": "zip",
  8756. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  8757. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  8758. "shasum": ""
  8759. },
  8760. "require": {
  8761. "php": "^7.2 || ^8.0",
  8762. "symfony/polyfill-ctype": "^1.8"
  8763. },
  8764. "conflict": {
  8765. "phpstan/phpstan": "<0.12.20",
  8766. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8767. },
  8768. "require-dev": {
  8769. "phpunit/phpunit": "^8.5.13"
  8770. },
  8771. "type": "library",
  8772. "extra": {
  8773. "branch-alias": {
  8774. "dev-master": "1.10-dev"
  8775. }
  8776. },
  8777. "autoload": {
  8778. "psr-4": {
  8779. "Webmozart\\Assert\\": "src/"
  8780. }
  8781. },
  8782. "notification-url": "https://packagist.org/downloads/",
  8783. "license": [
  8784. "MIT"
  8785. ],
  8786. "authors": [
  8787. {
  8788. "name": "Bernhard Schussek",
  8789. "email": "bschussek@gmail.com"
  8790. }
  8791. ],
  8792. "description": "Assertions to validate method input/output with nice error messages.",
  8793. "keywords": [
  8794. "assert",
  8795. "check",
  8796. "validate"
  8797. ],
  8798. "support": {
  8799. "issues": "https://github.com/webmozarts/assert/issues",
  8800. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  8801. },
  8802. "time": "2021-03-09T10:59:23+00:00"
  8803. }
  8804. ],
  8805. "packages-dev": [
  8806. {
  8807. "name": "behat/gherkin",
  8808. "version": "v4.8.0",
  8809. "source": {
  8810. "type": "git",
  8811. "url": "https://github.com/Behat/Gherkin.git",
  8812. "reference": "2391482cd003dfdc36b679b27e9f5326bd656acd"
  8813. },
  8814. "dist": {
  8815. "type": "zip",
  8816. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/2391482cd003dfdc36b679b27e9f5326bd656acd",
  8817. "reference": "2391482cd003dfdc36b679b27e9f5326bd656acd",
  8818. "shasum": ""
  8819. },
  8820. "require": {
  8821. "php": "~7.2|~8.0"
  8822. },
  8823. "require-dev": {
  8824. "cucumber/cucumber": "dev-gherkin-16.0.0",
  8825. "phpunit/phpunit": "~8|~9",
  8826. "symfony/phpunit-bridge": "~3|~4|~5",
  8827. "symfony/yaml": "~3|~4|~5"
  8828. },
  8829. "suggest": {
  8830. "symfony/yaml": "If you want to parse features, represented in YAML files"
  8831. },
  8832. "type": "library",
  8833. "extra": {
  8834. "branch-alias": {
  8835. "dev-master": "4.4-dev"
  8836. }
  8837. },
  8838. "autoload": {
  8839. "psr-0": {
  8840. "Behat\\Gherkin": "src/"
  8841. }
  8842. },
  8843. "notification-url": "https://packagist.org/downloads/",
  8844. "license": [
  8845. "MIT"
  8846. ],
  8847. "authors": [
  8848. {
  8849. "name": "Konstantin Kudryashov",
  8850. "email": "ever.zet@gmail.com",
  8851. "homepage": "http://everzet.com"
  8852. }
  8853. ],
  8854. "description": "Gherkin DSL parser for PHP",
  8855. "homepage": "http://behat.org/",
  8856. "keywords": [
  8857. "BDD",
  8858. "Behat",
  8859. "Cucumber",
  8860. "DSL",
  8861. "gherkin",
  8862. "parser"
  8863. ],
  8864. "support": {
  8865. "issues": "https://github.com/Behat/Gherkin/issues",
  8866. "source": "https://github.com/Behat/Gherkin/tree/v4.8.0"
  8867. },
  8868. "time": "2021-02-04T12:44:21+00:00"
  8869. },
  8870. {
  8871. "name": "codeception/codeception",
  8872. "version": "4.1.20",
  8873. "source": {
  8874. "type": "git",
  8875. "url": "https://github.com/Codeception/Codeception.git",
  8876. "reference": "d8b16e13e1781dbc3a7ae8292117d520c89a9c5a"
  8877. },
  8878. "dist": {
  8879. "type": "zip",
  8880. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/d8b16e13e1781dbc3a7ae8292117d520c89a9c5a",
  8881. "reference": "d8b16e13e1781dbc3a7ae8292117d520c89a9c5a",
  8882. "shasum": ""
  8883. },
  8884. "require": {
  8885. "behat/gherkin": "^4.4.0",
  8886. "codeception/lib-asserts": "^1.0",
  8887. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.1.1 | ^9.0",
  8888. "codeception/stub": "^2.0 | ^3.0",
  8889. "ext-curl": "*",
  8890. "ext-json": "*",
  8891. "ext-mbstring": "*",
  8892. "guzzlehttp/psr7": "~1.4",
  8893. "php": ">=5.6.0 <9.0",
  8894. "symfony/console": ">=2.7 <6.0",
  8895. "symfony/css-selector": ">=2.7 <6.0",
  8896. "symfony/event-dispatcher": ">=2.7 <6.0",
  8897. "symfony/finder": ">=2.7 <6.0",
  8898. "symfony/yaml": ">=2.7 <6.0"
  8899. },
  8900. "require-dev": {
  8901. "codeception/module-asserts": "*@dev",
  8902. "codeception/module-cli": "*@dev",
  8903. "codeception/module-db": "*@dev",
  8904. "codeception/module-filesystem": "*@dev",
  8905. "codeception/module-phpbrowser": "*@dev",
  8906. "codeception/specify": "~0.3",
  8907. "codeception/util-universalframework": "*@dev",
  8908. "monolog/monolog": "~1.8",
  8909. "squizlabs/php_codesniffer": "~2.0",
  8910. "symfony/process": ">=2.7 <6.0",
  8911. "vlucas/phpdotenv": "^2.0 | ^3.0 | ^4.0 | ^5.0"
  8912. },
  8913. "suggest": {
  8914. "codeception/specify": "BDD-style code blocks",
  8915. "codeception/verify": "BDD-style assertions",
  8916. "hoa/console": "For interactive console functionality",
  8917. "stecman/symfony-console-completion": "For BASH autocompletion",
  8918. "symfony/phpunit-bridge": "For phpunit-bridge support"
  8919. },
  8920. "bin": [
  8921. "codecept"
  8922. ],
  8923. "type": "library",
  8924. "extra": {
  8925. "branch-alias": []
  8926. },
  8927. "autoload": {
  8928. "psr-4": {
  8929. "Codeception\\": "src/Codeception",
  8930. "Codeception\\Extension\\": "ext"
  8931. }
  8932. },
  8933. "notification-url": "https://packagist.org/downloads/",
  8934. "license": [
  8935. "MIT"
  8936. ],
  8937. "authors": [
  8938. {
  8939. "name": "Michael Bodnarchuk",
  8940. "email": "davert@mail.ua",
  8941. "homepage": "http://codegyre.com"
  8942. }
  8943. ],
  8944. "description": "BDD-style testing framework",
  8945. "homepage": "http://codeception.com/",
  8946. "keywords": [
  8947. "BDD",
  8948. "TDD",
  8949. "acceptance testing",
  8950. "functional testing",
  8951. "unit testing"
  8952. ],
  8953. "support": {
  8954. "issues": "https://github.com/Codeception/Codeception/issues",
  8955. "source": "https://github.com/Codeception/Codeception/tree/4.1.20"
  8956. },
  8957. "funding": [
  8958. {
  8959. "url": "https://opencollective.com/codeception",
  8960. "type": "open_collective"
  8961. }
  8962. ],
  8963. "time": "2021-04-02T16:41:51+00:00"
  8964. },
  8965. {
  8966. "name": "codeception/lib-asserts",
  8967. "version": "1.13.2",
  8968. "source": {
  8969. "type": "git",
  8970. "url": "https://github.com/Codeception/lib-asserts.git",
  8971. "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6"
  8972. },
  8973. "dist": {
  8974. "type": "zip",
  8975. "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/184231d5eab66bc69afd6b9429344d80c67a33b6",
  8976. "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6",
  8977. "shasum": ""
  8978. },
  8979. "require": {
  8980. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3 | ^9.0",
  8981. "ext-dom": "*",
  8982. "php": ">=5.6.0 <9.0"
  8983. },
  8984. "type": "library",
  8985. "autoload": {
  8986. "classmap": [
  8987. "src/"
  8988. ]
  8989. },
  8990. "notification-url": "https://packagist.org/downloads/",
  8991. "license": [
  8992. "MIT"
  8993. ],
  8994. "authors": [
  8995. {
  8996. "name": "Michael Bodnarchuk",
  8997. "email": "davert@mail.ua",
  8998. "homepage": "http://codegyre.com"
  8999. },
  9000. {
  9001. "name": "Gintautas Miselis"
  9002. },
  9003. {
  9004. "name": "Gustavo Nieves",
  9005. "homepage": "https://medium.com/@ganieves"
  9006. }
  9007. ],
  9008. "description": "Assertion methods used by Codeception core and Asserts module",
  9009. "homepage": "https://codeception.com/",
  9010. "keywords": [
  9011. "codeception"
  9012. ],
  9013. "support": {
  9014. "issues": "https://github.com/Codeception/lib-asserts/issues",
  9015. "source": "https://github.com/Codeception/lib-asserts/tree/1.13.2"
  9016. },
  9017. "time": "2020-10-21T16:26:20+00:00"
  9018. },
  9019. {
  9020. "name": "codeception/lib-innerbrowser",
  9021. "version": "1.4.2",
  9022. "source": {
  9023. "type": "git",
  9024. "url": "https://github.com/Codeception/lib-innerbrowser.git",
  9025. "reference": "4ffb91c18e4cacd073ff2914c07e5ccaf5efe449"
  9026. },
  9027. "dist": {
  9028. "type": "zip",
  9029. "url": "https://api.github.com/repos/Codeception/lib-innerbrowser/zipball/4ffb91c18e4cacd073ff2914c07e5ccaf5efe449",
  9030. "reference": "4ffb91c18e4cacd073ff2914c07e5ccaf5efe449",
  9031. "shasum": ""
  9032. },
  9033. "require": {
  9034. "codeception/codeception": "*@dev",
  9035. "ext-dom": "*",
  9036. "ext-json": "*",
  9037. "ext-mbstring": "*",
  9038. "php": ">=5.6.0 <9.0",
  9039. "symfony/browser-kit": ">=2.7 <6.0",
  9040. "symfony/dom-crawler": ">=2.7 <6.0"
  9041. },
  9042. "conflict": {
  9043. "codeception/codeception": "<4.0"
  9044. },
  9045. "require-dev": {
  9046. "codeception/util-universalframework": "dev-master"
  9047. },
  9048. "type": "library",
  9049. "autoload": {
  9050. "classmap": [
  9051. "src/"
  9052. ]
  9053. },
  9054. "notification-url": "https://packagist.org/downloads/",
  9055. "license": [
  9056. "MIT"
  9057. ],
  9058. "authors": [
  9059. {
  9060. "name": "Michael Bodnarchuk",
  9061. "email": "davert@mail.ua",
  9062. "homepage": "http://codegyre.com"
  9063. },
  9064. {
  9065. "name": "Gintautas Miselis"
  9066. }
  9067. ],
  9068. "description": "Parent library for all Codeception framework modules and PhpBrowser",
  9069. "homepage": "https://codeception.com/",
  9070. "keywords": [
  9071. "codeception"
  9072. ],
  9073. "support": {
  9074. "issues": "https://github.com/Codeception/lib-innerbrowser/issues",
  9075. "source": "https://github.com/Codeception/lib-innerbrowser/tree/1.4.2"
  9076. },
  9077. "time": "2021-04-06T05:26:49+00:00"
  9078. },
  9079. {
  9080. "name": "codeception/module-asserts",
  9081. "version": "1.3.1",
  9082. "source": {
  9083. "type": "git",
  9084. "url": "https://github.com/Codeception/module-asserts.git",
  9085. "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de"
  9086. },
  9087. "dist": {
  9088. "type": "zip",
  9089. "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/59374f2fef0cabb9e8ddb53277e85cdca74328de",
  9090. "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de",
  9091. "shasum": ""
  9092. },
  9093. "require": {
  9094. "codeception/codeception": "*@dev",
  9095. "codeception/lib-asserts": "^1.13.1",
  9096. "php": ">=5.6.0 <9.0"
  9097. },
  9098. "conflict": {
  9099. "codeception/codeception": "<4.0"
  9100. },
  9101. "type": "library",
  9102. "autoload": {
  9103. "classmap": [
  9104. "src/"
  9105. ]
  9106. },
  9107. "notification-url": "https://packagist.org/downloads/",
  9108. "license": [
  9109. "MIT"
  9110. ],
  9111. "authors": [
  9112. {
  9113. "name": "Michael Bodnarchuk"
  9114. },
  9115. {
  9116. "name": "Gintautas Miselis"
  9117. },
  9118. {
  9119. "name": "Gustavo Nieves",
  9120. "homepage": "https://medium.com/@ganieves"
  9121. }
  9122. ],
  9123. "description": "Codeception module containing various assertions",
  9124. "homepage": "https://codeception.com/",
  9125. "keywords": [
  9126. "assertions",
  9127. "asserts",
  9128. "codeception"
  9129. ],
  9130. "support": {
  9131. "issues": "https://github.com/Codeception/module-asserts/issues",
  9132. "source": "https://github.com/Codeception/module-asserts/tree/1.3.1"
  9133. },
  9134. "time": "2020-10-21T16:48:15+00:00"
  9135. },
  9136. {
  9137. "name": "codeception/module-doctrine2",
  9138. "version": "1.1.1",
  9139. "source": {
  9140. "type": "git",
  9141. "url": "https://github.com/Codeception/module-doctrine2.git",
  9142. "reference": "a39cd444fac840c907d33d33bca83e57dd0e04d1"
  9143. },
  9144. "dist": {
  9145. "type": "zip",
  9146. "url": "https://api.github.com/repos/Codeception/module-doctrine2/zipball/a39cd444fac840c907d33d33bca83e57dd0e04d1",
  9147. "reference": "a39cd444fac840c907d33d33bca83e57dd0e04d1",
  9148. "shasum": ""
  9149. },
  9150. "require": {
  9151. "codeception/codeception": "^4.0",
  9152. "php": ">=5.6.0 <9.0"
  9153. },
  9154. "require-dev": {
  9155. "doctrine/annotations": "^1",
  9156. "doctrine/data-fixtures": "^1",
  9157. "doctrine/orm": "^2",
  9158. "ramsey/uuid-doctrine": "^1.5"
  9159. },
  9160. "type": "library",
  9161. "autoload": {
  9162. "classmap": [
  9163. "src/"
  9164. ]
  9165. },
  9166. "notification-url": "https://packagist.org/downloads/",
  9167. "license": [
  9168. "MIT"
  9169. ],
  9170. "authors": [
  9171. {
  9172. "name": "Michael Bodnarchuk"
  9173. },
  9174. {
  9175. "name": "Alex Kunin"
  9176. }
  9177. ],
  9178. "description": "Doctrine2 module for Codeception",
  9179. "homepage": "http://codeception.com/",
  9180. "keywords": [
  9181. "codeception",
  9182. "doctrine2"
  9183. ],
  9184. "support": {
  9185. "issues": "https://github.com/Codeception/module-doctrine2/issues",
  9186. "source": "https://github.com/Codeception/module-doctrine2/tree/1.1.1"
  9187. },
  9188. "time": "2020-11-26T06:56:31+00:00"
  9189. },
  9190. {
  9191. "name": "codeception/module-phpbrowser",
  9192. "version": "1.0.2",
  9193. "source": {
  9194. "type": "git",
  9195. "url": "https://github.com/Codeception/module-phpbrowser.git",
  9196. "reference": "770a6be4160a5c0c08d100dd51bff35f6056bbf1"
  9197. },
  9198. "dist": {
  9199. "type": "zip",
  9200. "url": "https://api.github.com/repos/Codeception/module-phpbrowser/zipball/770a6be4160a5c0c08d100dd51bff35f6056bbf1",
  9201. "reference": "770a6be4160a5c0c08d100dd51bff35f6056bbf1",
  9202. "shasum": ""
  9203. },
  9204. "require": {
  9205. "codeception/codeception": "^4.0",
  9206. "codeception/lib-innerbrowser": "^1.3",
  9207. "guzzlehttp/guzzle": "^6.3|^7.0",
  9208. "php": ">=5.6.0 <9.0"
  9209. },
  9210. "conflict": {
  9211. "codeception/codeception": "<4.0"
  9212. },
  9213. "require-dev": {
  9214. "codeception/module-rest": "^1.0"
  9215. },
  9216. "suggest": {
  9217. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests"
  9218. },
  9219. "type": "library",
  9220. "autoload": {
  9221. "classmap": [
  9222. "src/"
  9223. ]
  9224. },
  9225. "notification-url": "https://packagist.org/downloads/",
  9226. "license": [
  9227. "MIT"
  9228. ],
  9229. "authors": [
  9230. {
  9231. "name": "Michael Bodnarchuk"
  9232. },
  9233. {
  9234. "name": "Gintautas Miselis"
  9235. }
  9236. ],
  9237. "description": "Codeception module for testing web application over HTTP",
  9238. "homepage": "http://codeception.com/",
  9239. "keywords": [
  9240. "codeception",
  9241. "functional-testing",
  9242. "http"
  9243. ],
  9244. "support": {
  9245. "issues": "https://github.com/Codeception/module-phpbrowser/issues",
  9246. "source": "https://github.com/Codeception/module-phpbrowser/tree/1.0.2"
  9247. },
  9248. "time": "2020-10-24T15:29:28+00:00"
  9249. },
  9250. {
  9251. "name": "codeception/module-symfony",
  9252. "version": "2.0.2",
  9253. "source": {
  9254. "type": "git",
  9255. "url": "https://github.com/Codeception/module-symfony.git",
  9256. "reference": "0460f39ea37dcc0e0b24190ac9a42497a1992f56"
  9257. },
  9258. "dist": {
  9259. "type": "zip",
  9260. "url": "https://api.github.com/repos/Codeception/module-symfony/zipball/0460f39ea37dcc0e0b24190ac9a42497a1992f56",
  9261. "reference": "0460f39ea37dcc0e0b24190ac9a42497a1992f56",
  9262. "shasum": ""
  9263. },
  9264. "require": {
  9265. "codeception/codeception": "^4.0",
  9266. "codeception/lib-innerbrowser": "^1.4",
  9267. "ext-json": "*",
  9268. "php": "^7.3 | ^8.0"
  9269. },
  9270. "require-dev": {
  9271. "codeception/module-asserts": "^1.3",
  9272. "codeception/module-doctrine2": "^1.1",
  9273. "vlucas/phpdotenv": "^4.2 | ^5.3"
  9274. },
  9275. "suggest": {
  9276. "codeception/module-asserts": "Include traditional PHPUnit assertions in your tests",
  9277. "symfony/web-profiler-bundle": "Tool that gives information about the execution of requests"
  9278. },
  9279. "type": "library",
  9280. "autoload": {
  9281. "classmap": [
  9282. "src/"
  9283. ]
  9284. },
  9285. "notification-url": "https://packagist.org/downloads/",
  9286. "license": [
  9287. "MIT"
  9288. ],
  9289. "authors": [
  9290. {
  9291. "name": "Michael Bodnarchuk"
  9292. },
  9293. {
  9294. "name": "Gustavo Nieves",
  9295. "homepage": "https://medium.com/@ganieves"
  9296. }
  9297. ],
  9298. "description": "Codeception module for Symfony framework",
  9299. "homepage": "https://codeception.com/",
  9300. "keywords": [
  9301. "codeception",
  9302. "symfony"
  9303. ],
  9304. "support": {
  9305. "issues": "https://github.com/Codeception/module-symfony/issues",
  9306. "source": "https://github.com/Codeception/module-symfony/tree/2.0.2"
  9307. },
  9308. "time": "2021-04-15T10:53:59+00:00"
  9309. },
  9310. {
  9311. "name": "codeception/phpunit-wrapper",
  9312. "version": "9.0.6",
  9313. "source": {
  9314. "type": "git",
  9315. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  9316. "reference": "b0c06abb3181eedca690170f7ed0fd26a70bfacc"
  9317. },
  9318. "dist": {
  9319. "type": "zip",
  9320. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/b0c06abb3181eedca690170f7ed0fd26a70bfacc",
  9321. "reference": "b0c06abb3181eedca690170f7ed0fd26a70bfacc",
  9322. "shasum": ""
  9323. },
  9324. "require": {
  9325. "php": ">=7.2",
  9326. "phpunit/phpunit": "^9.0"
  9327. },
  9328. "require-dev": {
  9329. "codeception/specify": "*",
  9330. "consolidation/robo": "^3.0.0-alpha3",
  9331. "vlucas/phpdotenv": "^3.0"
  9332. },
  9333. "type": "library",
  9334. "autoload": {
  9335. "psr-4": {
  9336. "Codeception\\PHPUnit\\": "src/"
  9337. }
  9338. },
  9339. "notification-url": "https://packagist.org/downloads/",
  9340. "license": [
  9341. "MIT"
  9342. ],
  9343. "authors": [
  9344. {
  9345. "name": "Davert",
  9346. "email": "davert.php@resend.cc"
  9347. },
  9348. {
  9349. "name": "Naktibalda"
  9350. }
  9351. ],
  9352. "description": "PHPUnit classes used by Codeception",
  9353. "support": {
  9354. "issues": "https://github.com/Codeception/phpunit-wrapper/issues",
  9355. "source": "https://github.com/Codeception/phpunit-wrapper/tree/9.0.6"
  9356. },
  9357. "time": "2020-12-28T13:59:47+00:00"
  9358. },
  9359. {
  9360. "name": "codeception/stub",
  9361. "version": "3.7.0",
  9362. "source": {
  9363. "type": "git",
  9364. "url": "https://github.com/Codeception/Stub.git",
  9365. "reference": "468dd5fe659f131fc997f5196aad87512f9b1304"
  9366. },
  9367. "dist": {
  9368. "type": "zip",
  9369. "url": "https://api.github.com/repos/Codeception/Stub/zipball/468dd5fe659f131fc997f5196aad87512f9b1304",
  9370. "reference": "468dd5fe659f131fc997f5196aad87512f9b1304",
  9371. "shasum": ""
  9372. },
  9373. "require": {
  9374. "phpunit/phpunit": "^8.4 | ^9.0"
  9375. },
  9376. "type": "library",
  9377. "autoload": {
  9378. "psr-4": {
  9379. "Codeception\\": "src/"
  9380. }
  9381. },
  9382. "notification-url": "https://packagist.org/downloads/",
  9383. "license": [
  9384. "MIT"
  9385. ],
  9386. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  9387. "support": {
  9388. "issues": "https://github.com/Codeception/Stub/issues",
  9389. "source": "https://github.com/Codeception/Stub/tree/3.7.0"
  9390. },
  9391. "time": "2020-07-03T15:54:43+00:00"
  9392. },
  9393. {
  9394. "name": "doctrine/data-fixtures",
  9395. "version": "1.5.0",
  9396. "source": {
  9397. "type": "git",
  9398. "url": "https://github.com/doctrine/data-fixtures.git",
  9399. "reference": "51d3d4880d28951fff42a635a2389f8c63baddc5"
  9400. },
  9401. "dist": {
  9402. "type": "zip",
  9403. "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/51d3d4880d28951fff42a635a2389f8c63baddc5",
  9404. "reference": "51d3d4880d28951fff42a635a2389f8c63baddc5",
  9405. "shasum": ""
  9406. },
  9407. "require": {
  9408. "doctrine/common": "^2.13|^3.0",
  9409. "doctrine/persistence": "^1.3.3|^2.0",
  9410. "php": "^7.2 || ^8.0"
  9411. },
  9412. "conflict": {
  9413. "doctrine/phpcr-odm": "<1.3.0"
  9414. },
  9415. "require-dev": {
  9416. "doctrine/coding-standard": "^8.2",
  9417. "doctrine/dbal": "^2.5.4",
  9418. "doctrine/mongodb-odm": "^1.3.0 || ^2.0.0",
  9419. "doctrine/orm": "^2.7.0",
  9420. "ext-sqlite3": "*",
  9421. "phpunit/phpunit": "^8.0"
  9422. },
  9423. "suggest": {
  9424. "alcaeus/mongo-php-adapter": "For using MongoDB ODM 1.3 with PHP 7 (deprecated)",
  9425. "doctrine/mongodb-odm": "For loading MongoDB ODM fixtures",
  9426. "doctrine/orm": "For loading ORM fixtures",
  9427. "doctrine/phpcr-odm": "For loading PHPCR ODM fixtures"
  9428. },
  9429. "type": "library",
  9430. "autoload": {
  9431. "psr-4": {
  9432. "Doctrine\\Common\\DataFixtures\\": "lib/Doctrine/Common/DataFixtures"
  9433. }
  9434. },
  9435. "notification-url": "https://packagist.org/downloads/",
  9436. "license": [
  9437. "MIT"
  9438. ],
  9439. "authors": [
  9440. {
  9441. "name": "Jonathan Wage",
  9442. "email": "jonwage@gmail.com"
  9443. }
  9444. ],
  9445. "description": "Data Fixtures for all Doctrine Object Managers",
  9446. "homepage": "http://www.doctrine-project.org",
  9447. "keywords": [
  9448. "database"
  9449. ],
  9450. "support": {
  9451. "issues": "https://github.com/doctrine/data-fixtures/issues",
  9452. "source": "https://github.com/doctrine/data-fixtures/tree/1.5.0"
  9453. },
  9454. "funding": [
  9455. {
  9456. "url": "https://www.doctrine-project.org/sponsorship.html",
  9457. "type": "custom"
  9458. },
  9459. {
  9460. "url": "https://www.patreon.com/phpdoctrine",
  9461. "type": "patreon"
  9462. },
  9463. {
  9464. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdata-fixtures",
  9465. "type": "tidelift"
  9466. }
  9467. ],
  9468. "time": "2021-01-23T10:20:43+00:00"
  9469. },
  9470. {
  9471. "name": "doctrine/doctrine-fixtures-bundle",
  9472. "version": "3.4.0",
  9473. "source": {
  9474. "type": "git",
  9475. "url": "https://github.com/doctrine/DoctrineFixturesBundle.git",
  9476. "reference": "870189619a7770f468ffb0b80925302e065a3b34"
  9477. },
  9478. "dist": {
  9479. "type": "zip",
  9480. "url": "https://api.github.com/repos/doctrine/DoctrineFixturesBundle/zipball/870189619a7770f468ffb0b80925302e065a3b34",
  9481. "reference": "870189619a7770f468ffb0b80925302e065a3b34",
  9482. "shasum": ""
  9483. },
  9484. "require": {
  9485. "doctrine/data-fixtures": "^1.3",
  9486. "doctrine/doctrine-bundle": "^1.11|^2.0",
  9487. "doctrine/orm": "^2.6.0",
  9488. "doctrine/persistence": "^1.3.7|^2.0",
  9489. "php": "^7.1 || ^8.0",
  9490. "symfony/config": "^3.4|^4.3|^5.0",
  9491. "symfony/console": "^3.4|^4.3|^5.0",
  9492. "symfony/dependency-injection": "^3.4|^4.3|^5.0",
  9493. "symfony/doctrine-bridge": "^3.4|^4.1|^5.0",
  9494. "symfony/http-kernel": "^3.4|^4.3|^5.0"
  9495. },
  9496. "require-dev": {
  9497. "doctrine/coding-standard": "^6.0",
  9498. "phpunit/phpunit": "^7.4 || ^8.0 || ^9.2",
  9499. "symfony/phpunit-bridge": "^4.1|^5.0"
  9500. },
  9501. "type": "symfony-bundle",
  9502. "autoload": {
  9503. "psr-4": {
  9504. "Doctrine\\Bundle\\FixturesBundle\\": ""
  9505. }
  9506. },
  9507. "notification-url": "https://packagist.org/downloads/",
  9508. "license": [
  9509. "MIT"
  9510. ],
  9511. "authors": [
  9512. {
  9513. "name": "Fabien Potencier",
  9514. "email": "fabien@symfony.com"
  9515. },
  9516. {
  9517. "name": "Doctrine Project",
  9518. "homepage": "http://www.doctrine-project.org"
  9519. },
  9520. {
  9521. "name": "Symfony Community",
  9522. "homepage": "http://symfony.com/contributors"
  9523. }
  9524. ],
  9525. "description": "Symfony DoctrineFixturesBundle",
  9526. "homepage": "http://www.doctrine-project.org",
  9527. "keywords": [
  9528. "Fixture",
  9529. "persistence"
  9530. ],
  9531. "support": {
  9532. "issues": "https://github.com/doctrine/DoctrineFixturesBundle/issues",
  9533. "source": "https://github.com/doctrine/DoctrineFixturesBundle/tree/3.4.0"
  9534. },
  9535. "funding": [
  9536. {
  9537. "url": "https://www.doctrine-project.org/sponsorship.html",
  9538. "type": "custom"
  9539. },
  9540. {
  9541. "url": "https://www.patreon.com/phpdoctrine",
  9542. "type": "patreon"
  9543. },
  9544. {
  9545. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-fixtures-bundle",
  9546. "type": "tidelift"
  9547. }
  9548. ],
  9549. "time": "2020-11-14T09:36:49+00:00"
  9550. },
  9551. {
  9552. "name": "myclabs/deep-copy",
  9553. "version": "1.10.2",
  9554. "source": {
  9555. "type": "git",
  9556. "url": "https://github.com/myclabs/DeepCopy.git",
  9557. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  9558. },
  9559. "dist": {
  9560. "type": "zip",
  9561. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9562. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9563. "shasum": ""
  9564. },
  9565. "require": {
  9566. "php": "^7.1 || ^8.0"
  9567. },
  9568. "replace": {
  9569. "myclabs/deep-copy": "self.version"
  9570. },
  9571. "require-dev": {
  9572. "doctrine/collections": "^1.0",
  9573. "doctrine/common": "^2.6",
  9574. "phpunit/phpunit": "^7.1"
  9575. },
  9576. "type": "library",
  9577. "autoload": {
  9578. "psr-4": {
  9579. "DeepCopy\\": "src/DeepCopy/"
  9580. },
  9581. "files": [
  9582. "src/DeepCopy/deep_copy.php"
  9583. ]
  9584. },
  9585. "notification-url": "https://packagist.org/downloads/",
  9586. "license": [
  9587. "MIT"
  9588. ],
  9589. "description": "Create deep copies (clones) of your objects",
  9590. "keywords": [
  9591. "clone",
  9592. "copy",
  9593. "duplicate",
  9594. "object",
  9595. "object graph"
  9596. ],
  9597. "support": {
  9598. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9599. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  9600. },
  9601. "funding": [
  9602. {
  9603. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9604. "type": "tidelift"
  9605. }
  9606. ],
  9607. "time": "2020-11-13T09:40:50+00:00"
  9608. },
  9609. {
  9610. "name": "nikic/php-parser",
  9611. "version": "v4.10.4",
  9612. "source": {
  9613. "type": "git",
  9614. "url": "https://github.com/nikic/PHP-Parser.git",
  9615. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  9616. },
  9617. "dist": {
  9618. "type": "zip",
  9619. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  9620. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  9621. "shasum": ""
  9622. },
  9623. "require": {
  9624. "ext-tokenizer": "*",
  9625. "php": ">=7.0"
  9626. },
  9627. "require-dev": {
  9628. "ircmaxell/php-yacc": "^0.0.7",
  9629. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  9630. },
  9631. "bin": [
  9632. "bin/php-parse"
  9633. ],
  9634. "type": "library",
  9635. "extra": {
  9636. "branch-alias": {
  9637. "dev-master": "4.9-dev"
  9638. }
  9639. },
  9640. "autoload": {
  9641. "psr-4": {
  9642. "PhpParser\\": "lib/PhpParser"
  9643. }
  9644. },
  9645. "notification-url": "https://packagist.org/downloads/",
  9646. "license": [
  9647. "BSD-3-Clause"
  9648. ],
  9649. "authors": [
  9650. {
  9651. "name": "Nikita Popov"
  9652. }
  9653. ],
  9654. "description": "A PHP parser written in PHP",
  9655. "keywords": [
  9656. "parser",
  9657. "php"
  9658. ],
  9659. "support": {
  9660. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9661. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  9662. },
  9663. "time": "2020-12-20T10:01:03+00:00"
  9664. },
  9665. {
  9666. "name": "phar-io/manifest",
  9667. "version": "2.0.1",
  9668. "source": {
  9669. "type": "git",
  9670. "url": "https://github.com/phar-io/manifest.git",
  9671. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  9672. },
  9673. "dist": {
  9674. "type": "zip",
  9675. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9676. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9677. "shasum": ""
  9678. },
  9679. "require": {
  9680. "ext-dom": "*",
  9681. "ext-phar": "*",
  9682. "ext-xmlwriter": "*",
  9683. "phar-io/version": "^3.0.1",
  9684. "php": "^7.2 || ^8.0"
  9685. },
  9686. "type": "library",
  9687. "extra": {
  9688. "branch-alias": {
  9689. "dev-master": "2.0.x-dev"
  9690. }
  9691. },
  9692. "autoload": {
  9693. "classmap": [
  9694. "src/"
  9695. ]
  9696. },
  9697. "notification-url": "https://packagist.org/downloads/",
  9698. "license": [
  9699. "BSD-3-Clause"
  9700. ],
  9701. "authors": [
  9702. {
  9703. "name": "Arne Blankerts",
  9704. "email": "arne@blankerts.de",
  9705. "role": "Developer"
  9706. },
  9707. {
  9708. "name": "Sebastian Heuer",
  9709. "email": "sebastian@phpeople.de",
  9710. "role": "Developer"
  9711. },
  9712. {
  9713. "name": "Sebastian Bergmann",
  9714. "email": "sebastian@phpunit.de",
  9715. "role": "Developer"
  9716. }
  9717. ],
  9718. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9719. "support": {
  9720. "issues": "https://github.com/phar-io/manifest/issues",
  9721. "source": "https://github.com/phar-io/manifest/tree/master"
  9722. },
  9723. "time": "2020-06-27T14:33:11+00:00"
  9724. },
  9725. {
  9726. "name": "phar-io/version",
  9727. "version": "3.1.0",
  9728. "source": {
  9729. "type": "git",
  9730. "url": "https://github.com/phar-io/version.git",
  9731. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  9732. },
  9733. "dist": {
  9734. "type": "zip",
  9735. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  9736. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  9737. "shasum": ""
  9738. },
  9739. "require": {
  9740. "php": "^7.2 || ^8.0"
  9741. },
  9742. "type": "library",
  9743. "autoload": {
  9744. "classmap": [
  9745. "src/"
  9746. ]
  9747. },
  9748. "notification-url": "https://packagist.org/downloads/",
  9749. "license": [
  9750. "BSD-3-Clause"
  9751. ],
  9752. "authors": [
  9753. {
  9754. "name": "Arne Blankerts",
  9755. "email": "arne@blankerts.de",
  9756. "role": "Developer"
  9757. },
  9758. {
  9759. "name": "Sebastian Heuer",
  9760. "email": "sebastian@phpeople.de",
  9761. "role": "Developer"
  9762. },
  9763. {
  9764. "name": "Sebastian Bergmann",
  9765. "email": "sebastian@phpunit.de",
  9766. "role": "Developer"
  9767. }
  9768. ],
  9769. "description": "Library for handling version information and constraints",
  9770. "support": {
  9771. "issues": "https://github.com/phar-io/version/issues",
  9772. "source": "https://github.com/phar-io/version/tree/3.1.0"
  9773. },
  9774. "time": "2021-02-23T14:00:09+00:00"
  9775. },
  9776. {
  9777. "name": "phpspec/prophecy",
  9778. "version": "1.13.0",
  9779. "source": {
  9780. "type": "git",
  9781. "url": "https://github.com/phpspec/prophecy.git",
  9782. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  9783. },
  9784. "dist": {
  9785. "type": "zip",
  9786. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  9787. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  9788. "shasum": ""
  9789. },
  9790. "require": {
  9791. "doctrine/instantiator": "^1.2",
  9792. "php": "^7.2 || ~8.0, <8.1",
  9793. "phpdocumentor/reflection-docblock": "^5.2",
  9794. "sebastian/comparator": "^3.0 || ^4.0",
  9795. "sebastian/recursion-context": "^3.0 || ^4.0"
  9796. },
  9797. "require-dev": {
  9798. "phpspec/phpspec": "^6.0",
  9799. "phpunit/phpunit": "^8.0 || ^9.0"
  9800. },
  9801. "type": "library",
  9802. "extra": {
  9803. "branch-alias": {
  9804. "dev-master": "1.11.x-dev"
  9805. }
  9806. },
  9807. "autoload": {
  9808. "psr-4": {
  9809. "Prophecy\\": "src/Prophecy"
  9810. }
  9811. },
  9812. "notification-url": "https://packagist.org/downloads/",
  9813. "license": [
  9814. "MIT"
  9815. ],
  9816. "authors": [
  9817. {
  9818. "name": "Konstantin Kudryashov",
  9819. "email": "ever.zet@gmail.com",
  9820. "homepage": "http://everzet.com"
  9821. },
  9822. {
  9823. "name": "Marcello Duarte",
  9824. "email": "marcello.duarte@gmail.com"
  9825. }
  9826. ],
  9827. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9828. "homepage": "https://github.com/phpspec/prophecy",
  9829. "keywords": [
  9830. "Double",
  9831. "Dummy",
  9832. "fake",
  9833. "mock",
  9834. "spy",
  9835. "stub"
  9836. ],
  9837. "support": {
  9838. "issues": "https://github.com/phpspec/prophecy/issues",
  9839. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  9840. },
  9841. "time": "2021-03-17T13:42:18+00:00"
  9842. },
  9843. {
  9844. "name": "phpunit/php-code-coverage",
  9845. "version": "9.2.6",
  9846. "source": {
  9847. "type": "git",
  9848. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9849. "reference": "f6293e1b30a2354e8428e004689671b83871edde"
  9850. },
  9851. "dist": {
  9852. "type": "zip",
  9853. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f6293e1b30a2354e8428e004689671b83871edde",
  9854. "reference": "f6293e1b30a2354e8428e004689671b83871edde",
  9855. "shasum": ""
  9856. },
  9857. "require": {
  9858. "ext-dom": "*",
  9859. "ext-libxml": "*",
  9860. "ext-xmlwriter": "*",
  9861. "nikic/php-parser": "^4.10.2",
  9862. "php": ">=7.3",
  9863. "phpunit/php-file-iterator": "^3.0.3",
  9864. "phpunit/php-text-template": "^2.0.2",
  9865. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9866. "sebastian/complexity": "^2.0",
  9867. "sebastian/environment": "^5.1.2",
  9868. "sebastian/lines-of-code": "^1.0.3",
  9869. "sebastian/version": "^3.0.1",
  9870. "theseer/tokenizer": "^1.2.0"
  9871. },
  9872. "require-dev": {
  9873. "phpunit/phpunit": "^9.3"
  9874. },
  9875. "suggest": {
  9876. "ext-pcov": "*",
  9877. "ext-xdebug": "*"
  9878. },
  9879. "type": "library",
  9880. "extra": {
  9881. "branch-alias": {
  9882. "dev-master": "9.2-dev"
  9883. }
  9884. },
  9885. "autoload": {
  9886. "classmap": [
  9887. "src/"
  9888. ]
  9889. },
  9890. "notification-url": "https://packagist.org/downloads/",
  9891. "license": [
  9892. "BSD-3-Clause"
  9893. ],
  9894. "authors": [
  9895. {
  9896. "name": "Sebastian Bergmann",
  9897. "email": "sebastian@phpunit.de",
  9898. "role": "lead"
  9899. }
  9900. ],
  9901. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9902. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9903. "keywords": [
  9904. "coverage",
  9905. "testing",
  9906. "xunit"
  9907. ],
  9908. "support": {
  9909. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9910. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.6"
  9911. },
  9912. "funding": [
  9913. {
  9914. "url": "https://github.com/sebastianbergmann",
  9915. "type": "github"
  9916. }
  9917. ],
  9918. "time": "2021-03-28T07:26:59+00:00"
  9919. },
  9920. {
  9921. "name": "phpunit/php-file-iterator",
  9922. "version": "3.0.5",
  9923. "source": {
  9924. "type": "git",
  9925. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9926. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  9927. },
  9928. "dist": {
  9929. "type": "zip",
  9930. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  9931. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  9932. "shasum": ""
  9933. },
  9934. "require": {
  9935. "php": ">=7.3"
  9936. },
  9937. "require-dev": {
  9938. "phpunit/phpunit": "^9.3"
  9939. },
  9940. "type": "library",
  9941. "extra": {
  9942. "branch-alias": {
  9943. "dev-master": "3.0-dev"
  9944. }
  9945. },
  9946. "autoload": {
  9947. "classmap": [
  9948. "src/"
  9949. ]
  9950. },
  9951. "notification-url": "https://packagist.org/downloads/",
  9952. "license": [
  9953. "BSD-3-Clause"
  9954. ],
  9955. "authors": [
  9956. {
  9957. "name": "Sebastian Bergmann",
  9958. "email": "sebastian@phpunit.de",
  9959. "role": "lead"
  9960. }
  9961. ],
  9962. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9963. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9964. "keywords": [
  9965. "filesystem",
  9966. "iterator"
  9967. ],
  9968. "support": {
  9969. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9970. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  9971. },
  9972. "funding": [
  9973. {
  9974. "url": "https://github.com/sebastianbergmann",
  9975. "type": "github"
  9976. }
  9977. ],
  9978. "time": "2020-09-28T05:57:25+00:00"
  9979. },
  9980. {
  9981. "name": "phpunit/php-invoker",
  9982. "version": "3.1.1",
  9983. "source": {
  9984. "type": "git",
  9985. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9986. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9987. },
  9988. "dist": {
  9989. "type": "zip",
  9990. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9991. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9992. "shasum": ""
  9993. },
  9994. "require": {
  9995. "php": ">=7.3"
  9996. },
  9997. "require-dev": {
  9998. "ext-pcntl": "*",
  9999. "phpunit/phpunit": "^9.3"
  10000. },
  10001. "suggest": {
  10002. "ext-pcntl": "*"
  10003. },
  10004. "type": "library",
  10005. "extra": {
  10006. "branch-alias": {
  10007. "dev-master": "3.1-dev"
  10008. }
  10009. },
  10010. "autoload": {
  10011. "classmap": [
  10012. "src/"
  10013. ]
  10014. },
  10015. "notification-url": "https://packagist.org/downloads/",
  10016. "license": [
  10017. "BSD-3-Clause"
  10018. ],
  10019. "authors": [
  10020. {
  10021. "name": "Sebastian Bergmann",
  10022. "email": "sebastian@phpunit.de",
  10023. "role": "lead"
  10024. }
  10025. ],
  10026. "description": "Invoke callables with a timeout",
  10027. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10028. "keywords": [
  10029. "process"
  10030. ],
  10031. "support": {
  10032. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10033. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10034. },
  10035. "funding": [
  10036. {
  10037. "url": "https://github.com/sebastianbergmann",
  10038. "type": "github"
  10039. }
  10040. ],
  10041. "time": "2020-09-28T05:58:55+00:00"
  10042. },
  10043. {
  10044. "name": "phpunit/php-text-template",
  10045. "version": "2.0.4",
  10046. "source": {
  10047. "type": "git",
  10048. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10049. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10050. },
  10051. "dist": {
  10052. "type": "zip",
  10053. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10054. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10055. "shasum": ""
  10056. },
  10057. "require": {
  10058. "php": ">=7.3"
  10059. },
  10060. "require-dev": {
  10061. "phpunit/phpunit": "^9.3"
  10062. },
  10063. "type": "library",
  10064. "extra": {
  10065. "branch-alias": {
  10066. "dev-master": "2.0-dev"
  10067. }
  10068. },
  10069. "autoload": {
  10070. "classmap": [
  10071. "src/"
  10072. ]
  10073. },
  10074. "notification-url": "https://packagist.org/downloads/",
  10075. "license": [
  10076. "BSD-3-Clause"
  10077. ],
  10078. "authors": [
  10079. {
  10080. "name": "Sebastian Bergmann",
  10081. "email": "sebastian@phpunit.de",
  10082. "role": "lead"
  10083. }
  10084. ],
  10085. "description": "Simple template engine.",
  10086. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10087. "keywords": [
  10088. "template"
  10089. ],
  10090. "support": {
  10091. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10092. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10093. },
  10094. "funding": [
  10095. {
  10096. "url": "https://github.com/sebastianbergmann",
  10097. "type": "github"
  10098. }
  10099. ],
  10100. "time": "2020-10-26T05:33:50+00:00"
  10101. },
  10102. {
  10103. "name": "phpunit/php-timer",
  10104. "version": "5.0.3",
  10105. "source": {
  10106. "type": "git",
  10107. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10108. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10109. },
  10110. "dist": {
  10111. "type": "zip",
  10112. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10113. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10114. "shasum": ""
  10115. },
  10116. "require": {
  10117. "php": ">=7.3"
  10118. },
  10119. "require-dev": {
  10120. "phpunit/phpunit": "^9.3"
  10121. },
  10122. "type": "library",
  10123. "extra": {
  10124. "branch-alias": {
  10125. "dev-master": "5.0-dev"
  10126. }
  10127. },
  10128. "autoload": {
  10129. "classmap": [
  10130. "src/"
  10131. ]
  10132. },
  10133. "notification-url": "https://packagist.org/downloads/",
  10134. "license": [
  10135. "BSD-3-Clause"
  10136. ],
  10137. "authors": [
  10138. {
  10139. "name": "Sebastian Bergmann",
  10140. "email": "sebastian@phpunit.de",
  10141. "role": "lead"
  10142. }
  10143. ],
  10144. "description": "Utility class for timing",
  10145. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10146. "keywords": [
  10147. "timer"
  10148. ],
  10149. "support": {
  10150. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10151. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10152. },
  10153. "funding": [
  10154. {
  10155. "url": "https://github.com/sebastianbergmann",
  10156. "type": "github"
  10157. }
  10158. ],
  10159. "time": "2020-10-26T13:16:10+00:00"
  10160. },
  10161. {
  10162. "name": "phpunit/phpunit",
  10163. "version": "9.5.4",
  10164. "source": {
  10165. "type": "git",
  10166. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10167. "reference": "c73c6737305e779771147af66c96ca6a7ed8a741"
  10168. },
  10169. "dist": {
  10170. "type": "zip",
  10171. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c73c6737305e779771147af66c96ca6a7ed8a741",
  10172. "reference": "c73c6737305e779771147af66c96ca6a7ed8a741",
  10173. "shasum": ""
  10174. },
  10175. "require": {
  10176. "doctrine/instantiator": "^1.3.1",
  10177. "ext-dom": "*",
  10178. "ext-json": "*",
  10179. "ext-libxml": "*",
  10180. "ext-mbstring": "*",
  10181. "ext-xml": "*",
  10182. "ext-xmlwriter": "*",
  10183. "myclabs/deep-copy": "^1.10.1",
  10184. "phar-io/manifest": "^2.0.1",
  10185. "phar-io/version": "^3.0.2",
  10186. "php": ">=7.3",
  10187. "phpspec/prophecy": "^1.12.1",
  10188. "phpunit/php-code-coverage": "^9.2.3",
  10189. "phpunit/php-file-iterator": "^3.0.5",
  10190. "phpunit/php-invoker": "^3.1.1",
  10191. "phpunit/php-text-template": "^2.0.3",
  10192. "phpunit/php-timer": "^5.0.2",
  10193. "sebastian/cli-parser": "^1.0.1",
  10194. "sebastian/code-unit": "^1.0.6",
  10195. "sebastian/comparator": "^4.0.5",
  10196. "sebastian/diff": "^4.0.3",
  10197. "sebastian/environment": "^5.1.3",
  10198. "sebastian/exporter": "^4.0.3",
  10199. "sebastian/global-state": "^5.0.1",
  10200. "sebastian/object-enumerator": "^4.0.3",
  10201. "sebastian/resource-operations": "^3.0.3",
  10202. "sebastian/type": "^2.3",
  10203. "sebastian/version": "^3.0.2"
  10204. },
  10205. "require-dev": {
  10206. "ext-pdo": "*",
  10207. "phpspec/prophecy-phpunit": "^2.0.1"
  10208. },
  10209. "suggest": {
  10210. "ext-soap": "*",
  10211. "ext-xdebug": "*"
  10212. },
  10213. "bin": [
  10214. "phpunit"
  10215. ],
  10216. "type": "library",
  10217. "extra": {
  10218. "branch-alias": {
  10219. "dev-master": "9.5-dev"
  10220. }
  10221. },
  10222. "autoload": {
  10223. "classmap": [
  10224. "src/"
  10225. ],
  10226. "files": [
  10227. "src/Framework/Assert/Functions.php"
  10228. ]
  10229. },
  10230. "notification-url": "https://packagist.org/downloads/",
  10231. "license": [
  10232. "BSD-3-Clause"
  10233. ],
  10234. "authors": [
  10235. {
  10236. "name": "Sebastian Bergmann",
  10237. "email": "sebastian@phpunit.de",
  10238. "role": "lead"
  10239. }
  10240. ],
  10241. "description": "The PHP Unit Testing framework.",
  10242. "homepage": "https://phpunit.de/",
  10243. "keywords": [
  10244. "phpunit",
  10245. "testing",
  10246. "xunit"
  10247. ],
  10248. "support": {
  10249. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10250. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.4"
  10251. },
  10252. "funding": [
  10253. {
  10254. "url": "https://phpunit.de/donate.html",
  10255. "type": "custom"
  10256. },
  10257. {
  10258. "url": "https://github.com/sebastianbergmann",
  10259. "type": "github"
  10260. }
  10261. ],
  10262. "time": "2021-03-23T07:16:29+00:00"
  10263. },
  10264. {
  10265. "name": "sebastian/cli-parser",
  10266. "version": "1.0.1",
  10267. "source": {
  10268. "type": "git",
  10269. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10270. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10271. },
  10272. "dist": {
  10273. "type": "zip",
  10274. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10275. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10276. "shasum": ""
  10277. },
  10278. "require": {
  10279. "php": ">=7.3"
  10280. },
  10281. "require-dev": {
  10282. "phpunit/phpunit": "^9.3"
  10283. },
  10284. "type": "library",
  10285. "extra": {
  10286. "branch-alias": {
  10287. "dev-master": "1.0-dev"
  10288. }
  10289. },
  10290. "autoload": {
  10291. "classmap": [
  10292. "src/"
  10293. ]
  10294. },
  10295. "notification-url": "https://packagist.org/downloads/",
  10296. "license": [
  10297. "BSD-3-Clause"
  10298. ],
  10299. "authors": [
  10300. {
  10301. "name": "Sebastian Bergmann",
  10302. "email": "sebastian@phpunit.de",
  10303. "role": "lead"
  10304. }
  10305. ],
  10306. "description": "Library for parsing CLI options",
  10307. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10308. "support": {
  10309. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10310. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10311. },
  10312. "funding": [
  10313. {
  10314. "url": "https://github.com/sebastianbergmann",
  10315. "type": "github"
  10316. }
  10317. ],
  10318. "time": "2020-09-28T06:08:49+00:00"
  10319. },
  10320. {
  10321. "name": "sebastian/code-unit",
  10322. "version": "1.0.8",
  10323. "source": {
  10324. "type": "git",
  10325. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10326. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10327. },
  10328. "dist": {
  10329. "type": "zip",
  10330. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10331. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10332. "shasum": ""
  10333. },
  10334. "require": {
  10335. "php": ">=7.3"
  10336. },
  10337. "require-dev": {
  10338. "phpunit/phpunit": "^9.3"
  10339. },
  10340. "type": "library",
  10341. "extra": {
  10342. "branch-alias": {
  10343. "dev-master": "1.0-dev"
  10344. }
  10345. },
  10346. "autoload": {
  10347. "classmap": [
  10348. "src/"
  10349. ]
  10350. },
  10351. "notification-url": "https://packagist.org/downloads/",
  10352. "license": [
  10353. "BSD-3-Clause"
  10354. ],
  10355. "authors": [
  10356. {
  10357. "name": "Sebastian Bergmann",
  10358. "email": "sebastian@phpunit.de",
  10359. "role": "lead"
  10360. }
  10361. ],
  10362. "description": "Collection of value objects that represent the PHP code units",
  10363. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10364. "support": {
  10365. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10366. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10367. },
  10368. "funding": [
  10369. {
  10370. "url": "https://github.com/sebastianbergmann",
  10371. "type": "github"
  10372. }
  10373. ],
  10374. "time": "2020-10-26T13:08:54+00:00"
  10375. },
  10376. {
  10377. "name": "sebastian/code-unit-reverse-lookup",
  10378. "version": "2.0.3",
  10379. "source": {
  10380. "type": "git",
  10381. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10382. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10383. },
  10384. "dist": {
  10385. "type": "zip",
  10386. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10387. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10388. "shasum": ""
  10389. },
  10390. "require": {
  10391. "php": ">=7.3"
  10392. },
  10393. "require-dev": {
  10394. "phpunit/phpunit": "^9.3"
  10395. },
  10396. "type": "library",
  10397. "extra": {
  10398. "branch-alias": {
  10399. "dev-master": "2.0-dev"
  10400. }
  10401. },
  10402. "autoload": {
  10403. "classmap": [
  10404. "src/"
  10405. ]
  10406. },
  10407. "notification-url": "https://packagist.org/downloads/",
  10408. "license": [
  10409. "BSD-3-Clause"
  10410. ],
  10411. "authors": [
  10412. {
  10413. "name": "Sebastian Bergmann",
  10414. "email": "sebastian@phpunit.de"
  10415. }
  10416. ],
  10417. "description": "Looks up which function or method a line of code belongs to",
  10418. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10419. "support": {
  10420. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10421. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10422. },
  10423. "funding": [
  10424. {
  10425. "url": "https://github.com/sebastianbergmann",
  10426. "type": "github"
  10427. }
  10428. ],
  10429. "time": "2020-09-28T05:30:19+00:00"
  10430. },
  10431. {
  10432. "name": "sebastian/comparator",
  10433. "version": "4.0.6",
  10434. "source": {
  10435. "type": "git",
  10436. "url": "https://github.com/sebastianbergmann/comparator.git",
  10437. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10438. },
  10439. "dist": {
  10440. "type": "zip",
  10441. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10442. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10443. "shasum": ""
  10444. },
  10445. "require": {
  10446. "php": ">=7.3",
  10447. "sebastian/diff": "^4.0",
  10448. "sebastian/exporter": "^4.0"
  10449. },
  10450. "require-dev": {
  10451. "phpunit/phpunit": "^9.3"
  10452. },
  10453. "type": "library",
  10454. "extra": {
  10455. "branch-alias": {
  10456. "dev-master": "4.0-dev"
  10457. }
  10458. },
  10459. "autoload": {
  10460. "classmap": [
  10461. "src/"
  10462. ]
  10463. },
  10464. "notification-url": "https://packagist.org/downloads/",
  10465. "license": [
  10466. "BSD-3-Clause"
  10467. ],
  10468. "authors": [
  10469. {
  10470. "name": "Sebastian Bergmann",
  10471. "email": "sebastian@phpunit.de"
  10472. },
  10473. {
  10474. "name": "Jeff Welch",
  10475. "email": "whatthejeff@gmail.com"
  10476. },
  10477. {
  10478. "name": "Volker Dusch",
  10479. "email": "github@wallbash.com"
  10480. },
  10481. {
  10482. "name": "Bernhard Schussek",
  10483. "email": "bschussek@2bepublished.at"
  10484. }
  10485. ],
  10486. "description": "Provides the functionality to compare PHP values for equality",
  10487. "homepage": "https://github.com/sebastianbergmann/comparator",
  10488. "keywords": [
  10489. "comparator",
  10490. "compare",
  10491. "equality"
  10492. ],
  10493. "support": {
  10494. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10495. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10496. },
  10497. "funding": [
  10498. {
  10499. "url": "https://github.com/sebastianbergmann",
  10500. "type": "github"
  10501. }
  10502. ],
  10503. "time": "2020-10-26T15:49:45+00:00"
  10504. },
  10505. {
  10506. "name": "sebastian/complexity",
  10507. "version": "2.0.2",
  10508. "source": {
  10509. "type": "git",
  10510. "url": "https://github.com/sebastianbergmann/complexity.git",
  10511. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10512. },
  10513. "dist": {
  10514. "type": "zip",
  10515. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10516. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10517. "shasum": ""
  10518. },
  10519. "require": {
  10520. "nikic/php-parser": "^4.7",
  10521. "php": ">=7.3"
  10522. },
  10523. "require-dev": {
  10524. "phpunit/phpunit": "^9.3"
  10525. },
  10526. "type": "library",
  10527. "extra": {
  10528. "branch-alias": {
  10529. "dev-master": "2.0-dev"
  10530. }
  10531. },
  10532. "autoload": {
  10533. "classmap": [
  10534. "src/"
  10535. ]
  10536. },
  10537. "notification-url": "https://packagist.org/downloads/",
  10538. "license": [
  10539. "BSD-3-Clause"
  10540. ],
  10541. "authors": [
  10542. {
  10543. "name": "Sebastian Bergmann",
  10544. "email": "sebastian@phpunit.de",
  10545. "role": "lead"
  10546. }
  10547. ],
  10548. "description": "Library for calculating the complexity of PHP code units",
  10549. "homepage": "https://github.com/sebastianbergmann/complexity",
  10550. "support": {
  10551. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10552. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10553. },
  10554. "funding": [
  10555. {
  10556. "url": "https://github.com/sebastianbergmann",
  10557. "type": "github"
  10558. }
  10559. ],
  10560. "time": "2020-10-26T15:52:27+00:00"
  10561. },
  10562. {
  10563. "name": "sebastian/diff",
  10564. "version": "4.0.4",
  10565. "source": {
  10566. "type": "git",
  10567. "url": "https://github.com/sebastianbergmann/diff.git",
  10568. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10569. },
  10570. "dist": {
  10571. "type": "zip",
  10572. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10573. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10574. "shasum": ""
  10575. },
  10576. "require": {
  10577. "php": ">=7.3"
  10578. },
  10579. "require-dev": {
  10580. "phpunit/phpunit": "^9.3",
  10581. "symfony/process": "^4.2 || ^5"
  10582. },
  10583. "type": "library",
  10584. "extra": {
  10585. "branch-alias": {
  10586. "dev-master": "4.0-dev"
  10587. }
  10588. },
  10589. "autoload": {
  10590. "classmap": [
  10591. "src/"
  10592. ]
  10593. },
  10594. "notification-url": "https://packagist.org/downloads/",
  10595. "license": [
  10596. "BSD-3-Clause"
  10597. ],
  10598. "authors": [
  10599. {
  10600. "name": "Sebastian Bergmann",
  10601. "email": "sebastian@phpunit.de"
  10602. },
  10603. {
  10604. "name": "Kore Nordmann",
  10605. "email": "mail@kore-nordmann.de"
  10606. }
  10607. ],
  10608. "description": "Diff implementation",
  10609. "homepage": "https://github.com/sebastianbergmann/diff",
  10610. "keywords": [
  10611. "diff",
  10612. "udiff",
  10613. "unidiff",
  10614. "unified diff"
  10615. ],
  10616. "support": {
  10617. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10618. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10619. },
  10620. "funding": [
  10621. {
  10622. "url": "https://github.com/sebastianbergmann",
  10623. "type": "github"
  10624. }
  10625. ],
  10626. "time": "2020-10-26T13:10:38+00:00"
  10627. },
  10628. {
  10629. "name": "sebastian/environment",
  10630. "version": "5.1.3",
  10631. "source": {
  10632. "type": "git",
  10633. "url": "https://github.com/sebastianbergmann/environment.git",
  10634. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10635. },
  10636. "dist": {
  10637. "type": "zip",
  10638. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10639. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10640. "shasum": ""
  10641. },
  10642. "require": {
  10643. "php": ">=7.3"
  10644. },
  10645. "require-dev": {
  10646. "phpunit/phpunit": "^9.3"
  10647. },
  10648. "suggest": {
  10649. "ext-posix": "*"
  10650. },
  10651. "type": "library",
  10652. "extra": {
  10653. "branch-alias": {
  10654. "dev-master": "5.1-dev"
  10655. }
  10656. },
  10657. "autoload": {
  10658. "classmap": [
  10659. "src/"
  10660. ]
  10661. },
  10662. "notification-url": "https://packagist.org/downloads/",
  10663. "license": [
  10664. "BSD-3-Clause"
  10665. ],
  10666. "authors": [
  10667. {
  10668. "name": "Sebastian Bergmann",
  10669. "email": "sebastian@phpunit.de"
  10670. }
  10671. ],
  10672. "description": "Provides functionality to handle HHVM/PHP environments",
  10673. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10674. "keywords": [
  10675. "Xdebug",
  10676. "environment",
  10677. "hhvm"
  10678. ],
  10679. "support": {
  10680. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10681. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  10682. },
  10683. "funding": [
  10684. {
  10685. "url": "https://github.com/sebastianbergmann",
  10686. "type": "github"
  10687. }
  10688. ],
  10689. "time": "2020-09-28T05:52:38+00:00"
  10690. },
  10691. {
  10692. "name": "sebastian/exporter",
  10693. "version": "4.0.3",
  10694. "source": {
  10695. "type": "git",
  10696. "url": "https://github.com/sebastianbergmann/exporter.git",
  10697. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  10698. },
  10699. "dist": {
  10700. "type": "zip",
  10701. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10702. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10703. "shasum": ""
  10704. },
  10705. "require": {
  10706. "php": ">=7.3",
  10707. "sebastian/recursion-context": "^4.0"
  10708. },
  10709. "require-dev": {
  10710. "ext-mbstring": "*",
  10711. "phpunit/phpunit": "^9.3"
  10712. },
  10713. "type": "library",
  10714. "extra": {
  10715. "branch-alias": {
  10716. "dev-master": "4.0-dev"
  10717. }
  10718. },
  10719. "autoload": {
  10720. "classmap": [
  10721. "src/"
  10722. ]
  10723. },
  10724. "notification-url": "https://packagist.org/downloads/",
  10725. "license": [
  10726. "BSD-3-Clause"
  10727. ],
  10728. "authors": [
  10729. {
  10730. "name": "Sebastian Bergmann",
  10731. "email": "sebastian@phpunit.de"
  10732. },
  10733. {
  10734. "name": "Jeff Welch",
  10735. "email": "whatthejeff@gmail.com"
  10736. },
  10737. {
  10738. "name": "Volker Dusch",
  10739. "email": "github@wallbash.com"
  10740. },
  10741. {
  10742. "name": "Adam Harvey",
  10743. "email": "aharvey@php.net"
  10744. },
  10745. {
  10746. "name": "Bernhard Schussek",
  10747. "email": "bschussek@gmail.com"
  10748. }
  10749. ],
  10750. "description": "Provides the functionality to export PHP variables for visualization",
  10751. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10752. "keywords": [
  10753. "export",
  10754. "exporter"
  10755. ],
  10756. "support": {
  10757. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10758. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  10759. },
  10760. "funding": [
  10761. {
  10762. "url": "https://github.com/sebastianbergmann",
  10763. "type": "github"
  10764. }
  10765. ],
  10766. "time": "2020-09-28T05:24:23+00:00"
  10767. },
  10768. {
  10769. "name": "sebastian/global-state",
  10770. "version": "5.0.2",
  10771. "source": {
  10772. "type": "git",
  10773. "url": "https://github.com/sebastianbergmann/global-state.git",
  10774. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  10775. },
  10776. "dist": {
  10777. "type": "zip",
  10778. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  10779. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  10780. "shasum": ""
  10781. },
  10782. "require": {
  10783. "php": ">=7.3",
  10784. "sebastian/object-reflector": "^2.0",
  10785. "sebastian/recursion-context": "^4.0"
  10786. },
  10787. "require-dev": {
  10788. "ext-dom": "*",
  10789. "phpunit/phpunit": "^9.3"
  10790. },
  10791. "suggest": {
  10792. "ext-uopz": "*"
  10793. },
  10794. "type": "library",
  10795. "extra": {
  10796. "branch-alias": {
  10797. "dev-master": "5.0-dev"
  10798. }
  10799. },
  10800. "autoload": {
  10801. "classmap": [
  10802. "src/"
  10803. ]
  10804. },
  10805. "notification-url": "https://packagist.org/downloads/",
  10806. "license": [
  10807. "BSD-3-Clause"
  10808. ],
  10809. "authors": [
  10810. {
  10811. "name": "Sebastian Bergmann",
  10812. "email": "sebastian@phpunit.de"
  10813. }
  10814. ],
  10815. "description": "Snapshotting of global state",
  10816. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10817. "keywords": [
  10818. "global state"
  10819. ],
  10820. "support": {
  10821. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10822. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  10823. },
  10824. "funding": [
  10825. {
  10826. "url": "https://github.com/sebastianbergmann",
  10827. "type": "github"
  10828. }
  10829. ],
  10830. "time": "2020-10-26T15:55:19+00:00"
  10831. },
  10832. {
  10833. "name": "sebastian/lines-of-code",
  10834. "version": "1.0.3",
  10835. "source": {
  10836. "type": "git",
  10837. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10838. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10839. },
  10840. "dist": {
  10841. "type": "zip",
  10842. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10843. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10844. "shasum": ""
  10845. },
  10846. "require": {
  10847. "nikic/php-parser": "^4.6",
  10848. "php": ">=7.3"
  10849. },
  10850. "require-dev": {
  10851. "phpunit/phpunit": "^9.3"
  10852. },
  10853. "type": "library",
  10854. "extra": {
  10855. "branch-alias": {
  10856. "dev-master": "1.0-dev"
  10857. }
  10858. },
  10859. "autoload": {
  10860. "classmap": [
  10861. "src/"
  10862. ]
  10863. },
  10864. "notification-url": "https://packagist.org/downloads/",
  10865. "license": [
  10866. "BSD-3-Clause"
  10867. ],
  10868. "authors": [
  10869. {
  10870. "name": "Sebastian Bergmann",
  10871. "email": "sebastian@phpunit.de",
  10872. "role": "lead"
  10873. }
  10874. ],
  10875. "description": "Library for counting the lines of code in PHP source code",
  10876. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10877. "support": {
  10878. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10879. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10880. },
  10881. "funding": [
  10882. {
  10883. "url": "https://github.com/sebastianbergmann",
  10884. "type": "github"
  10885. }
  10886. ],
  10887. "time": "2020-11-28T06:42:11+00:00"
  10888. },
  10889. {
  10890. "name": "sebastian/object-enumerator",
  10891. "version": "4.0.4",
  10892. "source": {
  10893. "type": "git",
  10894. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10895. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10896. },
  10897. "dist": {
  10898. "type": "zip",
  10899. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10900. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10901. "shasum": ""
  10902. },
  10903. "require": {
  10904. "php": ">=7.3",
  10905. "sebastian/object-reflector": "^2.0",
  10906. "sebastian/recursion-context": "^4.0"
  10907. },
  10908. "require-dev": {
  10909. "phpunit/phpunit": "^9.3"
  10910. },
  10911. "type": "library",
  10912. "extra": {
  10913. "branch-alias": {
  10914. "dev-master": "4.0-dev"
  10915. }
  10916. },
  10917. "autoload": {
  10918. "classmap": [
  10919. "src/"
  10920. ]
  10921. },
  10922. "notification-url": "https://packagist.org/downloads/",
  10923. "license": [
  10924. "BSD-3-Clause"
  10925. ],
  10926. "authors": [
  10927. {
  10928. "name": "Sebastian Bergmann",
  10929. "email": "sebastian@phpunit.de"
  10930. }
  10931. ],
  10932. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10933. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10934. "support": {
  10935. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10936. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10937. },
  10938. "funding": [
  10939. {
  10940. "url": "https://github.com/sebastianbergmann",
  10941. "type": "github"
  10942. }
  10943. ],
  10944. "time": "2020-10-26T13:12:34+00:00"
  10945. },
  10946. {
  10947. "name": "sebastian/object-reflector",
  10948. "version": "2.0.4",
  10949. "source": {
  10950. "type": "git",
  10951. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10952. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10953. },
  10954. "dist": {
  10955. "type": "zip",
  10956. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10957. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10958. "shasum": ""
  10959. },
  10960. "require": {
  10961. "php": ">=7.3"
  10962. },
  10963. "require-dev": {
  10964. "phpunit/phpunit": "^9.3"
  10965. },
  10966. "type": "library",
  10967. "extra": {
  10968. "branch-alias": {
  10969. "dev-master": "2.0-dev"
  10970. }
  10971. },
  10972. "autoload": {
  10973. "classmap": [
  10974. "src/"
  10975. ]
  10976. },
  10977. "notification-url": "https://packagist.org/downloads/",
  10978. "license": [
  10979. "BSD-3-Clause"
  10980. ],
  10981. "authors": [
  10982. {
  10983. "name": "Sebastian Bergmann",
  10984. "email": "sebastian@phpunit.de"
  10985. }
  10986. ],
  10987. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10988. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10989. "support": {
  10990. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10991. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10992. },
  10993. "funding": [
  10994. {
  10995. "url": "https://github.com/sebastianbergmann",
  10996. "type": "github"
  10997. }
  10998. ],
  10999. "time": "2020-10-26T13:14:26+00:00"
  11000. },
  11001. {
  11002. "name": "sebastian/recursion-context",
  11003. "version": "4.0.4",
  11004. "source": {
  11005. "type": "git",
  11006. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11007. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  11008. },
  11009. "dist": {
  11010. "type": "zip",
  11011. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  11012. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  11013. "shasum": ""
  11014. },
  11015. "require": {
  11016. "php": ">=7.3"
  11017. },
  11018. "require-dev": {
  11019. "phpunit/phpunit": "^9.3"
  11020. },
  11021. "type": "library",
  11022. "extra": {
  11023. "branch-alias": {
  11024. "dev-master": "4.0-dev"
  11025. }
  11026. },
  11027. "autoload": {
  11028. "classmap": [
  11029. "src/"
  11030. ]
  11031. },
  11032. "notification-url": "https://packagist.org/downloads/",
  11033. "license": [
  11034. "BSD-3-Clause"
  11035. ],
  11036. "authors": [
  11037. {
  11038. "name": "Sebastian Bergmann",
  11039. "email": "sebastian@phpunit.de"
  11040. },
  11041. {
  11042. "name": "Jeff Welch",
  11043. "email": "whatthejeff@gmail.com"
  11044. },
  11045. {
  11046. "name": "Adam Harvey",
  11047. "email": "aharvey@php.net"
  11048. }
  11049. ],
  11050. "description": "Provides functionality to recursively process PHP variables",
  11051. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11052. "support": {
  11053. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11054. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  11055. },
  11056. "funding": [
  11057. {
  11058. "url": "https://github.com/sebastianbergmann",
  11059. "type": "github"
  11060. }
  11061. ],
  11062. "time": "2020-10-26T13:17:30+00:00"
  11063. },
  11064. {
  11065. "name": "sebastian/resource-operations",
  11066. "version": "3.0.3",
  11067. "source": {
  11068. "type": "git",
  11069. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11070. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11071. },
  11072. "dist": {
  11073. "type": "zip",
  11074. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11075. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11076. "shasum": ""
  11077. },
  11078. "require": {
  11079. "php": ">=7.3"
  11080. },
  11081. "require-dev": {
  11082. "phpunit/phpunit": "^9.0"
  11083. },
  11084. "type": "library",
  11085. "extra": {
  11086. "branch-alias": {
  11087. "dev-master": "3.0-dev"
  11088. }
  11089. },
  11090. "autoload": {
  11091. "classmap": [
  11092. "src/"
  11093. ]
  11094. },
  11095. "notification-url": "https://packagist.org/downloads/",
  11096. "license": [
  11097. "BSD-3-Clause"
  11098. ],
  11099. "authors": [
  11100. {
  11101. "name": "Sebastian Bergmann",
  11102. "email": "sebastian@phpunit.de"
  11103. }
  11104. ],
  11105. "description": "Provides a list of PHP built-in functions that operate on resources",
  11106. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11107. "support": {
  11108. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11109. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11110. },
  11111. "funding": [
  11112. {
  11113. "url": "https://github.com/sebastianbergmann",
  11114. "type": "github"
  11115. }
  11116. ],
  11117. "time": "2020-09-28T06:45:17+00:00"
  11118. },
  11119. {
  11120. "name": "sebastian/type",
  11121. "version": "2.3.1",
  11122. "source": {
  11123. "type": "git",
  11124. "url": "https://github.com/sebastianbergmann/type.git",
  11125. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  11126. },
  11127. "dist": {
  11128. "type": "zip",
  11129. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11130. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11131. "shasum": ""
  11132. },
  11133. "require": {
  11134. "php": ">=7.3"
  11135. },
  11136. "require-dev": {
  11137. "phpunit/phpunit": "^9.3"
  11138. },
  11139. "type": "library",
  11140. "extra": {
  11141. "branch-alias": {
  11142. "dev-master": "2.3-dev"
  11143. }
  11144. },
  11145. "autoload": {
  11146. "classmap": [
  11147. "src/"
  11148. ]
  11149. },
  11150. "notification-url": "https://packagist.org/downloads/",
  11151. "license": [
  11152. "BSD-3-Clause"
  11153. ],
  11154. "authors": [
  11155. {
  11156. "name": "Sebastian Bergmann",
  11157. "email": "sebastian@phpunit.de",
  11158. "role": "lead"
  11159. }
  11160. ],
  11161. "description": "Collection of value objects that represent the types of the PHP type system",
  11162. "homepage": "https://github.com/sebastianbergmann/type",
  11163. "support": {
  11164. "issues": "https://github.com/sebastianbergmann/type/issues",
  11165. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  11166. },
  11167. "funding": [
  11168. {
  11169. "url": "https://github.com/sebastianbergmann",
  11170. "type": "github"
  11171. }
  11172. ],
  11173. "time": "2020-10-26T13:18:59+00:00"
  11174. },
  11175. {
  11176. "name": "sebastian/version",
  11177. "version": "3.0.2",
  11178. "source": {
  11179. "type": "git",
  11180. "url": "https://github.com/sebastianbergmann/version.git",
  11181. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11182. },
  11183. "dist": {
  11184. "type": "zip",
  11185. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11186. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11187. "shasum": ""
  11188. },
  11189. "require": {
  11190. "php": ">=7.3"
  11191. },
  11192. "type": "library",
  11193. "extra": {
  11194. "branch-alias": {
  11195. "dev-master": "3.0-dev"
  11196. }
  11197. },
  11198. "autoload": {
  11199. "classmap": [
  11200. "src/"
  11201. ]
  11202. },
  11203. "notification-url": "https://packagist.org/downloads/",
  11204. "license": [
  11205. "BSD-3-Clause"
  11206. ],
  11207. "authors": [
  11208. {
  11209. "name": "Sebastian Bergmann",
  11210. "email": "sebastian@phpunit.de",
  11211. "role": "lead"
  11212. }
  11213. ],
  11214. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11215. "homepage": "https://github.com/sebastianbergmann/version",
  11216. "support": {
  11217. "issues": "https://github.com/sebastianbergmann/version/issues",
  11218. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11219. },
  11220. "funding": [
  11221. {
  11222. "url": "https://github.com/sebastianbergmann",
  11223. "type": "github"
  11224. }
  11225. ],
  11226. "time": "2020-09-28T06:39:44+00:00"
  11227. },
  11228. {
  11229. "name": "symfony/browser-kit",
  11230. "version": "v5.2.4",
  11231. "source": {
  11232. "type": "git",
  11233. "url": "https://github.com/symfony/browser-kit.git",
  11234. "reference": "3ca3a57ce9860318b20a924fec5daf5c6db44d93"
  11235. },
  11236. "dist": {
  11237. "type": "zip",
  11238. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/3ca3a57ce9860318b20a924fec5daf5c6db44d93",
  11239. "reference": "3ca3a57ce9860318b20a924fec5daf5c6db44d93",
  11240. "shasum": ""
  11241. },
  11242. "require": {
  11243. "php": ">=7.2.5",
  11244. "symfony/dom-crawler": "^4.4|^5.0"
  11245. },
  11246. "require-dev": {
  11247. "symfony/css-selector": "^4.4|^5.0",
  11248. "symfony/http-client": "^4.4|^5.0",
  11249. "symfony/mime": "^4.4|^5.0",
  11250. "symfony/process": "^4.4|^5.0"
  11251. },
  11252. "suggest": {
  11253. "symfony/process": ""
  11254. },
  11255. "type": "library",
  11256. "autoload": {
  11257. "psr-4": {
  11258. "Symfony\\Component\\BrowserKit\\": ""
  11259. },
  11260. "exclude-from-classmap": [
  11261. "/Tests/"
  11262. ]
  11263. },
  11264. "notification-url": "https://packagist.org/downloads/",
  11265. "license": [
  11266. "MIT"
  11267. ],
  11268. "authors": [
  11269. {
  11270. "name": "Fabien Potencier",
  11271. "email": "fabien@symfony.com"
  11272. },
  11273. {
  11274. "name": "Symfony Community",
  11275. "homepage": "https://symfony.com/contributors"
  11276. }
  11277. ],
  11278. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  11279. "homepage": "https://symfony.com",
  11280. "support": {
  11281. "source": "https://github.com/symfony/browser-kit/tree/v5.2.4"
  11282. },
  11283. "funding": [
  11284. {
  11285. "url": "https://symfony.com/sponsor",
  11286. "type": "custom"
  11287. },
  11288. {
  11289. "url": "https://github.com/fabpot",
  11290. "type": "github"
  11291. },
  11292. {
  11293. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11294. "type": "tidelift"
  11295. }
  11296. ],
  11297. "time": "2021-02-22T06:48:33+00:00"
  11298. },
  11299. {
  11300. "name": "symfony/css-selector",
  11301. "version": "v5.2.4",
  11302. "source": {
  11303. "type": "git",
  11304. "url": "https://github.com/symfony/css-selector.git",
  11305. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f"
  11306. },
  11307. "dist": {
  11308. "type": "zip",
  11309. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f65f217b3314504a1ec99c2d6ef69016bb13490f",
  11310. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f",
  11311. "shasum": ""
  11312. },
  11313. "require": {
  11314. "php": ">=7.2.5"
  11315. },
  11316. "type": "library",
  11317. "autoload": {
  11318. "psr-4": {
  11319. "Symfony\\Component\\CssSelector\\": ""
  11320. },
  11321. "exclude-from-classmap": [
  11322. "/Tests/"
  11323. ]
  11324. },
  11325. "notification-url": "https://packagist.org/downloads/",
  11326. "license": [
  11327. "MIT"
  11328. ],
  11329. "authors": [
  11330. {
  11331. "name": "Fabien Potencier",
  11332. "email": "fabien@symfony.com"
  11333. },
  11334. {
  11335. "name": "Jean-François Simon",
  11336. "email": "jeanfrancois.simon@sensiolabs.com"
  11337. },
  11338. {
  11339. "name": "Symfony Community",
  11340. "homepage": "https://symfony.com/contributors"
  11341. }
  11342. ],
  11343. "description": "Converts CSS selectors to XPath expressions",
  11344. "homepage": "https://symfony.com",
  11345. "support": {
  11346. "source": "https://github.com/symfony/css-selector/tree/v5.2.4"
  11347. },
  11348. "funding": [
  11349. {
  11350. "url": "https://symfony.com/sponsor",
  11351. "type": "custom"
  11352. },
  11353. {
  11354. "url": "https://github.com/fabpot",
  11355. "type": "github"
  11356. },
  11357. {
  11358. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11359. "type": "tidelift"
  11360. }
  11361. ],
  11362. "time": "2021-01-27T10:01:46+00:00"
  11363. },
  11364. {
  11365. "name": "symfony/debug-bundle",
  11366. "version": "v5.2.4",
  11367. "source": {
  11368. "type": "git",
  11369. "url": "https://github.com/symfony/debug-bundle.git",
  11370. "reference": "ec21bd26d24dab02ac40e4bec362b3f4032486e8"
  11371. },
  11372. "dist": {
  11373. "type": "zip",
  11374. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/ec21bd26d24dab02ac40e4bec362b3f4032486e8",
  11375. "reference": "ec21bd26d24dab02ac40e4bec362b3f4032486e8",
  11376. "shasum": ""
  11377. },
  11378. "require": {
  11379. "ext-xml": "*",
  11380. "php": ">=7.2.5",
  11381. "symfony/http-kernel": "^4.4|^5.0",
  11382. "symfony/twig-bridge": "^4.4|^5.0",
  11383. "symfony/var-dumper": "^4.4|^5.0"
  11384. },
  11385. "conflict": {
  11386. "symfony/config": "<4.4",
  11387. "symfony/dependency-injection": "<5.2"
  11388. },
  11389. "require-dev": {
  11390. "symfony/config": "^4.4|^5.0",
  11391. "symfony/dependency-injection": "^4.4|^5.0",
  11392. "symfony/web-profiler-bundle": "^4.4|^5.0"
  11393. },
  11394. "suggest": {
  11395. "symfony/config": "For service container configuration",
  11396. "symfony/dependency-injection": "For using as a service from the container"
  11397. },
  11398. "type": "symfony-bundle",
  11399. "autoload": {
  11400. "psr-4": {
  11401. "Symfony\\Bundle\\DebugBundle\\": ""
  11402. },
  11403. "exclude-from-classmap": [
  11404. "/Tests/"
  11405. ]
  11406. },
  11407. "notification-url": "https://packagist.org/downloads/",
  11408. "license": [
  11409. "MIT"
  11410. ],
  11411. "authors": [
  11412. {
  11413. "name": "Fabien Potencier",
  11414. "email": "fabien@symfony.com"
  11415. },
  11416. {
  11417. "name": "Symfony Community",
  11418. "homepage": "https://symfony.com/contributors"
  11419. }
  11420. ],
  11421. "description": "Provides a tight integration of the Symfony Debug component into the Symfony full-stack framework",
  11422. "homepage": "https://symfony.com",
  11423. "support": {
  11424. "source": "https://github.com/symfony/debug-bundle/tree/v5.2.4"
  11425. },
  11426. "funding": [
  11427. {
  11428. "url": "https://symfony.com/sponsor",
  11429. "type": "custom"
  11430. },
  11431. {
  11432. "url": "https://github.com/fabpot",
  11433. "type": "github"
  11434. },
  11435. {
  11436. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11437. "type": "tidelift"
  11438. }
  11439. ],
  11440. "time": "2021-01-10T16:30:10+00:00"
  11441. },
  11442. {
  11443. "name": "symfony/debug-pack",
  11444. "version": "v1.0.9",
  11445. "source": {
  11446. "type": "git",
  11447. "url": "https://github.com/symfony/debug-pack.git",
  11448. "reference": "cfd5093378e9cafe500f05c777a22fe8a64a9342"
  11449. },
  11450. "dist": {
  11451. "type": "zip",
  11452. "url": "https://api.github.com/repos/symfony/debug-pack/zipball/cfd5093378e9cafe500f05c777a22fe8a64a9342",
  11453. "reference": "cfd5093378e9cafe500f05c777a22fe8a64a9342",
  11454. "shasum": ""
  11455. },
  11456. "require": {
  11457. "symfony/debug-bundle": "*",
  11458. "symfony/monolog-bundle": "^3.0",
  11459. "symfony/profiler-pack": "*",
  11460. "symfony/var-dumper": "*"
  11461. },
  11462. "type": "symfony-pack",
  11463. "notification-url": "https://packagist.org/downloads/",
  11464. "license": [
  11465. "MIT"
  11466. ],
  11467. "description": "A debug pack for Symfony projects",
  11468. "support": {
  11469. "issues": "https://github.com/symfony/debug-pack/issues",
  11470. "source": "https://github.com/symfony/debug-pack/tree/v1.0.9"
  11471. },
  11472. "funding": [
  11473. {
  11474. "url": "https://symfony.com/sponsor",
  11475. "type": "custom"
  11476. },
  11477. {
  11478. "url": "https://github.com/fabpot",
  11479. "type": "github"
  11480. },
  11481. {
  11482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11483. "type": "tidelift"
  11484. }
  11485. ],
  11486. "time": "2020-10-19T08:51:51+00:00"
  11487. },
  11488. {
  11489. "name": "symfony/dom-crawler",
  11490. "version": "v5.2.4",
  11491. "source": {
  11492. "type": "git",
  11493. "url": "https://github.com/symfony/dom-crawler.git",
  11494. "reference": "400e265163f65aceee7e904ef532e15228de674b"
  11495. },
  11496. "dist": {
  11497. "type": "zip",
  11498. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/400e265163f65aceee7e904ef532e15228de674b",
  11499. "reference": "400e265163f65aceee7e904ef532e15228de674b",
  11500. "shasum": ""
  11501. },
  11502. "require": {
  11503. "php": ">=7.2.5",
  11504. "symfony/polyfill-ctype": "~1.8",
  11505. "symfony/polyfill-mbstring": "~1.0",
  11506. "symfony/polyfill-php80": "^1.15"
  11507. },
  11508. "conflict": {
  11509. "masterminds/html5": "<2.6"
  11510. },
  11511. "require-dev": {
  11512. "masterminds/html5": "^2.6",
  11513. "symfony/css-selector": "^4.4|^5.0"
  11514. },
  11515. "suggest": {
  11516. "symfony/css-selector": ""
  11517. },
  11518. "type": "library",
  11519. "autoload": {
  11520. "psr-4": {
  11521. "Symfony\\Component\\DomCrawler\\": ""
  11522. },
  11523. "exclude-from-classmap": [
  11524. "/Tests/"
  11525. ]
  11526. },
  11527. "notification-url": "https://packagist.org/downloads/",
  11528. "license": [
  11529. "MIT"
  11530. ],
  11531. "authors": [
  11532. {
  11533. "name": "Fabien Potencier",
  11534. "email": "fabien@symfony.com"
  11535. },
  11536. {
  11537. "name": "Symfony Community",
  11538. "homepage": "https://symfony.com/contributors"
  11539. }
  11540. ],
  11541. "description": "Eases DOM navigation for HTML and XML documents",
  11542. "homepage": "https://symfony.com",
  11543. "support": {
  11544. "source": "https://github.com/symfony/dom-crawler/tree/v5.2.4"
  11545. },
  11546. "funding": [
  11547. {
  11548. "url": "https://symfony.com/sponsor",
  11549. "type": "custom"
  11550. },
  11551. {
  11552. "url": "https://github.com/fabpot",
  11553. "type": "github"
  11554. },
  11555. {
  11556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11557. "type": "tidelift"
  11558. }
  11559. ],
  11560. "time": "2021-02-15T18:55:04+00:00"
  11561. },
  11562. {
  11563. "name": "symfony/maker-bundle",
  11564. "version": "v1.30.2",
  11565. "source": {
  11566. "type": "git",
  11567. "url": "https://github.com/symfony/maker-bundle.git",
  11568. "reference": "a395a85aa4ded6c1fa3da118d60329b64b6c2acd"
  11569. },
  11570. "dist": {
  11571. "type": "zip",
  11572. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a395a85aa4ded6c1fa3da118d60329b64b6c2acd",
  11573. "reference": "a395a85aa4ded6c1fa3da118d60329b64b6c2acd",
  11574. "shasum": ""
  11575. },
  11576. "require": {
  11577. "doctrine/inflector": "^1.2|^2.0",
  11578. "nikic/php-parser": "^4.0",
  11579. "php": ">=7.1.3",
  11580. "symfony/config": "^4.0|^5.0",
  11581. "symfony/console": "^4.0|^5.0",
  11582. "symfony/dependency-injection": "^4.0|^5.0",
  11583. "symfony/deprecation-contracts": "^2.2",
  11584. "symfony/filesystem": "^4.0|^5.0",
  11585. "symfony/finder": "^4.0|^5.0",
  11586. "symfony/framework-bundle": "^4.0|^5.0",
  11587. "symfony/http-kernel": "^4.0|^5.0"
  11588. },
  11589. "require-dev": {
  11590. "composer/semver": "^3.0@dev",
  11591. "doctrine/doctrine-bundle": "^1.8|^2.0",
  11592. "doctrine/orm": "^2.3",
  11593. "friendsofphp/php-cs-fixer": "^2.8",
  11594. "friendsoftwig/twigcs": "^4.1.0|^5.0.0",
  11595. "symfony/http-client": "^4.3|^5.0",
  11596. "symfony/phpunit-bridge": "^4.3|^5.0",
  11597. "symfony/process": "^4.0|^5.0",
  11598. "symfony/security-core": "^4.0|^5.0",
  11599. "symfony/yaml": "^4.0|^5.0"
  11600. },
  11601. "type": "symfony-bundle",
  11602. "extra": {
  11603. "branch-alias": {
  11604. "dev-main": "1.0-dev"
  11605. }
  11606. },
  11607. "autoload": {
  11608. "psr-4": {
  11609. "Symfony\\Bundle\\MakerBundle\\": "src/"
  11610. }
  11611. },
  11612. "notification-url": "https://packagist.org/downloads/",
  11613. "license": [
  11614. "MIT"
  11615. ],
  11616. "authors": [
  11617. {
  11618. "name": "Symfony Community",
  11619. "homepage": "https://symfony.com/contributors"
  11620. }
  11621. ],
  11622. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  11623. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  11624. "keywords": [
  11625. "code generator",
  11626. "generator",
  11627. "scaffold",
  11628. "scaffolding"
  11629. ],
  11630. "support": {
  11631. "issues": "https://github.com/symfony/maker-bundle/issues",
  11632. "source": "https://github.com/symfony/maker-bundle/tree/v1.30.2"
  11633. },
  11634. "funding": [
  11635. {
  11636. "url": "https://symfony.com/sponsor",
  11637. "type": "custom"
  11638. },
  11639. {
  11640. "url": "https://github.com/fabpot",
  11641. "type": "github"
  11642. },
  11643. {
  11644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11645. "type": "tidelift"
  11646. }
  11647. ],
  11648. "time": "2021-03-23T13:53:38+00:00"
  11649. },
  11650. {
  11651. "name": "symfony/phpunit-bridge",
  11652. "version": "v5.2.6",
  11653. "source": {
  11654. "type": "git",
  11655. "url": "https://github.com/symfony/phpunit-bridge.git",
  11656. "reference": "f2f94fd78379cdcdef09dd5025af791301913968"
  11657. },
  11658. "dist": {
  11659. "type": "zip",
  11660. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/f2f94fd78379cdcdef09dd5025af791301913968",
  11661. "reference": "f2f94fd78379cdcdef09dd5025af791301913968",
  11662. "shasum": ""
  11663. },
  11664. "require": {
  11665. "php": ">=5.5.9"
  11666. },
  11667. "conflict": {
  11668. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0|<6.4,>=6.0|9.1.2"
  11669. },
  11670. "require-dev": {
  11671. "symfony/deprecation-contracts": "^2.1",
  11672. "symfony/error-handler": "^4.4|^5.0"
  11673. },
  11674. "suggest": {
  11675. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  11676. },
  11677. "bin": [
  11678. "bin/simple-phpunit"
  11679. ],
  11680. "type": "symfony-bridge",
  11681. "extra": {
  11682. "thanks": {
  11683. "name": "phpunit/phpunit",
  11684. "url": "https://github.com/sebastianbergmann/phpunit"
  11685. }
  11686. },
  11687. "autoload": {
  11688. "files": [
  11689. "bootstrap.php"
  11690. ],
  11691. "psr-4": {
  11692. "Symfony\\Bridge\\PhpUnit\\": ""
  11693. },
  11694. "exclude-from-classmap": [
  11695. "/Tests/"
  11696. ]
  11697. },
  11698. "notification-url": "https://packagist.org/downloads/",
  11699. "license": [
  11700. "MIT"
  11701. ],
  11702. "authors": [
  11703. {
  11704. "name": "Nicolas Grekas",
  11705. "email": "p@tchwork.com"
  11706. },
  11707. {
  11708. "name": "Symfony Community",
  11709. "homepage": "https://symfony.com/contributors"
  11710. }
  11711. ],
  11712. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  11713. "homepage": "https://symfony.com",
  11714. "support": {
  11715. "source": "https://github.com/symfony/phpunit-bridge/tree/v5.2.6"
  11716. },
  11717. "funding": [
  11718. {
  11719. "url": "https://symfony.com/sponsor",
  11720. "type": "custom"
  11721. },
  11722. {
  11723. "url": "https://github.com/fabpot",
  11724. "type": "github"
  11725. },
  11726. {
  11727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11728. "type": "tidelift"
  11729. }
  11730. ],
  11731. "time": "2021-03-23T20:42:04+00:00"
  11732. },
  11733. {
  11734. "name": "symfony/profiler-pack",
  11735. "version": "v1.0.5",
  11736. "source": {
  11737. "type": "git",
  11738. "url": "https://github.com/symfony/profiler-pack.git",
  11739. "reference": "29ec66471082b4eb068db11eb4f0a48c277653f7"
  11740. },
  11741. "dist": {
  11742. "type": "zip",
  11743. "url": "https://api.github.com/repos/symfony/profiler-pack/zipball/29ec66471082b4eb068db11eb4f0a48c277653f7",
  11744. "reference": "29ec66471082b4eb068db11eb4f0a48c277653f7",
  11745. "shasum": ""
  11746. },
  11747. "require": {
  11748. "symfony/stopwatch": "*",
  11749. "symfony/twig-bundle": "*",
  11750. "symfony/web-profiler-bundle": "*"
  11751. },
  11752. "type": "symfony-pack",
  11753. "notification-url": "https://packagist.org/downloads/",
  11754. "license": [
  11755. "MIT"
  11756. ],
  11757. "description": "A pack for the Symfony web profiler",
  11758. "support": {
  11759. "issues": "https://github.com/symfony/profiler-pack/issues",
  11760. "source": "https://github.com/symfony/profiler-pack/tree/v1.0.5"
  11761. },
  11762. "funding": [
  11763. {
  11764. "url": "https://symfony.com/sponsor",
  11765. "type": "custom"
  11766. },
  11767. {
  11768. "url": "https://github.com/fabpot",
  11769. "type": "github"
  11770. },
  11771. {
  11772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11773. "type": "tidelift"
  11774. }
  11775. ],
  11776. "time": "2020-08-12T06:50:46+00:00"
  11777. },
  11778. {
  11779. "name": "symfony/test-pack",
  11780. "version": "v1.0.7",
  11781. "source": {
  11782. "type": "git",
  11783. "url": "https://github.com/symfony/test-pack.git",
  11784. "reference": "e61756c97cbedae00b7cf43b87abcfadfeb2746c"
  11785. },
  11786. "dist": {
  11787. "type": "zip",
  11788. "url": "https://api.github.com/repos/symfony/test-pack/zipball/e61756c97cbedae00b7cf43b87abcfadfeb2746c",
  11789. "reference": "e61756c97cbedae00b7cf43b87abcfadfeb2746c",
  11790. "shasum": ""
  11791. },
  11792. "require": {
  11793. "symfony/browser-kit": "*",
  11794. "symfony/css-selector": "*",
  11795. "symfony/phpunit-bridge": "*"
  11796. },
  11797. "type": "symfony-pack",
  11798. "notification-url": "https://packagist.org/downloads/",
  11799. "license": [
  11800. "MIT"
  11801. ],
  11802. "description": "A pack for functional and end-to-end testing within a Symfony app",
  11803. "support": {
  11804. "issues": "https://github.com/symfony/test-pack/issues",
  11805. "source": "https://github.com/symfony/test-pack/tree/v1.0.7"
  11806. },
  11807. "funding": [
  11808. {
  11809. "url": "https://symfony.com/sponsor",
  11810. "type": "custom"
  11811. },
  11812. {
  11813. "url": "https://github.com/fabpot",
  11814. "type": "github"
  11815. },
  11816. {
  11817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11818. "type": "tidelift"
  11819. }
  11820. ],
  11821. "time": "2020-10-19T08:52:28+00:00"
  11822. },
  11823. {
  11824. "name": "symfony/web-profiler-bundle",
  11825. "version": "v5.2.6",
  11826. "source": {
  11827. "type": "git",
  11828. "url": "https://github.com/symfony/web-profiler-bundle.git",
  11829. "reference": "58e5be2aa69041ff35250537190d9ec29136782a"
  11830. },
  11831. "dist": {
  11832. "type": "zip",
  11833. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/58e5be2aa69041ff35250537190d9ec29136782a",
  11834. "reference": "58e5be2aa69041ff35250537190d9ec29136782a",
  11835. "shasum": ""
  11836. },
  11837. "require": {
  11838. "php": ">=7.2.5",
  11839. "symfony/config": "^4.4|^5.0",
  11840. "symfony/framework-bundle": "^5.1",
  11841. "symfony/http-kernel": "^5.2",
  11842. "symfony/routing": "^4.4|^5.0",
  11843. "symfony/twig-bundle": "^4.4|^5.0",
  11844. "twig/twig": "^2.13|^3.0.4"
  11845. },
  11846. "conflict": {
  11847. "symfony/dependency-injection": "<5.2",
  11848. "symfony/form": "<4.4",
  11849. "symfony/messenger": "<4.4"
  11850. },
  11851. "require-dev": {
  11852. "symfony/browser-kit": "^4.4|^5.0",
  11853. "symfony/console": "^4.4|^5.0",
  11854. "symfony/css-selector": "^4.4|^5.0",
  11855. "symfony/stopwatch": "^4.4|^5.0"
  11856. },
  11857. "type": "symfony-bundle",
  11858. "autoload": {
  11859. "psr-4": {
  11860. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  11861. },
  11862. "exclude-from-classmap": [
  11863. "/Tests/"
  11864. ]
  11865. },
  11866. "notification-url": "https://packagist.org/downloads/",
  11867. "license": [
  11868. "MIT"
  11869. ],
  11870. "authors": [
  11871. {
  11872. "name": "Fabien Potencier",
  11873. "email": "fabien@symfony.com"
  11874. },
  11875. {
  11876. "name": "Symfony Community",
  11877. "homepage": "https://symfony.com/contributors"
  11878. }
  11879. ],
  11880. "description": "Provides a development tool that gives detailed information about the execution of any request",
  11881. "homepage": "https://symfony.com",
  11882. "support": {
  11883. "source": "https://github.com/symfony/web-profiler-bundle/tree/v5.2.6"
  11884. },
  11885. "funding": [
  11886. {
  11887. "url": "https://symfony.com/sponsor",
  11888. "type": "custom"
  11889. },
  11890. {
  11891. "url": "https://github.com/fabpot",
  11892. "type": "github"
  11893. },
  11894. {
  11895. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11896. "type": "tidelift"
  11897. }
  11898. ],
  11899. "time": "2021-03-16T09:10:13+00:00"
  11900. },
  11901. {
  11902. "name": "theseer/tokenizer",
  11903. "version": "1.2.0",
  11904. "source": {
  11905. "type": "git",
  11906. "url": "https://github.com/theseer/tokenizer.git",
  11907. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  11908. },
  11909. "dist": {
  11910. "type": "zip",
  11911. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  11912. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  11913. "shasum": ""
  11914. },
  11915. "require": {
  11916. "ext-dom": "*",
  11917. "ext-tokenizer": "*",
  11918. "ext-xmlwriter": "*",
  11919. "php": "^7.2 || ^8.0"
  11920. },
  11921. "type": "library",
  11922. "autoload": {
  11923. "classmap": [
  11924. "src/"
  11925. ]
  11926. },
  11927. "notification-url": "https://packagist.org/downloads/",
  11928. "license": [
  11929. "BSD-3-Clause"
  11930. ],
  11931. "authors": [
  11932. {
  11933. "name": "Arne Blankerts",
  11934. "email": "arne@blankerts.de",
  11935. "role": "Developer"
  11936. }
  11937. ],
  11938. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11939. "support": {
  11940. "issues": "https://github.com/theseer/tokenizer/issues",
  11941. "source": "https://github.com/theseer/tokenizer/tree/master"
  11942. },
  11943. "funding": [
  11944. {
  11945. "url": "https://github.com/theseer",
  11946. "type": "github"
  11947. }
  11948. ],
  11949. "time": "2020-07-12T23:59:07+00:00"
  11950. }
  11951. ],
  11952. "aliases": [],
  11953. "minimum-stability": "stable",
  11954. "stability-flags": [],
  11955. "prefer-stable": false,
  11956. "prefer-lowest": false,
  11957. "platform": {
  11958. "php": "^7.4",
  11959. "ext-ctype": "*",
  11960. "ext-intl": "*",
  11961. "ext-iconv": "*"
  11962. },
  11963. "platform-dev": [],
  11964. "plugin-api-version": "2.0.0"
  11965. }