composer.lock 295 KB

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