composer.lock 356 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764
  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": "6d966b11741c351b16ea7821d90d0978",
  8. "packages": [
  9. {
  10. "name": "composer/package-versions-deprecated",
  11. "version": "1.11.99.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/package-versions-deprecated.git",
  15. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c6522afe5540d5fc46675043d3ed5a45a740b27c",
  20. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c",
  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.2"
  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": "2021-05-24T07:46:03+00:00"
  81. },
  82. {
  83. "name": "doctrine/annotations",
  84. "version": "1.13.2",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/doctrine/annotations.git",
  88. "reference": "5b668aef16090008790395c02c893b1ba13f7e08"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/doctrine/annotations/zipball/5b668aef16090008790395c02c893b1ba13f7e08",
  93. "reference": "5b668aef16090008790395c02c893b1ba13f7e08",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "doctrine/lexer": "1.*",
  98. "ext-tokenizer": "*",
  99. "php": "^7.1 || ^8.0",
  100. "psr/cache": "^1 || ^2 || ^3"
  101. },
  102. "require-dev": {
  103. "doctrine/cache": "^1.11 || ^2.0",
  104. "doctrine/coding-standard": "^6.0 || ^8.1",
  105. "phpstan/phpstan": "^0.12.20",
  106. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  107. "symfony/cache": "^4.4 || ^5.2"
  108. },
  109. "type": "library",
  110. "autoload": {
  111. "psr-4": {
  112. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "MIT"
  118. ],
  119. "authors": [
  120. {
  121. "name": "Guilherme Blanco",
  122. "email": "guilhermeblanco@gmail.com"
  123. },
  124. {
  125. "name": "Roman Borschel",
  126. "email": "roman@code-factory.org"
  127. },
  128. {
  129. "name": "Benjamin Eberlei",
  130. "email": "kontakt@beberlei.de"
  131. },
  132. {
  133. "name": "Jonathan Wage",
  134. "email": "jonwage@gmail.com"
  135. },
  136. {
  137. "name": "Johannes Schmitt",
  138. "email": "schmittjoh@gmail.com"
  139. }
  140. ],
  141. "description": "Docblock Annotations Parser",
  142. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  143. "keywords": [
  144. "annotations",
  145. "docblock",
  146. "parser"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/doctrine/annotations/issues",
  150. "source": "https://github.com/doctrine/annotations/tree/1.13.2"
  151. },
  152. "time": "2021-08-05T19:00:23+00:00"
  153. },
  154. {
  155. "name": "doctrine/cache",
  156. "version": "2.1.1",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/doctrine/cache.git",
  160. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  165. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  166. "shasum": ""
  167. },
  168. "require": {
  169. "php": "~7.1 || ^8.0"
  170. },
  171. "conflict": {
  172. "doctrine/common": ">2.2,<2.4"
  173. },
  174. "require-dev": {
  175. "alcaeus/mongo-php-adapter": "^1.1",
  176. "cache/integration-tests": "dev-master",
  177. "doctrine/coding-standard": "^8.0",
  178. "mongodb/mongodb": "^1.1",
  179. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  180. "predis/predis": "~1.0",
  181. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  182. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  183. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  184. },
  185. "suggest": {
  186. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  187. },
  188. "type": "library",
  189. "autoload": {
  190. "psr-4": {
  191. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  192. }
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "MIT"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Guilherme Blanco",
  201. "email": "guilhermeblanco@gmail.com"
  202. },
  203. {
  204. "name": "Roman Borschel",
  205. "email": "roman@code-factory.org"
  206. },
  207. {
  208. "name": "Benjamin Eberlei",
  209. "email": "kontakt@beberlei.de"
  210. },
  211. {
  212. "name": "Jonathan Wage",
  213. "email": "jonwage@gmail.com"
  214. },
  215. {
  216. "name": "Johannes Schmitt",
  217. "email": "schmittjoh@gmail.com"
  218. }
  219. ],
  220. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  221. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  222. "keywords": [
  223. "abstraction",
  224. "apcu",
  225. "cache",
  226. "caching",
  227. "couchdb",
  228. "memcached",
  229. "php",
  230. "redis",
  231. "xcache"
  232. ],
  233. "support": {
  234. "issues": "https://github.com/doctrine/cache/issues",
  235. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  236. },
  237. "funding": [
  238. {
  239. "url": "https://www.doctrine-project.org/sponsorship.html",
  240. "type": "custom"
  241. },
  242. {
  243. "url": "https://www.patreon.com/phpdoctrine",
  244. "type": "patreon"
  245. },
  246. {
  247. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  248. "type": "tidelift"
  249. }
  250. ],
  251. "time": "2021-07-17T14:49:29+00:00"
  252. },
  253. {
  254. "name": "doctrine/collections",
  255. "version": "1.6.8",
  256. "source": {
  257. "type": "git",
  258. "url": "https://github.com/doctrine/collections.git",
  259. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af"
  260. },
  261. "dist": {
  262. "type": "zip",
  263. "url": "https://api.github.com/repos/doctrine/collections/zipball/1958a744696c6bb3bb0d28db2611dc11610e78af",
  264. "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af",
  265. "shasum": ""
  266. },
  267. "require": {
  268. "php": "^7.1.3 || ^8.0"
  269. },
  270. "require-dev": {
  271. "doctrine/coding-standard": "^9.0",
  272. "phpstan/phpstan": "^0.12",
  273. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  274. "vimeo/psalm": "^4.2.1"
  275. },
  276. "type": "library",
  277. "autoload": {
  278. "psr-4": {
  279. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  280. }
  281. },
  282. "notification-url": "https://packagist.org/downloads/",
  283. "license": [
  284. "MIT"
  285. ],
  286. "authors": [
  287. {
  288. "name": "Guilherme Blanco",
  289. "email": "guilhermeblanco@gmail.com"
  290. },
  291. {
  292. "name": "Roman Borschel",
  293. "email": "roman@code-factory.org"
  294. },
  295. {
  296. "name": "Benjamin Eberlei",
  297. "email": "kontakt@beberlei.de"
  298. },
  299. {
  300. "name": "Jonathan Wage",
  301. "email": "jonwage@gmail.com"
  302. },
  303. {
  304. "name": "Johannes Schmitt",
  305. "email": "schmittjoh@gmail.com"
  306. }
  307. ],
  308. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  309. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  310. "keywords": [
  311. "array",
  312. "collections",
  313. "iterators",
  314. "php"
  315. ],
  316. "support": {
  317. "issues": "https://github.com/doctrine/collections/issues",
  318. "source": "https://github.com/doctrine/collections/tree/1.6.8"
  319. },
  320. "time": "2021-08-10T18:51:53+00:00"
  321. },
  322. {
  323. "name": "doctrine/common",
  324. "version": "3.2.0",
  325. "source": {
  326. "type": "git",
  327. "url": "https://github.com/doctrine/common.git",
  328. "reference": "6d970a11479275300b5144e9373ce5feacfa9b91"
  329. },
  330. "dist": {
  331. "type": "zip",
  332. "url": "https://api.github.com/repos/doctrine/common/zipball/6d970a11479275300b5144e9373ce5feacfa9b91",
  333. "reference": "6d970a11479275300b5144e9373ce5feacfa9b91",
  334. "shasum": ""
  335. },
  336. "require": {
  337. "doctrine/persistence": "^2.0",
  338. "php": "^7.1 || ^8.0"
  339. },
  340. "require-dev": {
  341. "doctrine/coding-standard": "^6.0 || ^8.0",
  342. "phpstan/phpstan": "^0.12",
  343. "phpstan/phpstan-phpunit": "^0.12",
  344. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  345. "squizlabs/php_codesniffer": "^3.0",
  346. "symfony/phpunit-bridge": "^4.0.5",
  347. "vimeo/psalm": "^4.4"
  348. },
  349. "type": "library",
  350. "autoload": {
  351. "psr-4": {
  352. "Doctrine\\Common\\": "lib/Doctrine/Common"
  353. }
  354. },
  355. "notification-url": "https://packagist.org/downloads/",
  356. "license": [
  357. "MIT"
  358. ],
  359. "authors": [
  360. {
  361. "name": "Guilherme Blanco",
  362. "email": "guilhermeblanco@gmail.com"
  363. },
  364. {
  365. "name": "Roman Borschel",
  366. "email": "roman@code-factory.org"
  367. },
  368. {
  369. "name": "Benjamin Eberlei",
  370. "email": "kontakt@beberlei.de"
  371. },
  372. {
  373. "name": "Jonathan Wage",
  374. "email": "jonwage@gmail.com"
  375. },
  376. {
  377. "name": "Johannes Schmitt",
  378. "email": "schmittjoh@gmail.com"
  379. },
  380. {
  381. "name": "Marco Pivetta",
  382. "email": "ocramius@gmail.com"
  383. }
  384. ],
  385. "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.",
  386. "homepage": "https://www.doctrine-project.org/projects/common.html",
  387. "keywords": [
  388. "common",
  389. "doctrine",
  390. "php"
  391. ],
  392. "support": {
  393. "issues": "https://github.com/doctrine/common/issues",
  394. "source": "https://github.com/doctrine/common/tree/3.2.0"
  395. },
  396. "funding": [
  397. {
  398. "url": "https://www.doctrine-project.org/sponsorship.html",
  399. "type": "custom"
  400. },
  401. {
  402. "url": "https://www.patreon.com/phpdoctrine",
  403. "type": "patreon"
  404. },
  405. {
  406. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  407. "type": "tidelift"
  408. }
  409. ],
  410. "time": "2021-10-19T06:47:22+00:00"
  411. },
  412. {
  413. "name": "doctrine/dbal",
  414. "version": "3.2.0",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/doctrine/dbal.git",
  418. "reference": "5d54f63541d7bed1156cb5c9b79274ced61890e4"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/doctrine/dbal/zipball/5d54f63541d7bed1156cb5c9b79274ced61890e4",
  423. "reference": "5d54f63541d7bed1156cb5c9b79274ced61890e4",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "composer/package-versions-deprecated": "^1.11.99",
  428. "doctrine/cache": "^1.11|^2.0",
  429. "doctrine/deprecations": "^0.5.3",
  430. "doctrine/event-manager": "^1.0",
  431. "php": "^7.3 || ^8.0",
  432. "psr/cache": "^1|^2|^3",
  433. "psr/log": "^1|^2|^3"
  434. },
  435. "require-dev": {
  436. "doctrine/coding-standard": "9.0.0",
  437. "jetbrains/phpstorm-stubs": "2021.1",
  438. "phpstan/phpstan": "1.2.0",
  439. "phpstan/phpstan-strict-rules": "^1.1",
  440. "phpunit/phpunit": "9.5.10",
  441. "psalm/plugin-phpunit": "0.16.1",
  442. "squizlabs/php_codesniffer": "3.6.1",
  443. "symfony/cache": "^5.2|^6.0",
  444. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0|^6.0",
  445. "vimeo/psalm": "4.13.0"
  446. },
  447. "suggest": {
  448. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  449. },
  450. "bin": [
  451. "bin/doctrine-dbal"
  452. ],
  453. "type": "library",
  454. "autoload": {
  455. "psr-4": {
  456. "Doctrine\\DBAL\\": "src"
  457. }
  458. },
  459. "notification-url": "https://packagist.org/downloads/",
  460. "license": [
  461. "MIT"
  462. ],
  463. "authors": [
  464. {
  465. "name": "Guilherme Blanco",
  466. "email": "guilhermeblanco@gmail.com"
  467. },
  468. {
  469. "name": "Roman Borschel",
  470. "email": "roman@code-factory.org"
  471. },
  472. {
  473. "name": "Benjamin Eberlei",
  474. "email": "kontakt@beberlei.de"
  475. },
  476. {
  477. "name": "Jonathan Wage",
  478. "email": "jonwage@gmail.com"
  479. }
  480. ],
  481. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  482. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  483. "keywords": [
  484. "abstraction",
  485. "database",
  486. "db2",
  487. "dbal",
  488. "mariadb",
  489. "mssql",
  490. "mysql",
  491. "oci8",
  492. "oracle",
  493. "pdo",
  494. "pgsql",
  495. "postgresql",
  496. "queryobject",
  497. "sasql",
  498. "sql",
  499. "sqlite",
  500. "sqlserver",
  501. "sqlsrv"
  502. ],
  503. "support": {
  504. "issues": "https://github.com/doctrine/dbal/issues",
  505. "source": "https://github.com/doctrine/dbal/tree/3.2.0"
  506. },
  507. "funding": [
  508. {
  509. "url": "https://www.doctrine-project.org/sponsorship.html",
  510. "type": "custom"
  511. },
  512. {
  513. "url": "https://www.patreon.com/phpdoctrine",
  514. "type": "patreon"
  515. },
  516. {
  517. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  518. "type": "tidelift"
  519. }
  520. ],
  521. "time": "2021-11-26T21:00:12+00:00"
  522. },
  523. {
  524. "name": "doctrine/deprecations",
  525. "version": "v0.5.3",
  526. "source": {
  527. "type": "git",
  528. "url": "https://github.com/doctrine/deprecations.git",
  529. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  530. },
  531. "dist": {
  532. "type": "zip",
  533. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  534. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  535. "shasum": ""
  536. },
  537. "require": {
  538. "php": "^7.1|^8.0"
  539. },
  540. "require-dev": {
  541. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  542. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  543. "psr/log": "^1.0"
  544. },
  545. "suggest": {
  546. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  547. },
  548. "type": "library",
  549. "autoload": {
  550. "psr-4": {
  551. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  552. }
  553. },
  554. "notification-url": "https://packagist.org/downloads/",
  555. "license": [
  556. "MIT"
  557. ],
  558. "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.",
  559. "homepage": "https://www.doctrine-project.org/",
  560. "support": {
  561. "issues": "https://github.com/doctrine/deprecations/issues",
  562. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  563. },
  564. "time": "2021-03-21T12:59:47+00:00"
  565. },
  566. {
  567. "name": "doctrine/doctrine-bundle",
  568. "version": "2.5.2",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/doctrine/DoctrineBundle.git",
  572. "reference": "5b77477ba2981a00b423d1bb17084b87eb57a4a5"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/5b77477ba2981a00b423d1bb17084b87eb57a4a5",
  577. "reference": "5b77477ba2981a00b423d1bb17084b87eb57a4a5",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "doctrine/annotations": "^1",
  582. "doctrine/cache": "^1.11 || ^2.0",
  583. "doctrine/dbal": "^2.13.1|^3.1",
  584. "doctrine/persistence": "^2.2",
  585. "doctrine/sql-formatter": "^1.0.1",
  586. "php": "^7.1 || ^8.0",
  587. "symfony/cache": "^4.3.3|^5.0|^6.0",
  588. "symfony/config": "^4.4.3|^5.0|^6.0",
  589. "symfony/console": "^3.4.30|^4.3.3|^5.0|^6.0",
  590. "symfony/dependency-injection": "^4.3.3|^5.0|^6.0",
  591. "symfony/deprecation-contracts": "^2.1|^3",
  592. "symfony/doctrine-bridge": "^4.4.22|^5.2.7|^6.0",
  593. "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0|^6.0",
  594. "symfony/service-contracts": "^1.1.1|^2.0|^3"
  595. },
  596. "conflict": {
  597. "doctrine/orm": "<2.9",
  598. "twig/twig": "<1.34|>=2.0,<2.4"
  599. },
  600. "require-dev": {
  601. "doctrine/coding-standard": "^9.0",
  602. "doctrine/orm": "^2.9",
  603. "friendsofphp/proxy-manager-lts": "^1.0",
  604. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.3 || ^10.0",
  605. "psalm/plugin-phpunit": "^0.16.1",
  606. "psalm/plugin-symfony": "^3",
  607. "symfony/phpunit-bridge": "^5.2|^6.0",
  608. "symfony/property-info": "^4.3.3|^5.0|^6.0",
  609. "symfony/proxy-manager-bridge": "^3.4|^4.3.3|^5.0|^6.0",
  610. "symfony/security-bundle": "^4.4|^5.0|^6.0",
  611. "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0|^6.0",
  612. "symfony/validator": "^3.4.30|^4.3.3|^5.0|^6.0",
  613. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0|^6.0",
  614. "symfony/yaml": "^3.4.30|^4.3.3|^5.0|^6.0",
  615. "twig/twig": "^1.34|^2.12|^3.0",
  616. "vimeo/psalm": "^4.7"
  617. },
  618. "suggest": {
  619. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  620. "ext-pdo": "*",
  621. "symfony/web-profiler-bundle": "To use the data collector."
  622. },
  623. "type": "symfony-bundle",
  624. "autoload": {
  625. "psr-4": {
  626. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  627. }
  628. },
  629. "notification-url": "https://packagist.org/downloads/",
  630. "license": [
  631. "MIT"
  632. ],
  633. "authors": [
  634. {
  635. "name": "Fabien Potencier",
  636. "email": "fabien@symfony.com"
  637. },
  638. {
  639. "name": "Benjamin Eberlei",
  640. "email": "kontakt@beberlei.de"
  641. },
  642. {
  643. "name": "Symfony Community",
  644. "homepage": "http://symfony.com/contributors"
  645. },
  646. {
  647. "name": "Doctrine Project",
  648. "homepage": "http://www.doctrine-project.org/"
  649. }
  650. ],
  651. "description": "Symfony DoctrineBundle",
  652. "homepage": "http://www.doctrine-project.org",
  653. "keywords": [
  654. "database",
  655. "dbal",
  656. "orm",
  657. "persistence"
  658. ],
  659. "support": {
  660. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  661. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.5.2"
  662. },
  663. "funding": [
  664. {
  665. "url": "https://www.doctrine-project.org/sponsorship.html",
  666. "type": "custom"
  667. },
  668. {
  669. "url": "https://www.patreon.com/phpdoctrine",
  670. "type": "patreon"
  671. },
  672. {
  673. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  674. "type": "tidelift"
  675. }
  676. ],
  677. "time": "2021-12-01T10:13:31+00:00"
  678. },
  679. {
  680. "name": "doctrine/doctrine-migrations-bundle",
  681. "version": "3.2.1",
  682. "source": {
  683. "type": "git",
  684. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  685. "reference": "c1b10bc1466e08bba82640e49c7bbcce0c9853c2"
  686. },
  687. "dist": {
  688. "type": "zip",
  689. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/c1b10bc1466e08bba82640e49c7bbcce0c9853c2",
  690. "reference": "c1b10bc1466e08bba82640e49c7bbcce0c9853c2",
  691. "shasum": ""
  692. },
  693. "require": {
  694. "doctrine/doctrine-bundle": "~1.0|~2.0",
  695. "doctrine/migrations": "^3.2",
  696. "php": "^7.2|^8.0",
  697. "symfony/framework-bundle": "~3.4|~4.0|~5.0|~6.0"
  698. },
  699. "require-dev": {
  700. "doctrine/coding-standard": "^8.0",
  701. "doctrine/orm": "^2.6",
  702. "doctrine/persistence": "^1.3||^2.0",
  703. "phpstan/phpstan": "^0.12",
  704. "phpstan/phpstan-deprecation-rules": "^0.12",
  705. "phpstan/phpstan-phpunit": "^0.12",
  706. "phpstan/phpstan-strict-rules": "^0.12",
  707. "phpunit/phpunit": "^8.0|^9.0",
  708. "vimeo/psalm": "^4.11"
  709. },
  710. "type": "symfony-bundle",
  711. "autoload": {
  712. "psr-4": {
  713. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  714. },
  715. "exclude-from-classmap": [
  716. "/Tests/"
  717. ]
  718. },
  719. "notification-url": "https://packagist.org/downloads/",
  720. "license": [
  721. "MIT"
  722. ],
  723. "authors": [
  724. {
  725. "name": "Fabien Potencier",
  726. "email": "fabien@symfony.com"
  727. },
  728. {
  729. "name": "Doctrine Project",
  730. "homepage": "http://www.doctrine-project.org"
  731. },
  732. {
  733. "name": "Symfony Community",
  734. "homepage": "http://symfony.com/contributors"
  735. }
  736. ],
  737. "description": "Symfony DoctrineMigrationsBundle",
  738. "homepage": "https://www.doctrine-project.org",
  739. "keywords": [
  740. "dbal",
  741. "migrations",
  742. "schema"
  743. ],
  744. "support": {
  745. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  746. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.2.1"
  747. },
  748. "funding": [
  749. {
  750. "url": "https://www.doctrine-project.org/sponsorship.html",
  751. "type": "custom"
  752. },
  753. {
  754. "url": "https://www.patreon.com/phpdoctrine",
  755. "type": "patreon"
  756. },
  757. {
  758. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  759. "type": "tidelift"
  760. }
  761. ],
  762. "time": "2021-11-11T11:08:52+00:00"
  763. },
  764. {
  765. "name": "doctrine/event-manager",
  766. "version": "1.1.1",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/doctrine/event-manager.git",
  770. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  775. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  776. "shasum": ""
  777. },
  778. "require": {
  779. "php": "^7.1 || ^8.0"
  780. },
  781. "conflict": {
  782. "doctrine/common": "<2.9@dev"
  783. },
  784. "require-dev": {
  785. "doctrine/coding-standard": "^6.0",
  786. "phpunit/phpunit": "^7.0"
  787. },
  788. "type": "library",
  789. "extra": {
  790. "branch-alias": {
  791. "dev-master": "1.0.x-dev"
  792. }
  793. },
  794. "autoload": {
  795. "psr-4": {
  796. "Doctrine\\Common\\": "lib/Doctrine/Common"
  797. }
  798. },
  799. "notification-url": "https://packagist.org/downloads/",
  800. "license": [
  801. "MIT"
  802. ],
  803. "authors": [
  804. {
  805. "name": "Guilherme Blanco",
  806. "email": "guilhermeblanco@gmail.com"
  807. },
  808. {
  809. "name": "Roman Borschel",
  810. "email": "roman@code-factory.org"
  811. },
  812. {
  813. "name": "Benjamin Eberlei",
  814. "email": "kontakt@beberlei.de"
  815. },
  816. {
  817. "name": "Jonathan Wage",
  818. "email": "jonwage@gmail.com"
  819. },
  820. {
  821. "name": "Johannes Schmitt",
  822. "email": "schmittjoh@gmail.com"
  823. },
  824. {
  825. "name": "Marco Pivetta",
  826. "email": "ocramius@gmail.com"
  827. }
  828. ],
  829. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  830. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  831. "keywords": [
  832. "event",
  833. "event dispatcher",
  834. "event manager",
  835. "event system",
  836. "events"
  837. ],
  838. "support": {
  839. "issues": "https://github.com/doctrine/event-manager/issues",
  840. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  841. },
  842. "funding": [
  843. {
  844. "url": "https://www.doctrine-project.org/sponsorship.html",
  845. "type": "custom"
  846. },
  847. {
  848. "url": "https://www.patreon.com/phpdoctrine",
  849. "type": "patreon"
  850. },
  851. {
  852. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  853. "type": "tidelift"
  854. }
  855. ],
  856. "time": "2020-05-29T18:28:51+00:00"
  857. },
  858. {
  859. "name": "doctrine/inflector",
  860. "version": "2.0.4",
  861. "source": {
  862. "type": "git",
  863. "url": "https://github.com/doctrine/inflector.git",
  864. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  865. },
  866. "dist": {
  867. "type": "zip",
  868. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  869. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  870. "shasum": ""
  871. },
  872. "require": {
  873. "php": "^7.2 || ^8.0"
  874. },
  875. "require-dev": {
  876. "doctrine/coding-standard": "^8.2",
  877. "phpstan/phpstan": "^0.12",
  878. "phpstan/phpstan-phpunit": "^0.12",
  879. "phpstan/phpstan-strict-rules": "^0.12",
  880. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  881. "vimeo/psalm": "^4.10"
  882. },
  883. "type": "library",
  884. "autoload": {
  885. "psr-4": {
  886. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  887. }
  888. },
  889. "notification-url": "https://packagist.org/downloads/",
  890. "license": [
  891. "MIT"
  892. ],
  893. "authors": [
  894. {
  895. "name": "Guilherme Blanco",
  896. "email": "guilhermeblanco@gmail.com"
  897. },
  898. {
  899. "name": "Roman Borschel",
  900. "email": "roman@code-factory.org"
  901. },
  902. {
  903. "name": "Benjamin Eberlei",
  904. "email": "kontakt@beberlei.de"
  905. },
  906. {
  907. "name": "Jonathan Wage",
  908. "email": "jonwage@gmail.com"
  909. },
  910. {
  911. "name": "Johannes Schmitt",
  912. "email": "schmittjoh@gmail.com"
  913. }
  914. ],
  915. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  916. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  917. "keywords": [
  918. "inflection",
  919. "inflector",
  920. "lowercase",
  921. "manipulation",
  922. "php",
  923. "plural",
  924. "singular",
  925. "strings",
  926. "uppercase",
  927. "words"
  928. ],
  929. "support": {
  930. "issues": "https://github.com/doctrine/inflector/issues",
  931. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  932. },
  933. "funding": [
  934. {
  935. "url": "https://www.doctrine-project.org/sponsorship.html",
  936. "type": "custom"
  937. },
  938. {
  939. "url": "https://www.patreon.com/phpdoctrine",
  940. "type": "patreon"
  941. },
  942. {
  943. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  944. "type": "tidelift"
  945. }
  946. ],
  947. "time": "2021-10-22T20:16:43+00:00"
  948. },
  949. {
  950. "name": "doctrine/instantiator",
  951. "version": "1.4.0",
  952. "source": {
  953. "type": "git",
  954. "url": "https://github.com/doctrine/instantiator.git",
  955. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  956. },
  957. "dist": {
  958. "type": "zip",
  959. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  960. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  961. "shasum": ""
  962. },
  963. "require": {
  964. "php": "^7.1 || ^8.0"
  965. },
  966. "require-dev": {
  967. "doctrine/coding-standard": "^8.0",
  968. "ext-pdo": "*",
  969. "ext-phar": "*",
  970. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  971. "phpstan/phpstan": "^0.12",
  972. "phpstan/phpstan-phpunit": "^0.12",
  973. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  974. },
  975. "type": "library",
  976. "autoload": {
  977. "psr-4": {
  978. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  979. }
  980. },
  981. "notification-url": "https://packagist.org/downloads/",
  982. "license": [
  983. "MIT"
  984. ],
  985. "authors": [
  986. {
  987. "name": "Marco Pivetta",
  988. "email": "ocramius@gmail.com",
  989. "homepage": "https://ocramius.github.io/"
  990. }
  991. ],
  992. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  993. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  994. "keywords": [
  995. "constructor",
  996. "instantiate"
  997. ],
  998. "support": {
  999. "issues": "https://github.com/doctrine/instantiator/issues",
  1000. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  1001. },
  1002. "funding": [
  1003. {
  1004. "url": "https://www.doctrine-project.org/sponsorship.html",
  1005. "type": "custom"
  1006. },
  1007. {
  1008. "url": "https://www.patreon.com/phpdoctrine",
  1009. "type": "patreon"
  1010. },
  1011. {
  1012. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1013. "type": "tidelift"
  1014. }
  1015. ],
  1016. "time": "2020-11-10T18:47:58+00:00"
  1017. },
  1018. {
  1019. "name": "doctrine/lexer",
  1020. "version": "1.2.1",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/doctrine/lexer.git",
  1024. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1029. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1030. "shasum": ""
  1031. },
  1032. "require": {
  1033. "php": "^7.2 || ^8.0"
  1034. },
  1035. "require-dev": {
  1036. "doctrine/coding-standard": "^6.0",
  1037. "phpstan/phpstan": "^0.11.8",
  1038. "phpunit/phpunit": "^8.2"
  1039. },
  1040. "type": "library",
  1041. "extra": {
  1042. "branch-alias": {
  1043. "dev-master": "1.2.x-dev"
  1044. }
  1045. },
  1046. "autoload": {
  1047. "psr-4": {
  1048. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1049. }
  1050. },
  1051. "notification-url": "https://packagist.org/downloads/",
  1052. "license": [
  1053. "MIT"
  1054. ],
  1055. "authors": [
  1056. {
  1057. "name": "Guilherme Blanco",
  1058. "email": "guilhermeblanco@gmail.com"
  1059. },
  1060. {
  1061. "name": "Roman Borschel",
  1062. "email": "roman@code-factory.org"
  1063. },
  1064. {
  1065. "name": "Johannes Schmitt",
  1066. "email": "schmittjoh@gmail.com"
  1067. }
  1068. ],
  1069. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1070. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1071. "keywords": [
  1072. "annotations",
  1073. "docblock",
  1074. "lexer",
  1075. "parser",
  1076. "php"
  1077. ],
  1078. "support": {
  1079. "issues": "https://github.com/doctrine/lexer/issues",
  1080. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1081. },
  1082. "funding": [
  1083. {
  1084. "url": "https://www.doctrine-project.org/sponsorship.html",
  1085. "type": "custom"
  1086. },
  1087. {
  1088. "url": "https://www.patreon.com/phpdoctrine",
  1089. "type": "patreon"
  1090. },
  1091. {
  1092. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1093. "type": "tidelift"
  1094. }
  1095. ],
  1096. "time": "2020-05-25T17:44:05+00:00"
  1097. },
  1098. {
  1099. "name": "doctrine/migrations",
  1100. "version": "3.3.2",
  1101. "source": {
  1102. "type": "git",
  1103. "url": "https://github.com/doctrine/migrations.git",
  1104. "reference": "b6e43bb5815f4dbb88c79a0fef1c669dfba52d58"
  1105. },
  1106. "dist": {
  1107. "type": "zip",
  1108. "url": "https://api.github.com/repos/doctrine/migrations/zipball/b6e43bb5815f4dbb88c79a0fef1c669dfba52d58",
  1109. "reference": "b6e43bb5815f4dbb88c79a0fef1c669dfba52d58",
  1110. "shasum": ""
  1111. },
  1112. "require": {
  1113. "composer/package-versions-deprecated": "^1.8",
  1114. "doctrine/dbal": "^2.11 || ^3.0",
  1115. "doctrine/deprecations": "^0.5.3",
  1116. "doctrine/event-manager": "^1.0",
  1117. "friendsofphp/proxy-manager-lts": "^1.0",
  1118. "php": "^7.2 || ^8.0",
  1119. "psr/log": "^1.1.3 || ^2 || ^3",
  1120. "symfony/console": "^3.4 || ^4.4.16 || ^5.0 || ^6.0",
  1121. "symfony/stopwatch": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1122. },
  1123. "require-dev": {
  1124. "doctrine/coding-standard": "^8.0",
  1125. "doctrine/orm": "^2.6",
  1126. "doctrine/persistence": "^1.3 || ^2.0",
  1127. "doctrine/sql-formatter": "^1.0",
  1128. "ergebnis/composer-normalize": "^2.9",
  1129. "ext-pdo_sqlite": "*",
  1130. "phpstan/phpstan": "^0.12",
  1131. "phpstan/phpstan-deprecation-rules": "^0.12",
  1132. "phpstan/phpstan-phpunit": "^0.12",
  1133. "phpstan/phpstan-strict-rules": "^0.12",
  1134. "phpstan/phpstan-symfony": "^0.12",
  1135. "phpunit/phpunit": "^8.5 || ^9.4",
  1136. "symfony/cache": "^3.4.26 || ~4.1.12 || ^4.2.7 || ^5.0 || ^6.0",
  1137. "symfony/process": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1138. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1139. },
  1140. "suggest": {
  1141. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1142. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1143. },
  1144. "bin": [
  1145. "bin/doctrine-migrations"
  1146. ],
  1147. "type": "library",
  1148. "extra": {
  1149. "composer-normalize": {
  1150. "indent-size": 4,
  1151. "indent-style": "space"
  1152. }
  1153. },
  1154. "autoload": {
  1155. "psr-4": {
  1156. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1157. }
  1158. },
  1159. "notification-url": "https://packagist.org/downloads/",
  1160. "license": [
  1161. "MIT"
  1162. ],
  1163. "authors": [
  1164. {
  1165. "name": "Benjamin Eberlei",
  1166. "email": "kontakt@beberlei.de"
  1167. },
  1168. {
  1169. "name": "Jonathan Wage",
  1170. "email": "jonwage@gmail.com"
  1171. },
  1172. {
  1173. "name": "Michael Simonson",
  1174. "email": "contact@mikesimonson.com"
  1175. }
  1176. ],
  1177. "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.",
  1178. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1179. "keywords": [
  1180. "database",
  1181. "dbal",
  1182. "migrations"
  1183. ],
  1184. "support": {
  1185. "issues": "https://github.com/doctrine/migrations/issues",
  1186. "source": "https://github.com/doctrine/migrations/tree/3.3.2"
  1187. },
  1188. "funding": [
  1189. {
  1190. "url": "https://www.doctrine-project.org/sponsorship.html",
  1191. "type": "custom"
  1192. },
  1193. {
  1194. "url": "https://www.patreon.com/phpdoctrine",
  1195. "type": "patreon"
  1196. },
  1197. {
  1198. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1199. "type": "tidelift"
  1200. }
  1201. ],
  1202. "time": "2021-11-12T09:03:27+00:00"
  1203. },
  1204. {
  1205. "name": "doctrine/orm",
  1206. "version": "2.10.4",
  1207. "source": {
  1208. "type": "git",
  1209. "url": "https://github.com/doctrine/orm.git",
  1210. "reference": "cccb2e2fdfed2969afb3d65c5ea82bafdefbe1a7"
  1211. },
  1212. "dist": {
  1213. "type": "zip",
  1214. "url": "https://api.github.com/repos/doctrine/orm/zipball/cccb2e2fdfed2969afb3d65c5ea82bafdefbe1a7",
  1215. "reference": "cccb2e2fdfed2969afb3d65c5ea82bafdefbe1a7",
  1216. "shasum": ""
  1217. },
  1218. "require": {
  1219. "composer/package-versions-deprecated": "^1.8",
  1220. "doctrine/cache": "^1.12.1 || ^2.1.1",
  1221. "doctrine/collections": "^1.5",
  1222. "doctrine/common": "^3.0.3",
  1223. "doctrine/dbal": "^2.13.1 || ^3.1.1",
  1224. "doctrine/deprecations": "^0.5.3",
  1225. "doctrine/event-manager": "^1.1",
  1226. "doctrine/inflector": "^1.4 || ^2.0",
  1227. "doctrine/instantiator": "^1.3",
  1228. "doctrine/lexer": "^1.0",
  1229. "doctrine/persistence": "^2.2",
  1230. "ext-ctype": "*",
  1231. "ext-pdo": "*",
  1232. "php": "^7.1 ||^8.0",
  1233. "psr/cache": "^1 || ^2 || ^3",
  1234. "symfony/console": "^3.0 || ^4.0 || ^5.0 || ^6.0",
  1235. "symfony/polyfill-php72": "^1.23",
  1236. "symfony/polyfill-php80": "^1.15"
  1237. },
  1238. "conflict": {
  1239. "doctrine/annotations": "<1.13 || >= 2.0"
  1240. },
  1241. "require-dev": {
  1242. "doctrine/annotations": "^1.13",
  1243. "doctrine/coding-standard": "^9.0",
  1244. "phpbench/phpbench": "^0.16.10 || ^1.0",
  1245. "phpstan/phpstan": "1.2.0",
  1246. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  1247. "squizlabs/php_codesniffer": "3.6.2",
  1248. "symfony/cache": "^4.4 || ^5.2",
  1249. "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0",
  1250. "vimeo/psalm": "4.15.0"
  1251. },
  1252. "suggest": {
  1253. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0",
  1254. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1255. },
  1256. "bin": [
  1257. "bin/doctrine"
  1258. ],
  1259. "type": "library",
  1260. "autoload": {
  1261. "psr-4": {
  1262. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1263. }
  1264. },
  1265. "notification-url": "https://packagist.org/downloads/",
  1266. "license": [
  1267. "MIT"
  1268. ],
  1269. "authors": [
  1270. {
  1271. "name": "Guilherme Blanco",
  1272. "email": "guilhermeblanco@gmail.com"
  1273. },
  1274. {
  1275. "name": "Roman Borschel",
  1276. "email": "roman@code-factory.org"
  1277. },
  1278. {
  1279. "name": "Benjamin Eberlei",
  1280. "email": "kontakt@beberlei.de"
  1281. },
  1282. {
  1283. "name": "Jonathan Wage",
  1284. "email": "jonwage@gmail.com"
  1285. },
  1286. {
  1287. "name": "Marco Pivetta",
  1288. "email": "ocramius@gmail.com"
  1289. }
  1290. ],
  1291. "description": "Object-Relational-Mapper for PHP",
  1292. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1293. "keywords": [
  1294. "database",
  1295. "orm"
  1296. ],
  1297. "support": {
  1298. "issues": "https://github.com/doctrine/orm/issues",
  1299. "source": "https://github.com/doctrine/orm/tree/2.10.4"
  1300. },
  1301. "time": "2021-12-20T21:23:47+00:00"
  1302. },
  1303. {
  1304. "name": "doctrine/persistence",
  1305. "version": "2.2.3",
  1306. "source": {
  1307. "type": "git",
  1308. "url": "https://github.com/doctrine/persistence.git",
  1309. "reference": "5e7bdbbfe9811c06e1f745d1c166647d5c47d6ee"
  1310. },
  1311. "dist": {
  1312. "type": "zip",
  1313. "url": "https://api.github.com/repos/doctrine/persistence/zipball/5e7bdbbfe9811c06e1f745d1c166647d5c47d6ee",
  1314. "reference": "5e7bdbbfe9811c06e1f745d1c166647d5c47d6ee",
  1315. "shasum": ""
  1316. },
  1317. "require": {
  1318. "doctrine/annotations": "^1.0",
  1319. "doctrine/cache": "^1.11 || ^2.0",
  1320. "doctrine/collections": "^1.0",
  1321. "doctrine/deprecations": "^0.5.3",
  1322. "doctrine/event-manager": "^1.0",
  1323. "php": "^7.1 || ^8.0",
  1324. "psr/cache": "^1.0|^2.0|^3.0"
  1325. },
  1326. "conflict": {
  1327. "doctrine/common": "<2.10@dev"
  1328. },
  1329. "require-dev": {
  1330. "composer/package-versions-deprecated": "^1.11",
  1331. "doctrine/coding-standard": "^6.0 || ^9.0",
  1332. "doctrine/common": "^3.0",
  1333. "phpstan/phpstan": "0.12.84",
  1334. "phpunit/phpunit": "^7.5.20 || ^8.0 || ^9.0",
  1335. "symfony/cache": "^4.4|^5.0",
  1336. "vimeo/psalm": "4.7.0"
  1337. },
  1338. "type": "library",
  1339. "autoload": {
  1340. "psr-4": {
  1341. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1342. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1343. }
  1344. },
  1345. "notification-url": "https://packagist.org/downloads/",
  1346. "license": [
  1347. "MIT"
  1348. ],
  1349. "authors": [
  1350. {
  1351. "name": "Guilherme Blanco",
  1352. "email": "guilhermeblanco@gmail.com"
  1353. },
  1354. {
  1355. "name": "Roman Borschel",
  1356. "email": "roman@code-factory.org"
  1357. },
  1358. {
  1359. "name": "Benjamin Eberlei",
  1360. "email": "kontakt@beberlei.de"
  1361. },
  1362. {
  1363. "name": "Jonathan Wage",
  1364. "email": "jonwage@gmail.com"
  1365. },
  1366. {
  1367. "name": "Johannes Schmitt",
  1368. "email": "schmittjoh@gmail.com"
  1369. },
  1370. {
  1371. "name": "Marco Pivetta",
  1372. "email": "ocramius@gmail.com"
  1373. }
  1374. ],
  1375. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1376. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1377. "keywords": [
  1378. "mapper",
  1379. "object",
  1380. "odm",
  1381. "orm",
  1382. "persistence"
  1383. ],
  1384. "support": {
  1385. "issues": "https://github.com/doctrine/persistence/issues",
  1386. "source": "https://github.com/doctrine/persistence/tree/2.2.3"
  1387. },
  1388. "time": "2021-10-25T19:59:10+00:00"
  1389. },
  1390. {
  1391. "name": "doctrine/sql-formatter",
  1392. "version": "1.1.2",
  1393. "source": {
  1394. "type": "git",
  1395. "url": "https://github.com/doctrine/sql-formatter.git",
  1396. "reference": "20c39c2de286a9d3262cc8ed282a4ae60e265894"
  1397. },
  1398. "dist": {
  1399. "type": "zip",
  1400. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/20c39c2de286a9d3262cc8ed282a4ae60e265894",
  1401. "reference": "20c39c2de286a9d3262cc8ed282a4ae60e265894",
  1402. "shasum": ""
  1403. },
  1404. "require": {
  1405. "php": "^7.1 || ^8.0"
  1406. },
  1407. "require-dev": {
  1408. "bamarni/composer-bin-plugin": "^1.4"
  1409. },
  1410. "bin": [
  1411. "bin/sql-formatter"
  1412. ],
  1413. "type": "library",
  1414. "autoload": {
  1415. "psr-4": {
  1416. "Doctrine\\SqlFormatter\\": "src"
  1417. }
  1418. },
  1419. "notification-url": "https://packagist.org/downloads/",
  1420. "license": [
  1421. "MIT"
  1422. ],
  1423. "authors": [
  1424. {
  1425. "name": "Jeremy Dorn",
  1426. "email": "jeremy@jeremydorn.com",
  1427. "homepage": "http://jeremydorn.com/"
  1428. }
  1429. ],
  1430. "description": "a PHP SQL highlighting library",
  1431. "homepage": "https://github.com/doctrine/sql-formatter/",
  1432. "keywords": [
  1433. "highlight",
  1434. "sql"
  1435. ],
  1436. "support": {
  1437. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1438. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.2"
  1439. },
  1440. "time": "2021-11-05T11:11:14+00:00"
  1441. },
  1442. {
  1443. "name": "egulias/email-validator",
  1444. "version": "3.1.2",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/egulias/EmailValidator.git",
  1448. "reference": "ee0db30118f661fb166bcffbf5d82032df484697"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ee0db30118f661fb166bcffbf5d82032df484697",
  1453. "reference": "ee0db30118f661fb166bcffbf5d82032df484697",
  1454. "shasum": ""
  1455. },
  1456. "require": {
  1457. "doctrine/lexer": "^1.2",
  1458. "php": ">=7.2",
  1459. "symfony/polyfill-intl-idn": "^1.15"
  1460. },
  1461. "require-dev": {
  1462. "php-coveralls/php-coveralls": "^2.2",
  1463. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1464. "vimeo/psalm": "^4"
  1465. },
  1466. "suggest": {
  1467. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1468. },
  1469. "type": "library",
  1470. "extra": {
  1471. "branch-alias": {
  1472. "dev-master": "3.0.x-dev"
  1473. }
  1474. },
  1475. "autoload": {
  1476. "psr-4": {
  1477. "Egulias\\EmailValidator\\": "src"
  1478. }
  1479. },
  1480. "notification-url": "https://packagist.org/downloads/",
  1481. "license": [
  1482. "MIT"
  1483. ],
  1484. "authors": [
  1485. {
  1486. "name": "Eduardo Gulias Davis"
  1487. }
  1488. ],
  1489. "description": "A library for validating emails against several RFCs",
  1490. "homepage": "https://github.com/egulias/EmailValidator",
  1491. "keywords": [
  1492. "email",
  1493. "emailvalidation",
  1494. "emailvalidator",
  1495. "validation",
  1496. "validator"
  1497. ],
  1498. "support": {
  1499. "issues": "https://github.com/egulias/EmailValidator/issues",
  1500. "source": "https://github.com/egulias/EmailValidator/tree/3.1.2"
  1501. },
  1502. "funding": [
  1503. {
  1504. "url": "https://github.com/egulias",
  1505. "type": "github"
  1506. }
  1507. ],
  1508. "time": "2021-10-11T09:18:27+00:00"
  1509. },
  1510. {
  1511. "name": "friendsofphp/proxy-manager-lts",
  1512. "version": "v1.0.5",
  1513. "source": {
  1514. "type": "git",
  1515. "url": "https://github.com/FriendsOfPHP/proxy-manager-lts.git",
  1516. "reference": "006aa5d32f887a4db4353b13b5b5095613e0611f"
  1517. },
  1518. "dist": {
  1519. "type": "zip",
  1520. "url": "https://api.github.com/repos/FriendsOfPHP/proxy-manager-lts/zipball/006aa5d32f887a4db4353b13b5b5095613e0611f",
  1521. "reference": "006aa5d32f887a4db4353b13b5b5095613e0611f",
  1522. "shasum": ""
  1523. },
  1524. "require": {
  1525. "laminas/laminas-code": "~3.4.1|^4.0",
  1526. "php": ">=7.1",
  1527. "symfony/filesystem": "^4.4.17|^5.0|^6.0"
  1528. },
  1529. "conflict": {
  1530. "laminas/laminas-stdlib": "<3.2.1",
  1531. "zendframework/zend-stdlib": "<3.2.1"
  1532. },
  1533. "replace": {
  1534. "ocramius/proxy-manager": "^2.1"
  1535. },
  1536. "require-dev": {
  1537. "ext-phar": "*",
  1538. "symfony/phpunit-bridge": "^5.2|^6.0"
  1539. },
  1540. "type": "library",
  1541. "extra": {
  1542. "thanks": {
  1543. "name": "ocramius/proxy-manager",
  1544. "url": "https://github.com/Ocramius/ProxyManager"
  1545. }
  1546. },
  1547. "autoload": {
  1548. "psr-4": {
  1549. "ProxyManager\\": "src/ProxyManager"
  1550. }
  1551. },
  1552. "notification-url": "https://packagist.org/downloads/",
  1553. "license": [
  1554. "MIT"
  1555. ],
  1556. "authors": [
  1557. {
  1558. "name": "Marco Pivetta",
  1559. "email": "ocramius@gmail.com",
  1560. "homepage": "http://ocramius.github.io/"
  1561. },
  1562. {
  1563. "name": "Nicolas Grekas",
  1564. "email": "p@tchwork.com"
  1565. }
  1566. ],
  1567. "description": "Adding support for a wider range of PHP versions to ocramius/proxy-manager",
  1568. "homepage": "https://github.com/FriendsOfPHP/proxy-manager-lts",
  1569. "keywords": [
  1570. "aop",
  1571. "lazy loading",
  1572. "proxy",
  1573. "proxy pattern",
  1574. "service proxies"
  1575. ],
  1576. "support": {
  1577. "issues": "https://github.com/FriendsOfPHP/proxy-manager-lts/issues",
  1578. "source": "https://github.com/FriendsOfPHP/proxy-manager-lts/tree/v1.0.5"
  1579. },
  1580. "funding": [
  1581. {
  1582. "url": "https://github.com/Ocramius",
  1583. "type": "github"
  1584. },
  1585. {
  1586. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  1587. "type": "tidelift"
  1588. }
  1589. ],
  1590. "time": "2021-05-22T16:11:15+00:00"
  1591. },
  1592. {
  1593. "name": "laminas/laminas-code",
  1594. "version": "3.4.1",
  1595. "source": {
  1596. "type": "git",
  1597. "url": "https://github.com/laminas/laminas-code.git",
  1598. "reference": "1cb8f203389ab1482bf89c0e70a04849bacd7766"
  1599. },
  1600. "dist": {
  1601. "type": "zip",
  1602. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/1cb8f203389ab1482bf89c0e70a04849bacd7766",
  1603. "reference": "1cb8f203389ab1482bf89c0e70a04849bacd7766",
  1604. "shasum": ""
  1605. },
  1606. "require": {
  1607. "laminas/laminas-eventmanager": "^2.6 || ^3.0",
  1608. "laminas/laminas-zendframework-bridge": "^1.0",
  1609. "php": "^7.1"
  1610. },
  1611. "conflict": {
  1612. "phpspec/prophecy": "<1.9.0"
  1613. },
  1614. "replace": {
  1615. "zendframework/zend-code": "self.version"
  1616. },
  1617. "require-dev": {
  1618. "doctrine/annotations": "^1.7",
  1619. "ext-phar": "*",
  1620. "laminas/laminas-coding-standard": "^1.0",
  1621. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  1622. "phpunit/phpunit": "^7.5.16 || ^8.4"
  1623. },
  1624. "suggest": {
  1625. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1626. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1627. },
  1628. "type": "library",
  1629. "extra": {
  1630. "branch-alias": {
  1631. "dev-master": "3.4.x-dev",
  1632. "dev-develop": "3.5.x-dev",
  1633. "dev-dev-4.0": "4.0.x-dev"
  1634. }
  1635. },
  1636. "autoload": {
  1637. "psr-4": {
  1638. "Laminas\\Code\\": "src/"
  1639. }
  1640. },
  1641. "notification-url": "https://packagist.org/downloads/",
  1642. "license": [
  1643. "BSD-3-Clause"
  1644. ],
  1645. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1646. "homepage": "https://laminas.dev",
  1647. "keywords": [
  1648. "code",
  1649. "laminas"
  1650. ],
  1651. "support": {
  1652. "chat": "https://laminas.dev/chat",
  1653. "docs": "https://docs.laminas.dev/laminas-code/",
  1654. "forum": "https://discourse.laminas.dev",
  1655. "issues": "https://github.com/laminas/laminas-code/issues",
  1656. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1657. "source": "https://github.com/laminas/laminas-code"
  1658. },
  1659. "time": "2019-12-31T16:28:24+00:00"
  1660. },
  1661. {
  1662. "name": "laminas/laminas-eventmanager",
  1663. "version": "3.4.0",
  1664. "source": {
  1665. "type": "git",
  1666. "url": "https://github.com/laminas/laminas-eventmanager.git",
  1667. "reference": "a93fd278c97b2d41ebbce5ba048a24e3e6f580ba"
  1668. },
  1669. "dist": {
  1670. "type": "zip",
  1671. "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/a93fd278c97b2d41ebbce5ba048a24e3e6f580ba",
  1672. "reference": "a93fd278c97b2d41ebbce5ba048a24e3e6f580ba",
  1673. "shasum": ""
  1674. },
  1675. "require": {
  1676. "php": "^7.3 || ~8.0.0 || ~8.1.0"
  1677. },
  1678. "conflict": {
  1679. "zendframework/zend-eventmanager": "*"
  1680. },
  1681. "require-dev": {
  1682. "container-interop/container-interop": "^1.1",
  1683. "laminas/laminas-coding-standard": "~2.2.1",
  1684. "laminas/laminas-stdlib": "^3.6",
  1685. "phpbench/phpbench": "^1.1",
  1686. "phpspec/prophecy-phpunit": "^2.0",
  1687. "phpunit/phpunit": "^9.5.5"
  1688. },
  1689. "suggest": {
  1690. "container-interop/container-interop": "^1.1, to use the lazy listeners feature",
  1691. "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  1692. },
  1693. "type": "library",
  1694. "autoload": {
  1695. "psr-4": {
  1696. "Laminas\\EventManager\\": "src/"
  1697. }
  1698. },
  1699. "notification-url": "https://packagist.org/downloads/",
  1700. "license": [
  1701. "BSD-3-Clause"
  1702. ],
  1703. "description": "Trigger and listen to events within a PHP application",
  1704. "homepage": "https://laminas.dev",
  1705. "keywords": [
  1706. "event",
  1707. "eventmanager",
  1708. "events",
  1709. "laminas"
  1710. ],
  1711. "support": {
  1712. "chat": "https://laminas.dev/chat",
  1713. "docs": "https://docs.laminas.dev/laminas-eventmanager/",
  1714. "forum": "https://discourse.laminas.dev",
  1715. "issues": "https://github.com/laminas/laminas-eventmanager/issues",
  1716. "rss": "https://github.com/laminas/laminas-eventmanager/releases.atom",
  1717. "source": "https://github.com/laminas/laminas-eventmanager"
  1718. },
  1719. "funding": [
  1720. {
  1721. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1722. "type": "community_bridge"
  1723. }
  1724. ],
  1725. "time": "2021-09-07T22:35:32+00:00"
  1726. },
  1727. {
  1728. "name": "laminas/laminas-zendframework-bridge",
  1729. "version": "1.4.1",
  1730. "source": {
  1731. "type": "git",
  1732. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  1733. "reference": "88bf037259869891afce6504cacc4f8a07b24d0f"
  1734. },
  1735. "dist": {
  1736. "type": "zip",
  1737. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/88bf037259869891afce6504cacc4f8a07b24d0f",
  1738. "reference": "88bf037259869891afce6504cacc4f8a07b24d0f",
  1739. "shasum": ""
  1740. },
  1741. "require": {
  1742. "php": "^7.3 || ~8.0.0 || ~8.1.0"
  1743. },
  1744. "require-dev": {
  1745. "phpunit/phpunit": "^9.3",
  1746. "psalm/plugin-phpunit": "^0.15.1",
  1747. "squizlabs/php_codesniffer": "^3.5",
  1748. "vimeo/psalm": "^4.6"
  1749. },
  1750. "type": "library",
  1751. "extra": {
  1752. "laminas": {
  1753. "module": "Laminas\\ZendFrameworkBridge"
  1754. }
  1755. },
  1756. "autoload": {
  1757. "files": [
  1758. "src/autoload.php"
  1759. ],
  1760. "psr-4": {
  1761. "Laminas\\ZendFrameworkBridge\\": "src//"
  1762. }
  1763. },
  1764. "notification-url": "https://packagist.org/downloads/",
  1765. "license": [
  1766. "BSD-3-Clause"
  1767. ],
  1768. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  1769. "keywords": [
  1770. "ZendFramework",
  1771. "autoloading",
  1772. "laminas",
  1773. "zf"
  1774. ],
  1775. "support": {
  1776. "forum": "https://discourse.laminas.dev/",
  1777. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  1778. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  1779. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  1780. },
  1781. "funding": [
  1782. {
  1783. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1784. "type": "community_bridge"
  1785. }
  1786. ],
  1787. "time": "2021-12-21T14:34:37+00:00"
  1788. },
  1789. {
  1790. "name": "monolog/monolog",
  1791. "version": "2.3.5",
  1792. "source": {
  1793. "type": "git",
  1794. "url": "https://github.com/Seldaek/monolog.git",
  1795. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9"
  1796. },
  1797. "dist": {
  1798. "type": "zip",
  1799. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
  1800. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
  1801. "shasum": ""
  1802. },
  1803. "require": {
  1804. "php": ">=7.2",
  1805. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1806. },
  1807. "provide": {
  1808. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1809. },
  1810. "require-dev": {
  1811. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1812. "doctrine/couchdb": "~1.0@dev",
  1813. "elasticsearch/elasticsearch": "^7",
  1814. "graylog2/gelf-php": "^1.4.2",
  1815. "mongodb/mongodb": "^1.8",
  1816. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1817. "php-console/php-console": "^3.1.3",
  1818. "phpspec/prophecy": "^1.6.1",
  1819. "phpstan/phpstan": "^0.12.91",
  1820. "phpunit/phpunit": "^8.5",
  1821. "predis/predis": "^1.1",
  1822. "rollbar/rollbar": "^1.3",
  1823. "ruflin/elastica": ">=0.90@dev",
  1824. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1825. },
  1826. "suggest": {
  1827. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1828. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1829. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1830. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1831. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1832. "ext-mbstring": "Allow to work properly with unicode symbols",
  1833. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1834. "ext-openssl": "Required to send log messages using SSL",
  1835. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1836. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1837. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1838. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1839. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1840. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1841. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1842. },
  1843. "type": "library",
  1844. "extra": {
  1845. "branch-alias": {
  1846. "dev-main": "2.x-dev"
  1847. }
  1848. },
  1849. "autoload": {
  1850. "psr-4": {
  1851. "Monolog\\": "src/Monolog"
  1852. }
  1853. },
  1854. "notification-url": "https://packagist.org/downloads/",
  1855. "license": [
  1856. "MIT"
  1857. ],
  1858. "authors": [
  1859. {
  1860. "name": "Jordi Boggiano",
  1861. "email": "j.boggiano@seld.be",
  1862. "homepage": "https://seld.be"
  1863. }
  1864. ],
  1865. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1866. "homepage": "https://github.com/Seldaek/monolog",
  1867. "keywords": [
  1868. "log",
  1869. "logging",
  1870. "psr-3"
  1871. ],
  1872. "support": {
  1873. "issues": "https://github.com/Seldaek/monolog/issues",
  1874. "source": "https://github.com/Seldaek/monolog/tree/2.3.5"
  1875. },
  1876. "funding": [
  1877. {
  1878. "url": "https://github.com/Seldaek",
  1879. "type": "github"
  1880. },
  1881. {
  1882. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1883. "type": "tidelift"
  1884. }
  1885. ],
  1886. "time": "2021-10-01T21:08:31+00:00"
  1887. },
  1888. {
  1889. "name": "phpdocumentor/reflection-common",
  1890. "version": "2.2.0",
  1891. "source": {
  1892. "type": "git",
  1893. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1894. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1895. },
  1896. "dist": {
  1897. "type": "zip",
  1898. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1899. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1900. "shasum": ""
  1901. },
  1902. "require": {
  1903. "php": "^7.2 || ^8.0"
  1904. },
  1905. "type": "library",
  1906. "extra": {
  1907. "branch-alias": {
  1908. "dev-2.x": "2.x-dev"
  1909. }
  1910. },
  1911. "autoload": {
  1912. "psr-4": {
  1913. "phpDocumentor\\Reflection\\": "src/"
  1914. }
  1915. },
  1916. "notification-url": "https://packagist.org/downloads/",
  1917. "license": [
  1918. "MIT"
  1919. ],
  1920. "authors": [
  1921. {
  1922. "name": "Jaap van Otterdijk",
  1923. "email": "opensource@ijaap.nl"
  1924. }
  1925. ],
  1926. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1927. "homepage": "http://www.phpdoc.org",
  1928. "keywords": [
  1929. "FQSEN",
  1930. "phpDocumentor",
  1931. "phpdoc",
  1932. "reflection",
  1933. "static analysis"
  1934. ],
  1935. "support": {
  1936. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1937. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1938. },
  1939. "time": "2020-06-27T09:03:43+00:00"
  1940. },
  1941. {
  1942. "name": "phpdocumentor/reflection-docblock",
  1943. "version": "5.3.0",
  1944. "source": {
  1945. "type": "git",
  1946. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1947. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  1948. },
  1949. "dist": {
  1950. "type": "zip",
  1951. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  1952. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  1953. "shasum": ""
  1954. },
  1955. "require": {
  1956. "ext-filter": "*",
  1957. "php": "^7.2 || ^8.0",
  1958. "phpdocumentor/reflection-common": "^2.2",
  1959. "phpdocumentor/type-resolver": "^1.3",
  1960. "webmozart/assert": "^1.9.1"
  1961. },
  1962. "require-dev": {
  1963. "mockery/mockery": "~1.3.2",
  1964. "psalm/phar": "^4.8"
  1965. },
  1966. "type": "library",
  1967. "extra": {
  1968. "branch-alias": {
  1969. "dev-master": "5.x-dev"
  1970. }
  1971. },
  1972. "autoload": {
  1973. "psr-4": {
  1974. "phpDocumentor\\Reflection\\": "src"
  1975. }
  1976. },
  1977. "notification-url": "https://packagist.org/downloads/",
  1978. "license": [
  1979. "MIT"
  1980. ],
  1981. "authors": [
  1982. {
  1983. "name": "Mike van Riel",
  1984. "email": "me@mikevanriel.com"
  1985. },
  1986. {
  1987. "name": "Jaap van Otterdijk",
  1988. "email": "account@ijaap.nl"
  1989. }
  1990. ],
  1991. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1992. "support": {
  1993. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1994. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  1995. },
  1996. "time": "2021-10-19T17:43:47+00:00"
  1997. },
  1998. {
  1999. "name": "phpdocumentor/type-resolver",
  2000. "version": "1.5.1",
  2001. "source": {
  2002. "type": "git",
  2003. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2004. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae"
  2005. },
  2006. "dist": {
  2007. "type": "zip",
  2008. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  2009. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  2010. "shasum": ""
  2011. },
  2012. "require": {
  2013. "php": "^7.2 || ^8.0",
  2014. "phpdocumentor/reflection-common": "^2.0"
  2015. },
  2016. "require-dev": {
  2017. "ext-tokenizer": "*",
  2018. "psalm/phar": "^4.8"
  2019. },
  2020. "type": "library",
  2021. "extra": {
  2022. "branch-alias": {
  2023. "dev-1.x": "1.x-dev"
  2024. }
  2025. },
  2026. "autoload": {
  2027. "psr-4": {
  2028. "phpDocumentor\\Reflection\\": "src"
  2029. }
  2030. },
  2031. "notification-url": "https://packagist.org/downloads/",
  2032. "license": [
  2033. "MIT"
  2034. ],
  2035. "authors": [
  2036. {
  2037. "name": "Mike van Riel",
  2038. "email": "me@mikevanriel.com"
  2039. }
  2040. ],
  2041. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2042. "support": {
  2043. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2044. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.5.1"
  2045. },
  2046. "time": "2021-10-02T14:08:47+00:00"
  2047. },
  2048. {
  2049. "name": "psr/cache",
  2050. "version": "1.0.1",
  2051. "source": {
  2052. "type": "git",
  2053. "url": "https://github.com/php-fig/cache.git",
  2054. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2055. },
  2056. "dist": {
  2057. "type": "zip",
  2058. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2059. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2060. "shasum": ""
  2061. },
  2062. "require": {
  2063. "php": ">=5.3.0"
  2064. },
  2065. "type": "library",
  2066. "extra": {
  2067. "branch-alias": {
  2068. "dev-master": "1.0.x-dev"
  2069. }
  2070. },
  2071. "autoload": {
  2072. "psr-4": {
  2073. "Psr\\Cache\\": "src/"
  2074. }
  2075. },
  2076. "notification-url": "https://packagist.org/downloads/",
  2077. "license": [
  2078. "MIT"
  2079. ],
  2080. "authors": [
  2081. {
  2082. "name": "PHP-FIG",
  2083. "homepage": "http://www.php-fig.org/"
  2084. }
  2085. ],
  2086. "description": "Common interface for caching libraries",
  2087. "keywords": [
  2088. "cache",
  2089. "psr",
  2090. "psr-6"
  2091. ],
  2092. "support": {
  2093. "source": "https://github.com/php-fig/cache/tree/master"
  2094. },
  2095. "time": "2016-08-06T20:24:11+00:00"
  2096. },
  2097. {
  2098. "name": "psr/container",
  2099. "version": "1.1.1",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://github.com/php-fig/container.git",
  2103. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  2108. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  2109. "shasum": ""
  2110. },
  2111. "require": {
  2112. "php": ">=7.2.0"
  2113. },
  2114. "type": "library",
  2115. "autoload": {
  2116. "psr-4": {
  2117. "Psr\\Container\\": "src/"
  2118. }
  2119. },
  2120. "notification-url": "https://packagist.org/downloads/",
  2121. "license": [
  2122. "MIT"
  2123. ],
  2124. "authors": [
  2125. {
  2126. "name": "PHP-FIG",
  2127. "homepage": "https://www.php-fig.org/"
  2128. }
  2129. ],
  2130. "description": "Common Container Interface (PHP FIG PSR-11)",
  2131. "homepage": "https://github.com/php-fig/container",
  2132. "keywords": [
  2133. "PSR-11",
  2134. "container",
  2135. "container-interface",
  2136. "container-interop",
  2137. "psr"
  2138. ],
  2139. "support": {
  2140. "issues": "https://github.com/php-fig/container/issues",
  2141. "source": "https://github.com/php-fig/container/tree/1.1.1"
  2142. },
  2143. "time": "2021-03-05T17:36:06+00:00"
  2144. },
  2145. {
  2146. "name": "psr/event-dispatcher",
  2147. "version": "1.0.0",
  2148. "source": {
  2149. "type": "git",
  2150. "url": "https://github.com/php-fig/event-dispatcher.git",
  2151. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2152. },
  2153. "dist": {
  2154. "type": "zip",
  2155. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2156. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2157. "shasum": ""
  2158. },
  2159. "require": {
  2160. "php": ">=7.2.0"
  2161. },
  2162. "type": "library",
  2163. "extra": {
  2164. "branch-alias": {
  2165. "dev-master": "1.0.x-dev"
  2166. }
  2167. },
  2168. "autoload": {
  2169. "psr-4": {
  2170. "Psr\\EventDispatcher\\": "src/"
  2171. }
  2172. },
  2173. "notification-url": "https://packagist.org/downloads/",
  2174. "license": [
  2175. "MIT"
  2176. ],
  2177. "authors": [
  2178. {
  2179. "name": "PHP-FIG",
  2180. "homepage": "http://www.php-fig.org/"
  2181. }
  2182. ],
  2183. "description": "Standard interfaces for event handling.",
  2184. "keywords": [
  2185. "events",
  2186. "psr",
  2187. "psr-14"
  2188. ],
  2189. "support": {
  2190. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2191. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2192. },
  2193. "time": "2019-01-08T18:20:26+00:00"
  2194. },
  2195. {
  2196. "name": "psr/link",
  2197. "version": "1.0.0",
  2198. "source": {
  2199. "type": "git",
  2200. "url": "https://github.com/php-fig/link.git",
  2201. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  2202. },
  2203. "dist": {
  2204. "type": "zip",
  2205. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  2206. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  2207. "shasum": ""
  2208. },
  2209. "require": {
  2210. "php": ">=5.3.0"
  2211. },
  2212. "type": "library",
  2213. "extra": {
  2214. "branch-alias": {
  2215. "dev-master": "1.0.x-dev"
  2216. }
  2217. },
  2218. "autoload": {
  2219. "psr-4": {
  2220. "Psr\\Link\\": "src/"
  2221. }
  2222. },
  2223. "notification-url": "https://packagist.org/downloads/",
  2224. "license": [
  2225. "MIT"
  2226. ],
  2227. "authors": [
  2228. {
  2229. "name": "PHP-FIG",
  2230. "homepage": "http://www.php-fig.org/"
  2231. }
  2232. ],
  2233. "description": "Common interfaces for HTTP links",
  2234. "keywords": [
  2235. "http",
  2236. "http-link",
  2237. "link",
  2238. "psr",
  2239. "psr-13",
  2240. "rest"
  2241. ],
  2242. "support": {
  2243. "source": "https://github.com/php-fig/link/tree/master"
  2244. },
  2245. "time": "2016-10-28T16:06:13+00:00"
  2246. },
  2247. {
  2248. "name": "psr/log",
  2249. "version": "1.1.4",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://github.com/php-fig/log.git",
  2253. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2254. },
  2255. "dist": {
  2256. "type": "zip",
  2257. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2258. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2259. "shasum": ""
  2260. },
  2261. "require": {
  2262. "php": ">=5.3.0"
  2263. },
  2264. "type": "library",
  2265. "extra": {
  2266. "branch-alias": {
  2267. "dev-master": "1.1.x-dev"
  2268. }
  2269. },
  2270. "autoload": {
  2271. "psr-4": {
  2272. "Psr\\Log\\": "Psr/Log/"
  2273. }
  2274. },
  2275. "notification-url": "https://packagist.org/downloads/",
  2276. "license": [
  2277. "MIT"
  2278. ],
  2279. "authors": [
  2280. {
  2281. "name": "PHP-FIG",
  2282. "homepage": "https://www.php-fig.org/"
  2283. }
  2284. ],
  2285. "description": "Common interface for logging libraries",
  2286. "homepage": "https://github.com/php-fig/log",
  2287. "keywords": [
  2288. "log",
  2289. "psr",
  2290. "psr-3"
  2291. ],
  2292. "support": {
  2293. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2294. },
  2295. "time": "2021-05-03T11:20:27+00:00"
  2296. },
  2297. {
  2298. "name": "sensio/framework-extra-bundle",
  2299. "version": "v5.6.1",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2303. "reference": "430d14c01836b77c28092883d195a43ce413ee32"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/430d14c01836b77c28092883d195a43ce413ee32",
  2308. "reference": "430d14c01836b77c28092883d195a43ce413ee32",
  2309. "shasum": ""
  2310. },
  2311. "require": {
  2312. "doctrine/annotations": "^1.0",
  2313. "php": ">=7.2.5",
  2314. "symfony/config": "^4.4|^5.0",
  2315. "symfony/dependency-injection": "^4.4|^5.0",
  2316. "symfony/framework-bundle": "^4.4|^5.0",
  2317. "symfony/http-kernel": "^4.4|^5.0"
  2318. },
  2319. "conflict": {
  2320. "doctrine/doctrine-cache-bundle": "<1.3.1",
  2321. "doctrine/persistence": "<1.3"
  2322. },
  2323. "require-dev": {
  2324. "doctrine/dbal": "^2.10|^3.0",
  2325. "doctrine/doctrine-bundle": "^1.11|^2.0",
  2326. "doctrine/orm": "^2.5",
  2327. "nyholm/psr7": "^1.1",
  2328. "symfony/browser-kit": "^4.4|^5.0",
  2329. "symfony/doctrine-bridge": "^4.4|^5.0",
  2330. "symfony/dom-crawler": "^4.4|^5.0",
  2331. "symfony/expression-language": "^4.4|^5.0",
  2332. "symfony/finder": "^4.4|^5.0",
  2333. "symfony/monolog-bridge": "^4.0|^5.0",
  2334. "symfony/monolog-bundle": "^3.2",
  2335. "symfony/phpunit-bridge": "^4.4.9|^5.0.9",
  2336. "symfony/psr-http-message-bridge": "^1.1",
  2337. "symfony/security-bundle": "^4.4|^5.0",
  2338. "symfony/twig-bundle": "^4.4|^5.0",
  2339. "symfony/yaml": "^4.4|^5.0",
  2340. "twig/twig": "^1.34|^2.4|^3.0"
  2341. },
  2342. "type": "symfony-bundle",
  2343. "extra": {
  2344. "branch-alias": {
  2345. "dev-master": "5.6.x-dev"
  2346. }
  2347. },
  2348. "autoload": {
  2349. "psr-4": {
  2350. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  2351. },
  2352. "exclude-from-classmap": [
  2353. "/tests/"
  2354. ]
  2355. },
  2356. "notification-url": "https://packagist.org/downloads/",
  2357. "license": [
  2358. "MIT"
  2359. ],
  2360. "authors": [
  2361. {
  2362. "name": "Fabien Potencier",
  2363. "email": "fabien@symfony.com"
  2364. }
  2365. ],
  2366. "description": "This bundle provides a way to configure your controllers with annotations",
  2367. "keywords": [
  2368. "annotations",
  2369. "controllers"
  2370. ],
  2371. "support": {
  2372. "issues": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/issues",
  2373. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v5.6.1"
  2374. },
  2375. "time": "2020-08-25T19:10:18+00:00"
  2376. },
  2377. {
  2378. "name": "swiftmailer/swiftmailer",
  2379. "version": "v6.3.0",
  2380. "source": {
  2381. "type": "git",
  2382. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2383. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  2384. },
  2385. "dist": {
  2386. "type": "zip",
  2387. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2388. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2389. "shasum": ""
  2390. },
  2391. "require": {
  2392. "egulias/email-validator": "^2.0|^3.1",
  2393. "php": ">=7.0.0",
  2394. "symfony/polyfill-iconv": "^1.0",
  2395. "symfony/polyfill-intl-idn": "^1.10",
  2396. "symfony/polyfill-mbstring": "^1.0"
  2397. },
  2398. "require-dev": {
  2399. "mockery/mockery": "^1.0",
  2400. "symfony/phpunit-bridge": "^4.4|^5.4"
  2401. },
  2402. "suggest": {
  2403. "ext-intl": "Needed to support internationalized email addresses"
  2404. },
  2405. "type": "library",
  2406. "extra": {
  2407. "branch-alias": {
  2408. "dev-master": "6.2-dev"
  2409. }
  2410. },
  2411. "autoload": {
  2412. "files": [
  2413. "lib/swift_required.php"
  2414. ]
  2415. },
  2416. "notification-url": "https://packagist.org/downloads/",
  2417. "license": [
  2418. "MIT"
  2419. ],
  2420. "authors": [
  2421. {
  2422. "name": "Chris Corbyn"
  2423. },
  2424. {
  2425. "name": "Fabien Potencier",
  2426. "email": "fabien@symfony.com"
  2427. }
  2428. ],
  2429. "description": "Swiftmailer, free feature-rich PHP mailer",
  2430. "homepage": "https://swiftmailer.symfony.com",
  2431. "keywords": [
  2432. "email",
  2433. "mail",
  2434. "mailer"
  2435. ],
  2436. "support": {
  2437. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2438. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  2439. },
  2440. "funding": [
  2441. {
  2442. "url": "https://github.com/fabpot",
  2443. "type": "github"
  2444. },
  2445. {
  2446. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  2447. "type": "tidelift"
  2448. }
  2449. ],
  2450. "abandoned": "symfony/mailer",
  2451. "time": "2021-10-18T15:26:12+00:00"
  2452. },
  2453. {
  2454. "name": "symfony/apache-pack",
  2455. "version": "v1.0.1",
  2456. "source": {
  2457. "type": "git",
  2458. "url": "https://github.com/symfony/apache-pack.git",
  2459. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c"
  2460. },
  2461. "dist": {
  2462. "type": "zip",
  2463. "url": "https://api.github.com/repos/symfony/apache-pack/zipball/3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2464. "reference": "3aa5818d73ad2551281fc58a75afd9ca82622e6c",
  2465. "shasum": ""
  2466. },
  2467. "type": "symfony-pack",
  2468. "notification-url": "https://packagist.org/downloads/",
  2469. "license": [
  2470. "MIT"
  2471. ],
  2472. "description": "A pack for Apache support in Symfony",
  2473. "support": {
  2474. "issues": "https://github.com/symfony/apache-pack/issues",
  2475. "source": "https://github.com/symfony/apache-pack/tree/master"
  2476. },
  2477. "time": "2017-12-12T01:46:35+00:00"
  2478. },
  2479. {
  2480. "name": "symfony/asset",
  2481. "version": "v5.4.0",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://github.com/symfony/asset.git",
  2485. "reference": "49e355b57b4b6a5cef1d2dbc4e36cee49369cf7d"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://api.github.com/repos/symfony/asset/zipball/49e355b57b4b6a5cef1d2dbc4e36cee49369cf7d",
  2490. "reference": "49e355b57b4b6a5cef1d2dbc4e36cee49369cf7d",
  2491. "shasum": ""
  2492. },
  2493. "require": {
  2494. "php": ">=7.2.5",
  2495. "symfony/deprecation-contracts": "^2.1|^3",
  2496. "symfony/polyfill-php80": "^1.16"
  2497. },
  2498. "conflict": {
  2499. "symfony/http-foundation": "<5.3"
  2500. },
  2501. "require-dev": {
  2502. "symfony/http-client": "^4.4|^5.0|^6.0",
  2503. "symfony/http-foundation": "^5.3|^6.0",
  2504. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  2505. },
  2506. "suggest": {
  2507. "symfony/http-foundation": ""
  2508. },
  2509. "type": "library",
  2510. "autoload": {
  2511. "psr-4": {
  2512. "Symfony\\Component\\Asset\\": ""
  2513. },
  2514. "exclude-from-classmap": [
  2515. "/Tests/"
  2516. ]
  2517. },
  2518. "notification-url": "https://packagist.org/downloads/",
  2519. "license": [
  2520. "MIT"
  2521. ],
  2522. "authors": [
  2523. {
  2524. "name": "Fabien Potencier",
  2525. "email": "fabien@symfony.com"
  2526. },
  2527. {
  2528. "name": "Symfony Community",
  2529. "homepage": "https://symfony.com/contributors"
  2530. }
  2531. ],
  2532. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2533. "homepage": "https://symfony.com",
  2534. "support": {
  2535. "source": "https://github.com/symfony/asset/tree/v5.4.0"
  2536. },
  2537. "funding": [
  2538. {
  2539. "url": "https://symfony.com/sponsor",
  2540. "type": "custom"
  2541. },
  2542. {
  2543. "url": "https://github.com/fabpot",
  2544. "type": "github"
  2545. },
  2546. {
  2547. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2548. "type": "tidelift"
  2549. }
  2550. ],
  2551. "time": "2021-11-23T10:19:22+00:00"
  2552. },
  2553. {
  2554. "name": "symfony/cache",
  2555. "version": "v5.4.0",
  2556. "source": {
  2557. "type": "git",
  2558. "url": "https://github.com/symfony/cache.git",
  2559. "reference": "d97d6d7f46cb69968f094e329abd987d5ee17c79"
  2560. },
  2561. "dist": {
  2562. "type": "zip",
  2563. "url": "https://api.github.com/repos/symfony/cache/zipball/d97d6d7f46cb69968f094e329abd987d5ee17c79",
  2564. "reference": "d97d6d7f46cb69968f094e329abd987d5ee17c79",
  2565. "shasum": ""
  2566. },
  2567. "require": {
  2568. "php": ">=7.2.5",
  2569. "psr/cache": "^1.0|^2.0",
  2570. "psr/log": "^1.1|^2|^3",
  2571. "symfony/cache-contracts": "^1.1.7|^2",
  2572. "symfony/deprecation-contracts": "^2.1|^3",
  2573. "symfony/polyfill-php73": "^1.9",
  2574. "symfony/polyfill-php80": "^1.16",
  2575. "symfony/service-contracts": "^1.1|^2|^3",
  2576. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2577. },
  2578. "conflict": {
  2579. "doctrine/dbal": "<2.13.1",
  2580. "symfony/dependency-injection": "<4.4",
  2581. "symfony/http-kernel": "<4.4",
  2582. "symfony/var-dumper": "<4.4"
  2583. },
  2584. "provide": {
  2585. "psr/cache-implementation": "1.0|2.0",
  2586. "psr/simple-cache-implementation": "1.0|2.0",
  2587. "symfony/cache-implementation": "1.0|2.0"
  2588. },
  2589. "require-dev": {
  2590. "cache/integration-tests": "dev-master",
  2591. "doctrine/cache": "^1.6|^2.0",
  2592. "doctrine/dbal": "^2.13.1|^3.0",
  2593. "predis/predis": "^1.1",
  2594. "psr/simple-cache": "^1.0|^2.0",
  2595. "symfony/config": "^4.4|^5.0|^6.0",
  2596. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2597. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2598. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2599. "symfony/messenger": "^4.4|^5.0|^6.0",
  2600. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2601. },
  2602. "type": "library",
  2603. "autoload": {
  2604. "psr-4": {
  2605. "Symfony\\Component\\Cache\\": ""
  2606. },
  2607. "exclude-from-classmap": [
  2608. "/Tests/"
  2609. ]
  2610. },
  2611. "notification-url": "https://packagist.org/downloads/",
  2612. "license": [
  2613. "MIT"
  2614. ],
  2615. "authors": [
  2616. {
  2617. "name": "Nicolas Grekas",
  2618. "email": "p@tchwork.com"
  2619. },
  2620. {
  2621. "name": "Symfony Community",
  2622. "homepage": "https://symfony.com/contributors"
  2623. }
  2624. ],
  2625. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  2626. "homepage": "https://symfony.com",
  2627. "keywords": [
  2628. "caching",
  2629. "psr6"
  2630. ],
  2631. "support": {
  2632. "source": "https://github.com/symfony/cache/tree/v5.4.0"
  2633. },
  2634. "funding": [
  2635. {
  2636. "url": "https://symfony.com/sponsor",
  2637. "type": "custom"
  2638. },
  2639. {
  2640. "url": "https://github.com/fabpot",
  2641. "type": "github"
  2642. },
  2643. {
  2644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2645. "type": "tidelift"
  2646. }
  2647. ],
  2648. "time": "2021-11-23T18:51:45+00:00"
  2649. },
  2650. {
  2651. "name": "symfony/cache-contracts",
  2652. "version": "v2.5.0",
  2653. "source": {
  2654. "type": "git",
  2655. "url": "https://github.com/symfony/cache-contracts.git",
  2656. "reference": "ac2e168102a2e06a2624f0379bde94cd5854ced2"
  2657. },
  2658. "dist": {
  2659. "type": "zip",
  2660. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/ac2e168102a2e06a2624f0379bde94cd5854ced2",
  2661. "reference": "ac2e168102a2e06a2624f0379bde94cd5854ced2",
  2662. "shasum": ""
  2663. },
  2664. "require": {
  2665. "php": ">=7.2.5",
  2666. "psr/cache": "^1.0|^2.0|^3.0"
  2667. },
  2668. "suggest": {
  2669. "symfony/cache-implementation": ""
  2670. },
  2671. "type": "library",
  2672. "extra": {
  2673. "branch-alias": {
  2674. "dev-main": "2.5-dev"
  2675. },
  2676. "thanks": {
  2677. "name": "symfony/contracts",
  2678. "url": "https://github.com/symfony/contracts"
  2679. }
  2680. },
  2681. "autoload": {
  2682. "psr-4": {
  2683. "Symfony\\Contracts\\Cache\\": ""
  2684. }
  2685. },
  2686. "notification-url": "https://packagist.org/downloads/",
  2687. "license": [
  2688. "MIT"
  2689. ],
  2690. "authors": [
  2691. {
  2692. "name": "Nicolas Grekas",
  2693. "email": "p@tchwork.com"
  2694. },
  2695. {
  2696. "name": "Symfony Community",
  2697. "homepage": "https://symfony.com/contributors"
  2698. }
  2699. ],
  2700. "description": "Generic abstractions related to caching",
  2701. "homepage": "https://symfony.com",
  2702. "keywords": [
  2703. "abstractions",
  2704. "contracts",
  2705. "decoupling",
  2706. "interfaces",
  2707. "interoperability",
  2708. "standards"
  2709. ],
  2710. "support": {
  2711. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.0"
  2712. },
  2713. "funding": [
  2714. {
  2715. "url": "https://symfony.com/sponsor",
  2716. "type": "custom"
  2717. },
  2718. {
  2719. "url": "https://github.com/fabpot",
  2720. "type": "github"
  2721. },
  2722. {
  2723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2724. "type": "tidelift"
  2725. }
  2726. ],
  2727. "time": "2021-08-17T14:20:01+00:00"
  2728. },
  2729. {
  2730. "name": "symfony/config",
  2731. "version": "v5.4.0",
  2732. "source": {
  2733. "type": "git",
  2734. "url": "https://github.com/symfony/config.git",
  2735. "reference": "e39cf688c80fd79ab0a6a2d05a9facac9b2d534b"
  2736. },
  2737. "dist": {
  2738. "type": "zip",
  2739. "url": "https://api.github.com/repos/symfony/config/zipball/e39cf688c80fd79ab0a6a2d05a9facac9b2d534b",
  2740. "reference": "e39cf688c80fd79ab0a6a2d05a9facac9b2d534b",
  2741. "shasum": ""
  2742. },
  2743. "require": {
  2744. "php": ">=7.2.5",
  2745. "symfony/deprecation-contracts": "^2.1|^3",
  2746. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2747. "symfony/polyfill-ctype": "~1.8",
  2748. "symfony/polyfill-php80": "^1.16",
  2749. "symfony/polyfill-php81": "^1.22"
  2750. },
  2751. "conflict": {
  2752. "symfony/finder": "<4.4"
  2753. },
  2754. "require-dev": {
  2755. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2756. "symfony/finder": "^4.4|^5.0|^6.0",
  2757. "symfony/messenger": "^4.4|^5.0|^6.0",
  2758. "symfony/service-contracts": "^1.1|^2|^3",
  2759. "symfony/yaml": "^4.4|^5.0|^6.0"
  2760. },
  2761. "suggest": {
  2762. "symfony/yaml": "To use the yaml reference dumper"
  2763. },
  2764. "type": "library",
  2765. "autoload": {
  2766. "psr-4": {
  2767. "Symfony\\Component\\Config\\": ""
  2768. },
  2769. "exclude-from-classmap": [
  2770. "/Tests/"
  2771. ]
  2772. },
  2773. "notification-url": "https://packagist.org/downloads/",
  2774. "license": [
  2775. "MIT"
  2776. ],
  2777. "authors": [
  2778. {
  2779. "name": "Fabien Potencier",
  2780. "email": "fabien@symfony.com"
  2781. },
  2782. {
  2783. "name": "Symfony Community",
  2784. "homepage": "https://symfony.com/contributors"
  2785. }
  2786. ],
  2787. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2788. "homepage": "https://symfony.com",
  2789. "support": {
  2790. "source": "https://github.com/symfony/config/tree/v5.4.0"
  2791. },
  2792. "funding": [
  2793. {
  2794. "url": "https://symfony.com/sponsor",
  2795. "type": "custom"
  2796. },
  2797. {
  2798. "url": "https://github.com/fabpot",
  2799. "type": "github"
  2800. },
  2801. {
  2802. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2803. "type": "tidelift"
  2804. }
  2805. ],
  2806. "time": "2021-11-28T15:25:38+00:00"
  2807. },
  2808. {
  2809. "name": "symfony/console",
  2810. "version": "v5.4.1",
  2811. "source": {
  2812. "type": "git",
  2813. "url": "https://github.com/symfony/console.git",
  2814. "reference": "9130e1a0fc93cb0faadca4ee917171bd2ca9e5f4"
  2815. },
  2816. "dist": {
  2817. "type": "zip",
  2818. "url": "https://api.github.com/repos/symfony/console/zipball/9130e1a0fc93cb0faadca4ee917171bd2ca9e5f4",
  2819. "reference": "9130e1a0fc93cb0faadca4ee917171bd2ca9e5f4",
  2820. "shasum": ""
  2821. },
  2822. "require": {
  2823. "php": ">=7.2.5",
  2824. "symfony/deprecation-contracts": "^2.1|^3",
  2825. "symfony/polyfill-mbstring": "~1.0",
  2826. "symfony/polyfill-php73": "^1.9",
  2827. "symfony/polyfill-php80": "^1.16",
  2828. "symfony/service-contracts": "^1.1|^2|^3",
  2829. "symfony/string": "^5.1|^6.0"
  2830. },
  2831. "conflict": {
  2832. "psr/log": ">=3",
  2833. "symfony/dependency-injection": "<4.4",
  2834. "symfony/dotenv": "<5.1",
  2835. "symfony/event-dispatcher": "<4.4",
  2836. "symfony/lock": "<4.4",
  2837. "symfony/process": "<4.4"
  2838. },
  2839. "provide": {
  2840. "psr/log-implementation": "1.0|2.0"
  2841. },
  2842. "require-dev": {
  2843. "psr/log": "^1|^2",
  2844. "symfony/config": "^4.4|^5.0|^6.0",
  2845. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2846. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2847. "symfony/lock": "^4.4|^5.0|^6.0",
  2848. "symfony/process": "^4.4|^5.0|^6.0",
  2849. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2850. },
  2851. "suggest": {
  2852. "psr/log": "For using the console logger",
  2853. "symfony/event-dispatcher": "",
  2854. "symfony/lock": "",
  2855. "symfony/process": ""
  2856. },
  2857. "type": "library",
  2858. "autoload": {
  2859. "psr-4": {
  2860. "Symfony\\Component\\Console\\": ""
  2861. },
  2862. "exclude-from-classmap": [
  2863. "/Tests/"
  2864. ]
  2865. },
  2866. "notification-url": "https://packagist.org/downloads/",
  2867. "license": [
  2868. "MIT"
  2869. ],
  2870. "authors": [
  2871. {
  2872. "name": "Fabien Potencier",
  2873. "email": "fabien@symfony.com"
  2874. },
  2875. {
  2876. "name": "Symfony Community",
  2877. "homepage": "https://symfony.com/contributors"
  2878. }
  2879. ],
  2880. "description": "Eases the creation of beautiful and testable command line interfaces",
  2881. "homepage": "https://symfony.com",
  2882. "keywords": [
  2883. "cli",
  2884. "command line",
  2885. "console",
  2886. "terminal"
  2887. ],
  2888. "support": {
  2889. "source": "https://github.com/symfony/console/tree/v5.4.1"
  2890. },
  2891. "funding": [
  2892. {
  2893. "url": "https://symfony.com/sponsor",
  2894. "type": "custom"
  2895. },
  2896. {
  2897. "url": "https://github.com/fabpot",
  2898. "type": "github"
  2899. },
  2900. {
  2901. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2902. "type": "tidelift"
  2903. }
  2904. ],
  2905. "time": "2021-12-09T11:22:43+00:00"
  2906. },
  2907. {
  2908. "name": "symfony/dependency-injection",
  2909. "version": "v5.4.1",
  2910. "source": {
  2911. "type": "git",
  2912. "url": "https://github.com/symfony/dependency-injection.git",
  2913. "reference": "9bd1ef389a2fe05fea7306b6155403e8a960d73d"
  2914. },
  2915. "dist": {
  2916. "type": "zip",
  2917. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/9bd1ef389a2fe05fea7306b6155403e8a960d73d",
  2918. "reference": "9bd1ef389a2fe05fea7306b6155403e8a960d73d",
  2919. "shasum": ""
  2920. },
  2921. "require": {
  2922. "php": ">=7.2.5",
  2923. "psr/container": "^1.1.1",
  2924. "symfony/deprecation-contracts": "^2.1|^3",
  2925. "symfony/polyfill-php80": "^1.16",
  2926. "symfony/polyfill-php81": "^1.22",
  2927. "symfony/service-contracts": "^1.1.6|^2"
  2928. },
  2929. "conflict": {
  2930. "ext-psr": "<1.1|>=2",
  2931. "symfony/config": "<5.3",
  2932. "symfony/finder": "<4.4",
  2933. "symfony/proxy-manager-bridge": "<4.4",
  2934. "symfony/yaml": "<4.4"
  2935. },
  2936. "provide": {
  2937. "psr/container-implementation": "1.0",
  2938. "symfony/service-implementation": "1.0|2.0"
  2939. },
  2940. "require-dev": {
  2941. "symfony/config": "^5.3|^6.0",
  2942. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2943. "symfony/yaml": "^4.4|^5.0|^6.0"
  2944. },
  2945. "suggest": {
  2946. "symfony/config": "",
  2947. "symfony/expression-language": "For using expressions in service container configuration",
  2948. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  2949. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  2950. "symfony/yaml": ""
  2951. },
  2952. "type": "library",
  2953. "autoload": {
  2954. "psr-4": {
  2955. "Symfony\\Component\\DependencyInjection\\": ""
  2956. },
  2957. "exclude-from-classmap": [
  2958. "/Tests/"
  2959. ]
  2960. },
  2961. "notification-url": "https://packagist.org/downloads/",
  2962. "license": [
  2963. "MIT"
  2964. ],
  2965. "authors": [
  2966. {
  2967. "name": "Fabien Potencier",
  2968. "email": "fabien@symfony.com"
  2969. },
  2970. {
  2971. "name": "Symfony Community",
  2972. "homepage": "https://symfony.com/contributors"
  2973. }
  2974. ],
  2975. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2976. "homepage": "https://symfony.com",
  2977. "support": {
  2978. "source": "https://github.com/symfony/dependency-injection/tree/v5.4.1"
  2979. },
  2980. "funding": [
  2981. {
  2982. "url": "https://symfony.com/sponsor",
  2983. "type": "custom"
  2984. },
  2985. {
  2986. "url": "https://github.com/fabpot",
  2987. "type": "github"
  2988. },
  2989. {
  2990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2991. "type": "tidelift"
  2992. }
  2993. ],
  2994. "time": "2021-12-01T16:25:34+00:00"
  2995. },
  2996. {
  2997. "name": "symfony/deprecation-contracts",
  2998. "version": "v2.5.0",
  2999. "source": {
  3000. "type": "git",
  3001. "url": "https://github.com/symfony/deprecation-contracts.git",
  3002. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
  3003. },
  3004. "dist": {
  3005. "type": "zip",
  3006. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  3007. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  3008. "shasum": ""
  3009. },
  3010. "require": {
  3011. "php": ">=7.1"
  3012. },
  3013. "type": "library",
  3014. "extra": {
  3015. "branch-alias": {
  3016. "dev-main": "2.5-dev"
  3017. },
  3018. "thanks": {
  3019. "name": "symfony/contracts",
  3020. "url": "https://github.com/symfony/contracts"
  3021. }
  3022. },
  3023. "autoload": {
  3024. "files": [
  3025. "function.php"
  3026. ]
  3027. },
  3028. "notification-url": "https://packagist.org/downloads/",
  3029. "license": [
  3030. "MIT"
  3031. ],
  3032. "authors": [
  3033. {
  3034. "name": "Nicolas Grekas",
  3035. "email": "p@tchwork.com"
  3036. },
  3037. {
  3038. "name": "Symfony Community",
  3039. "homepage": "https://symfony.com/contributors"
  3040. }
  3041. ],
  3042. "description": "A generic function and convention to trigger deprecation notices",
  3043. "homepage": "https://symfony.com",
  3044. "support": {
  3045. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
  3046. },
  3047. "funding": [
  3048. {
  3049. "url": "https://symfony.com/sponsor",
  3050. "type": "custom"
  3051. },
  3052. {
  3053. "url": "https://github.com/fabpot",
  3054. "type": "github"
  3055. },
  3056. {
  3057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3058. "type": "tidelift"
  3059. }
  3060. ],
  3061. "time": "2021-07-12T14:48:14+00:00"
  3062. },
  3063. {
  3064. "name": "symfony/doctrine-bridge",
  3065. "version": "v5.4.1",
  3066. "source": {
  3067. "type": "git",
  3068. "url": "https://github.com/symfony/doctrine-bridge.git",
  3069. "reference": "876bef571479727119e03ff82752a8ba56dc5c91"
  3070. },
  3071. "dist": {
  3072. "type": "zip",
  3073. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/876bef571479727119e03ff82752a8ba56dc5c91",
  3074. "reference": "876bef571479727119e03ff82752a8ba56dc5c91",
  3075. "shasum": ""
  3076. },
  3077. "require": {
  3078. "doctrine/event-manager": "~1.0",
  3079. "doctrine/persistence": "^2",
  3080. "php": ">=7.2.5",
  3081. "symfony/deprecation-contracts": "^2.1|^3",
  3082. "symfony/polyfill-ctype": "~1.8",
  3083. "symfony/polyfill-mbstring": "~1.0",
  3084. "symfony/polyfill-php80": "^1.16",
  3085. "symfony/service-contracts": "^1.1|^2|^3"
  3086. },
  3087. "conflict": {
  3088. "doctrine/dbal": "<2.13.1",
  3089. "doctrine/lexer": "<1.1",
  3090. "doctrine/orm": "<2.7.3",
  3091. "phpunit/phpunit": "<5.4.3",
  3092. "symfony/cache": "<5.4",
  3093. "symfony/dependency-injection": "<4.4",
  3094. "symfony/form": "<5.1",
  3095. "symfony/http-kernel": "<5",
  3096. "symfony/messenger": "<4.4",
  3097. "symfony/property-info": "<5",
  3098. "symfony/proxy-manager-bridge": "<4.4.19",
  3099. "symfony/security-bundle": "<5",
  3100. "symfony/security-core": "<5.3",
  3101. "symfony/validator": "<5.2"
  3102. },
  3103. "require-dev": {
  3104. "composer/package-versions-deprecated": "^1.8",
  3105. "doctrine/annotations": "^1.10.4",
  3106. "doctrine/collections": "~1.0",
  3107. "doctrine/data-fixtures": "^1.1",
  3108. "doctrine/dbal": "^2.13.1|^3.0",
  3109. "doctrine/orm": "^2.7.3",
  3110. "psr/log": "^1|^2|^3",
  3111. "symfony/cache": "^5.4|^6.0",
  3112. "symfony/config": "^4.4|^5.0|^6.0",
  3113. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3114. "symfony/doctrine-messenger": "^5.1|^6.0",
  3115. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3116. "symfony/form": "^5.1.3|^6.0",
  3117. "symfony/http-kernel": "^5.0|^6.0",
  3118. "symfony/messenger": "^4.4|^5.0|^6.0",
  3119. "symfony/property-access": "^4.4|^5.0|^6.0",
  3120. "symfony/property-info": "^5.0|^6.0",
  3121. "symfony/proxy-manager-bridge": "^4.4|^5.0|^6.0",
  3122. "symfony/security-core": "^5.3|^6.0",
  3123. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3124. "symfony/translation": "^4.4|^5.0|^6.0",
  3125. "symfony/uid": "^5.1|^6.0",
  3126. "symfony/validator": "^5.2|^6.0",
  3127. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3128. },
  3129. "suggest": {
  3130. "doctrine/data-fixtures": "",
  3131. "doctrine/dbal": "",
  3132. "doctrine/orm": "",
  3133. "symfony/form": "",
  3134. "symfony/property-info": "",
  3135. "symfony/validator": ""
  3136. },
  3137. "type": "symfony-bridge",
  3138. "autoload": {
  3139. "psr-4": {
  3140. "Symfony\\Bridge\\Doctrine\\": ""
  3141. },
  3142. "exclude-from-classmap": [
  3143. "/Tests/"
  3144. ]
  3145. },
  3146. "notification-url": "https://packagist.org/downloads/",
  3147. "license": [
  3148. "MIT"
  3149. ],
  3150. "authors": [
  3151. {
  3152. "name": "Fabien Potencier",
  3153. "email": "fabien@symfony.com"
  3154. },
  3155. {
  3156. "name": "Symfony Community",
  3157. "homepage": "https://symfony.com/contributors"
  3158. }
  3159. ],
  3160. "description": "Provides integration for Doctrine with various Symfony components",
  3161. "homepage": "https://symfony.com",
  3162. "support": {
  3163. "source": "https://github.com/symfony/doctrine-bridge/tree/v5.4.1"
  3164. },
  3165. "funding": [
  3166. {
  3167. "url": "https://symfony.com/sponsor",
  3168. "type": "custom"
  3169. },
  3170. {
  3171. "url": "https://github.com/fabpot",
  3172. "type": "github"
  3173. },
  3174. {
  3175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3176. "type": "tidelift"
  3177. }
  3178. ],
  3179. "time": "2021-12-05T20:33:52+00:00"
  3180. },
  3181. {
  3182. "name": "symfony/dotenv",
  3183. "version": "v5.4.0",
  3184. "source": {
  3185. "type": "git",
  3186. "url": "https://github.com/symfony/dotenv.git",
  3187. "reference": "9bd173ff68fa90d39c59d91a42ae42b7f11713a0"
  3188. },
  3189. "dist": {
  3190. "type": "zip",
  3191. "url": "https://api.github.com/repos/symfony/dotenv/zipball/9bd173ff68fa90d39c59d91a42ae42b7f11713a0",
  3192. "reference": "9bd173ff68fa90d39c59d91a42ae42b7f11713a0",
  3193. "shasum": ""
  3194. },
  3195. "require": {
  3196. "php": ">=7.2.5",
  3197. "symfony/deprecation-contracts": "^2.1|^3"
  3198. },
  3199. "require-dev": {
  3200. "symfony/console": "^4.4|^5.0|^6.0",
  3201. "symfony/process": "^4.4|^5.0|^6.0"
  3202. },
  3203. "type": "library",
  3204. "autoload": {
  3205. "psr-4": {
  3206. "Symfony\\Component\\Dotenv\\": ""
  3207. },
  3208. "exclude-from-classmap": [
  3209. "/Tests/"
  3210. ]
  3211. },
  3212. "notification-url": "https://packagist.org/downloads/",
  3213. "license": [
  3214. "MIT"
  3215. ],
  3216. "authors": [
  3217. {
  3218. "name": "Fabien Potencier",
  3219. "email": "fabien@symfony.com"
  3220. },
  3221. {
  3222. "name": "Symfony Community",
  3223. "homepage": "https://symfony.com/contributors"
  3224. }
  3225. ],
  3226. "description": "Registers environment variables from a .env file",
  3227. "homepage": "https://symfony.com",
  3228. "keywords": [
  3229. "dotenv",
  3230. "env",
  3231. "environment"
  3232. ],
  3233. "support": {
  3234. "source": "https://github.com/symfony/dotenv/tree/v5.4.0"
  3235. },
  3236. "funding": [
  3237. {
  3238. "url": "https://symfony.com/sponsor",
  3239. "type": "custom"
  3240. },
  3241. {
  3242. "url": "https://github.com/fabpot",
  3243. "type": "github"
  3244. },
  3245. {
  3246. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3247. "type": "tidelift"
  3248. }
  3249. ],
  3250. "time": "2021-11-23T10:19:22+00:00"
  3251. },
  3252. {
  3253. "name": "symfony/error-handler",
  3254. "version": "v5.4.1",
  3255. "source": {
  3256. "type": "git",
  3257. "url": "https://github.com/symfony/error-handler.git",
  3258. "reference": "1e3cb3565af49cd5f93e5787500134500a29f0d9"
  3259. },
  3260. "dist": {
  3261. "type": "zip",
  3262. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1e3cb3565af49cd5f93e5787500134500a29f0d9",
  3263. "reference": "1e3cb3565af49cd5f93e5787500134500a29f0d9",
  3264. "shasum": ""
  3265. },
  3266. "require": {
  3267. "php": ">=7.2.5",
  3268. "psr/log": "^1|^2|^3",
  3269. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3270. },
  3271. "require-dev": {
  3272. "symfony/deprecation-contracts": "^2.1|^3",
  3273. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3274. "symfony/serializer": "^4.4|^5.0|^6.0"
  3275. },
  3276. "bin": [
  3277. "Resources/bin/patch-type-declarations"
  3278. ],
  3279. "type": "library",
  3280. "autoload": {
  3281. "psr-4": {
  3282. "Symfony\\Component\\ErrorHandler\\": ""
  3283. },
  3284. "exclude-from-classmap": [
  3285. "/Tests/"
  3286. ]
  3287. },
  3288. "notification-url": "https://packagist.org/downloads/",
  3289. "license": [
  3290. "MIT"
  3291. ],
  3292. "authors": [
  3293. {
  3294. "name": "Fabien Potencier",
  3295. "email": "fabien@symfony.com"
  3296. },
  3297. {
  3298. "name": "Symfony Community",
  3299. "homepage": "https://symfony.com/contributors"
  3300. }
  3301. ],
  3302. "description": "Provides tools to manage errors and ease debugging PHP code",
  3303. "homepage": "https://symfony.com",
  3304. "support": {
  3305. "source": "https://github.com/symfony/error-handler/tree/v5.4.1"
  3306. },
  3307. "funding": [
  3308. {
  3309. "url": "https://symfony.com/sponsor",
  3310. "type": "custom"
  3311. },
  3312. {
  3313. "url": "https://github.com/fabpot",
  3314. "type": "github"
  3315. },
  3316. {
  3317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3318. "type": "tidelift"
  3319. }
  3320. ],
  3321. "time": "2021-12-01T15:04:08+00:00"
  3322. },
  3323. {
  3324. "name": "symfony/event-dispatcher",
  3325. "version": "v5.4.0",
  3326. "source": {
  3327. "type": "git",
  3328. "url": "https://github.com/symfony/event-dispatcher.git",
  3329. "reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb"
  3330. },
  3331. "dist": {
  3332. "type": "zip",
  3333. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/27d39ae126352b9fa3be5e196ccf4617897be3eb",
  3334. "reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb",
  3335. "shasum": ""
  3336. },
  3337. "require": {
  3338. "php": ">=7.2.5",
  3339. "symfony/deprecation-contracts": "^2.1|^3",
  3340. "symfony/event-dispatcher-contracts": "^2|^3",
  3341. "symfony/polyfill-php80": "^1.16"
  3342. },
  3343. "conflict": {
  3344. "symfony/dependency-injection": "<4.4"
  3345. },
  3346. "provide": {
  3347. "psr/event-dispatcher-implementation": "1.0",
  3348. "symfony/event-dispatcher-implementation": "2.0"
  3349. },
  3350. "require-dev": {
  3351. "psr/log": "^1|^2|^3",
  3352. "symfony/config": "^4.4|^5.0|^6.0",
  3353. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3354. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3355. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3356. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3357. "symfony/service-contracts": "^1.1|^2|^3",
  3358. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3359. },
  3360. "suggest": {
  3361. "symfony/dependency-injection": "",
  3362. "symfony/http-kernel": ""
  3363. },
  3364. "type": "library",
  3365. "autoload": {
  3366. "psr-4": {
  3367. "Symfony\\Component\\EventDispatcher\\": ""
  3368. },
  3369. "exclude-from-classmap": [
  3370. "/Tests/"
  3371. ]
  3372. },
  3373. "notification-url": "https://packagist.org/downloads/",
  3374. "license": [
  3375. "MIT"
  3376. ],
  3377. "authors": [
  3378. {
  3379. "name": "Fabien Potencier",
  3380. "email": "fabien@symfony.com"
  3381. },
  3382. {
  3383. "name": "Symfony Community",
  3384. "homepage": "https://symfony.com/contributors"
  3385. }
  3386. ],
  3387. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3388. "homepage": "https://symfony.com",
  3389. "support": {
  3390. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.0"
  3391. },
  3392. "funding": [
  3393. {
  3394. "url": "https://symfony.com/sponsor",
  3395. "type": "custom"
  3396. },
  3397. {
  3398. "url": "https://github.com/fabpot",
  3399. "type": "github"
  3400. },
  3401. {
  3402. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3403. "type": "tidelift"
  3404. }
  3405. ],
  3406. "time": "2021-11-23T10:19:22+00:00"
  3407. },
  3408. {
  3409. "name": "symfony/event-dispatcher-contracts",
  3410. "version": "v2.5.0",
  3411. "source": {
  3412. "type": "git",
  3413. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3414. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a"
  3415. },
  3416. "dist": {
  3417. "type": "zip",
  3418. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  3419. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  3420. "shasum": ""
  3421. },
  3422. "require": {
  3423. "php": ">=7.2.5",
  3424. "psr/event-dispatcher": "^1"
  3425. },
  3426. "suggest": {
  3427. "symfony/event-dispatcher-implementation": ""
  3428. },
  3429. "type": "library",
  3430. "extra": {
  3431. "branch-alias": {
  3432. "dev-main": "2.5-dev"
  3433. },
  3434. "thanks": {
  3435. "name": "symfony/contracts",
  3436. "url": "https://github.com/symfony/contracts"
  3437. }
  3438. },
  3439. "autoload": {
  3440. "psr-4": {
  3441. "Symfony\\Contracts\\EventDispatcher\\": ""
  3442. }
  3443. },
  3444. "notification-url": "https://packagist.org/downloads/",
  3445. "license": [
  3446. "MIT"
  3447. ],
  3448. "authors": [
  3449. {
  3450. "name": "Nicolas Grekas",
  3451. "email": "p@tchwork.com"
  3452. },
  3453. {
  3454. "name": "Symfony Community",
  3455. "homepage": "https://symfony.com/contributors"
  3456. }
  3457. ],
  3458. "description": "Generic abstractions related to dispatching event",
  3459. "homepage": "https://symfony.com",
  3460. "keywords": [
  3461. "abstractions",
  3462. "contracts",
  3463. "decoupling",
  3464. "interfaces",
  3465. "interoperability",
  3466. "standards"
  3467. ],
  3468. "support": {
  3469. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.0"
  3470. },
  3471. "funding": [
  3472. {
  3473. "url": "https://symfony.com/sponsor",
  3474. "type": "custom"
  3475. },
  3476. {
  3477. "url": "https://github.com/fabpot",
  3478. "type": "github"
  3479. },
  3480. {
  3481. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3482. "type": "tidelift"
  3483. }
  3484. ],
  3485. "time": "2021-07-12T14:48:14+00:00"
  3486. },
  3487. {
  3488. "name": "symfony/expression-language",
  3489. "version": "v5.4.0",
  3490. "source": {
  3491. "type": "git",
  3492. "url": "https://github.com/symfony/expression-language.git",
  3493. "reference": "aff6ee3cf4ac1f37f5c7dad3f89f439dbe0893f2"
  3494. },
  3495. "dist": {
  3496. "type": "zip",
  3497. "url": "https://api.github.com/repos/symfony/expression-language/zipball/aff6ee3cf4ac1f37f5c7dad3f89f439dbe0893f2",
  3498. "reference": "aff6ee3cf4ac1f37f5c7dad3f89f439dbe0893f2",
  3499. "shasum": ""
  3500. },
  3501. "require": {
  3502. "php": ">=7.2.5",
  3503. "symfony/cache": "^4.4|^5.0|^6.0",
  3504. "symfony/service-contracts": "^1.1|^2|^3"
  3505. },
  3506. "type": "library",
  3507. "autoload": {
  3508. "psr-4": {
  3509. "Symfony\\Component\\ExpressionLanguage\\": ""
  3510. },
  3511. "exclude-from-classmap": [
  3512. "/Tests/"
  3513. ]
  3514. },
  3515. "notification-url": "https://packagist.org/downloads/",
  3516. "license": [
  3517. "MIT"
  3518. ],
  3519. "authors": [
  3520. {
  3521. "name": "Fabien Potencier",
  3522. "email": "fabien@symfony.com"
  3523. },
  3524. {
  3525. "name": "Symfony Community",
  3526. "homepage": "https://symfony.com/contributors"
  3527. }
  3528. ],
  3529. "description": "Provides an engine that can compile and evaluate expressions",
  3530. "homepage": "https://symfony.com",
  3531. "support": {
  3532. "source": "https://github.com/symfony/expression-language/tree/v5.4.0"
  3533. },
  3534. "funding": [
  3535. {
  3536. "url": "https://symfony.com/sponsor",
  3537. "type": "custom"
  3538. },
  3539. {
  3540. "url": "https://github.com/fabpot",
  3541. "type": "github"
  3542. },
  3543. {
  3544. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3545. "type": "tidelift"
  3546. }
  3547. ],
  3548. "time": "2021-11-23T10:19:22+00:00"
  3549. },
  3550. {
  3551. "name": "symfony/filesystem",
  3552. "version": "v5.4.0",
  3553. "source": {
  3554. "type": "git",
  3555. "url": "https://github.com/symfony/filesystem.git",
  3556. "reference": "731f917dc31edcffec2c6a777f3698c33bea8f01"
  3557. },
  3558. "dist": {
  3559. "type": "zip",
  3560. "url": "https://api.github.com/repos/symfony/filesystem/zipball/731f917dc31edcffec2c6a777f3698c33bea8f01",
  3561. "reference": "731f917dc31edcffec2c6a777f3698c33bea8f01",
  3562. "shasum": ""
  3563. },
  3564. "require": {
  3565. "php": ">=7.2.5",
  3566. "symfony/polyfill-ctype": "~1.8",
  3567. "symfony/polyfill-mbstring": "~1.8",
  3568. "symfony/polyfill-php80": "^1.16"
  3569. },
  3570. "type": "library",
  3571. "autoload": {
  3572. "psr-4": {
  3573. "Symfony\\Component\\Filesystem\\": ""
  3574. },
  3575. "exclude-from-classmap": [
  3576. "/Tests/"
  3577. ]
  3578. },
  3579. "notification-url": "https://packagist.org/downloads/",
  3580. "license": [
  3581. "MIT"
  3582. ],
  3583. "authors": [
  3584. {
  3585. "name": "Fabien Potencier",
  3586. "email": "fabien@symfony.com"
  3587. },
  3588. {
  3589. "name": "Symfony Community",
  3590. "homepage": "https://symfony.com/contributors"
  3591. }
  3592. ],
  3593. "description": "Provides basic utilities for the filesystem",
  3594. "homepage": "https://symfony.com",
  3595. "support": {
  3596. "source": "https://github.com/symfony/filesystem/tree/v5.4.0"
  3597. },
  3598. "funding": [
  3599. {
  3600. "url": "https://symfony.com/sponsor",
  3601. "type": "custom"
  3602. },
  3603. {
  3604. "url": "https://github.com/fabpot",
  3605. "type": "github"
  3606. },
  3607. {
  3608. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3609. "type": "tidelift"
  3610. }
  3611. ],
  3612. "time": "2021-10-28T13:39:27+00:00"
  3613. },
  3614. {
  3615. "name": "symfony/finder",
  3616. "version": "v5.4.0",
  3617. "source": {
  3618. "type": "git",
  3619. "url": "https://github.com/symfony/finder.git",
  3620. "reference": "d2f29dac98e96a98be467627bd49c2efb1bc2590"
  3621. },
  3622. "dist": {
  3623. "type": "zip",
  3624. "url": "https://api.github.com/repos/symfony/finder/zipball/d2f29dac98e96a98be467627bd49c2efb1bc2590",
  3625. "reference": "d2f29dac98e96a98be467627bd49c2efb1bc2590",
  3626. "shasum": ""
  3627. },
  3628. "require": {
  3629. "php": ">=7.2.5",
  3630. "symfony/deprecation-contracts": "^2.1|^3",
  3631. "symfony/polyfill-php80": "^1.16"
  3632. },
  3633. "type": "library",
  3634. "autoload": {
  3635. "psr-4": {
  3636. "Symfony\\Component\\Finder\\": ""
  3637. },
  3638. "exclude-from-classmap": [
  3639. "/Tests/"
  3640. ]
  3641. },
  3642. "notification-url": "https://packagist.org/downloads/",
  3643. "license": [
  3644. "MIT"
  3645. ],
  3646. "authors": [
  3647. {
  3648. "name": "Fabien Potencier",
  3649. "email": "fabien@symfony.com"
  3650. },
  3651. {
  3652. "name": "Symfony Community",
  3653. "homepage": "https://symfony.com/contributors"
  3654. }
  3655. ],
  3656. "description": "Finds files and directories via an intuitive fluent interface",
  3657. "homepage": "https://symfony.com",
  3658. "support": {
  3659. "source": "https://github.com/symfony/finder/tree/v5.4.0"
  3660. },
  3661. "funding": [
  3662. {
  3663. "url": "https://symfony.com/sponsor",
  3664. "type": "custom"
  3665. },
  3666. {
  3667. "url": "https://github.com/fabpot",
  3668. "type": "github"
  3669. },
  3670. {
  3671. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3672. "type": "tidelift"
  3673. }
  3674. ],
  3675. "time": "2021-11-28T15:25:38+00:00"
  3676. },
  3677. {
  3678. "name": "symfony/flex",
  3679. "version": "v1.17.6",
  3680. "source": {
  3681. "type": "git",
  3682. "url": "https://github.com/symfony/flex.git",
  3683. "reference": "7a79135e1dc66b30042b4d968ecba0908f9374bc"
  3684. },
  3685. "dist": {
  3686. "type": "zip",
  3687. "url": "https://api.github.com/repos/symfony/flex/zipball/7a79135e1dc66b30042b4d968ecba0908f9374bc",
  3688. "reference": "7a79135e1dc66b30042b4d968ecba0908f9374bc",
  3689. "shasum": ""
  3690. },
  3691. "require": {
  3692. "composer-plugin-api": "^1.0|^2.0",
  3693. "php": ">=7.1"
  3694. },
  3695. "require-dev": {
  3696. "composer/composer": "^1.0.2|^2.0",
  3697. "symfony/dotenv": "^4.4|^5.0|^6.0",
  3698. "symfony/filesystem": "^4.4|^5.0|^6.0",
  3699. "symfony/phpunit-bridge": "^4.4.12|^5.0|^6.0",
  3700. "symfony/process": "^4.4|^5.0|^6.0"
  3701. },
  3702. "type": "composer-plugin",
  3703. "extra": {
  3704. "class": "Symfony\\Flex\\Flex"
  3705. },
  3706. "autoload": {
  3707. "psr-4": {
  3708. "Symfony\\Flex\\": "src"
  3709. }
  3710. },
  3711. "notification-url": "https://packagist.org/downloads/",
  3712. "license": [
  3713. "MIT"
  3714. ],
  3715. "authors": [
  3716. {
  3717. "name": "Fabien Potencier",
  3718. "email": "fabien.potencier@gmail.com"
  3719. }
  3720. ],
  3721. "description": "Composer plugin for Symfony",
  3722. "support": {
  3723. "issues": "https://github.com/symfony/flex/issues",
  3724. "source": "https://github.com/symfony/flex/tree/v1.17.6"
  3725. },
  3726. "funding": [
  3727. {
  3728. "url": "https://symfony.com/sponsor",
  3729. "type": "custom"
  3730. },
  3731. {
  3732. "url": "https://github.com/fabpot",
  3733. "type": "github"
  3734. },
  3735. {
  3736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3737. "type": "tidelift"
  3738. }
  3739. ],
  3740. "time": "2021-11-29T15:39:37+00:00"
  3741. },
  3742. {
  3743. "name": "symfony/form",
  3744. "version": "v5.4.0",
  3745. "source": {
  3746. "type": "git",
  3747. "url": "https://github.com/symfony/form.git",
  3748. "reference": "0148f46628efa4c12803768efbdfcd6e0b9ceec3"
  3749. },
  3750. "dist": {
  3751. "type": "zip",
  3752. "url": "https://api.github.com/repos/symfony/form/zipball/0148f46628efa4c12803768efbdfcd6e0b9ceec3",
  3753. "reference": "0148f46628efa4c12803768efbdfcd6e0b9ceec3",
  3754. "shasum": ""
  3755. },
  3756. "require": {
  3757. "php": ">=7.2.5",
  3758. "symfony/deprecation-contracts": "^2.1|^3",
  3759. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  3760. "symfony/options-resolver": "^5.1|^6.0",
  3761. "symfony/polyfill-ctype": "~1.8",
  3762. "symfony/polyfill-intl-icu": "^1.21",
  3763. "symfony/polyfill-mbstring": "~1.0",
  3764. "symfony/polyfill-php80": "^1.16",
  3765. "symfony/polyfill-php81": "^1.23",
  3766. "symfony/property-access": "^5.0.8|^6.0",
  3767. "symfony/service-contracts": "^1.1|^2|^3"
  3768. },
  3769. "conflict": {
  3770. "phpunit/phpunit": "<5.4.3",
  3771. "symfony/console": "<4.4",
  3772. "symfony/dependency-injection": "<4.4",
  3773. "symfony/doctrine-bridge": "<4.4",
  3774. "symfony/error-handler": "<4.4.5",
  3775. "symfony/framework-bundle": "<4.4",
  3776. "symfony/http-kernel": "<4.4",
  3777. "symfony/translation": "<4.4",
  3778. "symfony/translation-contracts": "<1.1.7",
  3779. "symfony/twig-bridge": "<4.4"
  3780. },
  3781. "require-dev": {
  3782. "doctrine/collections": "~1.0",
  3783. "symfony/config": "^4.4|^5.0|^6.0",
  3784. "symfony/console": "^5.4|^6.0",
  3785. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3786. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3787. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3788. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3789. "symfony/intl": "^4.4|^5.0|^6.0",
  3790. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  3791. "symfony/translation": "^4.4|^5.0|^6.0",
  3792. "symfony/uid": "^5.1|^6.0",
  3793. "symfony/validator": "^4.4.17|^5.1.9|^6.0",
  3794. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3795. },
  3796. "suggest": {
  3797. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  3798. "symfony/twig-bridge": "For templating with Twig.",
  3799. "symfony/validator": "For form validation."
  3800. },
  3801. "type": "library",
  3802. "autoload": {
  3803. "psr-4": {
  3804. "Symfony\\Component\\Form\\": ""
  3805. },
  3806. "exclude-from-classmap": [
  3807. "/Tests/"
  3808. ]
  3809. },
  3810. "notification-url": "https://packagist.org/downloads/",
  3811. "license": [
  3812. "MIT"
  3813. ],
  3814. "authors": [
  3815. {
  3816. "name": "Fabien Potencier",
  3817. "email": "fabien@symfony.com"
  3818. },
  3819. {
  3820. "name": "Symfony Community",
  3821. "homepage": "https://symfony.com/contributors"
  3822. }
  3823. ],
  3824. "description": "Allows to easily create, process and reuse HTML forms",
  3825. "homepage": "https://symfony.com",
  3826. "support": {
  3827. "source": "https://github.com/symfony/form/tree/v5.4.0"
  3828. },
  3829. "funding": [
  3830. {
  3831. "url": "https://symfony.com/sponsor",
  3832. "type": "custom"
  3833. },
  3834. {
  3835. "url": "https://github.com/fabpot",
  3836. "type": "github"
  3837. },
  3838. {
  3839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3840. "type": "tidelift"
  3841. }
  3842. ],
  3843. "time": "2021-11-29T15:30:56+00:00"
  3844. },
  3845. {
  3846. "name": "symfony/framework-bundle",
  3847. "version": "v5.4.1",
  3848. "source": {
  3849. "type": "git",
  3850. "url": "https://github.com/symfony/framework-bundle.git",
  3851. "reference": "4e67931a6771a54e69383058a3e4e6f1acc154dd"
  3852. },
  3853. "dist": {
  3854. "type": "zip",
  3855. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/4e67931a6771a54e69383058a3e4e6f1acc154dd",
  3856. "reference": "4e67931a6771a54e69383058a3e4e6f1acc154dd",
  3857. "shasum": ""
  3858. },
  3859. "require": {
  3860. "ext-xml": "*",
  3861. "php": ">=7.2.5",
  3862. "symfony/cache": "^5.2|^6.0",
  3863. "symfony/config": "^5.3|^6.0",
  3864. "symfony/dependency-injection": "^5.3|^6.0",
  3865. "symfony/deprecation-contracts": "^2.1|^3",
  3866. "symfony/error-handler": "^4.4.1|^5.0.1|^6.0",
  3867. "symfony/event-dispatcher": "^5.1|^6.0",
  3868. "symfony/filesystem": "^4.4|^5.0|^6.0",
  3869. "symfony/finder": "^4.4|^5.0|^6.0",
  3870. "symfony/http-foundation": "^5.3|^6.0",
  3871. "symfony/http-kernel": "^5.4|^6.0",
  3872. "symfony/polyfill-mbstring": "~1.0",
  3873. "symfony/polyfill-php80": "^1.16",
  3874. "symfony/polyfill-php81": "^1.22",
  3875. "symfony/routing": "^5.3|^6.0"
  3876. },
  3877. "conflict": {
  3878. "doctrine/annotations": "<1.13.1",
  3879. "doctrine/cache": "<1.11",
  3880. "doctrine/persistence": "<1.3",
  3881. "phpdocumentor/reflection-docblock": "<3.2.2",
  3882. "phpdocumentor/type-resolver": "<1.4.0",
  3883. "phpunit/phpunit": "<5.4.3",
  3884. "symfony/asset": "<5.3",
  3885. "symfony/console": "<5.2.5",
  3886. "symfony/dom-crawler": "<4.4",
  3887. "symfony/dotenv": "<5.1",
  3888. "symfony/form": "<5.2",
  3889. "symfony/http-client": "<4.4",
  3890. "symfony/lock": "<4.4",
  3891. "symfony/mailer": "<5.2",
  3892. "symfony/messenger": "<5.4",
  3893. "symfony/mime": "<4.4",
  3894. "symfony/property-access": "<5.3",
  3895. "symfony/property-info": "<4.4",
  3896. "symfony/security-csrf": "<5.3",
  3897. "symfony/serializer": "<5.2",
  3898. "symfony/service-contracts": ">=3.0",
  3899. "symfony/stopwatch": "<4.4",
  3900. "symfony/translation": "<5.3",
  3901. "symfony/twig-bridge": "<4.4",
  3902. "symfony/twig-bundle": "<4.4",
  3903. "symfony/validator": "<5.2",
  3904. "symfony/web-profiler-bundle": "<4.4",
  3905. "symfony/workflow": "<5.2"
  3906. },
  3907. "require-dev": {
  3908. "doctrine/annotations": "^1.13.1",
  3909. "doctrine/cache": "^1.11|^2.0",
  3910. "doctrine/persistence": "^1.3|^2.0",
  3911. "paragonie/sodium_compat": "^1.8",
  3912. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3913. "symfony/asset": "^5.3|^6.0",
  3914. "symfony/browser-kit": "^5.4|^6.0",
  3915. "symfony/console": "^5.4|^6.0",
  3916. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3917. "symfony/dom-crawler": "^4.4.30|^5.3.7|^6.0",
  3918. "symfony/dotenv": "^5.1|^6.0",
  3919. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3920. "symfony/form": "^5.2|^6.0",
  3921. "symfony/http-client": "^4.4|^5.0|^6.0",
  3922. "symfony/lock": "^4.4|^5.0|^6.0",
  3923. "symfony/mailer": "^5.2|^6.0",
  3924. "symfony/messenger": "^5.4|^6.0",
  3925. "symfony/mime": "^4.4|^5.0|^6.0",
  3926. "symfony/notifier": "^5.4|^6.0",
  3927. "symfony/phpunit-bridge": "^5.3|^6.0",
  3928. "symfony/polyfill-intl-icu": "~1.0",
  3929. "symfony/process": "^4.4|^5.0|^6.0",
  3930. "symfony/property-info": "^4.4|^5.0|^6.0",
  3931. "symfony/rate-limiter": "^5.2|^6.0",
  3932. "symfony/security-bundle": "^5.4|^6.0",
  3933. "symfony/serializer": "^5.4|^6.0",
  3934. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3935. "symfony/string": "^5.0|^6.0",
  3936. "symfony/translation": "^5.3|^6.0",
  3937. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  3938. "symfony/validator": "^5.2|^6.0",
  3939. "symfony/web-link": "^4.4|^5.0|^6.0",
  3940. "symfony/workflow": "^5.2|^6.0",
  3941. "symfony/yaml": "^4.4|^5.0|^6.0",
  3942. "twig/twig": "^2.10|^3.0"
  3943. },
  3944. "suggest": {
  3945. "ext-apcu": "For best performance of the system caches",
  3946. "symfony/console": "For using the console commands",
  3947. "symfony/form": "For using forms",
  3948. "symfony/property-info": "For using the property_info service",
  3949. "symfony/serializer": "For using the serializer service",
  3950. "symfony/validator": "For using validation",
  3951. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  3952. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  3953. },
  3954. "type": "symfony-bundle",
  3955. "autoload": {
  3956. "psr-4": {
  3957. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3958. },
  3959. "exclude-from-classmap": [
  3960. "/Tests/"
  3961. ]
  3962. },
  3963. "notification-url": "https://packagist.org/downloads/",
  3964. "license": [
  3965. "MIT"
  3966. ],
  3967. "authors": [
  3968. {
  3969. "name": "Fabien Potencier",
  3970. "email": "fabien@symfony.com"
  3971. },
  3972. {
  3973. "name": "Symfony Community",
  3974. "homepage": "https://symfony.com/contributors"
  3975. }
  3976. ],
  3977. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  3978. "homepage": "https://symfony.com",
  3979. "support": {
  3980. "source": "https://github.com/symfony/framework-bundle/tree/v5.4.1"
  3981. },
  3982. "funding": [
  3983. {
  3984. "url": "https://symfony.com/sponsor",
  3985. "type": "custom"
  3986. },
  3987. {
  3988. "url": "https://github.com/fabpot",
  3989. "type": "github"
  3990. },
  3991. {
  3992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3993. "type": "tidelift"
  3994. }
  3995. ],
  3996. "time": "2021-12-07T12:41:14+00:00"
  3997. },
  3998. {
  3999. "name": "symfony/http-foundation",
  4000. "version": "v5.4.1",
  4001. "source": {
  4002. "type": "git",
  4003. "url": "https://github.com/symfony/http-foundation.git",
  4004. "reference": "5dad3780023a707f4c24beac7d57aead85c1ce3c"
  4005. },
  4006. "dist": {
  4007. "type": "zip",
  4008. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5dad3780023a707f4c24beac7d57aead85c1ce3c",
  4009. "reference": "5dad3780023a707f4c24beac7d57aead85c1ce3c",
  4010. "shasum": ""
  4011. },
  4012. "require": {
  4013. "php": ">=7.2.5",
  4014. "symfony/deprecation-contracts": "^2.1|^3",
  4015. "symfony/polyfill-mbstring": "~1.1",
  4016. "symfony/polyfill-php80": "^1.16"
  4017. },
  4018. "require-dev": {
  4019. "predis/predis": "~1.0",
  4020. "symfony/cache": "^4.4|^5.0|^6.0",
  4021. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4022. "symfony/mime": "^4.4|^5.0|^6.0"
  4023. },
  4024. "suggest": {
  4025. "symfony/mime": "To use the file extension guesser"
  4026. },
  4027. "type": "library",
  4028. "autoload": {
  4029. "psr-4": {
  4030. "Symfony\\Component\\HttpFoundation\\": ""
  4031. },
  4032. "exclude-from-classmap": [
  4033. "/Tests/"
  4034. ]
  4035. },
  4036. "notification-url": "https://packagist.org/downloads/",
  4037. "license": [
  4038. "MIT"
  4039. ],
  4040. "authors": [
  4041. {
  4042. "name": "Fabien Potencier",
  4043. "email": "fabien@symfony.com"
  4044. },
  4045. {
  4046. "name": "Symfony Community",
  4047. "homepage": "https://symfony.com/contributors"
  4048. }
  4049. ],
  4050. "description": "Defines an object-oriented layer for the HTTP specification",
  4051. "homepage": "https://symfony.com",
  4052. "support": {
  4053. "source": "https://github.com/symfony/http-foundation/tree/v5.4.1"
  4054. },
  4055. "funding": [
  4056. {
  4057. "url": "https://symfony.com/sponsor",
  4058. "type": "custom"
  4059. },
  4060. {
  4061. "url": "https://github.com/fabpot",
  4062. "type": "github"
  4063. },
  4064. {
  4065. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4066. "type": "tidelift"
  4067. }
  4068. ],
  4069. "time": "2021-12-09T12:46:57+00:00"
  4070. },
  4071. {
  4072. "name": "symfony/http-kernel",
  4073. "version": "v5.4.1",
  4074. "source": {
  4075. "type": "git",
  4076. "url": "https://github.com/symfony/http-kernel.git",
  4077. "reference": "2bdace75c9d6a6eec7e318801b7dc87a72375052"
  4078. },
  4079. "dist": {
  4080. "type": "zip",
  4081. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2bdace75c9d6a6eec7e318801b7dc87a72375052",
  4082. "reference": "2bdace75c9d6a6eec7e318801b7dc87a72375052",
  4083. "shasum": ""
  4084. },
  4085. "require": {
  4086. "php": ">=7.2.5",
  4087. "psr/log": "^1|^2",
  4088. "symfony/deprecation-contracts": "^2.1|^3",
  4089. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4090. "symfony/event-dispatcher": "^5.0|^6.0",
  4091. "symfony/http-foundation": "^5.3.7|^6.0",
  4092. "symfony/polyfill-ctype": "^1.8",
  4093. "symfony/polyfill-php73": "^1.9",
  4094. "symfony/polyfill-php80": "^1.16"
  4095. },
  4096. "conflict": {
  4097. "symfony/browser-kit": "<5.4",
  4098. "symfony/cache": "<5.0",
  4099. "symfony/config": "<5.0",
  4100. "symfony/console": "<4.4",
  4101. "symfony/dependency-injection": "<5.3",
  4102. "symfony/doctrine-bridge": "<5.0",
  4103. "symfony/form": "<5.0",
  4104. "symfony/http-client": "<5.0",
  4105. "symfony/mailer": "<5.0",
  4106. "symfony/messenger": "<5.0",
  4107. "symfony/translation": "<5.0",
  4108. "symfony/twig-bridge": "<5.0",
  4109. "symfony/validator": "<5.0",
  4110. "twig/twig": "<2.13"
  4111. },
  4112. "provide": {
  4113. "psr/log-implementation": "1.0|2.0"
  4114. },
  4115. "require-dev": {
  4116. "psr/cache": "^1.0|^2.0|^3.0",
  4117. "symfony/browser-kit": "^5.4|^6.0",
  4118. "symfony/config": "^5.0|^6.0",
  4119. "symfony/console": "^4.4|^5.0|^6.0",
  4120. "symfony/css-selector": "^4.4|^5.0|^6.0",
  4121. "symfony/dependency-injection": "^5.3|^6.0",
  4122. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  4123. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4124. "symfony/finder": "^4.4|^5.0|^6.0",
  4125. "symfony/http-client-contracts": "^1.1|^2|^3",
  4126. "symfony/process": "^4.4|^5.0|^6.0",
  4127. "symfony/routing": "^4.4|^5.0|^6.0",
  4128. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  4129. "symfony/translation": "^4.4|^5.0|^6.0",
  4130. "symfony/translation-contracts": "^1.1|^2|^3",
  4131. "twig/twig": "^2.13|^3.0.4"
  4132. },
  4133. "suggest": {
  4134. "symfony/browser-kit": "",
  4135. "symfony/config": "",
  4136. "symfony/console": "",
  4137. "symfony/dependency-injection": ""
  4138. },
  4139. "type": "library",
  4140. "autoload": {
  4141. "psr-4": {
  4142. "Symfony\\Component\\HttpKernel\\": ""
  4143. },
  4144. "exclude-from-classmap": [
  4145. "/Tests/"
  4146. ]
  4147. },
  4148. "notification-url": "https://packagist.org/downloads/",
  4149. "license": [
  4150. "MIT"
  4151. ],
  4152. "authors": [
  4153. {
  4154. "name": "Fabien Potencier",
  4155. "email": "fabien@symfony.com"
  4156. },
  4157. {
  4158. "name": "Symfony Community",
  4159. "homepage": "https://symfony.com/contributors"
  4160. }
  4161. ],
  4162. "description": "Provides a structured process for converting a Request into a Response",
  4163. "homepage": "https://symfony.com",
  4164. "support": {
  4165. "source": "https://github.com/symfony/http-kernel/tree/v5.4.1"
  4166. },
  4167. "funding": [
  4168. {
  4169. "url": "https://symfony.com/sponsor",
  4170. "type": "custom"
  4171. },
  4172. {
  4173. "url": "https://github.com/fabpot",
  4174. "type": "github"
  4175. },
  4176. {
  4177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4178. "type": "tidelift"
  4179. }
  4180. ],
  4181. "time": "2021-12-09T13:36:09+00:00"
  4182. },
  4183. {
  4184. "name": "symfony/monolog-bridge",
  4185. "version": "v5.4.0",
  4186. "source": {
  4187. "type": "git",
  4188. "url": "https://github.com/symfony/monolog-bridge.git",
  4189. "reference": "6ce6f39536a718ec2ece37eae81c6899030fc571"
  4190. },
  4191. "dist": {
  4192. "type": "zip",
  4193. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/6ce6f39536a718ec2ece37eae81c6899030fc571",
  4194. "reference": "6ce6f39536a718ec2ece37eae81c6899030fc571",
  4195. "shasum": ""
  4196. },
  4197. "require": {
  4198. "monolog/monolog": "^1.25.1|^2",
  4199. "php": ">=7.2.5",
  4200. "symfony/deprecation-contracts": "^2.1|^3",
  4201. "symfony/http-kernel": "^5.3|^6.0",
  4202. "symfony/polyfill-php80": "^1.16",
  4203. "symfony/service-contracts": "^1.1|^2|^3"
  4204. },
  4205. "conflict": {
  4206. "symfony/console": "<4.4",
  4207. "symfony/http-foundation": "<5.3"
  4208. },
  4209. "require-dev": {
  4210. "symfony/console": "^4.4|^5.0|^6.0",
  4211. "symfony/http-client": "^4.4|^5.0|^6.0",
  4212. "symfony/mailer": "^4.4|^5.0|^6.0",
  4213. "symfony/messenger": "^4.4|^5.0|^6.0",
  4214. "symfony/mime": "^4.4|^5.0|^6.0",
  4215. "symfony/security-core": "^4.4|^5.0|^6.0",
  4216. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4217. },
  4218. "suggest": {
  4219. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  4220. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  4221. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  4222. },
  4223. "type": "symfony-bridge",
  4224. "autoload": {
  4225. "psr-4": {
  4226. "Symfony\\Bridge\\Monolog\\": ""
  4227. },
  4228. "exclude-from-classmap": [
  4229. "/Tests/"
  4230. ]
  4231. },
  4232. "notification-url": "https://packagist.org/downloads/",
  4233. "license": [
  4234. "MIT"
  4235. ],
  4236. "authors": [
  4237. {
  4238. "name": "Fabien Potencier",
  4239. "email": "fabien@symfony.com"
  4240. },
  4241. {
  4242. "name": "Symfony Community",
  4243. "homepage": "https://symfony.com/contributors"
  4244. }
  4245. ],
  4246. "description": "Provides integration for Monolog with various Symfony components",
  4247. "homepage": "https://symfony.com",
  4248. "support": {
  4249. "source": "https://github.com/symfony/monolog-bridge/tree/v5.4.0"
  4250. },
  4251. "funding": [
  4252. {
  4253. "url": "https://symfony.com/sponsor",
  4254. "type": "custom"
  4255. },
  4256. {
  4257. "url": "https://github.com/fabpot",
  4258. "type": "github"
  4259. },
  4260. {
  4261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4262. "type": "tidelift"
  4263. }
  4264. ],
  4265. "time": "2021-11-23T10:19:22+00:00"
  4266. },
  4267. {
  4268. "name": "symfony/monolog-bundle",
  4269. "version": "v3.7.1",
  4270. "source": {
  4271. "type": "git",
  4272. "url": "https://github.com/symfony/monolog-bundle.git",
  4273. "reference": "fde12fc628162787a4e53877abadc30047fd868b"
  4274. },
  4275. "dist": {
  4276. "type": "zip",
  4277. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/fde12fc628162787a4e53877abadc30047fd868b",
  4278. "reference": "fde12fc628162787a4e53877abadc30047fd868b",
  4279. "shasum": ""
  4280. },
  4281. "require": {
  4282. "monolog/monolog": "~1.22 || ~2.0",
  4283. "php": ">=7.1.3",
  4284. "symfony/config": "~4.4 || ^5.0 || ^6.0",
  4285. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  4286. "symfony/http-kernel": "~4.4 || ^5.0 || ^6.0",
  4287. "symfony/monolog-bridge": "~4.4 || ^5.0 || ^6.0"
  4288. },
  4289. "require-dev": {
  4290. "symfony/console": "~4.4 || ^5.0 || ^6.0",
  4291. "symfony/phpunit-bridge": "^5.2 || ^6.0",
  4292. "symfony/yaml": "~4.4 || ^5.0 || ^6.0"
  4293. },
  4294. "type": "symfony-bundle",
  4295. "extra": {
  4296. "branch-alias": {
  4297. "dev-master": "3.x-dev"
  4298. }
  4299. },
  4300. "autoload": {
  4301. "psr-4": {
  4302. "Symfony\\Bundle\\MonologBundle\\": ""
  4303. },
  4304. "exclude-from-classmap": [
  4305. "/Tests/"
  4306. ]
  4307. },
  4308. "notification-url": "https://packagist.org/downloads/",
  4309. "license": [
  4310. "MIT"
  4311. ],
  4312. "authors": [
  4313. {
  4314. "name": "Fabien Potencier",
  4315. "email": "fabien@symfony.com"
  4316. },
  4317. {
  4318. "name": "Symfony Community",
  4319. "homepage": "https://symfony.com/contributors"
  4320. }
  4321. ],
  4322. "description": "Symfony MonologBundle",
  4323. "homepage": "https://symfony.com",
  4324. "keywords": [
  4325. "log",
  4326. "logging"
  4327. ],
  4328. "support": {
  4329. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4330. "source": "https://github.com/symfony/monolog-bundle/tree/v3.7.1"
  4331. },
  4332. "funding": [
  4333. {
  4334. "url": "https://symfony.com/sponsor",
  4335. "type": "custom"
  4336. },
  4337. {
  4338. "url": "https://github.com/fabpot",
  4339. "type": "github"
  4340. },
  4341. {
  4342. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4343. "type": "tidelift"
  4344. }
  4345. ],
  4346. "time": "2021-11-05T10:34:29+00:00"
  4347. },
  4348. {
  4349. "name": "symfony/options-resolver",
  4350. "version": "v5.4.0",
  4351. "source": {
  4352. "type": "git",
  4353. "url": "https://github.com/symfony/options-resolver.git",
  4354. "reference": "b0fb78576487af19c500aaddb269fd36701d4847"
  4355. },
  4356. "dist": {
  4357. "type": "zip",
  4358. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/b0fb78576487af19c500aaddb269fd36701d4847",
  4359. "reference": "b0fb78576487af19c500aaddb269fd36701d4847",
  4360. "shasum": ""
  4361. },
  4362. "require": {
  4363. "php": ">=7.2.5",
  4364. "symfony/deprecation-contracts": "^2.1|^3",
  4365. "symfony/polyfill-php73": "~1.0",
  4366. "symfony/polyfill-php80": "^1.16"
  4367. },
  4368. "type": "library",
  4369. "autoload": {
  4370. "psr-4": {
  4371. "Symfony\\Component\\OptionsResolver\\": ""
  4372. },
  4373. "exclude-from-classmap": [
  4374. "/Tests/"
  4375. ]
  4376. },
  4377. "notification-url": "https://packagist.org/downloads/",
  4378. "license": [
  4379. "MIT"
  4380. ],
  4381. "authors": [
  4382. {
  4383. "name": "Fabien Potencier",
  4384. "email": "fabien@symfony.com"
  4385. },
  4386. {
  4387. "name": "Symfony Community",
  4388. "homepage": "https://symfony.com/contributors"
  4389. }
  4390. ],
  4391. "description": "Provides an improved replacement for the array_replace PHP function",
  4392. "homepage": "https://symfony.com",
  4393. "keywords": [
  4394. "config",
  4395. "configuration",
  4396. "options"
  4397. ],
  4398. "support": {
  4399. "source": "https://github.com/symfony/options-resolver/tree/v5.4.0"
  4400. },
  4401. "funding": [
  4402. {
  4403. "url": "https://symfony.com/sponsor",
  4404. "type": "custom"
  4405. },
  4406. {
  4407. "url": "https://github.com/fabpot",
  4408. "type": "github"
  4409. },
  4410. {
  4411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4412. "type": "tidelift"
  4413. }
  4414. ],
  4415. "time": "2021-11-23T10:19:22+00:00"
  4416. },
  4417. {
  4418. "name": "symfony/password-hasher",
  4419. "version": "v5.4.0",
  4420. "source": {
  4421. "type": "git",
  4422. "url": "https://github.com/symfony/password-hasher.git",
  4423. "reference": "60c4aba11e2ce4140a5a9cbc13733da4b8333e2d"
  4424. },
  4425. "dist": {
  4426. "type": "zip",
  4427. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/60c4aba11e2ce4140a5a9cbc13733da4b8333e2d",
  4428. "reference": "60c4aba11e2ce4140a5a9cbc13733da4b8333e2d",
  4429. "shasum": ""
  4430. },
  4431. "require": {
  4432. "php": ">=7.2.5",
  4433. "symfony/polyfill-php80": "^1.15"
  4434. },
  4435. "conflict": {
  4436. "symfony/security-core": "<5.3"
  4437. },
  4438. "require-dev": {
  4439. "symfony/console": "^5",
  4440. "symfony/security-core": "^5.3|^6.0"
  4441. },
  4442. "type": "library",
  4443. "autoload": {
  4444. "psr-4": {
  4445. "Symfony\\Component\\PasswordHasher\\": ""
  4446. },
  4447. "exclude-from-classmap": [
  4448. "/Tests/"
  4449. ]
  4450. },
  4451. "notification-url": "https://packagist.org/downloads/",
  4452. "license": [
  4453. "MIT"
  4454. ],
  4455. "authors": [
  4456. {
  4457. "name": "Robin Chalas",
  4458. "email": "robin.chalas@gmail.com"
  4459. },
  4460. {
  4461. "name": "Symfony Community",
  4462. "homepage": "https://symfony.com/contributors"
  4463. }
  4464. ],
  4465. "description": "Provides password hashing utilities",
  4466. "homepage": "https://symfony.com",
  4467. "keywords": [
  4468. "hashing",
  4469. "password"
  4470. ],
  4471. "support": {
  4472. "source": "https://github.com/symfony/password-hasher/tree/v5.4.0"
  4473. },
  4474. "funding": [
  4475. {
  4476. "url": "https://symfony.com/sponsor",
  4477. "type": "custom"
  4478. },
  4479. {
  4480. "url": "https://github.com/fabpot",
  4481. "type": "github"
  4482. },
  4483. {
  4484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4485. "type": "tidelift"
  4486. }
  4487. ],
  4488. "time": "2021-10-30T15:55:55+00:00"
  4489. },
  4490. {
  4491. "name": "symfony/polyfill-intl-grapheme",
  4492. "version": "v1.23.1",
  4493. "source": {
  4494. "type": "git",
  4495. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4496. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
  4497. },
  4498. "dist": {
  4499. "type": "zip",
  4500. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
  4501. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
  4502. "shasum": ""
  4503. },
  4504. "require": {
  4505. "php": ">=7.1"
  4506. },
  4507. "suggest": {
  4508. "ext-intl": "For best performance"
  4509. },
  4510. "type": "library",
  4511. "extra": {
  4512. "branch-alias": {
  4513. "dev-main": "1.23-dev"
  4514. },
  4515. "thanks": {
  4516. "name": "symfony/polyfill",
  4517. "url": "https://github.com/symfony/polyfill"
  4518. }
  4519. },
  4520. "autoload": {
  4521. "psr-4": {
  4522. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4523. },
  4524. "files": [
  4525. "bootstrap.php"
  4526. ]
  4527. },
  4528. "notification-url": "https://packagist.org/downloads/",
  4529. "license": [
  4530. "MIT"
  4531. ],
  4532. "authors": [
  4533. {
  4534. "name": "Nicolas Grekas",
  4535. "email": "p@tchwork.com"
  4536. },
  4537. {
  4538. "name": "Symfony Community",
  4539. "homepage": "https://symfony.com/contributors"
  4540. }
  4541. ],
  4542. "description": "Symfony polyfill for intl's grapheme_* functions",
  4543. "homepage": "https://symfony.com",
  4544. "keywords": [
  4545. "compatibility",
  4546. "grapheme",
  4547. "intl",
  4548. "polyfill",
  4549. "portable",
  4550. "shim"
  4551. ],
  4552. "support": {
  4553. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1"
  4554. },
  4555. "funding": [
  4556. {
  4557. "url": "https://symfony.com/sponsor",
  4558. "type": "custom"
  4559. },
  4560. {
  4561. "url": "https://github.com/fabpot",
  4562. "type": "github"
  4563. },
  4564. {
  4565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4566. "type": "tidelift"
  4567. }
  4568. ],
  4569. "time": "2021-05-27T12:26:48+00:00"
  4570. },
  4571. {
  4572. "name": "symfony/polyfill-intl-icu",
  4573. "version": "v1.23.0",
  4574. "source": {
  4575. "type": "git",
  4576. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4577. "reference": "4a80a521d6176870b6445cfb469c130f9cae1dda"
  4578. },
  4579. "dist": {
  4580. "type": "zip",
  4581. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/4a80a521d6176870b6445cfb469c130f9cae1dda",
  4582. "reference": "4a80a521d6176870b6445cfb469c130f9cae1dda",
  4583. "shasum": ""
  4584. },
  4585. "require": {
  4586. "php": ">=7.1"
  4587. },
  4588. "suggest": {
  4589. "ext-intl": "For best performance and support of other locales than \"en\""
  4590. },
  4591. "type": "library",
  4592. "extra": {
  4593. "branch-alias": {
  4594. "dev-main": "1.23-dev"
  4595. },
  4596. "thanks": {
  4597. "name": "symfony/polyfill",
  4598. "url": "https://github.com/symfony/polyfill"
  4599. }
  4600. },
  4601. "autoload": {
  4602. "files": [
  4603. "bootstrap.php"
  4604. ],
  4605. "psr-4": {
  4606. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  4607. },
  4608. "classmap": [
  4609. "Resources/stubs"
  4610. ],
  4611. "exclude-from-classmap": [
  4612. "/Tests/"
  4613. ]
  4614. },
  4615. "notification-url": "https://packagist.org/downloads/",
  4616. "license": [
  4617. "MIT"
  4618. ],
  4619. "authors": [
  4620. {
  4621. "name": "Nicolas Grekas",
  4622. "email": "p@tchwork.com"
  4623. },
  4624. {
  4625. "name": "Symfony Community",
  4626. "homepage": "https://symfony.com/contributors"
  4627. }
  4628. ],
  4629. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4630. "homepage": "https://symfony.com",
  4631. "keywords": [
  4632. "compatibility",
  4633. "icu",
  4634. "intl",
  4635. "polyfill",
  4636. "portable",
  4637. "shim"
  4638. ],
  4639. "support": {
  4640. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.23.0"
  4641. },
  4642. "funding": [
  4643. {
  4644. "url": "https://symfony.com/sponsor",
  4645. "type": "custom"
  4646. },
  4647. {
  4648. "url": "https://github.com/fabpot",
  4649. "type": "github"
  4650. },
  4651. {
  4652. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4653. "type": "tidelift"
  4654. }
  4655. ],
  4656. "time": "2021-05-24T10:04:56+00:00"
  4657. },
  4658. {
  4659. "name": "symfony/polyfill-intl-idn",
  4660. "version": "v1.23.0",
  4661. "source": {
  4662. "type": "git",
  4663. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4664. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  4665. },
  4666. "dist": {
  4667. "type": "zip",
  4668. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  4669. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  4670. "shasum": ""
  4671. },
  4672. "require": {
  4673. "php": ">=7.1",
  4674. "symfony/polyfill-intl-normalizer": "^1.10",
  4675. "symfony/polyfill-php72": "^1.10"
  4676. },
  4677. "suggest": {
  4678. "ext-intl": "For best performance"
  4679. },
  4680. "type": "library",
  4681. "extra": {
  4682. "branch-alias": {
  4683. "dev-main": "1.23-dev"
  4684. },
  4685. "thanks": {
  4686. "name": "symfony/polyfill",
  4687. "url": "https://github.com/symfony/polyfill"
  4688. }
  4689. },
  4690. "autoload": {
  4691. "psr-4": {
  4692. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4693. },
  4694. "files": [
  4695. "bootstrap.php"
  4696. ]
  4697. },
  4698. "notification-url": "https://packagist.org/downloads/",
  4699. "license": [
  4700. "MIT"
  4701. ],
  4702. "authors": [
  4703. {
  4704. "name": "Laurent Bassin",
  4705. "email": "laurent@bassin.info"
  4706. },
  4707. {
  4708. "name": "Trevor Rowbotham",
  4709. "email": "trevor.rowbotham@pm.me"
  4710. },
  4711. {
  4712. "name": "Symfony Community",
  4713. "homepage": "https://symfony.com/contributors"
  4714. }
  4715. ],
  4716. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4717. "homepage": "https://symfony.com",
  4718. "keywords": [
  4719. "compatibility",
  4720. "idn",
  4721. "intl",
  4722. "polyfill",
  4723. "portable",
  4724. "shim"
  4725. ],
  4726. "support": {
  4727. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  4728. },
  4729. "funding": [
  4730. {
  4731. "url": "https://symfony.com/sponsor",
  4732. "type": "custom"
  4733. },
  4734. {
  4735. "url": "https://github.com/fabpot",
  4736. "type": "github"
  4737. },
  4738. {
  4739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4740. "type": "tidelift"
  4741. }
  4742. ],
  4743. "time": "2021-05-27T09:27:20+00:00"
  4744. },
  4745. {
  4746. "name": "symfony/polyfill-intl-normalizer",
  4747. "version": "v1.23.0",
  4748. "source": {
  4749. "type": "git",
  4750. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4751. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  4752. },
  4753. "dist": {
  4754. "type": "zip",
  4755. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  4756. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  4757. "shasum": ""
  4758. },
  4759. "require": {
  4760. "php": ">=7.1"
  4761. },
  4762. "suggest": {
  4763. "ext-intl": "For best performance"
  4764. },
  4765. "type": "library",
  4766. "extra": {
  4767. "branch-alias": {
  4768. "dev-main": "1.23-dev"
  4769. },
  4770. "thanks": {
  4771. "name": "symfony/polyfill",
  4772. "url": "https://github.com/symfony/polyfill"
  4773. }
  4774. },
  4775. "autoload": {
  4776. "psr-4": {
  4777. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4778. },
  4779. "files": [
  4780. "bootstrap.php"
  4781. ],
  4782. "classmap": [
  4783. "Resources/stubs"
  4784. ]
  4785. },
  4786. "notification-url": "https://packagist.org/downloads/",
  4787. "license": [
  4788. "MIT"
  4789. ],
  4790. "authors": [
  4791. {
  4792. "name": "Nicolas Grekas",
  4793. "email": "p@tchwork.com"
  4794. },
  4795. {
  4796. "name": "Symfony Community",
  4797. "homepage": "https://symfony.com/contributors"
  4798. }
  4799. ],
  4800. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4801. "homepage": "https://symfony.com",
  4802. "keywords": [
  4803. "compatibility",
  4804. "intl",
  4805. "normalizer",
  4806. "polyfill",
  4807. "portable",
  4808. "shim"
  4809. ],
  4810. "support": {
  4811. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  4812. },
  4813. "funding": [
  4814. {
  4815. "url": "https://symfony.com/sponsor",
  4816. "type": "custom"
  4817. },
  4818. {
  4819. "url": "https://github.com/fabpot",
  4820. "type": "github"
  4821. },
  4822. {
  4823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4824. "type": "tidelift"
  4825. }
  4826. ],
  4827. "time": "2021-02-19T12:13:01+00:00"
  4828. },
  4829. {
  4830. "name": "symfony/polyfill-mbstring",
  4831. "version": "v1.23.1",
  4832. "source": {
  4833. "type": "git",
  4834. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4835. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  4836. },
  4837. "dist": {
  4838. "type": "zip",
  4839. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  4840. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  4841. "shasum": ""
  4842. },
  4843. "require": {
  4844. "php": ">=7.1"
  4845. },
  4846. "suggest": {
  4847. "ext-mbstring": "For best performance"
  4848. },
  4849. "type": "library",
  4850. "extra": {
  4851. "branch-alias": {
  4852. "dev-main": "1.23-dev"
  4853. },
  4854. "thanks": {
  4855. "name": "symfony/polyfill",
  4856. "url": "https://github.com/symfony/polyfill"
  4857. }
  4858. },
  4859. "autoload": {
  4860. "psr-4": {
  4861. "Symfony\\Polyfill\\Mbstring\\": ""
  4862. },
  4863. "files": [
  4864. "bootstrap.php"
  4865. ]
  4866. },
  4867. "notification-url": "https://packagist.org/downloads/",
  4868. "license": [
  4869. "MIT"
  4870. ],
  4871. "authors": [
  4872. {
  4873. "name": "Nicolas Grekas",
  4874. "email": "p@tchwork.com"
  4875. },
  4876. {
  4877. "name": "Symfony Community",
  4878. "homepage": "https://symfony.com/contributors"
  4879. }
  4880. ],
  4881. "description": "Symfony polyfill for the Mbstring extension",
  4882. "homepage": "https://symfony.com",
  4883. "keywords": [
  4884. "compatibility",
  4885. "mbstring",
  4886. "polyfill",
  4887. "portable",
  4888. "shim"
  4889. ],
  4890. "support": {
  4891. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  4892. },
  4893. "funding": [
  4894. {
  4895. "url": "https://symfony.com/sponsor",
  4896. "type": "custom"
  4897. },
  4898. {
  4899. "url": "https://github.com/fabpot",
  4900. "type": "github"
  4901. },
  4902. {
  4903. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4904. "type": "tidelift"
  4905. }
  4906. ],
  4907. "time": "2021-05-27T12:26:48+00:00"
  4908. },
  4909. {
  4910. "name": "symfony/polyfill-php72",
  4911. "version": "v1.23.0",
  4912. "source": {
  4913. "type": "git",
  4914. "url": "https://github.com/symfony/polyfill-php72.git",
  4915. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  4916. },
  4917. "dist": {
  4918. "type": "zip",
  4919. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  4920. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  4921. "shasum": ""
  4922. },
  4923. "require": {
  4924. "php": ">=7.1"
  4925. },
  4926. "type": "library",
  4927. "extra": {
  4928. "branch-alias": {
  4929. "dev-main": "1.23-dev"
  4930. },
  4931. "thanks": {
  4932. "name": "symfony/polyfill",
  4933. "url": "https://github.com/symfony/polyfill"
  4934. }
  4935. },
  4936. "autoload": {
  4937. "psr-4": {
  4938. "Symfony\\Polyfill\\Php72\\": ""
  4939. },
  4940. "files": [
  4941. "bootstrap.php"
  4942. ]
  4943. },
  4944. "notification-url": "https://packagist.org/downloads/",
  4945. "license": [
  4946. "MIT"
  4947. ],
  4948. "authors": [
  4949. {
  4950. "name": "Nicolas Grekas",
  4951. "email": "p@tchwork.com"
  4952. },
  4953. {
  4954. "name": "Symfony Community",
  4955. "homepage": "https://symfony.com/contributors"
  4956. }
  4957. ],
  4958. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4959. "homepage": "https://symfony.com",
  4960. "keywords": [
  4961. "compatibility",
  4962. "polyfill",
  4963. "portable",
  4964. "shim"
  4965. ],
  4966. "support": {
  4967. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  4968. },
  4969. "funding": [
  4970. {
  4971. "url": "https://symfony.com/sponsor",
  4972. "type": "custom"
  4973. },
  4974. {
  4975. "url": "https://github.com/fabpot",
  4976. "type": "github"
  4977. },
  4978. {
  4979. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4980. "type": "tidelift"
  4981. }
  4982. ],
  4983. "time": "2021-05-27T09:17:38+00:00"
  4984. },
  4985. {
  4986. "name": "symfony/polyfill-php73",
  4987. "version": "v1.23.0",
  4988. "source": {
  4989. "type": "git",
  4990. "url": "https://github.com/symfony/polyfill-php73.git",
  4991. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  4992. },
  4993. "dist": {
  4994. "type": "zip",
  4995. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  4996. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  4997. "shasum": ""
  4998. },
  4999. "require": {
  5000. "php": ">=7.1"
  5001. },
  5002. "type": "library",
  5003. "extra": {
  5004. "branch-alias": {
  5005. "dev-main": "1.23-dev"
  5006. },
  5007. "thanks": {
  5008. "name": "symfony/polyfill",
  5009. "url": "https://github.com/symfony/polyfill"
  5010. }
  5011. },
  5012. "autoload": {
  5013. "psr-4": {
  5014. "Symfony\\Polyfill\\Php73\\": ""
  5015. },
  5016. "files": [
  5017. "bootstrap.php"
  5018. ],
  5019. "classmap": [
  5020. "Resources/stubs"
  5021. ]
  5022. },
  5023. "notification-url": "https://packagist.org/downloads/",
  5024. "license": [
  5025. "MIT"
  5026. ],
  5027. "authors": [
  5028. {
  5029. "name": "Nicolas Grekas",
  5030. "email": "p@tchwork.com"
  5031. },
  5032. {
  5033. "name": "Symfony Community",
  5034. "homepage": "https://symfony.com/contributors"
  5035. }
  5036. ],
  5037. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5038. "homepage": "https://symfony.com",
  5039. "keywords": [
  5040. "compatibility",
  5041. "polyfill",
  5042. "portable",
  5043. "shim"
  5044. ],
  5045. "support": {
  5046. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  5047. },
  5048. "funding": [
  5049. {
  5050. "url": "https://symfony.com/sponsor",
  5051. "type": "custom"
  5052. },
  5053. {
  5054. "url": "https://github.com/fabpot",
  5055. "type": "github"
  5056. },
  5057. {
  5058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5059. "type": "tidelift"
  5060. }
  5061. ],
  5062. "time": "2021-02-19T12:13:01+00:00"
  5063. },
  5064. {
  5065. "name": "symfony/polyfill-php80",
  5066. "version": "v1.23.1",
  5067. "source": {
  5068. "type": "git",
  5069. "url": "https://github.com/symfony/polyfill-php80.git",
  5070. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  5071. },
  5072. "dist": {
  5073. "type": "zip",
  5074. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  5075. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  5076. "shasum": ""
  5077. },
  5078. "require": {
  5079. "php": ">=7.1"
  5080. },
  5081. "type": "library",
  5082. "extra": {
  5083. "branch-alias": {
  5084. "dev-main": "1.23-dev"
  5085. },
  5086. "thanks": {
  5087. "name": "symfony/polyfill",
  5088. "url": "https://github.com/symfony/polyfill"
  5089. }
  5090. },
  5091. "autoload": {
  5092. "psr-4": {
  5093. "Symfony\\Polyfill\\Php80\\": ""
  5094. },
  5095. "files": [
  5096. "bootstrap.php"
  5097. ],
  5098. "classmap": [
  5099. "Resources/stubs"
  5100. ]
  5101. },
  5102. "notification-url": "https://packagist.org/downloads/",
  5103. "license": [
  5104. "MIT"
  5105. ],
  5106. "authors": [
  5107. {
  5108. "name": "Ion Bazan",
  5109. "email": "ion.bazan@gmail.com"
  5110. },
  5111. {
  5112. "name": "Nicolas Grekas",
  5113. "email": "p@tchwork.com"
  5114. },
  5115. {
  5116. "name": "Symfony Community",
  5117. "homepage": "https://symfony.com/contributors"
  5118. }
  5119. ],
  5120. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5121. "homepage": "https://symfony.com",
  5122. "keywords": [
  5123. "compatibility",
  5124. "polyfill",
  5125. "portable",
  5126. "shim"
  5127. ],
  5128. "support": {
  5129. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  5130. },
  5131. "funding": [
  5132. {
  5133. "url": "https://symfony.com/sponsor",
  5134. "type": "custom"
  5135. },
  5136. {
  5137. "url": "https://github.com/fabpot",
  5138. "type": "github"
  5139. },
  5140. {
  5141. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5142. "type": "tidelift"
  5143. }
  5144. ],
  5145. "time": "2021-07-28T13:41:28+00:00"
  5146. },
  5147. {
  5148. "name": "symfony/polyfill-php81",
  5149. "version": "v1.23.0",
  5150. "source": {
  5151. "type": "git",
  5152. "url": "https://github.com/symfony/polyfill-php81.git",
  5153. "reference": "e66119f3de95efc359483f810c4c3e6436279436"
  5154. },
  5155. "dist": {
  5156. "type": "zip",
  5157. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
  5158. "reference": "e66119f3de95efc359483f810c4c3e6436279436",
  5159. "shasum": ""
  5160. },
  5161. "require": {
  5162. "php": ">=7.1"
  5163. },
  5164. "type": "library",
  5165. "extra": {
  5166. "branch-alias": {
  5167. "dev-main": "1.23-dev"
  5168. },
  5169. "thanks": {
  5170. "name": "symfony/polyfill",
  5171. "url": "https://github.com/symfony/polyfill"
  5172. }
  5173. },
  5174. "autoload": {
  5175. "psr-4": {
  5176. "Symfony\\Polyfill\\Php81\\": ""
  5177. },
  5178. "files": [
  5179. "bootstrap.php"
  5180. ],
  5181. "classmap": [
  5182. "Resources/stubs"
  5183. ]
  5184. },
  5185. "notification-url": "https://packagist.org/downloads/",
  5186. "license": [
  5187. "MIT"
  5188. ],
  5189. "authors": [
  5190. {
  5191. "name": "Nicolas Grekas",
  5192. "email": "p@tchwork.com"
  5193. },
  5194. {
  5195. "name": "Symfony Community",
  5196. "homepage": "https://symfony.com/contributors"
  5197. }
  5198. ],
  5199. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5200. "homepage": "https://symfony.com",
  5201. "keywords": [
  5202. "compatibility",
  5203. "polyfill",
  5204. "portable",
  5205. "shim"
  5206. ],
  5207. "support": {
  5208. "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
  5209. },
  5210. "funding": [
  5211. {
  5212. "url": "https://symfony.com/sponsor",
  5213. "type": "custom"
  5214. },
  5215. {
  5216. "url": "https://github.com/fabpot",
  5217. "type": "github"
  5218. },
  5219. {
  5220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5221. "type": "tidelift"
  5222. }
  5223. ],
  5224. "time": "2021-05-21T13:25:03+00:00"
  5225. },
  5226. {
  5227. "name": "symfony/process",
  5228. "version": "v5.4.0",
  5229. "source": {
  5230. "type": "git",
  5231. "url": "https://github.com/symfony/process.git",
  5232. "reference": "5be20b3830f726e019162b26223110c8f47cf274"
  5233. },
  5234. "dist": {
  5235. "type": "zip",
  5236. "url": "https://api.github.com/repos/symfony/process/zipball/5be20b3830f726e019162b26223110c8f47cf274",
  5237. "reference": "5be20b3830f726e019162b26223110c8f47cf274",
  5238. "shasum": ""
  5239. },
  5240. "require": {
  5241. "php": ">=7.2.5",
  5242. "symfony/polyfill-php80": "^1.16"
  5243. },
  5244. "type": "library",
  5245. "autoload": {
  5246. "psr-4": {
  5247. "Symfony\\Component\\Process\\": ""
  5248. },
  5249. "exclude-from-classmap": [
  5250. "/Tests/"
  5251. ]
  5252. },
  5253. "notification-url": "https://packagist.org/downloads/",
  5254. "license": [
  5255. "MIT"
  5256. ],
  5257. "authors": [
  5258. {
  5259. "name": "Fabien Potencier",
  5260. "email": "fabien@symfony.com"
  5261. },
  5262. {
  5263. "name": "Symfony Community",
  5264. "homepage": "https://symfony.com/contributors"
  5265. }
  5266. ],
  5267. "description": "Executes commands in sub-processes",
  5268. "homepage": "https://symfony.com",
  5269. "support": {
  5270. "source": "https://github.com/symfony/process/tree/v5.4.0"
  5271. },
  5272. "funding": [
  5273. {
  5274. "url": "https://symfony.com/sponsor",
  5275. "type": "custom"
  5276. },
  5277. {
  5278. "url": "https://github.com/fabpot",
  5279. "type": "github"
  5280. },
  5281. {
  5282. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5283. "type": "tidelift"
  5284. }
  5285. ],
  5286. "time": "2021-11-28T15:25:38+00:00"
  5287. },
  5288. {
  5289. "name": "symfony/property-access",
  5290. "version": "v5.4.0",
  5291. "source": {
  5292. "type": "git",
  5293. "url": "https://github.com/symfony/property-access.git",
  5294. "reference": "07db4e9d1f0bf4b8a0c60a25b2672f20ab8f3562"
  5295. },
  5296. "dist": {
  5297. "type": "zip",
  5298. "url": "https://api.github.com/repos/symfony/property-access/zipball/07db4e9d1f0bf4b8a0c60a25b2672f20ab8f3562",
  5299. "reference": "07db4e9d1f0bf4b8a0c60a25b2672f20ab8f3562",
  5300. "shasum": ""
  5301. },
  5302. "require": {
  5303. "php": ">=7.2.5",
  5304. "symfony/deprecation-contracts": "^2.1|^3",
  5305. "symfony/polyfill-php80": "^1.16",
  5306. "symfony/property-info": "^5.2|^6.0"
  5307. },
  5308. "require-dev": {
  5309. "symfony/cache": "^4.4|^5.0|^6.0"
  5310. },
  5311. "suggest": {
  5312. "psr/cache-implementation": "To cache access methods."
  5313. },
  5314. "type": "library",
  5315. "autoload": {
  5316. "psr-4": {
  5317. "Symfony\\Component\\PropertyAccess\\": ""
  5318. },
  5319. "exclude-from-classmap": [
  5320. "/Tests/"
  5321. ]
  5322. },
  5323. "notification-url": "https://packagist.org/downloads/",
  5324. "license": [
  5325. "MIT"
  5326. ],
  5327. "authors": [
  5328. {
  5329. "name": "Fabien Potencier",
  5330. "email": "fabien@symfony.com"
  5331. },
  5332. {
  5333. "name": "Symfony Community",
  5334. "homepage": "https://symfony.com/contributors"
  5335. }
  5336. ],
  5337. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5338. "homepage": "https://symfony.com",
  5339. "keywords": [
  5340. "access",
  5341. "array",
  5342. "extraction",
  5343. "index",
  5344. "injection",
  5345. "object",
  5346. "property",
  5347. "property path",
  5348. "reflection"
  5349. ],
  5350. "support": {
  5351. "source": "https://github.com/symfony/property-access/tree/v5.4.0"
  5352. },
  5353. "funding": [
  5354. {
  5355. "url": "https://symfony.com/sponsor",
  5356. "type": "custom"
  5357. },
  5358. {
  5359. "url": "https://github.com/fabpot",
  5360. "type": "github"
  5361. },
  5362. {
  5363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5364. "type": "tidelift"
  5365. }
  5366. ],
  5367. "time": "2021-11-28T15:25:38+00:00"
  5368. },
  5369. {
  5370. "name": "symfony/property-info",
  5371. "version": "v5.4.0",
  5372. "source": {
  5373. "type": "git",
  5374. "url": "https://github.com/symfony/property-info.git",
  5375. "reference": "c21b4221522779537e9693d51536d8174579b1fd"
  5376. },
  5377. "dist": {
  5378. "type": "zip",
  5379. "url": "https://api.github.com/repos/symfony/property-info/zipball/c21b4221522779537e9693d51536d8174579b1fd",
  5380. "reference": "c21b4221522779537e9693d51536d8174579b1fd",
  5381. "shasum": ""
  5382. },
  5383. "require": {
  5384. "php": ">=7.2.5",
  5385. "symfony/deprecation-contracts": "^2.1|^3",
  5386. "symfony/polyfill-php80": "^1.16",
  5387. "symfony/string": "^5.1|^6.0"
  5388. },
  5389. "conflict": {
  5390. "phpdocumentor/reflection-docblock": "<3.2.2",
  5391. "phpdocumentor/type-resolver": "<1.4.0",
  5392. "symfony/dependency-injection": "<4.4"
  5393. },
  5394. "require-dev": {
  5395. "doctrine/annotations": "^1.10.4",
  5396. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5397. "phpstan/phpdoc-parser": "^1.0",
  5398. "symfony/cache": "^4.4|^5.0|^6.0",
  5399. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5400. "symfony/serializer": "^4.4|^5.0|^6.0"
  5401. },
  5402. "suggest": {
  5403. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  5404. "psr/cache-implementation": "To cache results",
  5405. "symfony/doctrine-bridge": "To use Doctrine metadata",
  5406. "symfony/serializer": "To use Serializer metadata"
  5407. },
  5408. "type": "library",
  5409. "autoload": {
  5410. "psr-4": {
  5411. "Symfony\\Component\\PropertyInfo\\": ""
  5412. },
  5413. "exclude-from-classmap": [
  5414. "/Tests/"
  5415. ]
  5416. },
  5417. "notification-url": "https://packagist.org/downloads/",
  5418. "license": [
  5419. "MIT"
  5420. ],
  5421. "authors": [
  5422. {
  5423. "name": "Kévin Dunglas",
  5424. "email": "dunglas@gmail.com"
  5425. },
  5426. {
  5427. "name": "Symfony Community",
  5428. "homepage": "https://symfony.com/contributors"
  5429. }
  5430. ],
  5431. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5432. "homepage": "https://symfony.com",
  5433. "keywords": [
  5434. "doctrine",
  5435. "phpdoc",
  5436. "property",
  5437. "symfony",
  5438. "type",
  5439. "validator"
  5440. ],
  5441. "support": {
  5442. "source": "https://github.com/symfony/property-info/tree/v5.4.0"
  5443. },
  5444. "funding": [
  5445. {
  5446. "url": "https://symfony.com/sponsor",
  5447. "type": "custom"
  5448. },
  5449. {
  5450. "url": "https://github.com/fabpot",
  5451. "type": "github"
  5452. },
  5453. {
  5454. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5455. "type": "tidelift"
  5456. }
  5457. ],
  5458. "time": "2021-11-23T10:19:22+00:00"
  5459. },
  5460. {
  5461. "name": "symfony/proxy-manager-bridge",
  5462. "version": "v5.4.0",
  5463. "source": {
  5464. "type": "git",
  5465. "url": "https://github.com/symfony/proxy-manager-bridge.git",
  5466. "reference": "91e5ddd5f7381f4a5524f10c8789c6d5d07f04e7"
  5467. },
  5468. "dist": {
  5469. "type": "zip",
  5470. "url": "https://api.github.com/repos/symfony/proxy-manager-bridge/zipball/91e5ddd5f7381f4a5524f10c8789c6d5d07f04e7",
  5471. "reference": "91e5ddd5f7381f4a5524f10c8789c6d5d07f04e7",
  5472. "shasum": ""
  5473. },
  5474. "require": {
  5475. "composer/package-versions-deprecated": "^1.8",
  5476. "friendsofphp/proxy-manager-lts": "^1.0.2",
  5477. "php": ">=7.2.5",
  5478. "symfony/dependency-injection": "^5.0|^6.0",
  5479. "symfony/polyfill-php80": "^1.16"
  5480. },
  5481. "require-dev": {
  5482. "symfony/config": "^4.4|^5.0|^6.0"
  5483. },
  5484. "type": "symfony-bridge",
  5485. "autoload": {
  5486. "psr-4": {
  5487. "Symfony\\Bridge\\ProxyManager\\": ""
  5488. },
  5489. "exclude-from-classmap": [
  5490. "/Tests/"
  5491. ]
  5492. },
  5493. "notification-url": "https://packagist.org/downloads/",
  5494. "license": [
  5495. "MIT"
  5496. ],
  5497. "authors": [
  5498. {
  5499. "name": "Fabien Potencier",
  5500. "email": "fabien@symfony.com"
  5501. },
  5502. {
  5503. "name": "Symfony Community",
  5504. "homepage": "https://symfony.com/contributors"
  5505. }
  5506. ],
  5507. "description": "Provides integration for ProxyManager with various Symfony components",
  5508. "homepage": "https://symfony.com",
  5509. "support": {
  5510. "source": "https://github.com/symfony/proxy-manager-bridge/tree/v5.4.0"
  5511. },
  5512. "funding": [
  5513. {
  5514. "url": "https://symfony.com/sponsor",
  5515. "type": "custom"
  5516. },
  5517. {
  5518. "url": "https://github.com/fabpot",
  5519. "type": "github"
  5520. },
  5521. {
  5522. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5523. "type": "tidelift"
  5524. }
  5525. ],
  5526. "time": "2021-11-17T12:18:18+00:00"
  5527. },
  5528. {
  5529. "name": "symfony/routing",
  5530. "version": "v5.4.0",
  5531. "source": {
  5532. "type": "git",
  5533. "url": "https://github.com/symfony/routing.git",
  5534. "reference": "9eeae93c32ca86746e5d38f3679e9569981038b1"
  5535. },
  5536. "dist": {
  5537. "type": "zip",
  5538. "url": "https://api.github.com/repos/symfony/routing/zipball/9eeae93c32ca86746e5d38f3679e9569981038b1",
  5539. "reference": "9eeae93c32ca86746e5d38f3679e9569981038b1",
  5540. "shasum": ""
  5541. },
  5542. "require": {
  5543. "php": ">=7.2.5",
  5544. "symfony/deprecation-contracts": "^2.1|^3",
  5545. "symfony/polyfill-php80": "^1.16"
  5546. },
  5547. "conflict": {
  5548. "doctrine/annotations": "<1.12",
  5549. "symfony/config": "<5.3",
  5550. "symfony/dependency-injection": "<4.4",
  5551. "symfony/yaml": "<4.4"
  5552. },
  5553. "require-dev": {
  5554. "doctrine/annotations": "^1.12",
  5555. "psr/log": "^1|^2|^3",
  5556. "symfony/config": "^5.3|^6.0",
  5557. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5558. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5559. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5560. "symfony/yaml": "^4.4|^5.0|^6.0"
  5561. },
  5562. "suggest": {
  5563. "symfony/config": "For using the all-in-one router or any loader",
  5564. "symfony/expression-language": "For using expression matching",
  5565. "symfony/http-foundation": "For using a Symfony Request object",
  5566. "symfony/yaml": "For using the YAML loader"
  5567. },
  5568. "type": "library",
  5569. "autoload": {
  5570. "psr-4": {
  5571. "Symfony\\Component\\Routing\\": ""
  5572. },
  5573. "exclude-from-classmap": [
  5574. "/Tests/"
  5575. ]
  5576. },
  5577. "notification-url": "https://packagist.org/downloads/",
  5578. "license": [
  5579. "MIT"
  5580. ],
  5581. "authors": [
  5582. {
  5583. "name": "Fabien Potencier",
  5584. "email": "fabien@symfony.com"
  5585. },
  5586. {
  5587. "name": "Symfony Community",
  5588. "homepage": "https://symfony.com/contributors"
  5589. }
  5590. ],
  5591. "description": "Maps an HTTP request to a set of configuration variables",
  5592. "homepage": "https://symfony.com",
  5593. "keywords": [
  5594. "router",
  5595. "routing",
  5596. "uri",
  5597. "url"
  5598. ],
  5599. "support": {
  5600. "source": "https://github.com/symfony/routing/tree/v5.4.0"
  5601. },
  5602. "funding": [
  5603. {
  5604. "url": "https://symfony.com/sponsor",
  5605. "type": "custom"
  5606. },
  5607. {
  5608. "url": "https://github.com/fabpot",
  5609. "type": "github"
  5610. },
  5611. {
  5612. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5613. "type": "tidelift"
  5614. }
  5615. ],
  5616. "time": "2021-11-23T10:19:22+00:00"
  5617. },
  5618. {
  5619. "name": "symfony/security-bundle",
  5620. "version": "v5.4.1",
  5621. "source": {
  5622. "type": "git",
  5623. "url": "https://github.com/symfony/security-bundle.git",
  5624. "reference": "39e7e10048a0cad8c4213603f8db173779fcf07d"
  5625. },
  5626. "dist": {
  5627. "type": "zip",
  5628. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/39e7e10048a0cad8c4213603f8db173779fcf07d",
  5629. "reference": "39e7e10048a0cad8c4213603f8db173779fcf07d",
  5630. "shasum": ""
  5631. },
  5632. "require": {
  5633. "ext-xml": "*",
  5634. "php": ">=7.2.5",
  5635. "symfony/config": "^4.4|^5.0|^6.0",
  5636. "symfony/dependency-injection": "^5.3|^6.0",
  5637. "symfony/deprecation-contracts": "^2.1|^3",
  5638. "symfony/event-dispatcher": "^5.1|^6.0",
  5639. "symfony/http-foundation": "^5.3|^6.0",
  5640. "symfony/http-kernel": "^5.3|^6.0",
  5641. "symfony/password-hasher": "^5.3|^6.0",
  5642. "symfony/polyfill-php80": "^1.16",
  5643. "symfony/security-core": "^5.4|^6.0",
  5644. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  5645. "symfony/security-guard": "^5.3",
  5646. "symfony/security-http": "^5.4|^6.0"
  5647. },
  5648. "conflict": {
  5649. "symfony/browser-kit": "<4.4",
  5650. "symfony/console": "<4.4",
  5651. "symfony/framework-bundle": "<4.4",
  5652. "symfony/ldap": "<5.1",
  5653. "symfony/twig-bundle": "<4.4"
  5654. },
  5655. "require-dev": {
  5656. "doctrine/annotations": "^1.10.4",
  5657. "symfony/asset": "^4.4|^5.0|^6.0",
  5658. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  5659. "symfony/console": "^4.4|^5.0|^6.0",
  5660. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5661. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5662. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5663. "symfony/form": "^4.4|^5.0|^6.0",
  5664. "symfony/framework-bundle": "^5.3|^6.0",
  5665. "symfony/ldap": "^5.3|^6.0",
  5666. "symfony/process": "^4.4|^5.0|^6.0",
  5667. "symfony/rate-limiter": "^5.2|^6.0",
  5668. "symfony/serializer": "^4.4|^5.0|^6.0",
  5669. "symfony/translation": "^4.4|^5.0|^6.0",
  5670. "symfony/twig-bridge": "^4.4|^5.0|^6.0",
  5671. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  5672. "symfony/validator": "^4.4|^5.0|^6.0",
  5673. "symfony/yaml": "^4.4|^5.0|^6.0",
  5674. "twig/twig": "^2.13|^3.0.4"
  5675. },
  5676. "type": "symfony-bundle",
  5677. "autoload": {
  5678. "psr-4": {
  5679. "Symfony\\Bundle\\SecurityBundle\\": ""
  5680. },
  5681. "exclude-from-classmap": [
  5682. "/Tests/"
  5683. ]
  5684. },
  5685. "notification-url": "https://packagist.org/downloads/",
  5686. "license": [
  5687. "MIT"
  5688. ],
  5689. "authors": [
  5690. {
  5691. "name": "Fabien Potencier",
  5692. "email": "fabien@symfony.com"
  5693. },
  5694. {
  5695. "name": "Symfony Community",
  5696. "homepage": "https://symfony.com/contributors"
  5697. }
  5698. ],
  5699. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  5700. "homepage": "https://symfony.com",
  5701. "support": {
  5702. "source": "https://github.com/symfony/security-bundle/tree/v5.4.1"
  5703. },
  5704. "funding": [
  5705. {
  5706. "url": "https://symfony.com/sponsor",
  5707. "type": "custom"
  5708. },
  5709. {
  5710. "url": "https://github.com/fabpot",
  5711. "type": "github"
  5712. },
  5713. {
  5714. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5715. "type": "tidelift"
  5716. }
  5717. ],
  5718. "time": "2021-12-04T17:10:39+00:00"
  5719. },
  5720. {
  5721. "name": "symfony/security-core",
  5722. "version": "v5.4.0",
  5723. "source": {
  5724. "type": "git",
  5725. "url": "https://github.com/symfony/security-core.git",
  5726. "reference": "cc961891c83fc87fd31361b85032db35ae9770e6"
  5727. },
  5728. "dist": {
  5729. "type": "zip",
  5730. "url": "https://api.github.com/repos/symfony/security-core/zipball/cc961891c83fc87fd31361b85032db35ae9770e6",
  5731. "reference": "cc961891c83fc87fd31361b85032db35ae9770e6",
  5732. "shasum": ""
  5733. },
  5734. "require": {
  5735. "php": ">=7.2.5",
  5736. "symfony/deprecation-contracts": "^2.1|^3",
  5737. "symfony/event-dispatcher-contracts": "^1.1|^2|^3",
  5738. "symfony/password-hasher": "^5.3|^6.0",
  5739. "symfony/polyfill-php80": "^1.16",
  5740. "symfony/service-contracts": "^1.1.6|^2|^3"
  5741. },
  5742. "conflict": {
  5743. "symfony/event-dispatcher": "<4.4",
  5744. "symfony/http-foundation": "<5.3",
  5745. "symfony/ldap": "<4.4",
  5746. "symfony/security-guard": "<4.4",
  5747. "symfony/validator": "<5.2"
  5748. },
  5749. "require-dev": {
  5750. "psr/cache": "^1.0|^2.0|^3.0",
  5751. "psr/container": "^1.0|^2.0",
  5752. "psr/log": "^1|^2|^3",
  5753. "symfony/cache": "^4.4|^5.0|^6.0",
  5754. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5755. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5756. "symfony/http-foundation": "^5.3|^6.0",
  5757. "symfony/ldap": "^4.4|^5.0|^6.0",
  5758. "symfony/translation": "^4.4|^5.0|^6.0",
  5759. "symfony/validator": "^5.2|^6.0"
  5760. },
  5761. "suggest": {
  5762. "psr/container-implementation": "To instantiate the Security class",
  5763. "symfony/event-dispatcher": "",
  5764. "symfony/expression-language": "For using the expression voter",
  5765. "symfony/http-foundation": "",
  5766. "symfony/ldap": "For using LDAP integration",
  5767. "symfony/validator": "For using the user password constraint"
  5768. },
  5769. "type": "library",
  5770. "autoload": {
  5771. "psr-4": {
  5772. "Symfony\\Component\\Security\\Core\\": ""
  5773. },
  5774. "exclude-from-classmap": [
  5775. "/Tests/"
  5776. ]
  5777. },
  5778. "notification-url": "https://packagist.org/downloads/",
  5779. "license": [
  5780. "MIT"
  5781. ],
  5782. "authors": [
  5783. {
  5784. "name": "Fabien Potencier",
  5785. "email": "fabien@symfony.com"
  5786. },
  5787. {
  5788. "name": "Symfony Community",
  5789. "homepage": "https://symfony.com/contributors"
  5790. }
  5791. ],
  5792. "description": "Symfony Security Component - Core Library",
  5793. "homepage": "https://symfony.com",
  5794. "support": {
  5795. "source": "https://github.com/symfony/security-core/tree/v5.4.0"
  5796. },
  5797. "funding": [
  5798. {
  5799. "url": "https://symfony.com/sponsor",
  5800. "type": "custom"
  5801. },
  5802. {
  5803. "url": "https://github.com/fabpot",
  5804. "type": "github"
  5805. },
  5806. {
  5807. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5808. "type": "tidelift"
  5809. }
  5810. ],
  5811. "time": "2021-11-23T19:07:08+00:00"
  5812. },
  5813. {
  5814. "name": "symfony/security-csrf",
  5815. "version": "v5.4.0",
  5816. "source": {
  5817. "type": "git",
  5818. "url": "https://github.com/symfony/security-csrf.git",
  5819. "reference": "a6bfeedc3fcaafd2eb9ce61f0eb6a95e0316a3e2"
  5820. },
  5821. "dist": {
  5822. "type": "zip",
  5823. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/a6bfeedc3fcaafd2eb9ce61f0eb6a95e0316a3e2",
  5824. "reference": "a6bfeedc3fcaafd2eb9ce61f0eb6a95e0316a3e2",
  5825. "shasum": ""
  5826. },
  5827. "require": {
  5828. "php": ">=7.2.5",
  5829. "symfony/polyfill-php80": "^1.16",
  5830. "symfony/security-core": "^4.4|^5.0|^6.0"
  5831. },
  5832. "conflict": {
  5833. "symfony/http-foundation": "<5.3"
  5834. },
  5835. "require-dev": {
  5836. "symfony/http-foundation": "^5.3|^6.0"
  5837. },
  5838. "suggest": {
  5839. "symfony/http-foundation": "For using the class SessionTokenStorage."
  5840. },
  5841. "type": "library",
  5842. "autoload": {
  5843. "psr-4": {
  5844. "Symfony\\Component\\Security\\Csrf\\": ""
  5845. },
  5846. "exclude-from-classmap": [
  5847. "/Tests/"
  5848. ]
  5849. },
  5850. "notification-url": "https://packagist.org/downloads/",
  5851. "license": [
  5852. "MIT"
  5853. ],
  5854. "authors": [
  5855. {
  5856. "name": "Fabien Potencier",
  5857. "email": "fabien@symfony.com"
  5858. },
  5859. {
  5860. "name": "Symfony Community",
  5861. "homepage": "https://symfony.com/contributors"
  5862. }
  5863. ],
  5864. "description": "Symfony Security Component - CSRF Library",
  5865. "homepage": "https://symfony.com",
  5866. "support": {
  5867. "source": "https://github.com/symfony/security-csrf/tree/v5.4.0"
  5868. },
  5869. "funding": [
  5870. {
  5871. "url": "https://symfony.com/sponsor",
  5872. "type": "custom"
  5873. },
  5874. {
  5875. "url": "https://github.com/fabpot",
  5876. "type": "github"
  5877. },
  5878. {
  5879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5880. "type": "tidelift"
  5881. }
  5882. ],
  5883. "time": "2021-11-23T19:07:08+00:00"
  5884. },
  5885. {
  5886. "name": "symfony/security-guard",
  5887. "version": "v5.4.0",
  5888. "source": {
  5889. "type": "git",
  5890. "url": "https://github.com/symfony/security-guard.git",
  5891. "reference": "5ebbe00731ce0773108116875083a82098ddddcf"
  5892. },
  5893. "dist": {
  5894. "type": "zip",
  5895. "url": "https://api.github.com/repos/symfony/security-guard/zipball/5ebbe00731ce0773108116875083a82098ddddcf",
  5896. "reference": "5ebbe00731ce0773108116875083a82098ddddcf",
  5897. "shasum": ""
  5898. },
  5899. "require": {
  5900. "php": ">=7.2.5",
  5901. "symfony/polyfill-php80": "^1.15",
  5902. "symfony/security-core": "^5.0",
  5903. "symfony/security-http": "^5.3"
  5904. },
  5905. "require-dev": {
  5906. "psr/log": "^1|^2|^3"
  5907. },
  5908. "type": "library",
  5909. "autoload": {
  5910. "psr-4": {
  5911. "Symfony\\Component\\Security\\Guard\\": ""
  5912. },
  5913. "exclude-from-classmap": [
  5914. "/Tests/"
  5915. ]
  5916. },
  5917. "notification-url": "https://packagist.org/downloads/",
  5918. "license": [
  5919. "MIT"
  5920. ],
  5921. "authors": [
  5922. {
  5923. "name": "Fabien Potencier",
  5924. "email": "fabien@symfony.com"
  5925. },
  5926. {
  5927. "name": "Symfony Community",
  5928. "homepage": "https://symfony.com/contributors"
  5929. }
  5930. ],
  5931. "description": "Symfony Security Component - Guard",
  5932. "homepage": "https://symfony.com",
  5933. "support": {
  5934. "source": "https://github.com/symfony/security-guard/tree/v5.4.0"
  5935. },
  5936. "funding": [
  5937. {
  5938. "url": "https://symfony.com/sponsor",
  5939. "type": "custom"
  5940. },
  5941. {
  5942. "url": "https://github.com/fabpot",
  5943. "type": "github"
  5944. },
  5945. {
  5946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5947. "type": "tidelift"
  5948. }
  5949. ],
  5950. "time": "2021-11-23T19:07:08+00:00"
  5951. },
  5952. {
  5953. "name": "symfony/security-http",
  5954. "version": "v5.4.0",
  5955. "source": {
  5956. "type": "git",
  5957. "url": "https://github.com/symfony/security-http.git",
  5958. "reference": "3fa1dcbde86f12454a78c69e9d1a6c3dca776ea4"
  5959. },
  5960. "dist": {
  5961. "type": "zip",
  5962. "url": "https://api.github.com/repos/symfony/security-http/zipball/3fa1dcbde86f12454a78c69e9d1a6c3dca776ea4",
  5963. "reference": "3fa1dcbde86f12454a78c69e9d1a6c3dca776ea4",
  5964. "shasum": ""
  5965. },
  5966. "require": {
  5967. "php": ">=7.2.5",
  5968. "symfony/deprecation-contracts": "^2.1|^3",
  5969. "symfony/http-foundation": "^5.3|^6.0",
  5970. "symfony/http-kernel": "^5.3|^6.0",
  5971. "symfony/polyfill-mbstring": "~1.0",
  5972. "symfony/polyfill-php80": "^1.16",
  5973. "symfony/property-access": "^4.4|^5.0|^6.0",
  5974. "symfony/security-core": "^5.4|^6.0"
  5975. },
  5976. "conflict": {
  5977. "symfony/event-dispatcher": "<4.3",
  5978. "symfony/security-bundle": "<5.3",
  5979. "symfony/security-csrf": "<4.4"
  5980. },
  5981. "require-dev": {
  5982. "psr/log": "^1|^2|^3",
  5983. "symfony/cache": "^4.4|^5.0|^6.0",
  5984. "symfony/rate-limiter": "^5.2|^6.0",
  5985. "symfony/routing": "^4.4|^5.0|^6.0",
  5986. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  5987. "symfony/translation": "^4.4|^5.0|^6.0"
  5988. },
  5989. "suggest": {
  5990. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  5991. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  5992. },
  5993. "type": "library",
  5994. "autoload": {
  5995. "psr-4": {
  5996. "Symfony\\Component\\Security\\Http\\": ""
  5997. },
  5998. "exclude-from-classmap": [
  5999. "/Tests/"
  6000. ]
  6001. },
  6002. "notification-url": "https://packagist.org/downloads/",
  6003. "license": [
  6004. "MIT"
  6005. ],
  6006. "authors": [
  6007. {
  6008. "name": "Fabien Potencier",
  6009. "email": "fabien@symfony.com"
  6010. },
  6011. {
  6012. "name": "Symfony Community",
  6013. "homepage": "https://symfony.com/contributors"
  6014. }
  6015. ],
  6016. "description": "Symfony Security Component - HTTP Integration",
  6017. "homepage": "https://symfony.com",
  6018. "support": {
  6019. "source": "https://github.com/symfony/security-http/tree/v5.4.0"
  6020. },
  6021. "funding": [
  6022. {
  6023. "url": "https://symfony.com/sponsor",
  6024. "type": "custom"
  6025. },
  6026. {
  6027. "url": "https://github.com/fabpot",
  6028. "type": "github"
  6029. },
  6030. {
  6031. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6032. "type": "tidelift"
  6033. }
  6034. ],
  6035. "time": "2021-11-29T15:50:27+00:00"
  6036. },
  6037. {
  6038. "name": "symfony/serializer",
  6039. "version": "v5.4.0",
  6040. "source": {
  6041. "type": "git",
  6042. "url": "https://github.com/symfony/serializer.git",
  6043. "reference": "66942cf6bf412ca72c39353596f4d37ee0f9059b"
  6044. },
  6045. "dist": {
  6046. "type": "zip",
  6047. "url": "https://api.github.com/repos/symfony/serializer/zipball/66942cf6bf412ca72c39353596f4d37ee0f9059b",
  6048. "reference": "66942cf6bf412ca72c39353596f4d37ee0f9059b",
  6049. "shasum": ""
  6050. },
  6051. "require": {
  6052. "php": ">=7.2.5",
  6053. "symfony/deprecation-contracts": "^2.1|^3",
  6054. "symfony/polyfill-ctype": "~1.8",
  6055. "symfony/polyfill-php80": "^1.16"
  6056. },
  6057. "conflict": {
  6058. "doctrine/annotations": "<1.12",
  6059. "phpdocumentor/reflection-docblock": "<3.2.2",
  6060. "phpdocumentor/type-resolver": "<1.4.0",
  6061. "symfony/dependency-injection": "<4.4",
  6062. "symfony/property-access": "<5.4",
  6063. "symfony/property-info": "<5.3",
  6064. "symfony/yaml": "<4.4"
  6065. },
  6066. "require-dev": {
  6067. "doctrine/annotations": "^1.12",
  6068. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6069. "symfony/cache": "^4.4|^5.0|^6.0",
  6070. "symfony/config": "^4.4|^5.0|^6.0",
  6071. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6072. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6073. "symfony/filesystem": "^4.4|^5.0|^6.0",
  6074. "symfony/form": "^4.4|^5.0|^6.0",
  6075. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6076. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6077. "symfony/mime": "^4.4|^5.0|^6.0",
  6078. "symfony/property-access": "^5.4|^6.0",
  6079. "symfony/property-info": "^5.3|^6.0",
  6080. "symfony/uid": "^5.1|^6.0",
  6081. "symfony/validator": "^4.4|^5.0|^6.0",
  6082. "symfony/var-dumper": "^4.4|^5.0|^6.0",
  6083. "symfony/var-exporter": "^4.4|^5.0|^6.0",
  6084. "symfony/yaml": "^4.4|^5.0|^6.0"
  6085. },
  6086. "suggest": {
  6087. "psr/cache-implementation": "For using the metadata cache.",
  6088. "symfony/config": "For using the XML mapping loader.",
  6089. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  6090. "symfony/property-access": "For using the ObjectNormalizer.",
  6091. "symfony/property-info": "To deserialize relations.",
  6092. "symfony/var-exporter": "For using the metadata compiler.",
  6093. "symfony/yaml": "For using the default YAML mapping loader."
  6094. },
  6095. "type": "library",
  6096. "autoload": {
  6097. "psr-4": {
  6098. "Symfony\\Component\\Serializer\\": ""
  6099. },
  6100. "exclude-from-classmap": [
  6101. "/Tests/"
  6102. ]
  6103. },
  6104. "notification-url": "https://packagist.org/downloads/",
  6105. "license": [
  6106. "MIT"
  6107. ],
  6108. "authors": [
  6109. {
  6110. "name": "Fabien Potencier",
  6111. "email": "fabien@symfony.com"
  6112. },
  6113. {
  6114. "name": "Symfony Community",
  6115. "homepage": "https://symfony.com/contributors"
  6116. }
  6117. ],
  6118. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6119. "homepage": "https://symfony.com",
  6120. "support": {
  6121. "source": "https://github.com/symfony/serializer/tree/v5.4.0"
  6122. },
  6123. "funding": [
  6124. {
  6125. "url": "https://symfony.com/sponsor",
  6126. "type": "custom"
  6127. },
  6128. {
  6129. "url": "https://github.com/fabpot",
  6130. "type": "github"
  6131. },
  6132. {
  6133. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6134. "type": "tidelift"
  6135. }
  6136. ],
  6137. "time": "2021-11-28T15:25:38+00:00"
  6138. },
  6139. {
  6140. "name": "symfony/service-contracts",
  6141. "version": "v2.5.0",
  6142. "source": {
  6143. "type": "git",
  6144. "url": "https://github.com/symfony/service-contracts.git",
  6145. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
  6146. },
  6147. "dist": {
  6148. "type": "zip",
  6149. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  6150. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  6151. "shasum": ""
  6152. },
  6153. "require": {
  6154. "php": ">=7.2.5",
  6155. "psr/container": "^1.1",
  6156. "symfony/deprecation-contracts": "^2.1"
  6157. },
  6158. "conflict": {
  6159. "ext-psr": "<1.1|>=2"
  6160. },
  6161. "suggest": {
  6162. "symfony/service-implementation": ""
  6163. },
  6164. "type": "library",
  6165. "extra": {
  6166. "branch-alias": {
  6167. "dev-main": "2.5-dev"
  6168. },
  6169. "thanks": {
  6170. "name": "symfony/contracts",
  6171. "url": "https://github.com/symfony/contracts"
  6172. }
  6173. },
  6174. "autoload": {
  6175. "psr-4": {
  6176. "Symfony\\Contracts\\Service\\": ""
  6177. }
  6178. },
  6179. "notification-url": "https://packagist.org/downloads/",
  6180. "license": [
  6181. "MIT"
  6182. ],
  6183. "authors": [
  6184. {
  6185. "name": "Nicolas Grekas",
  6186. "email": "p@tchwork.com"
  6187. },
  6188. {
  6189. "name": "Symfony Community",
  6190. "homepage": "https://symfony.com/contributors"
  6191. }
  6192. ],
  6193. "description": "Generic abstractions related to writing services",
  6194. "homepage": "https://symfony.com",
  6195. "keywords": [
  6196. "abstractions",
  6197. "contracts",
  6198. "decoupling",
  6199. "interfaces",
  6200. "interoperability",
  6201. "standards"
  6202. ],
  6203. "support": {
  6204. "source": "https://github.com/symfony/service-contracts/tree/v2.5.0"
  6205. },
  6206. "funding": [
  6207. {
  6208. "url": "https://symfony.com/sponsor",
  6209. "type": "custom"
  6210. },
  6211. {
  6212. "url": "https://github.com/fabpot",
  6213. "type": "github"
  6214. },
  6215. {
  6216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6217. "type": "tidelift"
  6218. }
  6219. ],
  6220. "time": "2021-11-04T16:48:04+00:00"
  6221. },
  6222. {
  6223. "name": "symfony/stopwatch",
  6224. "version": "v5.4.0",
  6225. "source": {
  6226. "type": "git",
  6227. "url": "https://github.com/symfony/stopwatch.git",
  6228. "reference": "208ef96122bfed82a8f3a61458a07113a08bdcfe"
  6229. },
  6230. "dist": {
  6231. "type": "zip",
  6232. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/208ef96122bfed82a8f3a61458a07113a08bdcfe",
  6233. "reference": "208ef96122bfed82a8f3a61458a07113a08bdcfe",
  6234. "shasum": ""
  6235. },
  6236. "require": {
  6237. "php": ">=7.2.5",
  6238. "symfony/service-contracts": "^1|^2|^3"
  6239. },
  6240. "type": "library",
  6241. "autoload": {
  6242. "psr-4": {
  6243. "Symfony\\Component\\Stopwatch\\": ""
  6244. },
  6245. "exclude-from-classmap": [
  6246. "/Tests/"
  6247. ]
  6248. },
  6249. "notification-url": "https://packagist.org/downloads/",
  6250. "license": [
  6251. "MIT"
  6252. ],
  6253. "authors": [
  6254. {
  6255. "name": "Fabien Potencier",
  6256. "email": "fabien@symfony.com"
  6257. },
  6258. {
  6259. "name": "Symfony Community",
  6260. "homepage": "https://symfony.com/contributors"
  6261. }
  6262. ],
  6263. "description": "Provides a way to profile code",
  6264. "homepage": "https://symfony.com",
  6265. "support": {
  6266. "source": "https://github.com/symfony/stopwatch/tree/v5.4.0"
  6267. },
  6268. "funding": [
  6269. {
  6270. "url": "https://symfony.com/sponsor",
  6271. "type": "custom"
  6272. },
  6273. {
  6274. "url": "https://github.com/fabpot",
  6275. "type": "github"
  6276. },
  6277. {
  6278. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6279. "type": "tidelift"
  6280. }
  6281. ],
  6282. "time": "2021-11-23T10:19:22+00:00"
  6283. },
  6284. {
  6285. "name": "symfony/string",
  6286. "version": "v5.4.0",
  6287. "source": {
  6288. "type": "git",
  6289. "url": "https://github.com/symfony/string.git",
  6290. "reference": "9ffaaba53c61ba75a3c7a3a779051d1e9ec4fd2d"
  6291. },
  6292. "dist": {
  6293. "type": "zip",
  6294. "url": "https://api.github.com/repos/symfony/string/zipball/9ffaaba53c61ba75a3c7a3a779051d1e9ec4fd2d",
  6295. "reference": "9ffaaba53c61ba75a3c7a3a779051d1e9ec4fd2d",
  6296. "shasum": ""
  6297. },
  6298. "require": {
  6299. "php": ">=7.2.5",
  6300. "symfony/polyfill-ctype": "~1.8",
  6301. "symfony/polyfill-intl-grapheme": "~1.0",
  6302. "symfony/polyfill-intl-normalizer": "~1.0",
  6303. "symfony/polyfill-mbstring": "~1.0",
  6304. "symfony/polyfill-php80": "~1.15"
  6305. },
  6306. "conflict": {
  6307. "symfony/translation-contracts": ">=3.0"
  6308. },
  6309. "require-dev": {
  6310. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6311. "symfony/http-client": "^4.4|^5.0|^6.0",
  6312. "symfony/translation-contracts": "^1.1|^2",
  6313. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6314. },
  6315. "type": "library",
  6316. "autoload": {
  6317. "psr-4": {
  6318. "Symfony\\Component\\String\\": ""
  6319. },
  6320. "files": [
  6321. "Resources/functions.php"
  6322. ],
  6323. "exclude-from-classmap": [
  6324. "/Tests/"
  6325. ]
  6326. },
  6327. "notification-url": "https://packagist.org/downloads/",
  6328. "license": [
  6329. "MIT"
  6330. ],
  6331. "authors": [
  6332. {
  6333. "name": "Nicolas Grekas",
  6334. "email": "p@tchwork.com"
  6335. },
  6336. {
  6337. "name": "Symfony Community",
  6338. "homepage": "https://symfony.com/contributors"
  6339. }
  6340. ],
  6341. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6342. "homepage": "https://symfony.com",
  6343. "keywords": [
  6344. "grapheme",
  6345. "i18n",
  6346. "string",
  6347. "unicode",
  6348. "utf-8",
  6349. "utf8"
  6350. ],
  6351. "support": {
  6352. "source": "https://github.com/symfony/string/tree/v5.4.0"
  6353. },
  6354. "funding": [
  6355. {
  6356. "url": "https://symfony.com/sponsor",
  6357. "type": "custom"
  6358. },
  6359. {
  6360. "url": "https://github.com/fabpot",
  6361. "type": "github"
  6362. },
  6363. {
  6364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6365. "type": "tidelift"
  6366. }
  6367. ],
  6368. "time": "2021-11-24T10:02:00+00:00"
  6369. },
  6370. {
  6371. "name": "symfony/swiftmailer-bundle",
  6372. "version": "v3.5.3",
  6373. "source": {
  6374. "type": "git",
  6375. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  6376. "reference": "fa7d78cbdf0a16a4da126c465f25f6547ad69cf6"
  6377. },
  6378. "dist": {
  6379. "type": "zip",
  6380. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/fa7d78cbdf0a16a4da126c465f25f6547ad69cf6",
  6381. "reference": "fa7d78cbdf0a16a4da126c465f25f6547ad69cf6",
  6382. "shasum": ""
  6383. },
  6384. "require": {
  6385. "php": ">=7.1",
  6386. "swiftmailer/swiftmailer": "^6.1.3",
  6387. "symfony/config": "^4.4|^5.0",
  6388. "symfony/dependency-injection": "^4.4|^5.0",
  6389. "symfony/http-kernel": "^4.4|^5.0"
  6390. },
  6391. "conflict": {
  6392. "twig/twig": "<1.41|>=2.0,<2.10"
  6393. },
  6394. "require-dev": {
  6395. "symfony/console": "^4.4|^5.0",
  6396. "symfony/framework-bundle": "^4.4|^5.0",
  6397. "symfony/phpunit-bridge": "^4.4|^5.0",
  6398. "symfony/yaml": "^4.4|^5.0"
  6399. },
  6400. "type": "symfony-bundle",
  6401. "extra": {
  6402. "branch-alias": {
  6403. "dev-main": "3.5-dev"
  6404. }
  6405. },
  6406. "autoload": {
  6407. "psr-4": {
  6408. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  6409. },
  6410. "exclude-from-classmap": [
  6411. "/Tests/"
  6412. ]
  6413. },
  6414. "notification-url": "https://packagist.org/downloads/",
  6415. "license": [
  6416. "MIT"
  6417. ],
  6418. "authors": [
  6419. {
  6420. "name": "Fabien Potencier",
  6421. "email": "fabien@symfony.com"
  6422. },
  6423. {
  6424. "name": "Symfony Community",
  6425. "homepage": "http://symfony.com/contributors"
  6426. }
  6427. ],
  6428. "description": "Symfony SwiftmailerBundle",
  6429. "homepage": "http://symfony.com",
  6430. "support": {
  6431. "issues": "https://github.com/symfony/swiftmailer-bundle/issues",
  6432. "source": "https://github.com/symfony/swiftmailer-bundle/tree/v3.5.3"
  6433. },
  6434. "funding": [
  6435. {
  6436. "url": "https://symfony.com/sponsor",
  6437. "type": "custom"
  6438. },
  6439. {
  6440. "url": "https://github.com/fabpot",
  6441. "type": "github"
  6442. },
  6443. {
  6444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6445. "type": "tidelift"
  6446. }
  6447. ],
  6448. "time": "2021-12-02T16:23:52+00:00"
  6449. },
  6450. {
  6451. "name": "symfony/translation",
  6452. "version": "v5.4.1",
  6453. "source": {
  6454. "type": "git",
  6455. "url": "https://github.com/symfony/translation.git",
  6456. "reference": "8c82cd35ed861236138d5ae1c78c0c7ebcd62107"
  6457. },
  6458. "dist": {
  6459. "type": "zip",
  6460. "url": "https://api.github.com/repos/symfony/translation/zipball/8c82cd35ed861236138d5ae1c78c0c7ebcd62107",
  6461. "reference": "8c82cd35ed861236138d5ae1c78c0c7ebcd62107",
  6462. "shasum": ""
  6463. },
  6464. "require": {
  6465. "php": ">=7.2.5",
  6466. "symfony/deprecation-contracts": "^2.1|^3",
  6467. "symfony/polyfill-mbstring": "~1.0",
  6468. "symfony/polyfill-php80": "^1.16",
  6469. "symfony/translation-contracts": "^2.3"
  6470. },
  6471. "conflict": {
  6472. "symfony/config": "<4.4",
  6473. "symfony/console": "<5.3",
  6474. "symfony/dependency-injection": "<5.0",
  6475. "symfony/http-kernel": "<5.0",
  6476. "symfony/twig-bundle": "<5.0",
  6477. "symfony/yaml": "<4.4"
  6478. },
  6479. "provide": {
  6480. "symfony/translation-implementation": "2.3"
  6481. },
  6482. "require-dev": {
  6483. "psr/log": "^1|^2|^3",
  6484. "symfony/config": "^4.4|^5.0|^6.0",
  6485. "symfony/console": "^5.4|^6.0",
  6486. "symfony/dependency-injection": "^5.0|^6.0",
  6487. "symfony/finder": "^4.4|^5.0|^6.0",
  6488. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6489. "symfony/http-kernel": "^5.0|^6.0",
  6490. "symfony/intl": "^4.4|^5.0|^6.0",
  6491. "symfony/polyfill-intl-icu": "^1.21",
  6492. "symfony/service-contracts": "^1.1.2|^2|^3",
  6493. "symfony/yaml": "^4.4|^5.0|^6.0"
  6494. },
  6495. "suggest": {
  6496. "psr/log-implementation": "To use logging capability in translator",
  6497. "symfony/config": "",
  6498. "symfony/yaml": ""
  6499. },
  6500. "type": "library",
  6501. "autoload": {
  6502. "files": [
  6503. "Resources/functions.php"
  6504. ],
  6505. "psr-4": {
  6506. "Symfony\\Component\\Translation\\": ""
  6507. },
  6508. "exclude-from-classmap": [
  6509. "/Tests/"
  6510. ]
  6511. },
  6512. "notification-url": "https://packagist.org/downloads/",
  6513. "license": [
  6514. "MIT"
  6515. ],
  6516. "authors": [
  6517. {
  6518. "name": "Fabien Potencier",
  6519. "email": "fabien@symfony.com"
  6520. },
  6521. {
  6522. "name": "Symfony Community",
  6523. "homepage": "https://symfony.com/contributors"
  6524. }
  6525. ],
  6526. "description": "Provides tools to internationalize your application",
  6527. "homepage": "https://symfony.com",
  6528. "support": {
  6529. "source": "https://github.com/symfony/translation/tree/v5.4.1"
  6530. },
  6531. "funding": [
  6532. {
  6533. "url": "https://symfony.com/sponsor",
  6534. "type": "custom"
  6535. },
  6536. {
  6537. "url": "https://github.com/fabpot",
  6538. "type": "github"
  6539. },
  6540. {
  6541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6542. "type": "tidelift"
  6543. }
  6544. ],
  6545. "time": "2021-12-05T20:33:52+00:00"
  6546. },
  6547. {
  6548. "name": "symfony/translation-contracts",
  6549. "version": "v2.5.0",
  6550. "source": {
  6551. "type": "git",
  6552. "url": "https://github.com/symfony/translation-contracts.git",
  6553. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e"
  6554. },
  6555. "dist": {
  6556. "type": "zip",
  6557. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e",
  6558. "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e",
  6559. "shasum": ""
  6560. },
  6561. "require": {
  6562. "php": ">=7.2.5"
  6563. },
  6564. "suggest": {
  6565. "symfony/translation-implementation": ""
  6566. },
  6567. "type": "library",
  6568. "extra": {
  6569. "branch-alias": {
  6570. "dev-main": "2.5-dev"
  6571. },
  6572. "thanks": {
  6573. "name": "symfony/contracts",
  6574. "url": "https://github.com/symfony/contracts"
  6575. }
  6576. },
  6577. "autoload": {
  6578. "psr-4": {
  6579. "Symfony\\Contracts\\Translation\\": ""
  6580. }
  6581. },
  6582. "notification-url": "https://packagist.org/downloads/",
  6583. "license": [
  6584. "MIT"
  6585. ],
  6586. "authors": [
  6587. {
  6588. "name": "Nicolas Grekas",
  6589. "email": "p@tchwork.com"
  6590. },
  6591. {
  6592. "name": "Symfony Community",
  6593. "homepage": "https://symfony.com/contributors"
  6594. }
  6595. ],
  6596. "description": "Generic abstractions related to translation",
  6597. "homepage": "https://symfony.com",
  6598. "keywords": [
  6599. "abstractions",
  6600. "contracts",
  6601. "decoupling",
  6602. "interfaces",
  6603. "interoperability",
  6604. "standards"
  6605. ],
  6606. "support": {
  6607. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.0"
  6608. },
  6609. "funding": [
  6610. {
  6611. "url": "https://symfony.com/sponsor",
  6612. "type": "custom"
  6613. },
  6614. {
  6615. "url": "https://github.com/fabpot",
  6616. "type": "github"
  6617. },
  6618. {
  6619. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6620. "type": "tidelift"
  6621. }
  6622. ],
  6623. "time": "2021-08-17T14:20:01+00:00"
  6624. },
  6625. {
  6626. "name": "symfony/twig-bridge",
  6627. "version": "v5.4.0",
  6628. "source": {
  6629. "type": "git",
  6630. "url": "https://github.com/symfony/twig-bridge.git",
  6631. "reference": "faed6ad85a2f8e675820422a74c4e0d5858a6821"
  6632. },
  6633. "dist": {
  6634. "type": "zip",
  6635. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/faed6ad85a2f8e675820422a74c4e0d5858a6821",
  6636. "reference": "faed6ad85a2f8e675820422a74c4e0d5858a6821",
  6637. "shasum": ""
  6638. },
  6639. "require": {
  6640. "php": ">=7.2.5",
  6641. "symfony/polyfill-php80": "^1.16",
  6642. "symfony/translation-contracts": "^1.1|^2|^3",
  6643. "twig/twig": "^2.13|^3.0.4"
  6644. },
  6645. "conflict": {
  6646. "phpdocumentor/reflection-docblock": "<3.2.2",
  6647. "phpdocumentor/type-resolver": "<1.4.0",
  6648. "symfony/console": "<5.3",
  6649. "symfony/form": "<5.3",
  6650. "symfony/http-foundation": "<5.3",
  6651. "symfony/http-kernel": "<4.4",
  6652. "symfony/translation": "<5.2",
  6653. "symfony/workflow": "<5.2"
  6654. },
  6655. "require-dev": {
  6656. "doctrine/annotations": "^1.12",
  6657. "egulias/email-validator": "^2.1.10|^3",
  6658. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6659. "symfony/asset": "^4.4|^5.0|^6.0",
  6660. "symfony/console": "^5.3|^6.0",
  6661. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6662. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6663. "symfony/finder": "^4.4|^5.0|^6.0",
  6664. "symfony/form": "^5.3|^6.0",
  6665. "symfony/http-foundation": "^5.3|^6.0",
  6666. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6667. "symfony/intl": "^4.4|^5.0|^6.0",
  6668. "symfony/mime": "^5.2|^6.0",
  6669. "symfony/polyfill-intl-icu": "~1.0",
  6670. "symfony/property-info": "^4.4|^5.1|^6.0",
  6671. "symfony/routing": "^4.4|^5.0|^6.0",
  6672. "symfony/security-acl": "^2.8|^3.0",
  6673. "symfony/security-core": "^4.4|^5.0|^6.0",
  6674. "symfony/security-csrf": "^4.4|^5.0|^6.0",
  6675. "symfony/security-http": "^4.4|^5.0|^6.0",
  6676. "symfony/serializer": "^5.2|^6.0",
  6677. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6678. "symfony/translation": "^5.2|^6.0",
  6679. "symfony/web-link": "^4.4|^5.0|^6.0",
  6680. "symfony/workflow": "^5.2|^6.0",
  6681. "symfony/yaml": "^4.4|^5.0|^6.0",
  6682. "twig/cssinliner-extra": "^2.12|^3",
  6683. "twig/inky-extra": "^2.12|^3",
  6684. "twig/markdown-extra": "^2.12|^3"
  6685. },
  6686. "suggest": {
  6687. "symfony/asset": "For using the AssetExtension",
  6688. "symfony/expression-language": "For using the ExpressionExtension",
  6689. "symfony/finder": "",
  6690. "symfony/form": "For using the FormExtension",
  6691. "symfony/http-kernel": "For using the HttpKernelExtension",
  6692. "symfony/routing": "For using the RoutingExtension",
  6693. "symfony/security-core": "For using the SecurityExtension",
  6694. "symfony/security-csrf": "For using the CsrfExtension",
  6695. "symfony/security-http": "For using the LogoutUrlExtension",
  6696. "symfony/stopwatch": "For using the StopwatchExtension",
  6697. "symfony/translation": "For using the TranslationExtension",
  6698. "symfony/var-dumper": "For using the DumpExtension",
  6699. "symfony/web-link": "For using the WebLinkExtension",
  6700. "symfony/yaml": "For using the YamlExtension"
  6701. },
  6702. "type": "symfony-bridge",
  6703. "autoload": {
  6704. "psr-4": {
  6705. "Symfony\\Bridge\\Twig\\": ""
  6706. },
  6707. "exclude-from-classmap": [
  6708. "/Tests/"
  6709. ]
  6710. },
  6711. "notification-url": "https://packagist.org/downloads/",
  6712. "license": [
  6713. "MIT"
  6714. ],
  6715. "authors": [
  6716. {
  6717. "name": "Fabien Potencier",
  6718. "email": "fabien@symfony.com"
  6719. },
  6720. {
  6721. "name": "Symfony Community",
  6722. "homepage": "https://symfony.com/contributors"
  6723. }
  6724. ],
  6725. "description": "Provides integration for Twig with various Symfony components",
  6726. "homepage": "https://symfony.com",
  6727. "support": {
  6728. "source": "https://github.com/symfony/twig-bridge/tree/v5.4.0"
  6729. },
  6730. "funding": [
  6731. {
  6732. "url": "https://symfony.com/sponsor",
  6733. "type": "custom"
  6734. },
  6735. {
  6736. "url": "https://github.com/fabpot",
  6737. "type": "github"
  6738. },
  6739. {
  6740. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6741. "type": "tidelift"
  6742. }
  6743. ],
  6744. "time": "2021-11-29T15:30:56+00:00"
  6745. },
  6746. {
  6747. "name": "symfony/twig-bundle",
  6748. "version": "v5.4.0",
  6749. "source": {
  6750. "type": "git",
  6751. "url": "https://github.com/symfony/twig-bundle.git",
  6752. "reference": "de8634b8c604a42277c6cc7e4f0d1e9e30c5ec7f"
  6753. },
  6754. "dist": {
  6755. "type": "zip",
  6756. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/de8634b8c604a42277c6cc7e4f0d1e9e30c5ec7f",
  6757. "reference": "de8634b8c604a42277c6cc7e4f0d1e9e30c5ec7f",
  6758. "shasum": ""
  6759. },
  6760. "require": {
  6761. "php": ">=7.2.5",
  6762. "symfony/config": "^4.4|^5.0|^6.0",
  6763. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6764. "symfony/http-kernel": "^5.0|^6.0",
  6765. "symfony/polyfill-ctype": "~1.8",
  6766. "symfony/polyfill-php80": "^1.16",
  6767. "symfony/twig-bridge": "^5.3|^6.0",
  6768. "twig/twig": "^2.13|^3.0.4"
  6769. },
  6770. "conflict": {
  6771. "symfony/dependency-injection": "<5.3",
  6772. "symfony/framework-bundle": "<5.0",
  6773. "symfony/service-contracts": ">=3.0",
  6774. "symfony/translation": "<5.0"
  6775. },
  6776. "require-dev": {
  6777. "doctrine/annotations": "^1.10.4",
  6778. "doctrine/cache": "^1.0|^2.0",
  6779. "symfony/asset": "^4.4|^5.0|^6.0",
  6780. "symfony/dependency-injection": "^5.3|^6.0",
  6781. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6782. "symfony/finder": "^4.4|^5.0|^6.0",
  6783. "symfony/form": "^4.4|^5.0|^6.0",
  6784. "symfony/framework-bundle": "^5.0|^6.0",
  6785. "symfony/routing": "^4.4|^5.0|^6.0",
  6786. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6787. "symfony/translation": "^5.0|^6.0",
  6788. "symfony/web-link": "^4.4|^5.0|^6.0",
  6789. "symfony/yaml": "^4.4|^5.0|^6.0"
  6790. },
  6791. "type": "symfony-bundle",
  6792. "autoload": {
  6793. "psr-4": {
  6794. "Symfony\\Bundle\\TwigBundle\\": ""
  6795. },
  6796. "exclude-from-classmap": [
  6797. "/Tests/"
  6798. ]
  6799. },
  6800. "notification-url": "https://packagist.org/downloads/",
  6801. "license": [
  6802. "MIT"
  6803. ],
  6804. "authors": [
  6805. {
  6806. "name": "Fabien Potencier",
  6807. "email": "fabien@symfony.com"
  6808. },
  6809. {
  6810. "name": "Symfony Community",
  6811. "homepage": "https://symfony.com/contributors"
  6812. }
  6813. ],
  6814. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  6815. "homepage": "https://symfony.com",
  6816. "support": {
  6817. "source": "https://github.com/symfony/twig-bundle/tree/v5.4.0"
  6818. },
  6819. "funding": [
  6820. {
  6821. "url": "https://symfony.com/sponsor",
  6822. "type": "custom"
  6823. },
  6824. {
  6825. "url": "https://github.com/fabpot",
  6826. "type": "github"
  6827. },
  6828. {
  6829. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6830. "type": "tidelift"
  6831. }
  6832. ],
  6833. "time": "2021-11-23T21:36:27+00:00"
  6834. },
  6835. {
  6836. "name": "symfony/validator",
  6837. "version": "v5.4.1",
  6838. "source": {
  6839. "type": "git",
  6840. "url": "https://github.com/symfony/validator.git",
  6841. "reference": "569c18a4b3fec167d6428b3e69cbe2c5034e0fab"
  6842. },
  6843. "dist": {
  6844. "type": "zip",
  6845. "url": "https://api.github.com/repos/symfony/validator/zipball/569c18a4b3fec167d6428b3e69cbe2c5034e0fab",
  6846. "reference": "569c18a4b3fec167d6428b3e69cbe2c5034e0fab",
  6847. "shasum": ""
  6848. },
  6849. "require": {
  6850. "php": ">=7.2.5",
  6851. "symfony/deprecation-contracts": "^2.1|^3",
  6852. "symfony/polyfill-ctype": "~1.8",
  6853. "symfony/polyfill-mbstring": "~1.0",
  6854. "symfony/polyfill-php73": "~1.0",
  6855. "symfony/polyfill-php80": "^1.16",
  6856. "symfony/translation-contracts": "^1.1|^2|^3"
  6857. },
  6858. "conflict": {
  6859. "doctrine/annotations": "<1.13",
  6860. "doctrine/cache": "<1.11",
  6861. "doctrine/lexer": "<1.1",
  6862. "phpunit/phpunit": "<5.4.3",
  6863. "symfony/dependency-injection": "<4.4",
  6864. "symfony/expression-language": "<5.1",
  6865. "symfony/http-kernel": "<4.4",
  6866. "symfony/intl": "<4.4",
  6867. "symfony/property-info": "<5.3",
  6868. "symfony/translation": "<4.4",
  6869. "symfony/yaml": "<4.4"
  6870. },
  6871. "require-dev": {
  6872. "doctrine/annotations": "^1.13",
  6873. "doctrine/cache": "^1.11|^2.0",
  6874. "egulias/email-validator": "^2.1.10|^3",
  6875. "symfony/cache": "^4.4|^5.0|^6.0",
  6876. "symfony/config": "^4.4|^5.0|^6.0",
  6877. "symfony/console": "^4.4|^5.0|^6.0",
  6878. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6879. "symfony/expression-language": "^5.1|^6.0",
  6880. "symfony/finder": "^4.4|^5.0|^6.0",
  6881. "symfony/http-client": "^4.4|^5.0|^6.0",
  6882. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6883. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6884. "symfony/intl": "^4.4|^5.0|^6.0",
  6885. "symfony/mime": "^4.4|^5.0|^6.0",
  6886. "symfony/property-access": "^4.4|^5.0|^6.0",
  6887. "symfony/property-info": "^5.3|^6.0",
  6888. "symfony/translation": "^4.4|^5.0|^6.0",
  6889. "symfony/yaml": "^4.4|^5.0|^6.0"
  6890. },
  6891. "suggest": {
  6892. "egulias/email-validator": "Strict (RFC compliant) email validation",
  6893. "psr/cache-implementation": "For using the mapping cache.",
  6894. "symfony/config": "",
  6895. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  6896. "symfony/http-foundation": "",
  6897. "symfony/intl": "",
  6898. "symfony/property-access": "For accessing properties within comparison constraints",
  6899. "symfony/property-info": "To automatically add NotNull and Type constraints",
  6900. "symfony/translation": "For translating validation errors.",
  6901. "symfony/yaml": ""
  6902. },
  6903. "type": "library",
  6904. "autoload": {
  6905. "psr-4": {
  6906. "Symfony\\Component\\Validator\\": ""
  6907. },
  6908. "exclude-from-classmap": [
  6909. "/Tests/"
  6910. ]
  6911. },
  6912. "notification-url": "https://packagist.org/downloads/",
  6913. "license": [
  6914. "MIT"
  6915. ],
  6916. "authors": [
  6917. {
  6918. "name": "Fabien Potencier",
  6919. "email": "fabien@symfony.com"
  6920. },
  6921. {
  6922. "name": "Symfony Community",
  6923. "homepage": "https://symfony.com/contributors"
  6924. }
  6925. ],
  6926. "description": "Provides tools to validate values",
  6927. "homepage": "https://symfony.com",
  6928. "support": {
  6929. "source": "https://github.com/symfony/validator/tree/v5.4.1"
  6930. },
  6931. "funding": [
  6932. {
  6933. "url": "https://symfony.com/sponsor",
  6934. "type": "custom"
  6935. },
  6936. {
  6937. "url": "https://github.com/fabpot",
  6938. "type": "github"
  6939. },
  6940. {
  6941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6942. "type": "tidelift"
  6943. }
  6944. ],
  6945. "time": "2021-12-01T15:04:08+00:00"
  6946. },
  6947. {
  6948. "name": "symfony/var-dumper",
  6949. "version": "v5.4.1",
  6950. "source": {
  6951. "type": "git",
  6952. "url": "https://github.com/symfony/var-dumper.git",
  6953. "reference": "2366ac8d8abe0c077844613c1a4f0c0a9f522dcc"
  6954. },
  6955. "dist": {
  6956. "type": "zip",
  6957. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2366ac8d8abe0c077844613c1a4f0c0a9f522dcc",
  6958. "reference": "2366ac8d8abe0c077844613c1a4f0c0a9f522dcc",
  6959. "shasum": ""
  6960. },
  6961. "require": {
  6962. "php": ">=7.2.5",
  6963. "symfony/polyfill-mbstring": "~1.0",
  6964. "symfony/polyfill-php80": "^1.16"
  6965. },
  6966. "conflict": {
  6967. "phpunit/phpunit": "<5.4.3",
  6968. "symfony/console": "<4.4"
  6969. },
  6970. "require-dev": {
  6971. "ext-iconv": "*",
  6972. "symfony/console": "^4.4|^5.0|^6.0",
  6973. "symfony/process": "^4.4|^5.0|^6.0",
  6974. "symfony/uid": "^5.1|^6.0",
  6975. "twig/twig": "^2.13|^3.0.4"
  6976. },
  6977. "suggest": {
  6978. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6979. "ext-intl": "To show region name in time zone dump",
  6980. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6981. },
  6982. "bin": [
  6983. "Resources/bin/var-dump-server"
  6984. ],
  6985. "type": "library",
  6986. "autoload": {
  6987. "files": [
  6988. "Resources/functions/dump.php"
  6989. ],
  6990. "psr-4": {
  6991. "Symfony\\Component\\VarDumper\\": ""
  6992. },
  6993. "exclude-from-classmap": [
  6994. "/Tests/"
  6995. ]
  6996. },
  6997. "notification-url": "https://packagist.org/downloads/",
  6998. "license": [
  6999. "MIT"
  7000. ],
  7001. "authors": [
  7002. {
  7003. "name": "Nicolas Grekas",
  7004. "email": "p@tchwork.com"
  7005. },
  7006. {
  7007. "name": "Symfony Community",
  7008. "homepage": "https://symfony.com/contributors"
  7009. }
  7010. ],
  7011. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7012. "homepage": "https://symfony.com",
  7013. "keywords": [
  7014. "debug",
  7015. "dump"
  7016. ],
  7017. "support": {
  7018. "source": "https://github.com/symfony/var-dumper/tree/v5.4.1"
  7019. },
  7020. "funding": [
  7021. {
  7022. "url": "https://symfony.com/sponsor",
  7023. "type": "custom"
  7024. },
  7025. {
  7026. "url": "https://github.com/fabpot",
  7027. "type": "github"
  7028. },
  7029. {
  7030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7031. "type": "tidelift"
  7032. }
  7033. ],
  7034. "time": "2021-12-01T15:04:08+00:00"
  7035. },
  7036. {
  7037. "name": "symfony/var-exporter",
  7038. "version": "v5.4.0",
  7039. "source": {
  7040. "type": "git",
  7041. "url": "https://github.com/symfony/var-exporter.git",
  7042. "reference": "d59446d6166b1643a8a3c30c2fa8e16e51cdbde7"
  7043. },
  7044. "dist": {
  7045. "type": "zip",
  7046. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/d59446d6166b1643a8a3c30c2fa8e16e51cdbde7",
  7047. "reference": "d59446d6166b1643a8a3c30c2fa8e16e51cdbde7",
  7048. "shasum": ""
  7049. },
  7050. "require": {
  7051. "php": ">=7.2.5",
  7052. "symfony/polyfill-php80": "^1.16"
  7053. },
  7054. "require-dev": {
  7055. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  7056. },
  7057. "type": "library",
  7058. "autoload": {
  7059. "psr-4": {
  7060. "Symfony\\Component\\VarExporter\\": ""
  7061. },
  7062. "exclude-from-classmap": [
  7063. "/Tests/"
  7064. ]
  7065. },
  7066. "notification-url": "https://packagist.org/downloads/",
  7067. "license": [
  7068. "MIT"
  7069. ],
  7070. "authors": [
  7071. {
  7072. "name": "Nicolas Grekas",
  7073. "email": "p@tchwork.com"
  7074. },
  7075. {
  7076. "name": "Symfony Community",
  7077. "homepage": "https://symfony.com/contributors"
  7078. }
  7079. ],
  7080. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7081. "homepage": "https://symfony.com",
  7082. "keywords": [
  7083. "clone",
  7084. "construct",
  7085. "export",
  7086. "hydrate",
  7087. "instantiate",
  7088. "serialize"
  7089. ],
  7090. "support": {
  7091. "source": "https://github.com/symfony/var-exporter/tree/v5.4.0"
  7092. },
  7093. "funding": [
  7094. {
  7095. "url": "https://symfony.com/sponsor",
  7096. "type": "custom"
  7097. },
  7098. {
  7099. "url": "https://github.com/fabpot",
  7100. "type": "github"
  7101. },
  7102. {
  7103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7104. "type": "tidelift"
  7105. }
  7106. ],
  7107. "time": "2021-11-22T10:44:13+00:00"
  7108. },
  7109. {
  7110. "name": "symfony/web-link",
  7111. "version": "v5.4.0",
  7112. "source": {
  7113. "type": "git",
  7114. "url": "https://github.com/symfony/web-link.git",
  7115. "reference": "de535b46002214d976c5b092f33f46de5e0c1d05"
  7116. },
  7117. "dist": {
  7118. "type": "zip",
  7119. "url": "https://api.github.com/repos/symfony/web-link/zipball/de535b46002214d976c5b092f33f46de5e0c1d05",
  7120. "reference": "de535b46002214d976c5b092f33f46de5e0c1d05",
  7121. "shasum": ""
  7122. },
  7123. "require": {
  7124. "php": ">=7.2.5",
  7125. "psr/link": "^1.0",
  7126. "symfony/polyfill-php80": "^1.16"
  7127. },
  7128. "conflict": {
  7129. "symfony/http-kernel": "<5.3"
  7130. },
  7131. "provide": {
  7132. "psr/link-implementation": "1.0"
  7133. },
  7134. "require-dev": {
  7135. "symfony/http-kernel": "^5.3|^6.0"
  7136. },
  7137. "suggest": {
  7138. "symfony/http-kernel": ""
  7139. },
  7140. "type": "library",
  7141. "autoload": {
  7142. "psr-4": {
  7143. "Symfony\\Component\\WebLink\\": ""
  7144. },
  7145. "exclude-from-classmap": [
  7146. "/Tests/"
  7147. ]
  7148. },
  7149. "notification-url": "https://packagist.org/downloads/",
  7150. "license": [
  7151. "MIT"
  7152. ],
  7153. "authors": [
  7154. {
  7155. "name": "Kévin Dunglas",
  7156. "email": "dunglas@gmail.com"
  7157. },
  7158. {
  7159. "name": "Symfony Community",
  7160. "homepage": "https://symfony.com/contributors"
  7161. }
  7162. ],
  7163. "description": "Manages links between resources",
  7164. "homepage": "https://symfony.com",
  7165. "keywords": [
  7166. "dns-prefetch",
  7167. "http",
  7168. "http2",
  7169. "link",
  7170. "performance",
  7171. "prefetch",
  7172. "preload",
  7173. "prerender",
  7174. "psr13",
  7175. "push"
  7176. ],
  7177. "support": {
  7178. "source": "https://github.com/symfony/web-link/tree/v5.4.0"
  7179. },
  7180. "funding": [
  7181. {
  7182. "url": "https://symfony.com/sponsor",
  7183. "type": "custom"
  7184. },
  7185. {
  7186. "url": "https://github.com/fabpot",
  7187. "type": "github"
  7188. },
  7189. {
  7190. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7191. "type": "tidelift"
  7192. }
  7193. ],
  7194. "time": "2021-07-21T12:43:48+00:00"
  7195. },
  7196. {
  7197. "name": "symfony/webpack-encore-bundle",
  7198. "version": "v1.13.2",
  7199. "source": {
  7200. "type": "git",
  7201. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7202. "reference": "509cad50878e838c879743225e0e921b3b64a3f2"
  7203. },
  7204. "dist": {
  7205. "type": "zip",
  7206. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/509cad50878e838c879743225e0e921b3b64a3f2",
  7207. "reference": "509cad50878e838c879743225e0e921b3b64a3f2",
  7208. "shasum": ""
  7209. },
  7210. "require": {
  7211. "php": ">=7.1.3",
  7212. "symfony/asset": "^4.4 || ^5.0 || ^6.0",
  7213. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  7214. "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
  7215. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  7216. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  7217. },
  7218. "require-dev": {
  7219. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  7220. "symfony/phpunit-bridge": "^5.3 || ^6.0",
  7221. "symfony/twig-bundle": "^4.4 || ^5.0 || ^6.0",
  7222. "symfony/web-link": "^4.4 || ^5.0 || ^6.0"
  7223. },
  7224. "type": "symfony-bundle",
  7225. "extra": {
  7226. "thanks": {
  7227. "name": "symfony/webpack-encore",
  7228. "url": "https://github.com/symfony/webpack-encore"
  7229. }
  7230. },
  7231. "autoload": {
  7232. "psr-4": {
  7233. "Symfony\\WebpackEncoreBundle\\": "src"
  7234. }
  7235. },
  7236. "notification-url": "https://packagist.org/downloads/",
  7237. "license": [
  7238. "MIT"
  7239. ],
  7240. "authors": [
  7241. {
  7242. "name": "Symfony Community",
  7243. "homepage": "https://symfony.com/contributors"
  7244. }
  7245. ],
  7246. "description": "Integration with your Symfony app & Webpack Encore!",
  7247. "support": {
  7248. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7249. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.13.2"
  7250. },
  7251. "funding": [
  7252. {
  7253. "url": "https://symfony.com/sponsor",
  7254. "type": "custom"
  7255. },
  7256. {
  7257. "url": "https://github.com/fabpot",
  7258. "type": "github"
  7259. },
  7260. {
  7261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7262. "type": "tidelift"
  7263. }
  7264. ],
  7265. "time": "2021-12-02T19:45:55+00:00"
  7266. },
  7267. {
  7268. "name": "symfony/yaml",
  7269. "version": "v5.4.0",
  7270. "source": {
  7271. "type": "git",
  7272. "url": "https://github.com/symfony/yaml.git",
  7273. "reference": "034ccc0994f1ae3f7499fa5b1f2e75d5e7a94efc"
  7274. },
  7275. "dist": {
  7276. "type": "zip",
  7277. "url": "https://api.github.com/repos/symfony/yaml/zipball/034ccc0994f1ae3f7499fa5b1f2e75d5e7a94efc",
  7278. "reference": "034ccc0994f1ae3f7499fa5b1f2e75d5e7a94efc",
  7279. "shasum": ""
  7280. },
  7281. "require": {
  7282. "php": ">=7.2.5",
  7283. "symfony/deprecation-contracts": "^2.1|^3",
  7284. "symfony/polyfill-ctype": "^1.8"
  7285. },
  7286. "conflict": {
  7287. "symfony/console": "<5.3"
  7288. },
  7289. "require-dev": {
  7290. "symfony/console": "^5.3|^6.0"
  7291. },
  7292. "suggest": {
  7293. "symfony/console": "For validating YAML files using the lint command"
  7294. },
  7295. "bin": [
  7296. "Resources/bin/yaml-lint"
  7297. ],
  7298. "type": "library",
  7299. "autoload": {
  7300. "psr-4": {
  7301. "Symfony\\Component\\Yaml\\": ""
  7302. },
  7303. "exclude-from-classmap": [
  7304. "/Tests/"
  7305. ]
  7306. },
  7307. "notification-url": "https://packagist.org/downloads/",
  7308. "license": [
  7309. "MIT"
  7310. ],
  7311. "authors": [
  7312. {
  7313. "name": "Fabien Potencier",
  7314. "email": "fabien@symfony.com"
  7315. },
  7316. {
  7317. "name": "Symfony Community",
  7318. "homepage": "https://symfony.com/contributors"
  7319. }
  7320. ],
  7321. "description": "Loads and dumps YAML files",
  7322. "homepage": "https://symfony.com",
  7323. "support": {
  7324. "source": "https://github.com/symfony/yaml/tree/v5.4.0"
  7325. },
  7326. "funding": [
  7327. {
  7328. "url": "https://symfony.com/sponsor",
  7329. "type": "custom"
  7330. },
  7331. {
  7332. "url": "https://github.com/fabpot",
  7333. "type": "github"
  7334. },
  7335. {
  7336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7337. "type": "tidelift"
  7338. }
  7339. ],
  7340. "time": "2021-11-28T15:25:38+00:00"
  7341. },
  7342. {
  7343. "name": "twig/twig",
  7344. "version": "v3.3.4",
  7345. "source": {
  7346. "type": "git",
  7347. "url": "https://github.com/twigphp/Twig.git",
  7348. "reference": "65cb6f0b956485e1664f13d023c55298a4bb59ca"
  7349. },
  7350. "dist": {
  7351. "type": "zip",
  7352. "url": "https://api.github.com/repos/twigphp/Twig/zipball/65cb6f0b956485e1664f13d023c55298a4bb59ca",
  7353. "reference": "65cb6f0b956485e1664f13d023c55298a4bb59ca",
  7354. "shasum": ""
  7355. },
  7356. "require": {
  7357. "php": ">=7.2.5",
  7358. "symfony/polyfill-ctype": "^1.8",
  7359. "symfony/polyfill-mbstring": "^1.3"
  7360. },
  7361. "require-dev": {
  7362. "psr/container": "^1.0",
  7363. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  7364. },
  7365. "type": "library",
  7366. "extra": {
  7367. "branch-alias": {
  7368. "dev-master": "3.3-dev"
  7369. }
  7370. },
  7371. "autoload": {
  7372. "psr-4": {
  7373. "Twig\\": "src/"
  7374. }
  7375. },
  7376. "notification-url": "https://packagist.org/downloads/",
  7377. "license": [
  7378. "BSD-3-Clause"
  7379. ],
  7380. "authors": [
  7381. {
  7382. "name": "Fabien Potencier",
  7383. "email": "fabien@symfony.com",
  7384. "homepage": "http://fabien.potencier.org",
  7385. "role": "Lead Developer"
  7386. },
  7387. {
  7388. "name": "Twig Team",
  7389. "role": "Contributors"
  7390. },
  7391. {
  7392. "name": "Armin Ronacher",
  7393. "email": "armin.ronacher@active-4.com",
  7394. "role": "Project Founder"
  7395. }
  7396. ],
  7397. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7398. "homepage": "https://twig.symfony.com",
  7399. "keywords": [
  7400. "templating"
  7401. ],
  7402. "support": {
  7403. "issues": "https://github.com/twigphp/Twig/issues",
  7404. "source": "https://github.com/twigphp/Twig/tree/v3.3.4"
  7405. },
  7406. "funding": [
  7407. {
  7408. "url": "https://github.com/fabpot",
  7409. "type": "github"
  7410. },
  7411. {
  7412. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7413. "type": "tidelift"
  7414. }
  7415. ],
  7416. "time": "2021-11-25T13:46:55+00:00"
  7417. },
  7418. {
  7419. "name": "webmozart/assert",
  7420. "version": "1.10.0",
  7421. "source": {
  7422. "type": "git",
  7423. "url": "https://github.com/webmozarts/assert.git",
  7424. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  7425. },
  7426. "dist": {
  7427. "type": "zip",
  7428. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  7429. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  7430. "shasum": ""
  7431. },
  7432. "require": {
  7433. "php": "^7.2 || ^8.0",
  7434. "symfony/polyfill-ctype": "^1.8"
  7435. },
  7436. "conflict": {
  7437. "phpstan/phpstan": "<0.12.20",
  7438. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7439. },
  7440. "require-dev": {
  7441. "phpunit/phpunit": "^8.5.13"
  7442. },
  7443. "type": "library",
  7444. "extra": {
  7445. "branch-alias": {
  7446. "dev-master": "1.10-dev"
  7447. }
  7448. },
  7449. "autoload": {
  7450. "psr-4": {
  7451. "Webmozart\\Assert\\": "src/"
  7452. }
  7453. },
  7454. "notification-url": "https://packagist.org/downloads/",
  7455. "license": [
  7456. "MIT"
  7457. ],
  7458. "authors": [
  7459. {
  7460. "name": "Bernhard Schussek",
  7461. "email": "bschussek@gmail.com"
  7462. }
  7463. ],
  7464. "description": "Assertions to validate method input/output with nice error messages.",
  7465. "keywords": [
  7466. "assert",
  7467. "check",
  7468. "validate"
  7469. ],
  7470. "support": {
  7471. "issues": "https://github.com/webmozarts/assert/issues",
  7472. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  7473. },
  7474. "time": "2021-03-09T10:59:23+00:00"
  7475. }
  7476. ],
  7477. "packages-dev": [
  7478. {
  7479. "name": "myclabs/deep-copy",
  7480. "version": "1.10.2",
  7481. "source": {
  7482. "type": "git",
  7483. "url": "https://github.com/myclabs/DeepCopy.git",
  7484. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  7485. },
  7486. "dist": {
  7487. "type": "zip",
  7488. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  7489. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  7490. "shasum": ""
  7491. },
  7492. "require": {
  7493. "php": "^7.1 || ^8.0"
  7494. },
  7495. "replace": {
  7496. "myclabs/deep-copy": "self.version"
  7497. },
  7498. "require-dev": {
  7499. "doctrine/collections": "^1.0",
  7500. "doctrine/common": "^2.6",
  7501. "phpunit/phpunit": "^7.1"
  7502. },
  7503. "type": "library",
  7504. "autoload": {
  7505. "psr-4": {
  7506. "DeepCopy\\": "src/DeepCopy/"
  7507. },
  7508. "files": [
  7509. "src/DeepCopy/deep_copy.php"
  7510. ]
  7511. },
  7512. "notification-url": "https://packagist.org/downloads/",
  7513. "license": [
  7514. "MIT"
  7515. ],
  7516. "description": "Create deep copies (clones) of your objects",
  7517. "keywords": [
  7518. "clone",
  7519. "copy",
  7520. "duplicate",
  7521. "object",
  7522. "object graph"
  7523. ],
  7524. "support": {
  7525. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7526. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  7527. },
  7528. "funding": [
  7529. {
  7530. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7531. "type": "tidelift"
  7532. }
  7533. ],
  7534. "time": "2020-11-13T09:40:50+00:00"
  7535. },
  7536. {
  7537. "name": "nikic/php-parser",
  7538. "version": "v4.13.2",
  7539. "source": {
  7540. "type": "git",
  7541. "url": "https://github.com/nikic/PHP-Parser.git",
  7542. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  7543. },
  7544. "dist": {
  7545. "type": "zip",
  7546. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  7547. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  7548. "shasum": ""
  7549. },
  7550. "require": {
  7551. "ext-tokenizer": "*",
  7552. "php": ">=7.0"
  7553. },
  7554. "require-dev": {
  7555. "ircmaxell/php-yacc": "^0.0.7",
  7556. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  7557. },
  7558. "bin": [
  7559. "bin/php-parse"
  7560. ],
  7561. "type": "library",
  7562. "extra": {
  7563. "branch-alias": {
  7564. "dev-master": "4.9-dev"
  7565. }
  7566. },
  7567. "autoload": {
  7568. "psr-4": {
  7569. "PhpParser\\": "lib/PhpParser"
  7570. }
  7571. },
  7572. "notification-url": "https://packagist.org/downloads/",
  7573. "license": [
  7574. "BSD-3-Clause"
  7575. ],
  7576. "authors": [
  7577. {
  7578. "name": "Nikita Popov"
  7579. }
  7580. ],
  7581. "description": "A PHP parser written in PHP",
  7582. "keywords": [
  7583. "parser",
  7584. "php"
  7585. ],
  7586. "support": {
  7587. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7588. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  7589. },
  7590. "time": "2021-11-30T19:35:32+00:00"
  7591. },
  7592. {
  7593. "name": "phar-io/manifest",
  7594. "version": "2.0.3",
  7595. "source": {
  7596. "type": "git",
  7597. "url": "https://github.com/phar-io/manifest.git",
  7598. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  7599. },
  7600. "dist": {
  7601. "type": "zip",
  7602. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  7603. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  7604. "shasum": ""
  7605. },
  7606. "require": {
  7607. "ext-dom": "*",
  7608. "ext-phar": "*",
  7609. "ext-xmlwriter": "*",
  7610. "phar-io/version": "^3.0.1",
  7611. "php": "^7.2 || ^8.0"
  7612. },
  7613. "type": "library",
  7614. "extra": {
  7615. "branch-alias": {
  7616. "dev-master": "2.0.x-dev"
  7617. }
  7618. },
  7619. "autoload": {
  7620. "classmap": [
  7621. "src/"
  7622. ]
  7623. },
  7624. "notification-url": "https://packagist.org/downloads/",
  7625. "license": [
  7626. "BSD-3-Clause"
  7627. ],
  7628. "authors": [
  7629. {
  7630. "name": "Arne Blankerts",
  7631. "email": "arne@blankerts.de",
  7632. "role": "Developer"
  7633. },
  7634. {
  7635. "name": "Sebastian Heuer",
  7636. "email": "sebastian@phpeople.de",
  7637. "role": "Developer"
  7638. },
  7639. {
  7640. "name": "Sebastian Bergmann",
  7641. "email": "sebastian@phpunit.de",
  7642. "role": "Developer"
  7643. }
  7644. ],
  7645. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7646. "support": {
  7647. "issues": "https://github.com/phar-io/manifest/issues",
  7648. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  7649. },
  7650. "time": "2021-07-20T11:28:43+00:00"
  7651. },
  7652. {
  7653. "name": "phar-io/version",
  7654. "version": "3.1.0",
  7655. "source": {
  7656. "type": "git",
  7657. "url": "https://github.com/phar-io/version.git",
  7658. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  7659. },
  7660. "dist": {
  7661. "type": "zip",
  7662. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  7663. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  7664. "shasum": ""
  7665. },
  7666. "require": {
  7667. "php": "^7.2 || ^8.0"
  7668. },
  7669. "type": "library",
  7670. "autoload": {
  7671. "classmap": [
  7672. "src/"
  7673. ]
  7674. },
  7675. "notification-url": "https://packagist.org/downloads/",
  7676. "license": [
  7677. "BSD-3-Clause"
  7678. ],
  7679. "authors": [
  7680. {
  7681. "name": "Arne Blankerts",
  7682. "email": "arne@blankerts.de",
  7683. "role": "Developer"
  7684. },
  7685. {
  7686. "name": "Sebastian Heuer",
  7687. "email": "sebastian@phpeople.de",
  7688. "role": "Developer"
  7689. },
  7690. {
  7691. "name": "Sebastian Bergmann",
  7692. "email": "sebastian@phpunit.de",
  7693. "role": "Developer"
  7694. }
  7695. ],
  7696. "description": "Library for handling version information and constraints",
  7697. "support": {
  7698. "issues": "https://github.com/phar-io/version/issues",
  7699. "source": "https://github.com/phar-io/version/tree/3.1.0"
  7700. },
  7701. "time": "2021-02-23T14:00:09+00:00"
  7702. },
  7703. {
  7704. "name": "phpspec/prophecy",
  7705. "version": "v1.15.0",
  7706. "source": {
  7707. "type": "git",
  7708. "url": "https://github.com/phpspec/prophecy.git",
  7709. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  7710. },
  7711. "dist": {
  7712. "type": "zip",
  7713. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  7714. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  7715. "shasum": ""
  7716. },
  7717. "require": {
  7718. "doctrine/instantiator": "^1.2",
  7719. "php": "^7.2 || ~8.0, <8.2",
  7720. "phpdocumentor/reflection-docblock": "^5.2",
  7721. "sebastian/comparator": "^3.0 || ^4.0",
  7722. "sebastian/recursion-context": "^3.0 || ^4.0"
  7723. },
  7724. "require-dev": {
  7725. "phpspec/phpspec": "^6.0 || ^7.0",
  7726. "phpunit/phpunit": "^8.0 || ^9.0"
  7727. },
  7728. "type": "library",
  7729. "extra": {
  7730. "branch-alias": {
  7731. "dev-master": "1.x-dev"
  7732. }
  7733. },
  7734. "autoload": {
  7735. "psr-4": {
  7736. "Prophecy\\": "src/Prophecy"
  7737. }
  7738. },
  7739. "notification-url": "https://packagist.org/downloads/",
  7740. "license": [
  7741. "MIT"
  7742. ],
  7743. "authors": [
  7744. {
  7745. "name": "Konstantin Kudryashov",
  7746. "email": "ever.zet@gmail.com",
  7747. "homepage": "http://everzet.com"
  7748. },
  7749. {
  7750. "name": "Marcello Duarte",
  7751. "email": "marcello.duarte@gmail.com"
  7752. }
  7753. ],
  7754. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7755. "homepage": "https://github.com/phpspec/prophecy",
  7756. "keywords": [
  7757. "Double",
  7758. "Dummy",
  7759. "fake",
  7760. "mock",
  7761. "spy",
  7762. "stub"
  7763. ],
  7764. "support": {
  7765. "issues": "https://github.com/phpspec/prophecy/issues",
  7766. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  7767. },
  7768. "time": "2021-12-08T12:19:24+00:00"
  7769. },
  7770. {
  7771. "name": "phpunit/php-code-coverage",
  7772. "version": "9.2.10",
  7773. "source": {
  7774. "type": "git",
  7775. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7776. "reference": "d5850aaf931743067f4bfc1ae4cbd06468400687"
  7777. },
  7778. "dist": {
  7779. "type": "zip",
  7780. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/d5850aaf931743067f4bfc1ae4cbd06468400687",
  7781. "reference": "d5850aaf931743067f4bfc1ae4cbd06468400687",
  7782. "shasum": ""
  7783. },
  7784. "require": {
  7785. "ext-dom": "*",
  7786. "ext-libxml": "*",
  7787. "ext-xmlwriter": "*",
  7788. "nikic/php-parser": "^4.13.0",
  7789. "php": ">=7.3",
  7790. "phpunit/php-file-iterator": "^3.0.3",
  7791. "phpunit/php-text-template": "^2.0.2",
  7792. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  7793. "sebastian/complexity": "^2.0",
  7794. "sebastian/environment": "^5.1.2",
  7795. "sebastian/lines-of-code": "^1.0.3",
  7796. "sebastian/version": "^3.0.1",
  7797. "theseer/tokenizer": "^1.2.0"
  7798. },
  7799. "require-dev": {
  7800. "phpunit/phpunit": "^9.3"
  7801. },
  7802. "suggest": {
  7803. "ext-pcov": "*",
  7804. "ext-xdebug": "*"
  7805. },
  7806. "type": "library",
  7807. "extra": {
  7808. "branch-alias": {
  7809. "dev-master": "9.2-dev"
  7810. }
  7811. },
  7812. "autoload": {
  7813. "classmap": [
  7814. "src/"
  7815. ]
  7816. },
  7817. "notification-url": "https://packagist.org/downloads/",
  7818. "license": [
  7819. "BSD-3-Clause"
  7820. ],
  7821. "authors": [
  7822. {
  7823. "name": "Sebastian Bergmann",
  7824. "email": "sebastian@phpunit.de",
  7825. "role": "lead"
  7826. }
  7827. ],
  7828. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7829. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7830. "keywords": [
  7831. "coverage",
  7832. "testing",
  7833. "xunit"
  7834. ],
  7835. "support": {
  7836. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7837. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.10"
  7838. },
  7839. "funding": [
  7840. {
  7841. "url": "https://github.com/sebastianbergmann",
  7842. "type": "github"
  7843. }
  7844. ],
  7845. "time": "2021-12-05T09:12:13+00:00"
  7846. },
  7847. {
  7848. "name": "phpunit/php-file-iterator",
  7849. "version": "3.0.6",
  7850. "source": {
  7851. "type": "git",
  7852. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7853. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  7854. },
  7855. "dist": {
  7856. "type": "zip",
  7857. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7858. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7859. "shasum": ""
  7860. },
  7861. "require": {
  7862. "php": ">=7.3"
  7863. },
  7864. "require-dev": {
  7865. "phpunit/phpunit": "^9.3"
  7866. },
  7867. "type": "library",
  7868. "extra": {
  7869. "branch-alias": {
  7870. "dev-master": "3.0-dev"
  7871. }
  7872. },
  7873. "autoload": {
  7874. "classmap": [
  7875. "src/"
  7876. ]
  7877. },
  7878. "notification-url": "https://packagist.org/downloads/",
  7879. "license": [
  7880. "BSD-3-Clause"
  7881. ],
  7882. "authors": [
  7883. {
  7884. "name": "Sebastian Bergmann",
  7885. "email": "sebastian@phpunit.de",
  7886. "role": "lead"
  7887. }
  7888. ],
  7889. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7890. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7891. "keywords": [
  7892. "filesystem",
  7893. "iterator"
  7894. ],
  7895. "support": {
  7896. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7897. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  7898. },
  7899. "funding": [
  7900. {
  7901. "url": "https://github.com/sebastianbergmann",
  7902. "type": "github"
  7903. }
  7904. ],
  7905. "time": "2021-12-02T12:48:52+00:00"
  7906. },
  7907. {
  7908. "name": "phpunit/php-invoker",
  7909. "version": "3.1.1",
  7910. "source": {
  7911. "type": "git",
  7912. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7913. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  7914. },
  7915. "dist": {
  7916. "type": "zip",
  7917. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  7918. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  7919. "shasum": ""
  7920. },
  7921. "require": {
  7922. "php": ">=7.3"
  7923. },
  7924. "require-dev": {
  7925. "ext-pcntl": "*",
  7926. "phpunit/phpunit": "^9.3"
  7927. },
  7928. "suggest": {
  7929. "ext-pcntl": "*"
  7930. },
  7931. "type": "library",
  7932. "extra": {
  7933. "branch-alias": {
  7934. "dev-master": "3.1-dev"
  7935. }
  7936. },
  7937. "autoload": {
  7938. "classmap": [
  7939. "src/"
  7940. ]
  7941. },
  7942. "notification-url": "https://packagist.org/downloads/",
  7943. "license": [
  7944. "BSD-3-Clause"
  7945. ],
  7946. "authors": [
  7947. {
  7948. "name": "Sebastian Bergmann",
  7949. "email": "sebastian@phpunit.de",
  7950. "role": "lead"
  7951. }
  7952. ],
  7953. "description": "Invoke callables with a timeout",
  7954. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7955. "keywords": [
  7956. "process"
  7957. ],
  7958. "support": {
  7959. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7960. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  7961. },
  7962. "funding": [
  7963. {
  7964. "url": "https://github.com/sebastianbergmann",
  7965. "type": "github"
  7966. }
  7967. ],
  7968. "time": "2020-09-28T05:58:55+00:00"
  7969. },
  7970. {
  7971. "name": "phpunit/php-text-template",
  7972. "version": "2.0.4",
  7973. "source": {
  7974. "type": "git",
  7975. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7976. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  7977. },
  7978. "dist": {
  7979. "type": "zip",
  7980. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  7981. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  7982. "shasum": ""
  7983. },
  7984. "require": {
  7985. "php": ">=7.3"
  7986. },
  7987. "require-dev": {
  7988. "phpunit/phpunit": "^9.3"
  7989. },
  7990. "type": "library",
  7991. "extra": {
  7992. "branch-alias": {
  7993. "dev-master": "2.0-dev"
  7994. }
  7995. },
  7996. "autoload": {
  7997. "classmap": [
  7998. "src/"
  7999. ]
  8000. },
  8001. "notification-url": "https://packagist.org/downloads/",
  8002. "license": [
  8003. "BSD-3-Clause"
  8004. ],
  8005. "authors": [
  8006. {
  8007. "name": "Sebastian Bergmann",
  8008. "email": "sebastian@phpunit.de",
  8009. "role": "lead"
  8010. }
  8011. ],
  8012. "description": "Simple template engine.",
  8013. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8014. "keywords": [
  8015. "template"
  8016. ],
  8017. "support": {
  8018. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8019. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8020. },
  8021. "funding": [
  8022. {
  8023. "url": "https://github.com/sebastianbergmann",
  8024. "type": "github"
  8025. }
  8026. ],
  8027. "time": "2020-10-26T05:33:50+00:00"
  8028. },
  8029. {
  8030. "name": "phpunit/php-timer",
  8031. "version": "5.0.3",
  8032. "source": {
  8033. "type": "git",
  8034. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8035. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8036. },
  8037. "dist": {
  8038. "type": "zip",
  8039. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8040. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8041. "shasum": ""
  8042. },
  8043. "require": {
  8044. "php": ">=7.3"
  8045. },
  8046. "require-dev": {
  8047. "phpunit/phpunit": "^9.3"
  8048. },
  8049. "type": "library",
  8050. "extra": {
  8051. "branch-alias": {
  8052. "dev-master": "5.0-dev"
  8053. }
  8054. },
  8055. "autoload": {
  8056. "classmap": [
  8057. "src/"
  8058. ]
  8059. },
  8060. "notification-url": "https://packagist.org/downloads/",
  8061. "license": [
  8062. "BSD-3-Clause"
  8063. ],
  8064. "authors": [
  8065. {
  8066. "name": "Sebastian Bergmann",
  8067. "email": "sebastian@phpunit.de",
  8068. "role": "lead"
  8069. }
  8070. ],
  8071. "description": "Utility class for timing",
  8072. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8073. "keywords": [
  8074. "timer"
  8075. ],
  8076. "support": {
  8077. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8078. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8079. },
  8080. "funding": [
  8081. {
  8082. "url": "https://github.com/sebastianbergmann",
  8083. "type": "github"
  8084. }
  8085. ],
  8086. "time": "2020-10-26T13:16:10+00:00"
  8087. },
  8088. {
  8089. "name": "phpunit/phpunit",
  8090. "version": "9.5.10",
  8091. "source": {
  8092. "type": "git",
  8093. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8094. "reference": "c814a05837f2edb0d1471d6e3f4ab3501ca3899a"
  8095. },
  8096. "dist": {
  8097. "type": "zip",
  8098. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c814a05837f2edb0d1471d6e3f4ab3501ca3899a",
  8099. "reference": "c814a05837f2edb0d1471d6e3f4ab3501ca3899a",
  8100. "shasum": ""
  8101. },
  8102. "require": {
  8103. "doctrine/instantiator": "^1.3.1",
  8104. "ext-dom": "*",
  8105. "ext-json": "*",
  8106. "ext-libxml": "*",
  8107. "ext-mbstring": "*",
  8108. "ext-xml": "*",
  8109. "ext-xmlwriter": "*",
  8110. "myclabs/deep-copy": "^1.10.1",
  8111. "phar-io/manifest": "^2.0.3",
  8112. "phar-io/version": "^3.0.2",
  8113. "php": ">=7.3",
  8114. "phpspec/prophecy": "^1.12.1",
  8115. "phpunit/php-code-coverage": "^9.2.7",
  8116. "phpunit/php-file-iterator": "^3.0.5",
  8117. "phpunit/php-invoker": "^3.1.1",
  8118. "phpunit/php-text-template": "^2.0.3",
  8119. "phpunit/php-timer": "^5.0.2",
  8120. "sebastian/cli-parser": "^1.0.1",
  8121. "sebastian/code-unit": "^1.0.6",
  8122. "sebastian/comparator": "^4.0.5",
  8123. "sebastian/diff": "^4.0.3",
  8124. "sebastian/environment": "^5.1.3",
  8125. "sebastian/exporter": "^4.0.3",
  8126. "sebastian/global-state": "^5.0.1",
  8127. "sebastian/object-enumerator": "^4.0.3",
  8128. "sebastian/resource-operations": "^3.0.3",
  8129. "sebastian/type": "^2.3.4",
  8130. "sebastian/version": "^3.0.2"
  8131. },
  8132. "require-dev": {
  8133. "ext-pdo": "*",
  8134. "phpspec/prophecy-phpunit": "^2.0.1"
  8135. },
  8136. "suggest": {
  8137. "ext-soap": "*",
  8138. "ext-xdebug": "*"
  8139. },
  8140. "bin": [
  8141. "phpunit"
  8142. ],
  8143. "type": "library",
  8144. "extra": {
  8145. "branch-alias": {
  8146. "dev-master": "9.5-dev"
  8147. }
  8148. },
  8149. "autoload": {
  8150. "classmap": [
  8151. "src/"
  8152. ],
  8153. "files": [
  8154. "src/Framework/Assert/Functions.php"
  8155. ]
  8156. },
  8157. "notification-url": "https://packagist.org/downloads/",
  8158. "license": [
  8159. "BSD-3-Clause"
  8160. ],
  8161. "authors": [
  8162. {
  8163. "name": "Sebastian Bergmann",
  8164. "email": "sebastian@phpunit.de",
  8165. "role": "lead"
  8166. }
  8167. ],
  8168. "description": "The PHP Unit Testing framework.",
  8169. "homepage": "https://phpunit.de/",
  8170. "keywords": [
  8171. "phpunit",
  8172. "testing",
  8173. "xunit"
  8174. ],
  8175. "support": {
  8176. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8177. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.10"
  8178. },
  8179. "funding": [
  8180. {
  8181. "url": "https://phpunit.de/donate.html",
  8182. "type": "custom"
  8183. },
  8184. {
  8185. "url": "https://github.com/sebastianbergmann",
  8186. "type": "github"
  8187. }
  8188. ],
  8189. "time": "2021-09-25T07:38:51+00:00"
  8190. },
  8191. {
  8192. "name": "sebastian/cli-parser",
  8193. "version": "1.0.1",
  8194. "source": {
  8195. "type": "git",
  8196. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8197. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  8198. },
  8199. "dist": {
  8200. "type": "zip",
  8201. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8202. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  8203. "shasum": ""
  8204. },
  8205. "require": {
  8206. "php": ">=7.3"
  8207. },
  8208. "require-dev": {
  8209. "phpunit/phpunit": "^9.3"
  8210. },
  8211. "type": "library",
  8212. "extra": {
  8213. "branch-alias": {
  8214. "dev-master": "1.0-dev"
  8215. }
  8216. },
  8217. "autoload": {
  8218. "classmap": [
  8219. "src/"
  8220. ]
  8221. },
  8222. "notification-url": "https://packagist.org/downloads/",
  8223. "license": [
  8224. "BSD-3-Clause"
  8225. ],
  8226. "authors": [
  8227. {
  8228. "name": "Sebastian Bergmann",
  8229. "email": "sebastian@phpunit.de",
  8230. "role": "lead"
  8231. }
  8232. ],
  8233. "description": "Library for parsing CLI options",
  8234. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8235. "support": {
  8236. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8237. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  8238. },
  8239. "funding": [
  8240. {
  8241. "url": "https://github.com/sebastianbergmann",
  8242. "type": "github"
  8243. }
  8244. ],
  8245. "time": "2020-09-28T06:08:49+00:00"
  8246. },
  8247. {
  8248. "name": "sebastian/code-unit",
  8249. "version": "1.0.8",
  8250. "source": {
  8251. "type": "git",
  8252. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8253. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8254. },
  8255. "dist": {
  8256. "type": "zip",
  8257. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8258. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8259. "shasum": ""
  8260. },
  8261. "require": {
  8262. "php": ">=7.3"
  8263. },
  8264. "require-dev": {
  8265. "phpunit/phpunit": "^9.3"
  8266. },
  8267. "type": "library",
  8268. "extra": {
  8269. "branch-alias": {
  8270. "dev-master": "1.0-dev"
  8271. }
  8272. },
  8273. "autoload": {
  8274. "classmap": [
  8275. "src/"
  8276. ]
  8277. },
  8278. "notification-url": "https://packagist.org/downloads/",
  8279. "license": [
  8280. "BSD-3-Clause"
  8281. ],
  8282. "authors": [
  8283. {
  8284. "name": "Sebastian Bergmann",
  8285. "email": "sebastian@phpunit.de",
  8286. "role": "lead"
  8287. }
  8288. ],
  8289. "description": "Collection of value objects that represent the PHP code units",
  8290. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8291. "support": {
  8292. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8293. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8294. },
  8295. "funding": [
  8296. {
  8297. "url": "https://github.com/sebastianbergmann",
  8298. "type": "github"
  8299. }
  8300. ],
  8301. "time": "2020-10-26T13:08:54+00:00"
  8302. },
  8303. {
  8304. "name": "sebastian/code-unit-reverse-lookup",
  8305. "version": "2.0.3",
  8306. "source": {
  8307. "type": "git",
  8308. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8309. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8310. },
  8311. "dist": {
  8312. "type": "zip",
  8313. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8314. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8315. "shasum": ""
  8316. },
  8317. "require": {
  8318. "php": ">=7.3"
  8319. },
  8320. "require-dev": {
  8321. "phpunit/phpunit": "^9.3"
  8322. },
  8323. "type": "library",
  8324. "extra": {
  8325. "branch-alias": {
  8326. "dev-master": "2.0-dev"
  8327. }
  8328. },
  8329. "autoload": {
  8330. "classmap": [
  8331. "src/"
  8332. ]
  8333. },
  8334. "notification-url": "https://packagist.org/downloads/",
  8335. "license": [
  8336. "BSD-3-Clause"
  8337. ],
  8338. "authors": [
  8339. {
  8340. "name": "Sebastian Bergmann",
  8341. "email": "sebastian@phpunit.de"
  8342. }
  8343. ],
  8344. "description": "Looks up which function or method a line of code belongs to",
  8345. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8346. "support": {
  8347. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8348. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8349. },
  8350. "funding": [
  8351. {
  8352. "url": "https://github.com/sebastianbergmann",
  8353. "type": "github"
  8354. }
  8355. ],
  8356. "time": "2020-09-28T05:30:19+00:00"
  8357. },
  8358. {
  8359. "name": "sebastian/comparator",
  8360. "version": "4.0.6",
  8361. "source": {
  8362. "type": "git",
  8363. "url": "https://github.com/sebastianbergmann/comparator.git",
  8364. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  8365. },
  8366. "dist": {
  8367. "type": "zip",
  8368. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  8369. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  8370. "shasum": ""
  8371. },
  8372. "require": {
  8373. "php": ">=7.3",
  8374. "sebastian/diff": "^4.0",
  8375. "sebastian/exporter": "^4.0"
  8376. },
  8377. "require-dev": {
  8378. "phpunit/phpunit": "^9.3"
  8379. },
  8380. "type": "library",
  8381. "extra": {
  8382. "branch-alias": {
  8383. "dev-master": "4.0-dev"
  8384. }
  8385. },
  8386. "autoload": {
  8387. "classmap": [
  8388. "src/"
  8389. ]
  8390. },
  8391. "notification-url": "https://packagist.org/downloads/",
  8392. "license": [
  8393. "BSD-3-Clause"
  8394. ],
  8395. "authors": [
  8396. {
  8397. "name": "Sebastian Bergmann",
  8398. "email": "sebastian@phpunit.de"
  8399. },
  8400. {
  8401. "name": "Jeff Welch",
  8402. "email": "whatthejeff@gmail.com"
  8403. },
  8404. {
  8405. "name": "Volker Dusch",
  8406. "email": "github@wallbash.com"
  8407. },
  8408. {
  8409. "name": "Bernhard Schussek",
  8410. "email": "bschussek@2bepublished.at"
  8411. }
  8412. ],
  8413. "description": "Provides the functionality to compare PHP values for equality",
  8414. "homepage": "https://github.com/sebastianbergmann/comparator",
  8415. "keywords": [
  8416. "comparator",
  8417. "compare",
  8418. "equality"
  8419. ],
  8420. "support": {
  8421. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8422. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  8423. },
  8424. "funding": [
  8425. {
  8426. "url": "https://github.com/sebastianbergmann",
  8427. "type": "github"
  8428. }
  8429. ],
  8430. "time": "2020-10-26T15:49:45+00:00"
  8431. },
  8432. {
  8433. "name": "sebastian/complexity",
  8434. "version": "2.0.2",
  8435. "source": {
  8436. "type": "git",
  8437. "url": "https://github.com/sebastianbergmann/complexity.git",
  8438. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  8439. },
  8440. "dist": {
  8441. "type": "zip",
  8442. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  8443. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  8444. "shasum": ""
  8445. },
  8446. "require": {
  8447. "nikic/php-parser": "^4.7",
  8448. "php": ">=7.3"
  8449. },
  8450. "require-dev": {
  8451. "phpunit/phpunit": "^9.3"
  8452. },
  8453. "type": "library",
  8454. "extra": {
  8455. "branch-alias": {
  8456. "dev-master": "2.0-dev"
  8457. }
  8458. },
  8459. "autoload": {
  8460. "classmap": [
  8461. "src/"
  8462. ]
  8463. },
  8464. "notification-url": "https://packagist.org/downloads/",
  8465. "license": [
  8466. "BSD-3-Clause"
  8467. ],
  8468. "authors": [
  8469. {
  8470. "name": "Sebastian Bergmann",
  8471. "email": "sebastian@phpunit.de",
  8472. "role": "lead"
  8473. }
  8474. ],
  8475. "description": "Library for calculating the complexity of PHP code units",
  8476. "homepage": "https://github.com/sebastianbergmann/complexity",
  8477. "support": {
  8478. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8479. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  8480. },
  8481. "funding": [
  8482. {
  8483. "url": "https://github.com/sebastianbergmann",
  8484. "type": "github"
  8485. }
  8486. ],
  8487. "time": "2020-10-26T15:52:27+00:00"
  8488. },
  8489. {
  8490. "name": "sebastian/diff",
  8491. "version": "4.0.4",
  8492. "source": {
  8493. "type": "git",
  8494. "url": "https://github.com/sebastianbergmann/diff.git",
  8495. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  8496. },
  8497. "dist": {
  8498. "type": "zip",
  8499. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  8500. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  8501. "shasum": ""
  8502. },
  8503. "require": {
  8504. "php": ">=7.3"
  8505. },
  8506. "require-dev": {
  8507. "phpunit/phpunit": "^9.3",
  8508. "symfony/process": "^4.2 || ^5"
  8509. },
  8510. "type": "library",
  8511. "extra": {
  8512. "branch-alias": {
  8513. "dev-master": "4.0-dev"
  8514. }
  8515. },
  8516. "autoload": {
  8517. "classmap": [
  8518. "src/"
  8519. ]
  8520. },
  8521. "notification-url": "https://packagist.org/downloads/",
  8522. "license": [
  8523. "BSD-3-Clause"
  8524. ],
  8525. "authors": [
  8526. {
  8527. "name": "Sebastian Bergmann",
  8528. "email": "sebastian@phpunit.de"
  8529. },
  8530. {
  8531. "name": "Kore Nordmann",
  8532. "email": "mail@kore-nordmann.de"
  8533. }
  8534. ],
  8535. "description": "Diff implementation",
  8536. "homepage": "https://github.com/sebastianbergmann/diff",
  8537. "keywords": [
  8538. "diff",
  8539. "udiff",
  8540. "unidiff",
  8541. "unified diff"
  8542. ],
  8543. "support": {
  8544. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8545. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  8546. },
  8547. "funding": [
  8548. {
  8549. "url": "https://github.com/sebastianbergmann",
  8550. "type": "github"
  8551. }
  8552. ],
  8553. "time": "2020-10-26T13:10:38+00:00"
  8554. },
  8555. {
  8556. "name": "sebastian/environment",
  8557. "version": "5.1.3",
  8558. "source": {
  8559. "type": "git",
  8560. "url": "https://github.com/sebastianbergmann/environment.git",
  8561. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  8562. },
  8563. "dist": {
  8564. "type": "zip",
  8565. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  8566. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  8567. "shasum": ""
  8568. },
  8569. "require": {
  8570. "php": ">=7.3"
  8571. },
  8572. "require-dev": {
  8573. "phpunit/phpunit": "^9.3"
  8574. },
  8575. "suggest": {
  8576. "ext-posix": "*"
  8577. },
  8578. "type": "library",
  8579. "extra": {
  8580. "branch-alias": {
  8581. "dev-master": "5.1-dev"
  8582. }
  8583. },
  8584. "autoload": {
  8585. "classmap": [
  8586. "src/"
  8587. ]
  8588. },
  8589. "notification-url": "https://packagist.org/downloads/",
  8590. "license": [
  8591. "BSD-3-Clause"
  8592. ],
  8593. "authors": [
  8594. {
  8595. "name": "Sebastian Bergmann",
  8596. "email": "sebastian@phpunit.de"
  8597. }
  8598. ],
  8599. "description": "Provides functionality to handle HHVM/PHP environments",
  8600. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8601. "keywords": [
  8602. "Xdebug",
  8603. "environment",
  8604. "hhvm"
  8605. ],
  8606. "support": {
  8607. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8608. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  8609. },
  8610. "funding": [
  8611. {
  8612. "url": "https://github.com/sebastianbergmann",
  8613. "type": "github"
  8614. }
  8615. ],
  8616. "time": "2020-09-28T05:52:38+00:00"
  8617. },
  8618. {
  8619. "name": "sebastian/exporter",
  8620. "version": "4.0.4",
  8621. "source": {
  8622. "type": "git",
  8623. "url": "https://github.com/sebastianbergmann/exporter.git",
  8624. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  8625. },
  8626. "dist": {
  8627. "type": "zip",
  8628. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  8629. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  8630. "shasum": ""
  8631. },
  8632. "require": {
  8633. "php": ">=7.3",
  8634. "sebastian/recursion-context": "^4.0"
  8635. },
  8636. "require-dev": {
  8637. "ext-mbstring": "*",
  8638. "phpunit/phpunit": "^9.3"
  8639. },
  8640. "type": "library",
  8641. "extra": {
  8642. "branch-alias": {
  8643. "dev-master": "4.0-dev"
  8644. }
  8645. },
  8646. "autoload": {
  8647. "classmap": [
  8648. "src/"
  8649. ]
  8650. },
  8651. "notification-url": "https://packagist.org/downloads/",
  8652. "license": [
  8653. "BSD-3-Clause"
  8654. ],
  8655. "authors": [
  8656. {
  8657. "name": "Sebastian Bergmann",
  8658. "email": "sebastian@phpunit.de"
  8659. },
  8660. {
  8661. "name": "Jeff Welch",
  8662. "email": "whatthejeff@gmail.com"
  8663. },
  8664. {
  8665. "name": "Volker Dusch",
  8666. "email": "github@wallbash.com"
  8667. },
  8668. {
  8669. "name": "Adam Harvey",
  8670. "email": "aharvey@php.net"
  8671. },
  8672. {
  8673. "name": "Bernhard Schussek",
  8674. "email": "bschussek@gmail.com"
  8675. }
  8676. ],
  8677. "description": "Provides the functionality to export PHP variables for visualization",
  8678. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8679. "keywords": [
  8680. "export",
  8681. "exporter"
  8682. ],
  8683. "support": {
  8684. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8685. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  8686. },
  8687. "funding": [
  8688. {
  8689. "url": "https://github.com/sebastianbergmann",
  8690. "type": "github"
  8691. }
  8692. ],
  8693. "time": "2021-11-11T14:18:36+00:00"
  8694. },
  8695. {
  8696. "name": "sebastian/global-state",
  8697. "version": "5.0.3",
  8698. "source": {
  8699. "type": "git",
  8700. "url": "https://github.com/sebastianbergmann/global-state.git",
  8701. "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49"
  8702. },
  8703. "dist": {
  8704. "type": "zip",
  8705. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/23bd5951f7ff26f12d4e3242864df3e08dec4e49",
  8706. "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49",
  8707. "shasum": ""
  8708. },
  8709. "require": {
  8710. "php": ">=7.3",
  8711. "sebastian/object-reflector": "^2.0",
  8712. "sebastian/recursion-context": "^4.0"
  8713. },
  8714. "require-dev": {
  8715. "ext-dom": "*",
  8716. "phpunit/phpunit": "^9.3"
  8717. },
  8718. "suggest": {
  8719. "ext-uopz": "*"
  8720. },
  8721. "type": "library",
  8722. "extra": {
  8723. "branch-alias": {
  8724. "dev-master": "5.0-dev"
  8725. }
  8726. },
  8727. "autoload": {
  8728. "classmap": [
  8729. "src/"
  8730. ]
  8731. },
  8732. "notification-url": "https://packagist.org/downloads/",
  8733. "license": [
  8734. "BSD-3-Clause"
  8735. ],
  8736. "authors": [
  8737. {
  8738. "name": "Sebastian Bergmann",
  8739. "email": "sebastian@phpunit.de"
  8740. }
  8741. ],
  8742. "description": "Snapshotting of global state",
  8743. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8744. "keywords": [
  8745. "global state"
  8746. ],
  8747. "support": {
  8748. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8749. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.3"
  8750. },
  8751. "funding": [
  8752. {
  8753. "url": "https://github.com/sebastianbergmann",
  8754. "type": "github"
  8755. }
  8756. ],
  8757. "time": "2021-06-11T13:31:12+00:00"
  8758. },
  8759. {
  8760. "name": "sebastian/lines-of-code",
  8761. "version": "1.0.3",
  8762. "source": {
  8763. "type": "git",
  8764. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  8765. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  8766. },
  8767. "dist": {
  8768. "type": "zip",
  8769. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  8770. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  8771. "shasum": ""
  8772. },
  8773. "require": {
  8774. "nikic/php-parser": "^4.6",
  8775. "php": ">=7.3"
  8776. },
  8777. "require-dev": {
  8778. "phpunit/phpunit": "^9.3"
  8779. },
  8780. "type": "library",
  8781. "extra": {
  8782. "branch-alias": {
  8783. "dev-master": "1.0-dev"
  8784. }
  8785. },
  8786. "autoload": {
  8787. "classmap": [
  8788. "src/"
  8789. ]
  8790. },
  8791. "notification-url": "https://packagist.org/downloads/",
  8792. "license": [
  8793. "BSD-3-Clause"
  8794. ],
  8795. "authors": [
  8796. {
  8797. "name": "Sebastian Bergmann",
  8798. "email": "sebastian@phpunit.de",
  8799. "role": "lead"
  8800. }
  8801. ],
  8802. "description": "Library for counting the lines of code in PHP source code",
  8803. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8804. "support": {
  8805. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  8806. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  8807. },
  8808. "funding": [
  8809. {
  8810. "url": "https://github.com/sebastianbergmann",
  8811. "type": "github"
  8812. }
  8813. ],
  8814. "time": "2020-11-28T06:42:11+00:00"
  8815. },
  8816. {
  8817. "name": "sebastian/object-enumerator",
  8818. "version": "4.0.4",
  8819. "source": {
  8820. "type": "git",
  8821. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8822. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  8823. },
  8824. "dist": {
  8825. "type": "zip",
  8826. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  8827. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  8828. "shasum": ""
  8829. },
  8830. "require": {
  8831. "php": ">=7.3",
  8832. "sebastian/object-reflector": "^2.0",
  8833. "sebastian/recursion-context": "^4.0"
  8834. },
  8835. "require-dev": {
  8836. "phpunit/phpunit": "^9.3"
  8837. },
  8838. "type": "library",
  8839. "extra": {
  8840. "branch-alias": {
  8841. "dev-master": "4.0-dev"
  8842. }
  8843. },
  8844. "autoload": {
  8845. "classmap": [
  8846. "src/"
  8847. ]
  8848. },
  8849. "notification-url": "https://packagist.org/downloads/",
  8850. "license": [
  8851. "BSD-3-Clause"
  8852. ],
  8853. "authors": [
  8854. {
  8855. "name": "Sebastian Bergmann",
  8856. "email": "sebastian@phpunit.de"
  8857. }
  8858. ],
  8859. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8860. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8861. "support": {
  8862. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  8863. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  8864. },
  8865. "funding": [
  8866. {
  8867. "url": "https://github.com/sebastianbergmann",
  8868. "type": "github"
  8869. }
  8870. ],
  8871. "time": "2020-10-26T13:12:34+00:00"
  8872. },
  8873. {
  8874. "name": "sebastian/object-reflector",
  8875. "version": "2.0.4",
  8876. "source": {
  8877. "type": "git",
  8878. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8879. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  8880. },
  8881. "dist": {
  8882. "type": "zip",
  8883. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  8884. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  8885. "shasum": ""
  8886. },
  8887. "require": {
  8888. "php": ">=7.3"
  8889. },
  8890. "require-dev": {
  8891. "phpunit/phpunit": "^9.3"
  8892. },
  8893. "type": "library",
  8894. "extra": {
  8895. "branch-alias": {
  8896. "dev-master": "2.0-dev"
  8897. }
  8898. },
  8899. "autoload": {
  8900. "classmap": [
  8901. "src/"
  8902. ]
  8903. },
  8904. "notification-url": "https://packagist.org/downloads/",
  8905. "license": [
  8906. "BSD-3-Clause"
  8907. ],
  8908. "authors": [
  8909. {
  8910. "name": "Sebastian Bergmann",
  8911. "email": "sebastian@phpunit.de"
  8912. }
  8913. ],
  8914. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8915. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8916. "support": {
  8917. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  8918. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  8919. },
  8920. "funding": [
  8921. {
  8922. "url": "https://github.com/sebastianbergmann",
  8923. "type": "github"
  8924. }
  8925. ],
  8926. "time": "2020-10-26T13:14:26+00:00"
  8927. },
  8928. {
  8929. "name": "sebastian/recursion-context",
  8930. "version": "4.0.4",
  8931. "source": {
  8932. "type": "git",
  8933. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8934. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  8935. },
  8936. "dist": {
  8937. "type": "zip",
  8938. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  8939. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  8940. "shasum": ""
  8941. },
  8942. "require": {
  8943. "php": ">=7.3"
  8944. },
  8945. "require-dev": {
  8946. "phpunit/phpunit": "^9.3"
  8947. },
  8948. "type": "library",
  8949. "extra": {
  8950. "branch-alias": {
  8951. "dev-master": "4.0-dev"
  8952. }
  8953. },
  8954. "autoload": {
  8955. "classmap": [
  8956. "src/"
  8957. ]
  8958. },
  8959. "notification-url": "https://packagist.org/downloads/",
  8960. "license": [
  8961. "BSD-3-Clause"
  8962. ],
  8963. "authors": [
  8964. {
  8965. "name": "Sebastian Bergmann",
  8966. "email": "sebastian@phpunit.de"
  8967. },
  8968. {
  8969. "name": "Jeff Welch",
  8970. "email": "whatthejeff@gmail.com"
  8971. },
  8972. {
  8973. "name": "Adam Harvey",
  8974. "email": "aharvey@php.net"
  8975. }
  8976. ],
  8977. "description": "Provides functionality to recursively process PHP variables",
  8978. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8979. "support": {
  8980. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  8981. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  8982. },
  8983. "funding": [
  8984. {
  8985. "url": "https://github.com/sebastianbergmann",
  8986. "type": "github"
  8987. }
  8988. ],
  8989. "time": "2020-10-26T13:17:30+00:00"
  8990. },
  8991. {
  8992. "name": "sebastian/resource-operations",
  8993. "version": "3.0.3",
  8994. "source": {
  8995. "type": "git",
  8996. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8997. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  8998. },
  8999. "dist": {
  9000. "type": "zip",
  9001. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9002. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  9003. "shasum": ""
  9004. },
  9005. "require": {
  9006. "php": ">=7.3"
  9007. },
  9008. "require-dev": {
  9009. "phpunit/phpunit": "^9.0"
  9010. },
  9011. "type": "library",
  9012. "extra": {
  9013. "branch-alias": {
  9014. "dev-master": "3.0-dev"
  9015. }
  9016. },
  9017. "autoload": {
  9018. "classmap": [
  9019. "src/"
  9020. ]
  9021. },
  9022. "notification-url": "https://packagist.org/downloads/",
  9023. "license": [
  9024. "BSD-3-Clause"
  9025. ],
  9026. "authors": [
  9027. {
  9028. "name": "Sebastian Bergmann",
  9029. "email": "sebastian@phpunit.de"
  9030. }
  9031. ],
  9032. "description": "Provides a list of PHP built-in functions that operate on resources",
  9033. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9034. "support": {
  9035. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9036. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  9037. },
  9038. "funding": [
  9039. {
  9040. "url": "https://github.com/sebastianbergmann",
  9041. "type": "github"
  9042. }
  9043. ],
  9044. "time": "2020-09-28T06:45:17+00:00"
  9045. },
  9046. {
  9047. "name": "sebastian/type",
  9048. "version": "2.3.4",
  9049. "source": {
  9050. "type": "git",
  9051. "url": "https://github.com/sebastianbergmann/type.git",
  9052. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
  9053. },
  9054. "dist": {
  9055. "type": "zip",
  9056. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  9057. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  9058. "shasum": ""
  9059. },
  9060. "require": {
  9061. "php": ">=7.3"
  9062. },
  9063. "require-dev": {
  9064. "phpunit/phpunit": "^9.3"
  9065. },
  9066. "type": "library",
  9067. "extra": {
  9068. "branch-alias": {
  9069. "dev-master": "2.3-dev"
  9070. }
  9071. },
  9072. "autoload": {
  9073. "classmap": [
  9074. "src/"
  9075. ]
  9076. },
  9077. "notification-url": "https://packagist.org/downloads/",
  9078. "license": [
  9079. "BSD-3-Clause"
  9080. ],
  9081. "authors": [
  9082. {
  9083. "name": "Sebastian Bergmann",
  9084. "email": "sebastian@phpunit.de",
  9085. "role": "lead"
  9086. }
  9087. ],
  9088. "description": "Collection of value objects that represent the types of the PHP type system",
  9089. "homepage": "https://github.com/sebastianbergmann/type",
  9090. "support": {
  9091. "issues": "https://github.com/sebastianbergmann/type/issues",
  9092. "source": "https://github.com/sebastianbergmann/type/tree/2.3.4"
  9093. },
  9094. "funding": [
  9095. {
  9096. "url": "https://github.com/sebastianbergmann",
  9097. "type": "github"
  9098. }
  9099. ],
  9100. "time": "2021-06-15T12:49:02+00:00"
  9101. },
  9102. {
  9103. "name": "sebastian/version",
  9104. "version": "3.0.2",
  9105. "source": {
  9106. "type": "git",
  9107. "url": "https://github.com/sebastianbergmann/version.git",
  9108. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9109. },
  9110. "dist": {
  9111. "type": "zip",
  9112. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9113. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9114. "shasum": ""
  9115. },
  9116. "require": {
  9117. "php": ">=7.3"
  9118. },
  9119. "type": "library",
  9120. "extra": {
  9121. "branch-alias": {
  9122. "dev-master": "3.0-dev"
  9123. }
  9124. },
  9125. "autoload": {
  9126. "classmap": [
  9127. "src/"
  9128. ]
  9129. },
  9130. "notification-url": "https://packagist.org/downloads/",
  9131. "license": [
  9132. "BSD-3-Clause"
  9133. ],
  9134. "authors": [
  9135. {
  9136. "name": "Sebastian Bergmann",
  9137. "email": "sebastian@phpunit.de",
  9138. "role": "lead"
  9139. }
  9140. ],
  9141. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9142. "homepage": "https://github.com/sebastianbergmann/version",
  9143. "support": {
  9144. "issues": "https://github.com/sebastianbergmann/version/issues",
  9145. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9146. },
  9147. "funding": [
  9148. {
  9149. "url": "https://github.com/sebastianbergmann",
  9150. "type": "github"
  9151. }
  9152. ],
  9153. "time": "2020-09-28T06:39:44+00:00"
  9154. },
  9155. {
  9156. "name": "symfony/browser-kit",
  9157. "version": "v5.4.0",
  9158. "source": {
  9159. "type": "git",
  9160. "url": "https://github.com/symfony/browser-kit.git",
  9161. "reference": "d250db364a35ba5d60626b2a6f10f2eaf2073bde"
  9162. },
  9163. "dist": {
  9164. "type": "zip",
  9165. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/d250db364a35ba5d60626b2a6f10f2eaf2073bde",
  9166. "reference": "d250db364a35ba5d60626b2a6f10f2eaf2073bde",
  9167. "shasum": ""
  9168. },
  9169. "require": {
  9170. "php": ">=7.2.5",
  9171. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  9172. "symfony/polyfill-php80": "^1.16"
  9173. },
  9174. "require-dev": {
  9175. "symfony/css-selector": "^4.4|^5.0|^6.0",
  9176. "symfony/http-client": "^4.4|^5.0|^6.0",
  9177. "symfony/mime": "^4.4|^5.0|^6.0",
  9178. "symfony/process": "^4.4|^5.0|^6.0"
  9179. },
  9180. "suggest": {
  9181. "symfony/process": ""
  9182. },
  9183. "type": "library",
  9184. "autoload": {
  9185. "psr-4": {
  9186. "Symfony\\Component\\BrowserKit\\": ""
  9187. },
  9188. "exclude-from-classmap": [
  9189. "/Tests/"
  9190. ]
  9191. },
  9192. "notification-url": "https://packagist.org/downloads/",
  9193. "license": [
  9194. "MIT"
  9195. ],
  9196. "authors": [
  9197. {
  9198. "name": "Fabien Potencier",
  9199. "email": "fabien@symfony.com"
  9200. },
  9201. {
  9202. "name": "Symfony Community",
  9203. "homepage": "https://symfony.com/contributors"
  9204. }
  9205. ],
  9206. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9207. "homepage": "https://symfony.com",
  9208. "support": {
  9209. "source": "https://github.com/symfony/browser-kit/tree/v5.4.0"
  9210. },
  9211. "funding": [
  9212. {
  9213. "url": "https://symfony.com/sponsor",
  9214. "type": "custom"
  9215. },
  9216. {
  9217. "url": "https://github.com/fabpot",
  9218. "type": "github"
  9219. },
  9220. {
  9221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9222. "type": "tidelift"
  9223. }
  9224. ],
  9225. "time": "2021-10-26T22:29:18+00:00"
  9226. },
  9227. {
  9228. "name": "symfony/css-selector",
  9229. "version": "v5.4.0",
  9230. "source": {
  9231. "type": "git",
  9232. "url": "https://github.com/symfony/css-selector.git",
  9233. "reference": "44b933f98bb4b5220d10bed9ce5662f8c2d13dcc"
  9234. },
  9235. "dist": {
  9236. "type": "zip",
  9237. "url": "https://api.github.com/repos/symfony/css-selector/zipball/44b933f98bb4b5220d10bed9ce5662f8c2d13dcc",
  9238. "reference": "44b933f98bb4b5220d10bed9ce5662f8c2d13dcc",
  9239. "shasum": ""
  9240. },
  9241. "require": {
  9242. "php": ">=7.2.5",
  9243. "symfony/polyfill-php80": "^1.16"
  9244. },
  9245. "type": "library",
  9246. "autoload": {
  9247. "psr-4": {
  9248. "Symfony\\Component\\CssSelector\\": ""
  9249. },
  9250. "exclude-from-classmap": [
  9251. "/Tests/"
  9252. ]
  9253. },
  9254. "notification-url": "https://packagist.org/downloads/",
  9255. "license": [
  9256. "MIT"
  9257. ],
  9258. "authors": [
  9259. {
  9260. "name": "Fabien Potencier",
  9261. "email": "fabien@symfony.com"
  9262. },
  9263. {
  9264. "name": "Jean-François Simon",
  9265. "email": "jeanfrancois.simon@sensiolabs.com"
  9266. },
  9267. {
  9268. "name": "Symfony Community",
  9269. "homepage": "https://symfony.com/contributors"
  9270. }
  9271. ],
  9272. "description": "Converts CSS selectors to XPath expressions",
  9273. "homepage": "https://symfony.com",
  9274. "support": {
  9275. "source": "https://github.com/symfony/css-selector/tree/v5.4.0"
  9276. },
  9277. "funding": [
  9278. {
  9279. "url": "https://symfony.com/sponsor",
  9280. "type": "custom"
  9281. },
  9282. {
  9283. "url": "https://github.com/fabpot",
  9284. "type": "github"
  9285. },
  9286. {
  9287. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9288. "type": "tidelift"
  9289. }
  9290. ],
  9291. "time": "2021-09-09T08:06:01+00:00"
  9292. },
  9293. {
  9294. "name": "symfony/debug-bundle",
  9295. "version": "v5.4.0",
  9296. "source": {
  9297. "type": "git",
  9298. "url": "https://github.com/symfony/debug-bundle.git",
  9299. "reference": "71c299d4516dbc7c8e7bc73f57d57c7f7df9817e"
  9300. },
  9301. "dist": {
  9302. "type": "zip",
  9303. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/71c299d4516dbc7c8e7bc73f57d57c7f7df9817e",
  9304. "reference": "71c299d4516dbc7c8e7bc73f57d57c7f7df9817e",
  9305. "shasum": ""
  9306. },
  9307. "require": {
  9308. "ext-xml": "*",
  9309. "php": ">=7.2.5",
  9310. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  9311. "symfony/polyfill-php80": "^1.16",
  9312. "symfony/twig-bridge": "^4.4|^5.0|^6.0",
  9313. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  9314. },
  9315. "conflict": {
  9316. "symfony/config": "<4.4",
  9317. "symfony/dependency-injection": "<5.2"
  9318. },
  9319. "require-dev": {
  9320. "symfony/config": "^4.4|^5.0|^6.0",
  9321. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9322. "symfony/web-profiler-bundle": "^4.4|^5.0|^6.0"
  9323. },
  9324. "suggest": {
  9325. "symfony/config": "For service container configuration",
  9326. "symfony/dependency-injection": "For using as a service from the container"
  9327. },
  9328. "type": "symfony-bundle",
  9329. "autoload": {
  9330. "psr-4": {
  9331. "Symfony\\Bundle\\DebugBundle\\": ""
  9332. },
  9333. "exclude-from-classmap": [
  9334. "/Tests/"
  9335. ]
  9336. },
  9337. "notification-url": "https://packagist.org/downloads/",
  9338. "license": [
  9339. "MIT"
  9340. ],
  9341. "authors": [
  9342. {
  9343. "name": "Fabien Potencier",
  9344. "email": "fabien@symfony.com"
  9345. },
  9346. {
  9347. "name": "Symfony Community",
  9348. "homepage": "https://symfony.com/contributors"
  9349. }
  9350. ],
  9351. "description": "Provides a tight integration of the Symfony Debug component into the Symfony full-stack framework",
  9352. "homepage": "https://symfony.com",
  9353. "support": {
  9354. "source": "https://github.com/symfony/debug-bundle/tree/v5.4.0"
  9355. },
  9356. "funding": [
  9357. {
  9358. "url": "https://symfony.com/sponsor",
  9359. "type": "custom"
  9360. },
  9361. {
  9362. "url": "https://github.com/fabpot",
  9363. "type": "github"
  9364. },
  9365. {
  9366. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9367. "type": "tidelift"
  9368. }
  9369. ],
  9370. "time": "2021-07-21T12:43:48+00:00"
  9371. },
  9372. {
  9373. "name": "symfony/dom-crawler",
  9374. "version": "v5.4.0",
  9375. "source": {
  9376. "type": "git",
  9377. "url": "https://github.com/symfony/dom-crawler.git",
  9378. "reference": "5b06626e940a3ad54e573511d64d4e00dc8d0fd8"
  9379. },
  9380. "dist": {
  9381. "type": "zip",
  9382. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/5b06626e940a3ad54e573511d64d4e00dc8d0fd8",
  9383. "reference": "5b06626e940a3ad54e573511d64d4e00dc8d0fd8",
  9384. "shasum": ""
  9385. },
  9386. "require": {
  9387. "php": ">=7.2.5",
  9388. "symfony/deprecation-contracts": "^2.1|^3",
  9389. "symfony/polyfill-ctype": "~1.8",
  9390. "symfony/polyfill-mbstring": "~1.0",
  9391. "symfony/polyfill-php80": "^1.16"
  9392. },
  9393. "conflict": {
  9394. "masterminds/html5": "<2.6"
  9395. },
  9396. "require-dev": {
  9397. "masterminds/html5": "^2.6",
  9398. "symfony/css-selector": "^4.4|^5.0|^6.0"
  9399. },
  9400. "suggest": {
  9401. "symfony/css-selector": ""
  9402. },
  9403. "type": "library",
  9404. "autoload": {
  9405. "psr-4": {
  9406. "Symfony\\Component\\DomCrawler\\": ""
  9407. },
  9408. "exclude-from-classmap": [
  9409. "/Tests/"
  9410. ]
  9411. },
  9412. "notification-url": "https://packagist.org/downloads/",
  9413. "license": [
  9414. "MIT"
  9415. ],
  9416. "authors": [
  9417. {
  9418. "name": "Fabien Potencier",
  9419. "email": "fabien@symfony.com"
  9420. },
  9421. {
  9422. "name": "Symfony Community",
  9423. "homepage": "https://symfony.com/contributors"
  9424. }
  9425. ],
  9426. "description": "Eases DOM navigation for HTML and XML documents",
  9427. "homepage": "https://symfony.com",
  9428. "support": {
  9429. "source": "https://github.com/symfony/dom-crawler/tree/v5.4.0"
  9430. },
  9431. "funding": [
  9432. {
  9433. "url": "https://symfony.com/sponsor",
  9434. "type": "custom"
  9435. },
  9436. {
  9437. "url": "https://github.com/fabpot",
  9438. "type": "github"
  9439. },
  9440. {
  9441. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9442. "type": "tidelift"
  9443. }
  9444. ],
  9445. "time": "2021-11-23T10:19:22+00:00"
  9446. },
  9447. {
  9448. "name": "symfony/maker-bundle",
  9449. "version": "v1.36.4",
  9450. "source": {
  9451. "type": "git",
  9452. "url": "https://github.com/symfony/maker-bundle.git",
  9453. "reference": "716eee9c8b10b33e682df1b7d80b9061887e9691"
  9454. },
  9455. "dist": {
  9456. "type": "zip",
  9457. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/716eee9c8b10b33e682df1b7d80b9061887e9691",
  9458. "reference": "716eee9c8b10b33e682df1b7d80b9061887e9691",
  9459. "shasum": ""
  9460. },
  9461. "require": {
  9462. "doctrine/inflector": "^1.2|^2.0",
  9463. "nikic/php-parser": "^4.11",
  9464. "php": ">=7.1.3",
  9465. "symfony/config": "^4.4|^5.0|^6.0",
  9466. "symfony/console": "^4.4|^5.0|^6.0",
  9467. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9468. "symfony/deprecation-contracts": "^2.2|^3",
  9469. "symfony/filesystem": "^4.4|^5.0|^6.0",
  9470. "symfony/finder": "^4.4|^5.0|^6.0",
  9471. "symfony/framework-bundle": "^4.4|^5.0|^6.0",
  9472. "symfony/http-kernel": "^4.4|^5.0|^6.0"
  9473. },
  9474. "require-dev": {
  9475. "composer/semver": "^3.0",
  9476. "doctrine/doctrine-bundle": "^1.12.3|^2.0",
  9477. "doctrine/orm": "^2.3",
  9478. "symfony/http-client": "^4.4|^5.0|^6.0",
  9479. "symfony/phpunit-bridge": "^4.4|^5.0|^6.0",
  9480. "symfony/polyfill-php80": "^1.16.0",
  9481. "symfony/process": "^4.4|^5.0|^6.0",
  9482. "symfony/security-core": "^4.4|^5.0|^6.0",
  9483. "symfony/yaml": "^4.4|^5.0|^6.0",
  9484. "twig/twig": "^2.0|^3.0"
  9485. },
  9486. "type": "symfony-bundle",
  9487. "extra": {
  9488. "branch-alias": {
  9489. "dev-main": "1.0-dev"
  9490. }
  9491. },
  9492. "autoload": {
  9493. "psr-4": {
  9494. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9495. }
  9496. },
  9497. "notification-url": "https://packagist.org/downloads/",
  9498. "license": [
  9499. "MIT"
  9500. ],
  9501. "authors": [
  9502. {
  9503. "name": "Symfony Community",
  9504. "homepage": "https://symfony.com/contributors"
  9505. }
  9506. ],
  9507. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9508. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9509. "keywords": [
  9510. "code generator",
  9511. "generator",
  9512. "scaffold",
  9513. "scaffolding"
  9514. ],
  9515. "support": {
  9516. "issues": "https://github.com/symfony/maker-bundle/issues",
  9517. "source": "https://github.com/symfony/maker-bundle/tree/v1.36.4"
  9518. },
  9519. "funding": [
  9520. {
  9521. "url": "https://symfony.com/sponsor",
  9522. "type": "custom"
  9523. },
  9524. {
  9525. "url": "https://github.com/fabpot",
  9526. "type": "github"
  9527. },
  9528. {
  9529. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9530. "type": "tidelift"
  9531. }
  9532. ],
  9533. "time": "2021-12-01T00:27:38+00:00"
  9534. },
  9535. {
  9536. "name": "symfony/phpunit-bridge",
  9537. "version": "v5.4.0",
  9538. "source": {
  9539. "type": "git",
  9540. "url": "https://github.com/symfony/phpunit-bridge.git",
  9541. "reference": "59bbd98ee7aa15b9f75c0fc088c7a5cbf7aa9b5c"
  9542. },
  9543. "dist": {
  9544. "type": "zip",
  9545. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/59bbd98ee7aa15b9f75c0fc088c7a5cbf7aa9b5c",
  9546. "reference": "59bbd98ee7aa15b9f75c0fc088c7a5cbf7aa9b5c",
  9547. "shasum": ""
  9548. },
  9549. "require": {
  9550. "php": ">=7.1.3",
  9551. "symfony/deprecation-contracts": "^2.1|^3"
  9552. },
  9553. "conflict": {
  9554. "phpunit/phpunit": "<7.5|9.1.2"
  9555. },
  9556. "require-dev": {
  9557. "symfony/error-handler": "^4.4|^5.0|^6.0"
  9558. },
  9559. "suggest": {
  9560. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  9561. },
  9562. "bin": [
  9563. "bin/simple-phpunit"
  9564. ],
  9565. "type": "symfony-bridge",
  9566. "extra": {
  9567. "thanks": {
  9568. "name": "phpunit/phpunit",
  9569. "url": "https://github.com/sebastianbergmann/phpunit"
  9570. }
  9571. },
  9572. "autoload": {
  9573. "files": [
  9574. "bootstrap.php"
  9575. ],
  9576. "psr-4": {
  9577. "Symfony\\Bridge\\PhpUnit\\": ""
  9578. },
  9579. "exclude-from-classmap": [
  9580. "/Tests/"
  9581. ]
  9582. },
  9583. "notification-url": "https://packagist.org/downloads/",
  9584. "license": [
  9585. "MIT"
  9586. ],
  9587. "authors": [
  9588. {
  9589. "name": "Nicolas Grekas",
  9590. "email": "p@tchwork.com"
  9591. },
  9592. {
  9593. "name": "Symfony Community",
  9594. "homepage": "https://symfony.com/contributors"
  9595. }
  9596. ],
  9597. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  9598. "homepage": "https://symfony.com",
  9599. "support": {
  9600. "source": "https://github.com/symfony/phpunit-bridge/tree/v5.4.0"
  9601. },
  9602. "funding": [
  9603. {
  9604. "url": "https://symfony.com/sponsor",
  9605. "type": "custom"
  9606. },
  9607. {
  9608. "url": "https://github.com/fabpot",
  9609. "type": "github"
  9610. },
  9611. {
  9612. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9613. "type": "tidelift"
  9614. }
  9615. ],
  9616. "time": "2021-11-29T15:30:56+00:00"
  9617. },
  9618. {
  9619. "name": "symfony/web-profiler-bundle",
  9620. "version": "v5.4.0",
  9621. "source": {
  9622. "type": "git",
  9623. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9624. "reference": "85261499e255007ac76afe1a943b0c7c0f925c45"
  9625. },
  9626. "dist": {
  9627. "type": "zip",
  9628. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/85261499e255007ac76afe1a943b0c7c0f925c45",
  9629. "reference": "85261499e255007ac76afe1a943b0c7c0f925c45",
  9630. "shasum": ""
  9631. },
  9632. "require": {
  9633. "php": ">=7.2.5",
  9634. "symfony/config": "^4.4|^5.0|^6.0",
  9635. "symfony/framework-bundle": "^5.3|^6.0",
  9636. "symfony/http-kernel": "^5.3|^6.0",
  9637. "symfony/polyfill-php80": "^1.16",
  9638. "symfony/routing": "^4.4|^5.0|^6.0",
  9639. "symfony/twig-bundle": "^4.4|^5.0|^6.0",
  9640. "twig/twig": "^2.13|^3.0.4"
  9641. },
  9642. "conflict": {
  9643. "symfony/dependency-injection": "<5.2",
  9644. "symfony/form": "<4.4",
  9645. "symfony/mailer": "<5.4",
  9646. "symfony/messenger": "<4.4"
  9647. },
  9648. "require-dev": {
  9649. "symfony/browser-kit": "^4.4|^5.0|^6.0",
  9650. "symfony/console": "^4.4|^5.0|^6.0",
  9651. "symfony/css-selector": "^4.4|^5.0|^6.0",
  9652. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  9653. },
  9654. "type": "symfony-bundle",
  9655. "autoload": {
  9656. "psr-4": {
  9657. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9658. },
  9659. "exclude-from-classmap": [
  9660. "/Tests/"
  9661. ]
  9662. },
  9663. "notification-url": "https://packagist.org/downloads/",
  9664. "license": [
  9665. "MIT"
  9666. ],
  9667. "authors": [
  9668. {
  9669. "name": "Fabien Potencier",
  9670. "email": "fabien@symfony.com"
  9671. },
  9672. {
  9673. "name": "Symfony Community",
  9674. "homepage": "https://symfony.com/contributors"
  9675. }
  9676. ],
  9677. "description": "Provides a development tool that gives detailed information about the execution of any request",
  9678. "homepage": "https://symfony.com",
  9679. "support": {
  9680. "source": "https://github.com/symfony/web-profiler-bundle/tree/v5.4.0"
  9681. },
  9682. "funding": [
  9683. {
  9684. "url": "https://symfony.com/sponsor",
  9685. "type": "custom"
  9686. },
  9687. {
  9688. "url": "https://github.com/fabpot",
  9689. "type": "github"
  9690. },
  9691. {
  9692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9693. "type": "tidelift"
  9694. }
  9695. ],
  9696. "time": "2021-11-21T13:58:13+00:00"
  9697. },
  9698. {
  9699. "name": "theseer/tokenizer",
  9700. "version": "1.2.1",
  9701. "source": {
  9702. "type": "git",
  9703. "url": "https://github.com/theseer/tokenizer.git",
  9704. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  9705. },
  9706. "dist": {
  9707. "type": "zip",
  9708. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  9709. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  9710. "shasum": ""
  9711. },
  9712. "require": {
  9713. "ext-dom": "*",
  9714. "ext-tokenizer": "*",
  9715. "ext-xmlwriter": "*",
  9716. "php": "^7.2 || ^8.0"
  9717. },
  9718. "type": "library",
  9719. "autoload": {
  9720. "classmap": [
  9721. "src/"
  9722. ]
  9723. },
  9724. "notification-url": "https://packagist.org/downloads/",
  9725. "license": [
  9726. "BSD-3-Clause"
  9727. ],
  9728. "authors": [
  9729. {
  9730. "name": "Arne Blankerts",
  9731. "email": "arne@blankerts.de",
  9732. "role": "Developer"
  9733. }
  9734. ],
  9735. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9736. "support": {
  9737. "issues": "https://github.com/theseer/tokenizer/issues",
  9738. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  9739. },
  9740. "funding": [
  9741. {
  9742. "url": "https://github.com/theseer",
  9743. "type": "github"
  9744. }
  9745. ],
  9746. "time": "2021-07-28T10:34:58+00:00"
  9747. }
  9748. ],
  9749. "aliases": [],
  9750. "minimum-stability": "stable",
  9751. "stability-flags": [],
  9752. "prefer-stable": false,
  9753. "prefer-lowest": false,
  9754. "platform": {
  9755. "php": "^7.3",
  9756. "ext-ctype": "*",
  9757. "ext-iconv": "*"
  9758. },
  9759. "platform-dev": [],
  9760. "platform-overrides": {
  9761. "php": "7.3"
  9762. },
  9763. "plugin-api-version": "2.1.0"
  9764. }