composer.lock 352 KB

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