composer.lock 365 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078
  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": "44946c855081fcd12f1f7e53c4c7576d",
  8. "packages": [
  9. {
  10. "name": "alchemy/resource-component",
  11. "version": "0.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/resource-component.git",
  15. "reference": "5c7680f111c359136051b2155b64851f7da1063a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/resource-component/zipball/5c7680f111c359136051b2155b64851f7da1063a",
  20. "reference": "5c7680f111c359136051b2155b64851f7da1063a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "beberlei/assert": "^2.5",
  25. "php": ">=5.5",
  26. "symfony/polyfill-mbstring": "^1.1"
  27. },
  28. "require-dev": {
  29. "mikey179/vfsstream": "^1.6",
  30. "phpunit/phpunit": "^4.0|^5.0"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "0.1.x-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Alchemy\\Resource\\": "src/"
  41. },
  42. "files": [
  43. "src/functions.php"
  44. ]
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Alchemy",
  53. "email": "dev.team@alchemy.fr",
  54. "homepage": "http://www.alchemy.fr/"
  55. }
  56. ],
  57. "description": "Resource component",
  58. "keywords": [
  59. "alchemy",
  60. "resource",
  61. "uri"
  62. ],
  63. "support": {
  64. "issues": "https://github.com/alchemy-fr/resource-component/issues",
  65. "source": "https://github.com/alchemy-fr/resource-component/tree/master"
  66. },
  67. "time": "2016-05-22T08:56:59+00:00"
  68. },
  69. {
  70. "name": "alchemy/zippy",
  71. "version": "v0.5.x-dev",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/alchemy-fr/Zippy.git",
  75. "reference": "a1f0a0d67af1eb247191e938f1d3ee625b90e2a1"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/a1f0a0d67af1eb247191e938f1d3ee625b90e2a1",
  80. "reference": "a1f0a0d67af1eb247191e938f1d3ee625b90e2a1",
  81. "shasum": ""
  82. },
  83. "require": {
  84. "alchemy/resource-component": "^0.1",
  85. "ext-mbstring": "*",
  86. "php": ">=5.5"
  87. },
  88. "require-dev": {
  89. "ext-rar": "*",
  90. "ext-zip": "*",
  91. "guzzle/guzzle": "~3.0",
  92. "guzzlehttp/guzzle": "^6.0",
  93. "pear-pear.php.net/archive_tar": "*",
  94. "phpunit/phpunit": "^4.0|^5.0"
  95. },
  96. "suggest": {
  97. "ext-rar": "To read/write Rar files",
  98. "ext-tar": "To read/write Tar files",
  99. "ext-zip": "To read/write Zip files",
  100. "guzzle/guzzle": "To read archives and files from remote sources (Guzzle 3)",
  101. "guzzlehttp/guzzle": "To read archives and files from remote sources (Guzzle 6)"
  102. },
  103. "type": "library",
  104. "extra": {
  105. "branch-alias": {
  106. "dev-master": "0.4.x-dev"
  107. }
  108. },
  109. "autoload": {
  110. "psr-4": {
  111. "Alchemy\\Zippy\\": "src/"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "MIT"
  117. ],
  118. "authors": [
  119. {
  120. "name": "Alchemy",
  121. "email": "dev.team@alchemy.fr",
  122. "homepage": "http://www.alchemy.fr/"
  123. }
  124. ],
  125. "description": "Zippy, the archive manager companion",
  126. "keywords": [
  127. "bzip",
  128. "compression",
  129. "tar",
  130. "zip"
  131. ],
  132. "support": {
  133. "issues": "https://github.com/alchemy-fr/Zippy/issues",
  134. "source": "https://github.com/alchemy-fr/Zippy/tree/v0.5.x"
  135. },
  136. "time": "2016-06-29T15:53:10+00:00"
  137. },
  138. {
  139. "name": "beberlei/assert",
  140. "version": "v2.9.9",
  141. "source": {
  142. "type": "git",
  143. "url": "https://github.com/beberlei/assert.git",
  144. "reference": "124317de301b7c91d5fce34c98bba2c6925bec95"
  145. },
  146. "dist": {
  147. "type": "zip",
  148. "url": "https://api.github.com/repos/beberlei/assert/zipball/124317de301b7c91d5fce34c98bba2c6925bec95",
  149. "reference": "124317de301b7c91d5fce34c98bba2c6925bec95",
  150. "shasum": ""
  151. },
  152. "require": {
  153. "ext-mbstring": "*",
  154. "php": ">=5.3"
  155. },
  156. "require-dev": {
  157. "friendsofphp/php-cs-fixer": "^2.1.1",
  158. "phpunit/phpunit": "^4.8.35|^5.7"
  159. },
  160. "type": "library",
  161. "autoload": {
  162. "psr-4": {
  163. "Assert\\": "lib/Assert"
  164. },
  165. "files": [
  166. "lib/Assert/functions.php"
  167. ]
  168. },
  169. "notification-url": "https://packagist.org/downloads/",
  170. "license": [
  171. "BSD-2-Clause"
  172. ],
  173. "authors": [
  174. {
  175. "name": "Benjamin Eberlei",
  176. "email": "kontakt@beberlei.de",
  177. "role": "Lead Developer"
  178. },
  179. {
  180. "name": "Richard Quadling",
  181. "email": "rquadling@gmail.com",
  182. "role": "Collaborator"
  183. }
  184. ],
  185. "description": "Thin assertion library for input validation in business models.",
  186. "keywords": [
  187. "assert",
  188. "assertion",
  189. "validation"
  190. ],
  191. "support": {
  192. "issues": "https://github.com/beberlei/assert/issues",
  193. "source": "https://github.com/beberlei/assert/tree/v2.9.9"
  194. },
  195. "time": "2019-05-28T15:27:37+00:00"
  196. },
  197. {
  198. "name": "composer/package-versions-deprecated",
  199. "version": "1.11.99",
  200. "source": {
  201. "type": "git",
  202. "url": "https://github.com/composer/package-versions-deprecated.git",
  203. "reference": "c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855"
  204. },
  205. "dist": {
  206. "type": "zip",
  207. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855",
  208. "reference": "c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855",
  209. "shasum": ""
  210. },
  211. "require": {
  212. "composer-plugin-api": "^1.1.0 || ^2.0",
  213. "php": "^7 || ^8"
  214. },
  215. "replace": {
  216. "ocramius/package-versions": "1.11.99"
  217. },
  218. "require-dev": {
  219. "composer/composer": "^1.9.3 || ^2.0@dev",
  220. "ext-zip": "^1.13",
  221. "phpunit/phpunit": "^6.5 || ^7"
  222. },
  223. "type": "composer-plugin",
  224. "extra": {
  225. "class": "PackageVersions\\Installer",
  226. "branch-alias": {
  227. "dev-master": "1.x-dev"
  228. }
  229. },
  230. "autoload": {
  231. "psr-4": {
  232. "PackageVersions\\": "src/PackageVersions"
  233. }
  234. },
  235. "notification-url": "https://packagist.org/downloads/",
  236. "license": [
  237. "MIT"
  238. ],
  239. "authors": [
  240. {
  241. "name": "Marco Pivetta",
  242. "email": "ocramius@gmail.com"
  243. },
  244. {
  245. "name": "Jordi Boggiano",
  246. "email": "j.boggiano@seld.be"
  247. }
  248. ],
  249. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  250. "support": {
  251. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  252. "source": "https://github.com/composer/package-versions-deprecated/tree/master"
  253. },
  254. "funding": [
  255. {
  256. "url": "https://packagist.com",
  257. "type": "custom"
  258. },
  259. {
  260. "url": "https://github.com/composer",
  261. "type": "github"
  262. },
  263. {
  264. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  265. "type": "tidelift"
  266. }
  267. ],
  268. "time": "2020-08-25T05:50:16+00:00"
  269. },
  270. {
  271. "name": "doctrine/annotations",
  272. "version": "1.11.1",
  273. "source": {
  274. "type": "git",
  275. "url": "https://github.com/doctrine/annotations.git",
  276. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
  277. },
  278. "dist": {
  279. "type": "zip",
  280. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  281. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  282. "shasum": ""
  283. },
  284. "require": {
  285. "doctrine/lexer": "1.*",
  286. "ext-tokenizer": "*",
  287. "php": "^7.1 || ^8.0"
  288. },
  289. "require-dev": {
  290. "doctrine/cache": "1.*",
  291. "doctrine/coding-standard": "^6.0 || ^8.1",
  292. "phpstan/phpstan": "^0.12.20",
  293. "phpunit/phpunit": "^7.5 || ^9.1.5"
  294. },
  295. "type": "library",
  296. "extra": {
  297. "branch-alias": {
  298. "dev-master": "1.11.x-dev"
  299. }
  300. },
  301. "autoload": {
  302. "psr-4": {
  303. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  304. }
  305. },
  306. "notification-url": "https://packagist.org/downloads/",
  307. "license": [
  308. "MIT"
  309. ],
  310. "authors": [
  311. {
  312. "name": "Guilherme Blanco",
  313. "email": "guilhermeblanco@gmail.com"
  314. },
  315. {
  316. "name": "Roman Borschel",
  317. "email": "roman@code-factory.org"
  318. },
  319. {
  320. "name": "Benjamin Eberlei",
  321. "email": "kontakt@beberlei.de"
  322. },
  323. {
  324. "name": "Jonathan Wage",
  325. "email": "jonwage@gmail.com"
  326. },
  327. {
  328. "name": "Johannes Schmitt",
  329. "email": "schmittjoh@gmail.com"
  330. }
  331. ],
  332. "description": "Docblock Annotations Parser",
  333. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  334. "keywords": [
  335. "annotations",
  336. "docblock",
  337. "parser"
  338. ],
  339. "support": {
  340. "issues": "https://github.com/doctrine/annotations/issues",
  341. "source": "https://github.com/doctrine/annotations/tree/1.11.1"
  342. },
  343. "time": "2020-10-26T10:28:16+00:00"
  344. },
  345. {
  346. "name": "doctrine/cache",
  347. "version": "1.10.2",
  348. "source": {
  349. "type": "git",
  350. "url": "https://github.com/doctrine/cache.git",
  351. "reference": "13e3381b25847283a91948d04640543941309727"
  352. },
  353. "dist": {
  354. "type": "zip",
  355. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  356. "reference": "13e3381b25847283a91948d04640543941309727",
  357. "shasum": ""
  358. },
  359. "require": {
  360. "php": "~7.1 || ^8.0"
  361. },
  362. "conflict": {
  363. "doctrine/common": ">2.2,<2.4"
  364. },
  365. "require-dev": {
  366. "alcaeus/mongo-php-adapter": "^1.1",
  367. "doctrine/coding-standard": "^6.0",
  368. "mongodb/mongodb": "^1.1",
  369. "phpunit/phpunit": "^7.0",
  370. "predis/predis": "~1.0"
  371. },
  372. "suggest": {
  373. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  374. },
  375. "type": "library",
  376. "extra": {
  377. "branch-alias": {
  378. "dev-master": "1.9.x-dev"
  379. }
  380. },
  381. "autoload": {
  382. "psr-4": {
  383. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  384. }
  385. },
  386. "notification-url": "https://packagist.org/downloads/",
  387. "license": [
  388. "MIT"
  389. ],
  390. "authors": [
  391. {
  392. "name": "Guilherme Blanco",
  393. "email": "guilhermeblanco@gmail.com"
  394. },
  395. {
  396. "name": "Roman Borschel",
  397. "email": "roman@code-factory.org"
  398. },
  399. {
  400. "name": "Benjamin Eberlei",
  401. "email": "kontakt@beberlei.de"
  402. },
  403. {
  404. "name": "Jonathan Wage",
  405. "email": "jonwage@gmail.com"
  406. },
  407. {
  408. "name": "Johannes Schmitt",
  409. "email": "schmittjoh@gmail.com"
  410. }
  411. ],
  412. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  413. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  414. "keywords": [
  415. "abstraction",
  416. "apcu",
  417. "cache",
  418. "caching",
  419. "couchdb",
  420. "memcached",
  421. "php",
  422. "redis",
  423. "xcache"
  424. ],
  425. "support": {
  426. "issues": "https://github.com/doctrine/cache/issues",
  427. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  428. },
  429. "funding": [
  430. {
  431. "url": "https://www.doctrine-project.org/sponsorship.html",
  432. "type": "custom"
  433. },
  434. {
  435. "url": "https://www.patreon.com/phpdoctrine",
  436. "type": "patreon"
  437. },
  438. {
  439. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  440. "type": "tidelift"
  441. }
  442. ],
  443. "time": "2020-07-07T18:54:01+00:00"
  444. },
  445. {
  446. "name": "doctrine/collections",
  447. "version": "1.6.7",
  448. "source": {
  449. "type": "git",
  450. "url": "https://github.com/doctrine/collections.git",
  451. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  452. },
  453. "dist": {
  454. "type": "zip",
  455. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  456. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  457. "shasum": ""
  458. },
  459. "require": {
  460. "php": "^7.1.3 || ^8.0"
  461. },
  462. "require-dev": {
  463. "doctrine/coding-standard": "^6.0",
  464. "phpstan/phpstan-shim": "^0.9.2",
  465. "phpunit/phpunit": "^7.0",
  466. "vimeo/psalm": "^3.8.1"
  467. },
  468. "type": "library",
  469. "autoload": {
  470. "psr-4": {
  471. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  472. }
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "MIT"
  477. ],
  478. "authors": [
  479. {
  480. "name": "Guilherme Blanco",
  481. "email": "guilhermeblanco@gmail.com"
  482. },
  483. {
  484. "name": "Roman Borschel",
  485. "email": "roman@code-factory.org"
  486. },
  487. {
  488. "name": "Benjamin Eberlei",
  489. "email": "kontakt@beberlei.de"
  490. },
  491. {
  492. "name": "Jonathan Wage",
  493. "email": "jonwage@gmail.com"
  494. },
  495. {
  496. "name": "Johannes Schmitt",
  497. "email": "schmittjoh@gmail.com"
  498. }
  499. ],
  500. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  501. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  502. "keywords": [
  503. "array",
  504. "collections",
  505. "iterators",
  506. "php"
  507. ],
  508. "support": {
  509. "issues": "https://github.com/doctrine/collections/issues",
  510. "source": "https://github.com/doctrine/collections/tree/1.6.7"
  511. },
  512. "time": "2020-07-27T17:53:49+00:00"
  513. },
  514. {
  515. "name": "doctrine/common",
  516. "version": "3.0.2",
  517. "source": {
  518. "type": "git",
  519. "url": "https://github.com/doctrine/common.git",
  520. "reference": "a3c6479858989e242a2465972b4f7a8642baf0d4"
  521. },
  522. "dist": {
  523. "type": "zip",
  524. "url": "https://api.github.com/repos/doctrine/common/zipball/a3c6479858989e242a2465972b4f7a8642baf0d4",
  525. "reference": "a3c6479858989e242a2465972b4f7a8642baf0d4",
  526. "shasum": ""
  527. },
  528. "require": {
  529. "doctrine/persistence": "^2.0",
  530. "php": "^7.1 || ^8.0"
  531. },
  532. "require-dev": {
  533. "doctrine/coding-standard": "^1.0",
  534. "phpstan/phpstan": "^0.11",
  535. "phpstan/phpstan-phpunit": "^0.11",
  536. "phpunit/phpunit": "^7.0",
  537. "squizlabs/php_codesniffer": "^3.0",
  538. "symfony/phpunit-bridge": "^4.0.5"
  539. },
  540. "type": "library",
  541. "extra": {
  542. "branch-alias": {
  543. "dev-master": "3.0.x-dev"
  544. }
  545. },
  546. "autoload": {
  547. "psr-4": {
  548. "Doctrine\\Common\\": "lib/Doctrine/Common"
  549. }
  550. },
  551. "notification-url": "https://packagist.org/downloads/",
  552. "license": [
  553. "MIT"
  554. ],
  555. "authors": [
  556. {
  557. "name": "Guilherme Blanco",
  558. "email": "guilhermeblanco@gmail.com"
  559. },
  560. {
  561. "name": "Roman Borschel",
  562. "email": "roman@code-factory.org"
  563. },
  564. {
  565. "name": "Benjamin Eberlei",
  566. "email": "kontakt@beberlei.de"
  567. },
  568. {
  569. "name": "Jonathan Wage",
  570. "email": "jonwage@gmail.com"
  571. },
  572. {
  573. "name": "Johannes Schmitt",
  574. "email": "schmittjoh@gmail.com"
  575. },
  576. {
  577. "name": "Marco Pivetta",
  578. "email": "ocramius@gmail.com"
  579. }
  580. ],
  581. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  582. "homepage": "https://www.doctrine-project.org/projects/common.html",
  583. "keywords": [
  584. "common",
  585. "doctrine",
  586. "php"
  587. ],
  588. "support": {
  589. "issues": "https://github.com/doctrine/common/issues",
  590. "source": "https://github.com/doctrine/common/tree/3.0.2"
  591. },
  592. "funding": [
  593. {
  594. "url": "https://www.doctrine-project.org/sponsorship.html",
  595. "type": "custom"
  596. },
  597. {
  598. "url": "https://www.patreon.com/phpdoctrine",
  599. "type": "patreon"
  600. },
  601. {
  602. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  603. "type": "tidelift"
  604. }
  605. ],
  606. "time": "2020-06-05T16:59:53+00:00"
  607. },
  608. {
  609. "name": "doctrine/dbal",
  610. "version": "2.12.0",
  611. "source": {
  612. "type": "git",
  613. "url": "https://github.com/doctrine/dbal.git",
  614. "reference": "c6d37b4c42aaa3c3ee175f05eca68056f4185646"
  615. },
  616. "dist": {
  617. "type": "zip",
  618. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c6d37b4c42aaa3c3ee175f05eca68056f4185646",
  619. "reference": "c6d37b4c42aaa3c3ee175f05eca68056f4185646",
  620. "shasum": ""
  621. },
  622. "require": {
  623. "doctrine/cache": "^1.0",
  624. "doctrine/event-manager": "^1.0",
  625. "ext-pdo": "*",
  626. "php": "^7.3 || ^8"
  627. },
  628. "require-dev": {
  629. "doctrine/coding-standard": "^8.1",
  630. "jetbrains/phpstorm-stubs": "^2019.1",
  631. "phpstan/phpstan": "^0.12.40",
  632. "phpunit/phpunit": "^9.4",
  633. "psalm/plugin-phpunit": "^0.10.0",
  634. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  635. "vimeo/psalm": "^3.17.2"
  636. },
  637. "suggest": {
  638. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  639. },
  640. "bin": [
  641. "bin/doctrine-dbal"
  642. ],
  643. "type": "library",
  644. "extra": {
  645. "branch-alias": {
  646. "dev-master": "4.0.x-dev"
  647. }
  648. },
  649. "autoload": {
  650. "psr-4": {
  651. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  652. }
  653. },
  654. "notification-url": "https://packagist.org/downloads/",
  655. "license": [
  656. "MIT"
  657. ],
  658. "authors": [
  659. {
  660. "name": "Guilherme Blanco",
  661. "email": "guilhermeblanco@gmail.com"
  662. },
  663. {
  664. "name": "Roman Borschel",
  665. "email": "roman@code-factory.org"
  666. },
  667. {
  668. "name": "Benjamin Eberlei",
  669. "email": "kontakt@beberlei.de"
  670. },
  671. {
  672. "name": "Jonathan Wage",
  673. "email": "jonwage@gmail.com"
  674. }
  675. ],
  676. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  677. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  678. "keywords": [
  679. "abstraction",
  680. "database",
  681. "db2",
  682. "dbal",
  683. "mariadb",
  684. "mssql",
  685. "mysql",
  686. "oci8",
  687. "oracle",
  688. "pdo",
  689. "pgsql",
  690. "postgresql",
  691. "queryobject",
  692. "sasql",
  693. "sql",
  694. "sqlanywhere",
  695. "sqlite",
  696. "sqlserver",
  697. "sqlsrv"
  698. ],
  699. "support": {
  700. "issues": "https://github.com/doctrine/dbal/issues",
  701. "source": "https://github.com/doctrine/dbal/tree/2.12.0"
  702. },
  703. "funding": [
  704. {
  705. "url": "https://www.doctrine-project.org/sponsorship.html",
  706. "type": "custom"
  707. },
  708. {
  709. "url": "https://www.patreon.com/phpdoctrine",
  710. "type": "patreon"
  711. },
  712. {
  713. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  714. "type": "tidelift"
  715. }
  716. ],
  717. "time": "2020-10-22T17:26:24+00:00"
  718. },
  719. {
  720. "name": "doctrine/doctrine-bundle",
  721. "version": "2.1.2",
  722. "source": {
  723. "type": "git",
  724. "url": "https://github.com/doctrine/DoctrineBundle.git",
  725. "reference": "f5153089993e1230f5d8acbd8e126014d5a63e17"
  726. },
  727. "dist": {
  728. "type": "zip",
  729. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/f5153089993e1230f5d8acbd8e126014d5a63e17",
  730. "reference": "f5153089993e1230f5d8acbd8e126014d5a63e17",
  731. "shasum": ""
  732. },
  733. "require": {
  734. "doctrine/dbal": "^2.9.0|^3.0",
  735. "doctrine/persistence": "^1.3.3|^2.0",
  736. "doctrine/sql-formatter": "^1.0.1",
  737. "php": "^7.1 || ^8.0",
  738. "symfony/cache": "^4.3.3|^5.0",
  739. "symfony/config": "^4.3.3|^5.0",
  740. "symfony/console": "^3.4.30|^4.3.3|^5.0",
  741. "symfony/dependency-injection": "^4.3.3|^5.0",
  742. "symfony/doctrine-bridge": "^4.3.7|^5.0",
  743. "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0",
  744. "symfony/service-contracts": "^1.1.1|^2.0"
  745. },
  746. "conflict": {
  747. "doctrine/orm": "<2.6",
  748. "twig/twig": "<1.34|>=2.0,<2.4"
  749. },
  750. "require-dev": {
  751. "doctrine/coding-standard": "^6.0",
  752. "doctrine/orm": "^2.6",
  753. "ocramius/proxy-manager": "^2.1",
  754. "phpunit/phpunit": "^7.5",
  755. "symfony/phpunit-bridge": "^4.2",
  756. "symfony/property-info": "^4.3.3|^5.0",
  757. "symfony/proxy-manager-bridge": "^3.4|^4.3.3|^5.0",
  758. "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0",
  759. "symfony/validator": "^3.4.30|^4.3.3|^5.0",
  760. "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0",
  761. "symfony/yaml": "^3.4.30|^4.3.3|^5.0",
  762. "twig/twig": "^1.34|^2.12"
  763. },
  764. "suggest": {
  765. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  766. "symfony/web-profiler-bundle": "To use the data collector."
  767. },
  768. "type": "symfony-bundle",
  769. "extra": {
  770. "branch-alias": {
  771. "dev-master": "2.1.x-dev"
  772. }
  773. },
  774. "autoload": {
  775. "psr-4": {
  776. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  777. }
  778. },
  779. "notification-url": "https://packagist.org/downloads/",
  780. "license": [
  781. "MIT"
  782. ],
  783. "authors": [
  784. {
  785. "name": "Fabien Potencier",
  786. "email": "fabien@symfony.com"
  787. },
  788. {
  789. "name": "Benjamin Eberlei",
  790. "email": "kontakt@beberlei.de"
  791. },
  792. {
  793. "name": "Symfony Community",
  794. "homepage": "http://symfony.com/contributors"
  795. },
  796. {
  797. "name": "Doctrine Project",
  798. "homepage": "http://www.doctrine-project.org/"
  799. }
  800. ],
  801. "description": "Symfony DoctrineBundle",
  802. "homepage": "http://www.doctrine-project.org",
  803. "keywords": [
  804. "database",
  805. "dbal",
  806. "orm",
  807. "persistence"
  808. ],
  809. "support": {
  810. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  811. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.1.2"
  812. },
  813. "funding": [
  814. {
  815. "url": "https://www.doctrine-project.org/sponsorship.html",
  816. "type": "custom"
  817. },
  818. {
  819. "url": "https://www.patreon.com/phpdoctrine",
  820. "type": "patreon"
  821. },
  822. {
  823. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  824. "type": "tidelift"
  825. }
  826. ],
  827. "time": "2020-08-25T10:57:15+00:00"
  828. },
  829. {
  830. "name": "doctrine/doctrine-migrations-bundle",
  831. "version": "3.0.1",
  832. "source": {
  833. "type": "git",
  834. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  835. "reference": "96e730b0ffa0bb39c0f913c1966213f1674bf249"
  836. },
  837. "dist": {
  838. "type": "zip",
  839. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/96e730b0ffa0bb39c0f913c1966213f1674bf249",
  840. "reference": "96e730b0ffa0bb39c0f913c1966213f1674bf249",
  841. "shasum": ""
  842. },
  843. "require": {
  844. "doctrine/doctrine-bundle": "~1.0|~2.0",
  845. "doctrine/migrations": "~3.0",
  846. "php": "^7.2",
  847. "symfony/framework-bundle": "~3.4|~4.0|~5.0"
  848. },
  849. "require-dev": {
  850. "doctrine/coding-standard": "^5.0",
  851. "doctrine/orm": "^2.6",
  852. "phpstan/phpstan": "^0.11",
  853. "phpstan/phpstan-deprecation-rules": "^0.11",
  854. "phpstan/phpstan-phpunit": "^0.11",
  855. "phpstan/phpstan-strict-rules": "^0.11",
  856. "phpunit/phpunit": "^6.4|^7.0"
  857. },
  858. "type": "symfony-bundle",
  859. "extra": {
  860. "branch-alias": {
  861. "dev-master": "3.0.x-dev"
  862. }
  863. },
  864. "autoload": {
  865. "psr-4": {
  866. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  867. },
  868. "exclude-from-classmap": [
  869. "/Tests/"
  870. ]
  871. },
  872. "notification-url": "https://packagist.org/downloads/",
  873. "license": [
  874. "MIT"
  875. ],
  876. "authors": [
  877. {
  878. "name": "Fabien Potencier",
  879. "email": "fabien@symfony.com"
  880. },
  881. {
  882. "name": "Doctrine Project",
  883. "homepage": "http://www.doctrine-project.org"
  884. },
  885. {
  886. "name": "Symfony Community",
  887. "homepage": "http://symfony.com/contributors"
  888. }
  889. ],
  890. "description": "Symfony DoctrineMigrationsBundle",
  891. "homepage": "https://www.doctrine-project.org",
  892. "keywords": [
  893. "dbal",
  894. "migrations",
  895. "schema"
  896. ],
  897. "support": {
  898. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  899. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.0.x"
  900. },
  901. "funding": [
  902. {
  903. "url": "https://www.doctrine-project.org/sponsorship.html",
  904. "type": "custom"
  905. },
  906. {
  907. "url": "https://www.patreon.com/phpdoctrine",
  908. "type": "patreon"
  909. },
  910. {
  911. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  912. "type": "tidelift"
  913. }
  914. ],
  915. "time": "2020-06-15T06:04:38+00:00"
  916. },
  917. {
  918. "name": "doctrine/event-manager",
  919. "version": "1.1.1",
  920. "source": {
  921. "type": "git",
  922. "url": "https://github.com/doctrine/event-manager.git",
  923. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  924. },
  925. "dist": {
  926. "type": "zip",
  927. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  928. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  929. "shasum": ""
  930. },
  931. "require": {
  932. "php": "^7.1 || ^8.0"
  933. },
  934. "conflict": {
  935. "doctrine/common": "<2.9@dev"
  936. },
  937. "require-dev": {
  938. "doctrine/coding-standard": "^6.0",
  939. "phpunit/phpunit": "^7.0"
  940. },
  941. "type": "library",
  942. "extra": {
  943. "branch-alias": {
  944. "dev-master": "1.0.x-dev"
  945. }
  946. },
  947. "autoload": {
  948. "psr-4": {
  949. "Doctrine\\Common\\": "lib/Doctrine/Common"
  950. }
  951. },
  952. "notification-url": "https://packagist.org/downloads/",
  953. "license": [
  954. "MIT"
  955. ],
  956. "authors": [
  957. {
  958. "name": "Guilherme Blanco",
  959. "email": "guilhermeblanco@gmail.com"
  960. },
  961. {
  962. "name": "Roman Borschel",
  963. "email": "roman@code-factory.org"
  964. },
  965. {
  966. "name": "Benjamin Eberlei",
  967. "email": "kontakt@beberlei.de"
  968. },
  969. {
  970. "name": "Jonathan Wage",
  971. "email": "jonwage@gmail.com"
  972. },
  973. {
  974. "name": "Johannes Schmitt",
  975. "email": "schmittjoh@gmail.com"
  976. },
  977. {
  978. "name": "Marco Pivetta",
  979. "email": "ocramius@gmail.com"
  980. }
  981. ],
  982. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  983. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  984. "keywords": [
  985. "event",
  986. "event dispatcher",
  987. "event manager",
  988. "event system",
  989. "events"
  990. ],
  991. "support": {
  992. "issues": "https://github.com/doctrine/event-manager/issues",
  993. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  994. },
  995. "funding": [
  996. {
  997. "url": "https://www.doctrine-project.org/sponsorship.html",
  998. "type": "custom"
  999. },
  1000. {
  1001. "url": "https://www.patreon.com/phpdoctrine",
  1002. "type": "patreon"
  1003. },
  1004. {
  1005. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1006. "type": "tidelift"
  1007. }
  1008. ],
  1009. "time": "2020-05-29T18:28:51+00:00"
  1010. },
  1011. {
  1012. "name": "doctrine/inflector",
  1013. "version": "1.4.3",
  1014. "source": {
  1015. "type": "git",
  1016. "url": "https://github.com/doctrine/inflector.git",
  1017. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
  1018. },
  1019. "dist": {
  1020. "type": "zip",
  1021. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1022. "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
  1023. "shasum": ""
  1024. },
  1025. "require": {
  1026. "php": "^7.2 || ^8.0"
  1027. },
  1028. "require-dev": {
  1029. "doctrine/coding-standard": "^7.0",
  1030. "phpstan/phpstan": "^0.11",
  1031. "phpstan/phpstan-phpunit": "^0.11",
  1032. "phpstan/phpstan-strict-rules": "^0.11",
  1033. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1034. },
  1035. "type": "library",
  1036. "extra": {
  1037. "branch-alias": {
  1038. "dev-master": "2.0.x-dev"
  1039. }
  1040. },
  1041. "autoload": {
  1042. "psr-4": {
  1043. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  1044. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1045. }
  1046. },
  1047. "notification-url": "https://packagist.org/downloads/",
  1048. "license": [
  1049. "MIT"
  1050. ],
  1051. "authors": [
  1052. {
  1053. "name": "Guilherme Blanco",
  1054. "email": "guilhermeblanco@gmail.com"
  1055. },
  1056. {
  1057. "name": "Roman Borschel",
  1058. "email": "roman@code-factory.org"
  1059. },
  1060. {
  1061. "name": "Benjamin Eberlei",
  1062. "email": "kontakt@beberlei.de"
  1063. },
  1064. {
  1065. "name": "Jonathan Wage",
  1066. "email": "jonwage@gmail.com"
  1067. },
  1068. {
  1069. "name": "Johannes Schmitt",
  1070. "email": "schmittjoh@gmail.com"
  1071. }
  1072. ],
  1073. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1074. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1075. "keywords": [
  1076. "inflection",
  1077. "inflector",
  1078. "lowercase",
  1079. "manipulation",
  1080. "php",
  1081. "plural",
  1082. "singular",
  1083. "strings",
  1084. "uppercase",
  1085. "words"
  1086. ],
  1087. "support": {
  1088. "issues": "https://github.com/doctrine/inflector/issues",
  1089. "source": "https://github.com/doctrine/inflector/tree/1.4.x"
  1090. },
  1091. "funding": [
  1092. {
  1093. "url": "https://www.doctrine-project.org/sponsorship.html",
  1094. "type": "custom"
  1095. },
  1096. {
  1097. "url": "https://www.patreon.com/phpdoctrine",
  1098. "type": "patreon"
  1099. },
  1100. {
  1101. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1102. "type": "tidelift"
  1103. }
  1104. ],
  1105. "time": "2020-05-29T07:19:59+00:00"
  1106. },
  1107. {
  1108. "name": "doctrine/instantiator",
  1109. "version": "1.3.1",
  1110. "source": {
  1111. "type": "git",
  1112. "url": "https://github.com/doctrine/instantiator.git",
  1113. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  1114. },
  1115. "dist": {
  1116. "type": "zip",
  1117. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  1118. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  1119. "shasum": ""
  1120. },
  1121. "require": {
  1122. "php": "^7.1 || ^8.0"
  1123. },
  1124. "require-dev": {
  1125. "doctrine/coding-standard": "^6.0",
  1126. "ext-pdo": "*",
  1127. "ext-phar": "*",
  1128. "phpbench/phpbench": "^0.13",
  1129. "phpstan/phpstan-phpunit": "^0.11",
  1130. "phpstan/phpstan-shim": "^0.11",
  1131. "phpunit/phpunit": "^7.0"
  1132. },
  1133. "type": "library",
  1134. "extra": {
  1135. "branch-alias": {
  1136. "dev-master": "1.2.x-dev"
  1137. }
  1138. },
  1139. "autoload": {
  1140. "psr-4": {
  1141. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1142. }
  1143. },
  1144. "notification-url": "https://packagist.org/downloads/",
  1145. "license": [
  1146. "MIT"
  1147. ],
  1148. "authors": [
  1149. {
  1150. "name": "Marco Pivetta",
  1151. "email": "ocramius@gmail.com",
  1152. "homepage": "http://ocramius.github.com/"
  1153. }
  1154. ],
  1155. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1156. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1157. "keywords": [
  1158. "constructor",
  1159. "instantiate"
  1160. ],
  1161. "support": {
  1162. "issues": "https://github.com/doctrine/instantiator/issues",
  1163. "source": "https://github.com/doctrine/instantiator/tree/1.3.x"
  1164. },
  1165. "funding": [
  1166. {
  1167. "url": "https://www.doctrine-project.org/sponsorship.html",
  1168. "type": "custom"
  1169. },
  1170. {
  1171. "url": "https://www.patreon.com/phpdoctrine",
  1172. "type": "patreon"
  1173. },
  1174. {
  1175. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1176. "type": "tidelift"
  1177. }
  1178. ],
  1179. "time": "2020-05-29T17:27:14+00:00"
  1180. },
  1181. {
  1182. "name": "doctrine/lexer",
  1183. "version": "1.2.1",
  1184. "source": {
  1185. "type": "git",
  1186. "url": "https://github.com/doctrine/lexer.git",
  1187. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1188. },
  1189. "dist": {
  1190. "type": "zip",
  1191. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1192. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1193. "shasum": ""
  1194. },
  1195. "require": {
  1196. "php": "^7.2 || ^8.0"
  1197. },
  1198. "require-dev": {
  1199. "doctrine/coding-standard": "^6.0",
  1200. "phpstan/phpstan": "^0.11.8",
  1201. "phpunit/phpunit": "^8.2"
  1202. },
  1203. "type": "library",
  1204. "extra": {
  1205. "branch-alias": {
  1206. "dev-master": "1.2.x-dev"
  1207. }
  1208. },
  1209. "autoload": {
  1210. "psr-4": {
  1211. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1212. }
  1213. },
  1214. "notification-url": "https://packagist.org/downloads/",
  1215. "license": [
  1216. "MIT"
  1217. ],
  1218. "authors": [
  1219. {
  1220. "name": "Guilherme Blanco",
  1221. "email": "guilhermeblanco@gmail.com"
  1222. },
  1223. {
  1224. "name": "Roman Borschel",
  1225. "email": "roman@code-factory.org"
  1226. },
  1227. {
  1228. "name": "Johannes Schmitt",
  1229. "email": "schmittjoh@gmail.com"
  1230. }
  1231. ],
  1232. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1233. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1234. "keywords": [
  1235. "annotations",
  1236. "docblock",
  1237. "lexer",
  1238. "parser",
  1239. "php"
  1240. ],
  1241. "support": {
  1242. "issues": "https://github.com/doctrine/lexer/issues",
  1243. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1244. },
  1245. "funding": [
  1246. {
  1247. "url": "https://www.doctrine-project.org/sponsorship.html",
  1248. "type": "custom"
  1249. },
  1250. {
  1251. "url": "https://www.patreon.com/phpdoctrine",
  1252. "type": "patreon"
  1253. },
  1254. {
  1255. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1256. "type": "tidelift"
  1257. }
  1258. ],
  1259. "time": "2020-05-25T17:44:05+00:00"
  1260. },
  1261. {
  1262. "name": "doctrine/migrations",
  1263. "version": "3.0.1",
  1264. "source": {
  1265. "type": "git",
  1266. "url": "https://github.com/doctrine/migrations.git",
  1267. "reference": "69eaf2ca5bc48357b43ddbdc31ccdffc0e2a0882"
  1268. },
  1269. "dist": {
  1270. "type": "zip",
  1271. "url": "https://api.github.com/repos/doctrine/migrations/zipball/69eaf2ca5bc48357b43ddbdc31ccdffc0e2a0882",
  1272. "reference": "69eaf2ca5bc48357b43ddbdc31ccdffc0e2a0882",
  1273. "shasum": ""
  1274. },
  1275. "require": {
  1276. "doctrine/dbal": "^2.10",
  1277. "doctrine/event-manager": "^1.0",
  1278. "ocramius/package-versions": "^1.3",
  1279. "ocramius/proxy-manager": "^2.0.2",
  1280. "php": "^7.2",
  1281. "psr/log": "^1.1.3",
  1282. "symfony/console": "^3.4||^4.0||^5.0",
  1283. "symfony/stopwatch": "^3.4||^4.0||^5.0"
  1284. },
  1285. "require-dev": {
  1286. "doctrine/coding-standard": "^7.0",
  1287. "doctrine/orm": "^2.6",
  1288. "doctrine/persistence": "^1.3||^2.0",
  1289. "doctrine/sql-formatter": "^1.0",
  1290. "ext-pdo_sqlite": "*",
  1291. "phpstan/phpstan": "^0.12",
  1292. "phpstan/phpstan-deprecation-rules": "^0.12",
  1293. "phpstan/phpstan-phpunit": "^0.12",
  1294. "phpstan/phpstan-strict-rules": "^0.12",
  1295. "phpstan/phpstan-symfony": "^0.12",
  1296. "phpunit/phpunit": "^8.4",
  1297. "symfony/process": "^3.4||^4.0||^5.0",
  1298. "symfony/yaml": "^3.4||^4.0||^5.0"
  1299. },
  1300. "suggest": {
  1301. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  1302. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  1303. },
  1304. "bin": [
  1305. "bin/doctrine-migrations"
  1306. ],
  1307. "type": "library",
  1308. "extra": {
  1309. "branch-alias": {
  1310. "dev-master": "3.0.x-dev"
  1311. }
  1312. },
  1313. "autoload": {
  1314. "psr-4": {
  1315. "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
  1316. }
  1317. },
  1318. "notification-url": "https://packagist.org/downloads/",
  1319. "license": [
  1320. "MIT"
  1321. ],
  1322. "authors": [
  1323. {
  1324. "name": "Benjamin Eberlei",
  1325. "email": "kontakt@beberlei.de"
  1326. },
  1327. {
  1328. "name": "Jonathan Wage",
  1329. "email": "jonwage@gmail.com"
  1330. },
  1331. {
  1332. "name": "Michael Simonson",
  1333. "email": "contact@mikesimonson.com"
  1334. }
  1335. ],
  1336. "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.",
  1337. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  1338. "keywords": [
  1339. "database",
  1340. "dbal",
  1341. "migrations",
  1342. "php"
  1343. ],
  1344. "support": {
  1345. "issues": "https://github.com/doctrine/migrations/issues",
  1346. "source": "https://github.com/doctrine/migrations/tree/3.0.1"
  1347. },
  1348. "funding": [
  1349. {
  1350. "url": "https://www.doctrine-project.org/sponsorship.html",
  1351. "type": "custom"
  1352. },
  1353. {
  1354. "url": "https://www.patreon.com/phpdoctrine",
  1355. "type": "patreon"
  1356. },
  1357. {
  1358. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  1359. "type": "tidelift"
  1360. }
  1361. ],
  1362. "time": "2020-06-21T08:55:42+00:00"
  1363. },
  1364. {
  1365. "name": "doctrine/orm",
  1366. "version": "2.7.4",
  1367. "source": {
  1368. "type": "git",
  1369. "url": "https://github.com/doctrine/orm.git",
  1370. "reference": "7d84a4998091ece4d645253ac65de9f879eeed2f"
  1371. },
  1372. "dist": {
  1373. "type": "zip",
  1374. "url": "https://api.github.com/repos/doctrine/orm/zipball/7d84a4998091ece4d645253ac65de9f879eeed2f",
  1375. "reference": "7d84a4998091ece4d645253ac65de9f879eeed2f",
  1376. "shasum": ""
  1377. },
  1378. "require": {
  1379. "composer/package-versions-deprecated": "^1.8",
  1380. "doctrine/annotations": "^1.8",
  1381. "doctrine/cache": "^1.9.1",
  1382. "doctrine/collections": "^1.5",
  1383. "doctrine/common": "^2.11 || ^3.0",
  1384. "doctrine/dbal": "^2.9.3",
  1385. "doctrine/event-manager": "^1.1",
  1386. "doctrine/inflector": "^1.0",
  1387. "doctrine/instantiator": "^1.3",
  1388. "doctrine/lexer": "^1.0",
  1389. "doctrine/persistence": "^1.3.3 || ^2.0",
  1390. "ext-pdo": "*",
  1391. "php": "^7.1",
  1392. "symfony/console": "^3.0|^4.0|^5.0"
  1393. },
  1394. "require-dev": {
  1395. "doctrine/coding-standard": "^5.0",
  1396. "phpstan/phpstan": "^0.12.18",
  1397. "phpunit/phpunit": "^7.5",
  1398. "symfony/yaml": "^3.4|^4.0|^5.0",
  1399. "vimeo/psalm": "^3.11"
  1400. },
  1401. "suggest": {
  1402. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1403. },
  1404. "bin": [
  1405. "bin/doctrine"
  1406. ],
  1407. "type": "library",
  1408. "extra": {
  1409. "branch-alias": {
  1410. "dev-master": "2.7.x-dev"
  1411. }
  1412. },
  1413. "autoload": {
  1414. "psr-4": {
  1415. "Doctrine\\ORM\\": "lib/Doctrine/ORM"
  1416. }
  1417. },
  1418. "notification-url": "https://packagist.org/downloads/",
  1419. "license": [
  1420. "MIT"
  1421. ],
  1422. "authors": [
  1423. {
  1424. "name": "Guilherme Blanco",
  1425. "email": "guilhermeblanco@gmail.com"
  1426. },
  1427. {
  1428. "name": "Roman Borschel",
  1429. "email": "roman@code-factory.org"
  1430. },
  1431. {
  1432. "name": "Benjamin Eberlei",
  1433. "email": "kontakt@beberlei.de"
  1434. },
  1435. {
  1436. "name": "Jonathan Wage",
  1437. "email": "jonwage@gmail.com"
  1438. },
  1439. {
  1440. "name": "Marco Pivetta",
  1441. "email": "ocramius@gmail.com"
  1442. }
  1443. ],
  1444. "description": "Object-Relational-Mapper for PHP",
  1445. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1446. "keywords": [
  1447. "database",
  1448. "orm"
  1449. ],
  1450. "support": {
  1451. "issues": "https://github.com/doctrine/orm/issues",
  1452. "source": "https://github.com/doctrine/orm/tree/2.7.4"
  1453. },
  1454. "time": "2020-10-10T17:11:26+00:00"
  1455. },
  1456. {
  1457. "name": "doctrine/persistence",
  1458. "version": "2.1.0",
  1459. "source": {
  1460. "type": "git",
  1461. "url": "https://github.com/doctrine/persistence.git",
  1462. "reference": "9899c16934053880876b920a3b8b02ed2337ac1d"
  1463. },
  1464. "dist": {
  1465. "type": "zip",
  1466. "url": "https://api.github.com/repos/doctrine/persistence/zipball/9899c16934053880876b920a3b8b02ed2337ac1d",
  1467. "reference": "9899c16934053880876b920a3b8b02ed2337ac1d",
  1468. "shasum": ""
  1469. },
  1470. "require": {
  1471. "doctrine/annotations": "^1.0",
  1472. "doctrine/cache": "^1.0",
  1473. "doctrine/collections": "^1.0",
  1474. "doctrine/event-manager": "^1.0",
  1475. "php": "^7.1 || ^8.0"
  1476. },
  1477. "conflict": {
  1478. "doctrine/common": "<2.10@dev"
  1479. },
  1480. "require-dev": {
  1481. "composer/package-versions-deprecated": "^1.11",
  1482. "doctrine/coding-standard": "^6.0 || ^8.0",
  1483. "doctrine/common": "^3.0",
  1484. "phpstan/phpstan": "^0.12",
  1485. "phpunit/phpunit": "^7.5.20 || ^8.0 || ^9.0",
  1486. "vimeo/psalm": "^3.11"
  1487. },
  1488. "type": "library",
  1489. "autoload": {
  1490. "psr-4": {
  1491. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1492. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1493. }
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "authors": [
  1500. {
  1501. "name": "Guilherme Blanco",
  1502. "email": "guilhermeblanco@gmail.com"
  1503. },
  1504. {
  1505. "name": "Roman Borschel",
  1506. "email": "roman@code-factory.org"
  1507. },
  1508. {
  1509. "name": "Benjamin Eberlei",
  1510. "email": "kontakt@beberlei.de"
  1511. },
  1512. {
  1513. "name": "Jonathan Wage",
  1514. "email": "jonwage@gmail.com"
  1515. },
  1516. {
  1517. "name": "Johannes Schmitt",
  1518. "email": "schmittjoh@gmail.com"
  1519. },
  1520. {
  1521. "name": "Marco Pivetta",
  1522. "email": "ocramius@gmail.com"
  1523. }
  1524. ],
  1525. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1526. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1527. "keywords": [
  1528. "mapper",
  1529. "object",
  1530. "odm",
  1531. "orm",
  1532. "persistence"
  1533. ],
  1534. "support": {
  1535. "issues": "https://github.com/doctrine/persistence/issues",
  1536. "source": "https://github.com/doctrine/persistence/tree/2.1.0"
  1537. },
  1538. "time": "2020-10-24T22:13:54+00:00"
  1539. },
  1540. {
  1541. "name": "doctrine/sql-formatter",
  1542. "version": "1.1.1",
  1543. "source": {
  1544. "type": "git",
  1545. "url": "https://github.com/doctrine/sql-formatter.git",
  1546. "reference": "56070bebac6e77230ed7d306ad13528e60732871"
  1547. },
  1548. "dist": {
  1549. "type": "zip",
  1550. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/56070bebac6e77230ed7d306ad13528e60732871",
  1551. "reference": "56070bebac6e77230ed7d306ad13528e60732871",
  1552. "shasum": ""
  1553. },
  1554. "require": {
  1555. "php": "^7.1 || ^8.0"
  1556. },
  1557. "require-dev": {
  1558. "bamarni/composer-bin-plugin": "^1.4"
  1559. },
  1560. "bin": [
  1561. "bin/sql-formatter"
  1562. ],
  1563. "type": "library",
  1564. "extra": {
  1565. "branch-alias": {
  1566. "dev-master": "1.x-dev"
  1567. }
  1568. },
  1569. "autoload": {
  1570. "psr-4": {
  1571. "Doctrine\\SqlFormatter\\": "src"
  1572. }
  1573. },
  1574. "notification-url": "https://packagist.org/downloads/",
  1575. "license": [
  1576. "MIT"
  1577. ],
  1578. "authors": [
  1579. {
  1580. "name": "Jeremy Dorn",
  1581. "email": "jeremy@jeremydorn.com",
  1582. "homepage": "http://jeremydorn.com/"
  1583. }
  1584. ],
  1585. "description": "a PHP SQL highlighting library",
  1586. "homepage": "https://github.com/doctrine/sql-formatter/",
  1587. "keywords": [
  1588. "highlight",
  1589. "sql"
  1590. ],
  1591. "support": {
  1592. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1593. "source": "https://github.com/doctrine/sql-formatter/tree/1.1.x"
  1594. },
  1595. "time": "2020-07-30T16:57:33+00:00"
  1596. },
  1597. {
  1598. "name": "egulias/email-validator",
  1599. "version": "2.1.23",
  1600. "source": {
  1601. "type": "git",
  1602. "url": "https://github.com/egulias/EmailValidator.git",
  1603. "reference": "5fa792ad1853ae2bc60528dd3e5cbf4542d3c1df"
  1604. },
  1605. "dist": {
  1606. "type": "zip",
  1607. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/5fa792ad1853ae2bc60528dd3e5cbf4542d3c1df",
  1608. "reference": "5fa792ad1853ae2bc60528dd3e5cbf4542d3c1df",
  1609. "shasum": ""
  1610. },
  1611. "require": {
  1612. "doctrine/lexer": "^1.0.1",
  1613. "php": ">=5.5",
  1614. "symfony/polyfill-intl-idn": "^1.10"
  1615. },
  1616. "require-dev": {
  1617. "dominicsayers/isemail": "^3.0.7",
  1618. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1619. "satooshi/php-coveralls": "^1.0.1"
  1620. },
  1621. "suggest": {
  1622. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1623. },
  1624. "type": "library",
  1625. "extra": {
  1626. "branch-alias": {
  1627. "dev-master": "2.1.x-dev"
  1628. }
  1629. },
  1630. "autoload": {
  1631. "psr-4": {
  1632. "Egulias\\EmailValidator\\": "src"
  1633. }
  1634. },
  1635. "notification-url": "https://packagist.org/downloads/",
  1636. "license": [
  1637. "MIT"
  1638. ],
  1639. "authors": [
  1640. {
  1641. "name": "Eduardo Gulias Davis"
  1642. }
  1643. ],
  1644. "description": "A library for validating emails against several RFCs",
  1645. "homepage": "https://github.com/egulias/EmailValidator",
  1646. "keywords": [
  1647. "email",
  1648. "emailvalidation",
  1649. "emailvalidator",
  1650. "validation",
  1651. "validator"
  1652. ],
  1653. "support": {
  1654. "issues": "https://github.com/egulias/EmailValidator/issues",
  1655. "source": "https://github.com/egulias/EmailValidator/tree/2.1.23"
  1656. },
  1657. "time": "2020-10-31T20:37:35+00:00"
  1658. },
  1659. {
  1660. "name": "erusev/parsedown",
  1661. "version": "1.7.4",
  1662. "source": {
  1663. "type": "git",
  1664. "url": "https://github.com/erusev/parsedown.git",
  1665. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
  1666. },
  1667. "dist": {
  1668. "type": "zip",
  1669. "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  1670. "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
  1671. "shasum": ""
  1672. },
  1673. "require": {
  1674. "ext-mbstring": "*",
  1675. "php": ">=5.3.0"
  1676. },
  1677. "require-dev": {
  1678. "phpunit/phpunit": "^4.8.35"
  1679. },
  1680. "type": "library",
  1681. "autoload": {
  1682. "psr-0": {
  1683. "Parsedown": ""
  1684. }
  1685. },
  1686. "notification-url": "https://packagist.org/downloads/",
  1687. "license": [
  1688. "MIT"
  1689. ],
  1690. "authors": [
  1691. {
  1692. "name": "Emanuil Rusev",
  1693. "email": "hello@erusev.com",
  1694. "homepage": "http://erusev.com"
  1695. }
  1696. ],
  1697. "description": "Parser for Markdown.",
  1698. "homepage": "http://parsedown.org",
  1699. "keywords": [
  1700. "markdown",
  1701. "parser"
  1702. ],
  1703. "support": {
  1704. "issues": "https://github.com/erusev/parsedown/issues",
  1705. "source": "https://github.com/erusev/parsedown/tree/1.7.x"
  1706. },
  1707. "time": "2019-12-30T22:54:17+00:00"
  1708. },
  1709. {
  1710. "name": "giggsey/libphonenumber-for-php",
  1711. "version": "8.12.12",
  1712. "source": {
  1713. "type": "git",
  1714. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  1715. "reference": "f3802f572c5fff322a2ccd8d2d792c147ed9e3c4"
  1716. },
  1717. "dist": {
  1718. "type": "zip",
  1719. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/f3802f572c5fff322a2ccd8d2d792c147ed9e3c4",
  1720. "reference": "f3802f572c5fff322a2ccd8d2d792c147ed9e3c4",
  1721. "shasum": ""
  1722. },
  1723. "require": {
  1724. "giggsey/locale": "^1.7",
  1725. "php": ">=5.3.2",
  1726. "symfony/polyfill-mbstring": "^1.17"
  1727. },
  1728. "require-dev": {
  1729. "pear/pear-core-minimal": "^1.9",
  1730. "pear/pear_exception": "^1.0",
  1731. "pear/versioncontrol_git": "^0.5",
  1732. "phing/phing": "^2.7",
  1733. "php-coveralls/php-coveralls": "^1.0|^2.0",
  1734. "phpunit/phpunit": "^4.8.36|^5.0|^7.0",
  1735. "symfony/console": "^2.8|^3.0"
  1736. },
  1737. "type": "library",
  1738. "extra": {
  1739. "branch-alias": {
  1740. "dev-master": "8.x-dev"
  1741. }
  1742. },
  1743. "autoload": {
  1744. "psr-4": {
  1745. "libphonenumber\\": "src/"
  1746. },
  1747. "exclude-from-classmap": [
  1748. "/src/data/",
  1749. "/src/carrier/data/",
  1750. "/src/geocoding/data/",
  1751. "/src/timezone/data/"
  1752. ]
  1753. },
  1754. "notification-url": "https://packagist.org/downloads/",
  1755. "license": [
  1756. "Apache-2.0"
  1757. ],
  1758. "authors": [
  1759. {
  1760. "name": "Joshua Gigg",
  1761. "email": "giggsey@gmail.com",
  1762. "homepage": "https://giggsey.com/"
  1763. }
  1764. ],
  1765. "description": "PHP Port of Google's libphonenumber",
  1766. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  1767. "keywords": [
  1768. "geocoding",
  1769. "geolocation",
  1770. "libphonenumber",
  1771. "mobile",
  1772. "phonenumber",
  1773. "validation"
  1774. ],
  1775. "support": {
  1776. "irc": "irc://irc.appliedirc.com/lobby",
  1777. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  1778. "source": "https://github.com/giggsey/libphonenumber-for-php"
  1779. },
  1780. "time": "2020-10-29T09:27:40+00:00"
  1781. },
  1782. {
  1783. "name": "giggsey/locale",
  1784. "version": "1.9",
  1785. "source": {
  1786. "type": "git",
  1787. "url": "https://github.com/giggsey/Locale.git",
  1788. "reference": "b07f1eace8072ccc61445ad8fbd493ff9d783043"
  1789. },
  1790. "dist": {
  1791. "type": "zip",
  1792. "url": "https://api.github.com/repos/giggsey/Locale/zipball/b07f1eace8072ccc61445ad8fbd493ff9d783043",
  1793. "reference": "b07f1eace8072ccc61445ad8fbd493ff9d783043",
  1794. "shasum": ""
  1795. },
  1796. "require": {
  1797. "php": ">=5.3.2"
  1798. },
  1799. "require-dev": {
  1800. "pear/pear-core-minimal": "^1.9",
  1801. "pear/pear_exception": "^1.0",
  1802. "pear/versioncontrol_git": "^0.5",
  1803. "phing/phing": "~2.7",
  1804. "php-coveralls/php-coveralls": "^1.0|^2.0",
  1805. "phpunit/phpunit": "^4.8|^5.0",
  1806. "symfony/console": "^2.8|^3.0|^4.0",
  1807. "symfony/filesystem": "^2.8|^3.0|^4.0",
  1808. "symfony/finder": "^2.8|^3.0|^4.0",
  1809. "symfony/process": "^2.8|^3.0|^4.0"
  1810. },
  1811. "type": "library",
  1812. "autoload": {
  1813. "psr-4": {
  1814. "Giggsey\\Locale\\": "src/"
  1815. }
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "MIT"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "Joshua Gigg",
  1824. "email": "giggsey@gmail.com",
  1825. "homepage": "http://giggsey.com/"
  1826. }
  1827. ],
  1828. "description": "Locale functions required by libphonenumber-for-php",
  1829. "support": {
  1830. "issues": "https://github.com/giggsey/Locale/issues",
  1831. "source": "https://github.com/giggsey/Locale/tree/master"
  1832. },
  1833. "time": "2020-07-07T11:16:24+00:00"
  1834. },
  1835. {
  1836. "name": "laminas/laminas-code",
  1837. "version": "3.4.1",
  1838. "source": {
  1839. "type": "git",
  1840. "url": "https://github.com/laminas/laminas-code.git",
  1841. "reference": "1cb8f203389ab1482bf89c0e70a04849bacd7766"
  1842. },
  1843. "dist": {
  1844. "type": "zip",
  1845. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/1cb8f203389ab1482bf89c0e70a04849bacd7766",
  1846. "reference": "1cb8f203389ab1482bf89c0e70a04849bacd7766",
  1847. "shasum": ""
  1848. },
  1849. "require": {
  1850. "laminas/laminas-eventmanager": "^2.6 || ^3.0",
  1851. "laminas/laminas-zendframework-bridge": "^1.0",
  1852. "php": "^7.1"
  1853. },
  1854. "conflict": {
  1855. "phpspec/prophecy": "<1.9.0"
  1856. },
  1857. "replace": {
  1858. "zendframework/zend-code": "self.version"
  1859. },
  1860. "require-dev": {
  1861. "doctrine/annotations": "^1.7",
  1862. "ext-phar": "*",
  1863. "laminas/laminas-coding-standard": "^1.0",
  1864. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  1865. "phpunit/phpunit": "^7.5.16 || ^8.4"
  1866. },
  1867. "suggest": {
  1868. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1869. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1870. },
  1871. "type": "library",
  1872. "extra": {
  1873. "branch-alias": {
  1874. "dev-master": "3.4.x-dev",
  1875. "dev-develop": "3.5.x-dev",
  1876. "dev-dev-4.0": "4.0.x-dev"
  1877. }
  1878. },
  1879. "autoload": {
  1880. "psr-4": {
  1881. "Laminas\\Code\\": "src/"
  1882. }
  1883. },
  1884. "notification-url": "https://packagist.org/downloads/",
  1885. "license": [
  1886. "BSD-3-Clause"
  1887. ],
  1888. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1889. "homepage": "https://laminas.dev",
  1890. "keywords": [
  1891. "code",
  1892. "laminas"
  1893. ],
  1894. "support": {
  1895. "chat": "https://laminas.dev/chat",
  1896. "docs": "https://docs.laminas.dev/laminas-code/",
  1897. "forum": "https://discourse.laminas.dev",
  1898. "issues": "https://github.com/laminas/laminas-code/issues",
  1899. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1900. "source": "https://github.com/laminas/laminas-code"
  1901. },
  1902. "time": "2019-12-31T16:28:24+00:00"
  1903. },
  1904. {
  1905. "name": "laminas/laminas-eventmanager",
  1906. "version": "3.3.0",
  1907. "source": {
  1908. "type": "git",
  1909. "url": "https://github.com/laminas/laminas-eventmanager.git",
  1910. "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082"
  1911. },
  1912. "dist": {
  1913. "type": "zip",
  1914. "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/1940ccf30e058b2fd66f5a9d696f1b5e0027b082",
  1915. "reference": "1940ccf30e058b2fd66f5a9d696f1b5e0027b082",
  1916. "shasum": ""
  1917. },
  1918. "require": {
  1919. "laminas/laminas-zendframework-bridge": "^1.0",
  1920. "php": "^7.3 || ^8.0"
  1921. },
  1922. "replace": {
  1923. "zendframework/zend-eventmanager": "^3.2.1"
  1924. },
  1925. "require-dev": {
  1926. "container-interop/container-interop": "^1.1",
  1927. "laminas/laminas-coding-standard": "~1.0.0",
  1928. "laminas/laminas-stdlib": "^2.7.3 || ^3.0",
  1929. "phpbench/phpbench": "^0.17.1",
  1930. "phpunit/phpunit": "^8.5.8"
  1931. },
  1932. "suggest": {
  1933. "container-interop/container-interop": "^1.1, to use the lazy listeners feature",
  1934. "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  1935. },
  1936. "type": "library",
  1937. "extra": {
  1938. "branch-alias": {
  1939. "dev-master": "3.3.x-dev",
  1940. "dev-develop": "3.4.x-dev"
  1941. }
  1942. },
  1943. "autoload": {
  1944. "psr-4": {
  1945. "Laminas\\EventManager\\": "src/"
  1946. }
  1947. },
  1948. "notification-url": "https://packagist.org/downloads/",
  1949. "license": [
  1950. "BSD-3-Clause"
  1951. ],
  1952. "description": "Trigger and listen to events within a PHP application",
  1953. "homepage": "https://laminas.dev",
  1954. "keywords": [
  1955. "event",
  1956. "eventmanager",
  1957. "events",
  1958. "laminas"
  1959. ],
  1960. "support": {
  1961. "chat": "https://laminas.dev/chat",
  1962. "docs": "https://docs.laminas.dev/laminas-eventmanager/",
  1963. "forum": "https://discourse.laminas.dev",
  1964. "issues": "https://github.com/laminas/laminas-eventmanager/issues",
  1965. "rss": "https://github.com/laminas/laminas-eventmanager/releases.atom",
  1966. "source": "https://github.com/laminas/laminas-eventmanager"
  1967. },
  1968. "funding": [
  1969. {
  1970. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1971. "type": "community_bridge"
  1972. }
  1973. ],
  1974. "time": "2020-08-25T11:10:44+00:00"
  1975. },
  1976. {
  1977. "name": "laminas/laminas-zendframework-bridge",
  1978. "version": "1.1.1",
  1979. "source": {
  1980. "type": "git",
  1981. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  1982. "reference": "6ede70583e101030bcace4dcddd648f760ddf642"
  1983. },
  1984. "dist": {
  1985. "type": "zip",
  1986. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6ede70583e101030bcace4dcddd648f760ddf642",
  1987. "reference": "6ede70583e101030bcace4dcddd648f760ddf642",
  1988. "shasum": ""
  1989. },
  1990. "require": {
  1991. "php": "^5.6 || ^7.0 || ^8.0"
  1992. },
  1993. "require-dev": {
  1994. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  1995. "squizlabs/php_codesniffer": "^3.5"
  1996. },
  1997. "type": "library",
  1998. "extra": {
  1999. "laminas": {
  2000. "module": "Laminas\\ZendFrameworkBridge"
  2001. }
  2002. },
  2003. "autoload": {
  2004. "files": [
  2005. "src/autoload.php"
  2006. ],
  2007. "psr-4": {
  2008. "Laminas\\ZendFrameworkBridge\\": "src//"
  2009. }
  2010. },
  2011. "notification-url": "https://packagist.org/downloads/",
  2012. "license": [
  2013. "BSD-3-Clause"
  2014. ],
  2015. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  2016. "keywords": [
  2017. "ZendFramework",
  2018. "autoloading",
  2019. "laminas",
  2020. "zf"
  2021. ],
  2022. "support": {
  2023. "forum": "https://discourse.laminas.dev/",
  2024. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  2025. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  2026. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  2027. },
  2028. "funding": [
  2029. {
  2030. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2031. "type": "community_bridge"
  2032. }
  2033. ],
  2034. "time": "2020-09-14T14:23:00+00:00"
  2035. },
  2036. {
  2037. "name": "league/uri-parser",
  2038. "version": "1.4.1",
  2039. "source": {
  2040. "type": "git",
  2041. "url": "https://github.com/thephpleague/uri-parser.git",
  2042. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00"
  2043. },
  2044. "dist": {
  2045. "type": "zip",
  2046. "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00",
  2047. "reference": "671548427e4c932352d9b9279fdfa345bf63fa00",
  2048. "shasum": ""
  2049. },
  2050. "require": {
  2051. "php": ">=7.0.0"
  2052. },
  2053. "require-dev": {
  2054. "friendsofphp/php-cs-fixer": "^2.0",
  2055. "phpstan/phpstan": "^0.9.2",
  2056. "phpstan/phpstan-phpunit": "^0.9.4",
  2057. "phpstan/phpstan-strict-rules": "^0.9.0",
  2058. "phpunit/phpunit": "^6.0"
  2059. },
  2060. "suggest": {
  2061. "ext-intl": "Allow parsing RFC3987 compliant hosts",
  2062. "league/uri-schemes": "Allow validating and normalizing URI parsing results"
  2063. },
  2064. "type": "library",
  2065. "extra": {
  2066. "branch-alias": {
  2067. "dev-master": "1.x-dev"
  2068. }
  2069. },
  2070. "autoload": {
  2071. "psr-4": {
  2072. "League\\Uri\\": "src"
  2073. },
  2074. "files": [
  2075. "src/functions_include.php"
  2076. ]
  2077. },
  2078. "notification-url": "https://packagist.org/downloads/",
  2079. "license": [
  2080. "MIT"
  2081. ],
  2082. "authors": [
  2083. {
  2084. "name": "Ignace Nyamagana Butera",
  2085. "email": "nyamsprod@gmail.com",
  2086. "homepage": "https://nyamsprod.com"
  2087. }
  2088. ],
  2089. "description": "userland URI parser RFC 3986 compliant",
  2090. "homepage": "https://github.com/thephpleague/uri-parser",
  2091. "keywords": [
  2092. "parse_url",
  2093. "parser",
  2094. "rfc3986",
  2095. "rfc3987",
  2096. "uri",
  2097. "url"
  2098. ],
  2099. "support": {
  2100. "issues": "https://github.com/thephpleague/uri-parser/issues",
  2101. "source": "https://github.com/thephpleague/uri-parser/tree/master"
  2102. },
  2103. "time": "2018-11-22T07:55:51+00:00"
  2104. },
  2105. {
  2106. "name": "lstrojny/functional-php",
  2107. "version": "1.14.1",
  2108. "source": {
  2109. "type": "git",
  2110. "url": "https://github.com/lstrojny/functional-php.git",
  2111. "reference": "9e8363e3cb9db924327f51b5804f4dfba03605aa"
  2112. },
  2113. "dist": {
  2114. "type": "zip",
  2115. "url": "https://api.github.com/repos/lstrojny/functional-php/zipball/9e8363e3cb9db924327f51b5804f4dfba03605aa",
  2116. "reference": "9e8363e3cb9db924327f51b5804f4dfba03605aa",
  2117. "shasum": ""
  2118. },
  2119. "require": {
  2120. "php": "~7"
  2121. },
  2122. "require-dev": {
  2123. "friendsofphp/php-cs-fixer": "^2.14",
  2124. "phpunit/phpunit": "~7",
  2125. "squizlabs/php_codesniffer": "~3.0"
  2126. },
  2127. "type": "library",
  2128. "autoload": {
  2129. "psr-4": {
  2130. "Functional\\": "src/Functional"
  2131. },
  2132. "files": [
  2133. "src/Functional/Ary.php",
  2134. "src/Functional/Average.php",
  2135. "src/Functional/ButLast.php",
  2136. "src/Functional/Capture.php",
  2137. "src/Functional/ConstFunction.php",
  2138. "src/Functional/CompareOn.php",
  2139. "src/Functional/CompareObjectHashOn.php",
  2140. "src/Functional/Compose.php",
  2141. "src/Functional/Concat.php",
  2142. "src/Functional/Contains.php",
  2143. "src/Functional/Converge.php",
  2144. "src/Functional/Curry.php",
  2145. "src/Functional/CurryN.php",
  2146. "src/Functional/Difference.php",
  2147. "src/Functional/DropFirst.php",
  2148. "src/Functional/DropLast.php",
  2149. "src/Functional/Each.php",
  2150. "src/Functional/Equal.php",
  2151. "src/Functional/ErrorToException.php",
  2152. "src/Functional/Every.php",
  2153. "src/Functional/False.php",
  2154. "src/Functional/Falsy.php",
  2155. "src/Functional/Filter.php",
  2156. "src/Functional/First.php",
  2157. "src/Functional/FirstIndexOf.php",
  2158. "src/Functional/FlatMap.php",
  2159. "src/Functional/Flatten.php",
  2160. "src/Functional/Flip.php",
  2161. "src/Functional/GreaterThan.php",
  2162. "src/Functional/GreaterThanOrEqual.php",
  2163. "src/Functional/Group.php",
  2164. "src/Functional/Head.php",
  2165. "src/Functional/Id.php",
  2166. "src/Functional/IfElse.php",
  2167. "src/Functional/Identical.php",
  2168. "src/Functional/IndexesOf.php",
  2169. "src/Functional/Intersperse.php",
  2170. "src/Functional/Invoke.php",
  2171. "src/Functional/InvokeFirst.php",
  2172. "src/Functional/InvokeIf.php",
  2173. "src/Functional/InvokeLast.php",
  2174. "src/Functional/Invoker.php",
  2175. "src/Functional/Last.php",
  2176. "src/Functional/LastIndexOf.php",
  2177. "src/Functional/LessThan.php",
  2178. "src/Functional/LessThanOrEqual.php",
  2179. "src/Functional/LexicographicCompare.php",
  2180. "src/Functional/Map.php",
  2181. "src/Functional/Matching.php",
  2182. "src/Functional/Maximum.php",
  2183. "src/Functional/Memoize.php",
  2184. "src/Functional/Minimum.php",
  2185. "src/Functional/None.php",
  2186. "src/Functional/Noop.php",
  2187. "src/Functional/Not.php",
  2188. "src/Functional/OmitKeys.php",
  2189. "src/Functional/PartialAny.php",
  2190. "src/Functional/PartialLeft.php",
  2191. "src/Functional/PartialMethod.php",
  2192. "src/Functional/PartialRight.php",
  2193. "src/Functional/Partition.php",
  2194. "src/Functional/Pick.php",
  2195. "src/Functional/Pluck.php",
  2196. "src/Functional/Poll.php",
  2197. "src/Functional/Product.php",
  2198. "src/Functional/Ratio.php",
  2199. "src/Functional/ReduceLeft.php",
  2200. "src/Functional/ReduceRight.php",
  2201. "src/Functional/Reindex.php",
  2202. "src/Functional/Reject.php",
  2203. "src/Functional/Repeat.php",
  2204. "src/Functional/Retry.php",
  2205. "src/Functional/Select.php",
  2206. "src/Functional/SelectKeys.php",
  2207. "src/Functional/SequenceConstant.php",
  2208. "src/Functional/SequenceExponential.php",
  2209. "src/Functional/SequenceLinear.php",
  2210. "src/Functional/Some.php",
  2211. "src/Functional/Sort.php",
  2212. "src/Functional/Sum.php",
  2213. "src/Functional/SuppressError.php",
  2214. "src/Functional/Tap.php",
  2215. "src/Functional/Tail.php",
  2216. "src/Functional/TailRecursion.php",
  2217. "src/Functional/TakeLeft.php",
  2218. "src/Functional/TakeRight.php",
  2219. "src/Functional/True.php",
  2220. "src/Functional/Truthy.php",
  2221. "src/Functional/Unique.php",
  2222. "src/Functional/ValueToKey.php",
  2223. "src/Functional/With.php",
  2224. "src/Functional/Zip.php",
  2225. "src/Functional/ZipAll.php"
  2226. ]
  2227. },
  2228. "notification-url": "https://packagist.org/downloads/",
  2229. "license": [
  2230. "MIT"
  2231. ],
  2232. "authors": [
  2233. {
  2234. "name": "Lars Strojny",
  2235. "email": "lstrojny@php.net",
  2236. "homepage": "http://usrportage.de"
  2237. },
  2238. {
  2239. "name": "Max Beutel",
  2240. "email": "nash12@gmail.com"
  2241. }
  2242. ],
  2243. "description": "Functional primitives for PHP",
  2244. "keywords": [
  2245. "functional"
  2246. ],
  2247. "support": {
  2248. "issues": "https://github.com/lstrojny/functional-php/issues",
  2249. "source": "https://github.com/lstrojny/functional-php/tree/1.14.1"
  2250. },
  2251. "time": "2020-10-12T09:48:50+00:00"
  2252. },
  2253. {
  2254. "name": "masterminds/html5",
  2255. "version": "2.7.4",
  2256. "source": {
  2257. "type": "git",
  2258. "url": "https://github.com/Masterminds/html5-php.git",
  2259. "reference": "9227822783c75406cfe400984b2f095cdf03d417"
  2260. },
  2261. "dist": {
  2262. "type": "zip",
  2263. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417",
  2264. "reference": "9227822783c75406cfe400984b2f095cdf03d417",
  2265. "shasum": ""
  2266. },
  2267. "require": {
  2268. "ext-ctype": "*",
  2269. "ext-dom": "*",
  2270. "ext-libxml": "*",
  2271. "php": ">=5.3.0"
  2272. },
  2273. "require-dev": {
  2274. "phpunit/phpunit": "^4.8.35"
  2275. },
  2276. "type": "library",
  2277. "extra": {
  2278. "branch-alias": {
  2279. "dev-master": "2.7-dev"
  2280. }
  2281. },
  2282. "autoload": {
  2283. "psr-4": {
  2284. "Masterminds\\": "src"
  2285. }
  2286. },
  2287. "notification-url": "https://packagist.org/downloads/",
  2288. "license": [
  2289. "MIT"
  2290. ],
  2291. "authors": [
  2292. {
  2293. "name": "Matt Butcher",
  2294. "email": "technosophos@gmail.com"
  2295. },
  2296. {
  2297. "name": "Matt Farina",
  2298. "email": "matt@mattfarina.com"
  2299. },
  2300. {
  2301. "name": "Asmir Mustafic",
  2302. "email": "goetas@gmail.com"
  2303. }
  2304. ],
  2305. "description": "An HTML5 parser and serializer.",
  2306. "homepage": "http://masterminds.github.io/html5-php",
  2307. "keywords": [
  2308. "HTML5",
  2309. "dom",
  2310. "html",
  2311. "parser",
  2312. "querypath",
  2313. "serializer",
  2314. "xml"
  2315. ],
  2316. "support": {
  2317. "issues": "https://github.com/Masterminds/html5-php/issues",
  2318. "source": "https://github.com/Masterminds/html5-php/tree/2.7.4"
  2319. },
  2320. "time": "2020-10-01T13:52:52+00:00"
  2321. },
  2322. {
  2323. "name": "monolog/monolog",
  2324. "version": "2.1.1",
  2325. "source": {
  2326. "type": "git",
  2327. "url": "https://github.com/Seldaek/monolog.git",
  2328. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  2329. },
  2330. "dist": {
  2331. "type": "zip",
  2332. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2333. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2334. "shasum": ""
  2335. },
  2336. "require": {
  2337. "php": ">=7.2",
  2338. "psr/log": "^1.0.1"
  2339. },
  2340. "provide": {
  2341. "psr/log-implementation": "1.0.0"
  2342. },
  2343. "require-dev": {
  2344. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2345. "doctrine/couchdb": "~1.0@dev",
  2346. "elasticsearch/elasticsearch": "^6.0",
  2347. "graylog2/gelf-php": "^1.4.2",
  2348. "php-amqplib/php-amqplib": "~2.4",
  2349. "php-console/php-console": "^3.1.3",
  2350. "php-parallel-lint/php-parallel-lint": "^1.0",
  2351. "phpspec/prophecy": "^1.6.1",
  2352. "phpunit/phpunit": "^8.5",
  2353. "predis/predis": "^1.1",
  2354. "rollbar/rollbar": "^1.3",
  2355. "ruflin/elastica": ">=0.90 <3.0",
  2356. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2357. },
  2358. "suggest": {
  2359. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2360. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2361. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2362. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2363. "ext-mbstring": "Allow to work properly with unicode symbols",
  2364. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2365. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2366. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2367. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2368. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2369. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2370. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2371. },
  2372. "type": "library",
  2373. "extra": {
  2374. "branch-alias": {
  2375. "dev-master": "2.x-dev"
  2376. }
  2377. },
  2378. "autoload": {
  2379. "psr-4": {
  2380. "Monolog\\": "src/Monolog"
  2381. }
  2382. },
  2383. "notification-url": "https://packagist.org/downloads/",
  2384. "license": [
  2385. "MIT"
  2386. ],
  2387. "authors": [
  2388. {
  2389. "name": "Jordi Boggiano",
  2390. "email": "j.boggiano@seld.be",
  2391. "homepage": "http://seld.be"
  2392. }
  2393. ],
  2394. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2395. "homepage": "http://github.com/Seldaek/monolog",
  2396. "keywords": [
  2397. "log",
  2398. "logging",
  2399. "psr-3"
  2400. ],
  2401. "support": {
  2402. "issues": "https://github.com/Seldaek/monolog/issues",
  2403. "source": "https://github.com/Seldaek/monolog/tree/2.1.1"
  2404. },
  2405. "funding": [
  2406. {
  2407. "url": "https://github.com/Seldaek",
  2408. "type": "github"
  2409. },
  2410. {
  2411. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2412. "type": "tidelift"
  2413. }
  2414. ],
  2415. "time": "2020-07-23T08:41:23+00:00"
  2416. },
  2417. {
  2418. "name": "ocramius/proxy-manager",
  2419. "version": "2.8.0",
  2420. "source": {
  2421. "type": "git",
  2422. "url": "https://github.com/Ocramius/ProxyManager.git",
  2423. "reference": "ac1dd414fd114cfc0da9930e0ab46063c2f5e62a"
  2424. },
  2425. "dist": {
  2426. "type": "zip",
  2427. "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/ac1dd414fd114cfc0da9930e0ab46063c2f5e62a",
  2428. "reference": "ac1dd414fd114cfc0da9930e0ab46063c2f5e62a",
  2429. "shasum": ""
  2430. },
  2431. "require": {
  2432. "laminas/laminas-code": "^3.4.1",
  2433. "ocramius/package-versions": "^1.8.0",
  2434. "php": "~7.4.1",
  2435. "webimpress/safe-writer": "^2.0.1"
  2436. },
  2437. "conflict": {
  2438. "doctrine/annotations": "<1.6.1",
  2439. "laminas/laminas-stdlib": "<3.2.1",
  2440. "zendframework/zend-stdlib": "<3.2.1"
  2441. },
  2442. "require-dev": {
  2443. "doctrine/coding-standard": "^6.0.0",
  2444. "ext-phar": "*",
  2445. "infection/infection": "^0.16.2",
  2446. "nikic/php-parser": "^4.4.0",
  2447. "phpbench/phpbench": "^0.17.0",
  2448. "phpunit/phpunit": "^9.1.1",
  2449. "slevomat/coding-standard": "^5.0.4",
  2450. "squizlabs/php_codesniffer": "^3.5.4",
  2451. "vimeo/psalm": "^3.11.1"
  2452. },
  2453. "suggest": {
  2454. "laminas/laminas-json": "To have the JsonRpc adapter (Remote Object feature)",
  2455. "laminas/laminas-soap": "To have the Soap adapter (Remote Object feature)",
  2456. "laminas/laminas-xmlrpc": "To have the XmlRpc adapter (Remote Object feature)",
  2457. "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects"
  2458. },
  2459. "type": "library",
  2460. "extra": {
  2461. "branch-alias": {
  2462. "dev-master": "3.0.x-dev"
  2463. }
  2464. },
  2465. "autoload": {
  2466. "psr-4": {
  2467. "ProxyManager\\": "src/ProxyManager"
  2468. }
  2469. },
  2470. "notification-url": "https://packagist.org/downloads/",
  2471. "license": [
  2472. "MIT"
  2473. ],
  2474. "authors": [
  2475. {
  2476. "name": "Marco Pivetta",
  2477. "email": "ocramius@gmail.com",
  2478. "homepage": "http://ocramius.github.io/"
  2479. }
  2480. ],
  2481. "description": "A library providing utilities to generate, instantiate and generally operate with Object Proxies",
  2482. "homepage": "https://github.com/Ocramius/ProxyManager",
  2483. "keywords": [
  2484. "aop",
  2485. "lazy loading",
  2486. "proxy",
  2487. "proxy pattern",
  2488. "service proxies"
  2489. ],
  2490. "funding": [
  2491. {
  2492. "url": "https://github.com/Ocramius",
  2493. "type": "github"
  2494. },
  2495. {
  2496. "url": "https://tidelift.com/funding/github/packagist/ocramius/proxy-manager",
  2497. "type": "tidelift"
  2498. }
  2499. ],
  2500. "time": "2020-04-13T14:42:16+00:00"
  2501. },
  2502. {
  2503. "name": "odolbeau/phone-number-bundle",
  2504. "version": "v3.2.1",
  2505. "source": {
  2506. "type": "git",
  2507. "url": "https://github.com/odolbeau/phone-number-bundle.git",
  2508. "reference": "95f7d3a8a71b5abdde074cecca0d0613d24c4334"
  2509. },
  2510. "dist": {
  2511. "type": "zip",
  2512. "url": "https://api.github.com/repos/odolbeau/phone-number-bundle/zipball/95f7d3a8a71b5abdde074cecca0d0613d24c4334",
  2513. "reference": "95f7d3a8a71b5abdde074cecca0d0613d24c4334",
  2514. "shasum": ""
  2515. },
  2516. "require": {
  2517. "giggsey/libphonenumber-for-php": "^8.0",
  2518. "php": "^7.2",
  2519. "symfony/framework-bundle": "^3.4|^4.3|^5.0"
  2520. },
  2521. "replace": {
  2522. "misd/phone-number-bundle": "self.version"
  2523. },
  2524. "require-dev": {
  2525. "doctrine/doctrine-bundle": "^1.12|^2.0",
  2526. "phpunit/phpunit": "^8.4",
  2527. "symfony/form": "^3.4|^4.3|^5.0",
  2528. "symfony/serializer": "^3.4|^4.3|^5.0",
  2529. "symfony/twig-bundle": "^3.4|^4.3|^5.0",
  2530. "symfony/validator": "^3.4|^4.3|^5.0"
  2531. },
  2532. "suggest": {
  2533. "doctrine/doctrine-bundle": "Add a DBAL mapping type",
  2534. "symfony/form": "Add a data transformer",
  2535. "symfony/serializer": "Serialize/deserialize phone numbers using Symfony library",
  2536. "symfony/twig-bundle": "Format phone numbers in Twig templates",
  2537. "symfony/validator": "Add a validation constraint"
  2538. },
  2539. "type": "symfony-bundle",
  2540. "extra": {
  2541. "branch-alias": {
  2542. "dev-master": "3.2.x-dev"
  2543. }
  2544. },
  2545. "autoload": {
  2546. "psr-4": {
  2547. "Misd\\PhoneNumberBundle\\": "src/"
  2548. }
  2549. },
  2550. "notification-url": "https://packagist.org/downloads/",
  2551. "license": [
  2552. "MIT"
  2553. ],
  2554. "description": "Integrates libphonenumber into your Symfony application",
  2555. "homepage": "https://github.com/odolbeau/phone-number-bundle",
  2556. "keywords": [
  2557. "bundle",
  2558. "libphonenumber",
  2559. "phone-number",
  2560. "phonenumber",
  2561. "telephone number"
  2562. ],
  2563. "support": {
  2564. "issues": "https://github.com/odolbeau/phone-number-bundle/issues",
  2565. "source": "https://github.com/odolbeau/phone-number-bundle/tree/v3.2.1"
  2566. },
  2567. "time": "2020-10-28T08:50:39+00:00"
  2568. },
  2569. {
  2570. "name": "php-ds/php-ds",
  2571. "version": "v1.3.0",
  2572. "source": {
  2573. "type": "git",
  2574. "url": "https://github.com/php-ds/polyfill.git",
  2575. "reference": "b98396862fb8a13cbdbbaf4d18be28ee5c01ed3c"
  2576. },
  2577. "dist": {
  2578. "type": "zip",
  2579. "url": "https://api.github.com/repos/php-ds/polyfill/zipball/b98396862fb8a13cbdbbaf4d18be28ee5c01ed3c",
  2580. "reference": "b98396862fb8a13cbdbbaf4d18be28ee5c01ed3c",
  2581. "shasum": ""
  2582. },
  2583. "require": {
  2584. "ext-json": "*",
  2585. "php": ">=7.0.0"
  2586. },
  2587. "provide": {
  2588. "ext-ds": "1.3.0"
  2589. },
  2590. "require-dev": {
  2591. "php-ds/tests": "^1.3"
  2592. },
  2593. "suggest": {
  2594. "ext-ds": "to improve performance and reduce memory usage"
  2595. },
  2596. "type": "library",
  2597. "autoload": {
  2598. "psr-4": {
  2599. "Ds\\": "src"
  2600. }
  2601. },
  2602. "notification-url": "https://packagist.org/downloads/",
  2603. "license": [
  2604. "MIT"
  2605. ],
  2606. "authors": [
  2607. {
  2608. "name": "Rudi Theunissen",
  2609. "email": "rudolf.theunissen@gmail.com"
  2610. }
  2611. ],
  2612. "keywords": [
  2613. "data structures",
  2614. "ds",
  2615. "php",
  2616. "polyfill"
  2617. ],
  2618. "support": {
  2619. "issues": "https://github.com/php-ds/polyfill/issues",
  2620. "source": "https://github.com/php-ds/polyfill/tree/v1.3.0"
  2621. },
  2622. "time": "2020-10-14T04:23:31+00:00"
  2623. },
  2624. {
  2625. "name": "phpdocumentor/reflection-common",
  2626. "version": "2.2.0",
  2627. "source": {
  2628. "type": "git",
  2629. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2630. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2631. },
  2632. "dist": {
  2633. "type": "zip",
  2634. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2635. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2636. "shasum": ""
  2637. },
  2638. "require": {
  2639. "php": "^7.2 || ^8.0"
  2640. },
  2641. "type": "library",
  2642. "extra": {
  2643. "branch-alias": {
  2644. "dev-2.x": "2.x-dev"
  2645. }
  2646. },
  2647. "autoload": {
  2648. "psr-4": {
  2649. "phpDocumentor\\Reflection\\": "src/"
  2650. }
  2651. },
  2652. "notification-url": "https://packagist.org/downloads/",
  2653. "license": [
  2654. "MIT"
  2655. ],
  2656. "authors": [
  2657. {
  2658. "name": "Jaap van Otterdijk",
  2659. "email": "opensource@ijaap.nl"
  2660. }
  2661. ],
  2662. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2663. "homepage": "http://www.phpdoc.org",
  2664. "keywords": [
  2665. "FQSEN",
  2666. "phpDocumentor",
  2667. "phpdoc",
  2668. "reflection",
  2669. "static analysis"
  2670. ],
  2671. "support": {
  2672. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2673. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2674. },
  2675. "time": "2020-06-27T09:03:43+00:00"
  2676. },
  2677. {
  2678. "name": "phpdocumentor/reflection-docblock",
  2679. "version": "5.2.2",
  2680. "source": {
  2681. "type": "git",
  2682. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2683. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  2684. },
  2685. "dist": {
  2686. "type": "zip",
  2687. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  2688. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  2689. "shasum": ""
  2690. },
  2691. "require": {
  2692. "ext-filter": "*",
  2693. "php": "^7.2 || ^8.0",
  2694. "phpdocumentor/reflection-common": "^2.2",
  2695. "phpdocumentor/type-resolver": "^1.3",
  2696. "webmozart/assert": "^1.9.1"
  2697. },
  2698. "require-dev": {
  2699. "mockery/mockery": "~1.3.2"
  2700. },
  2701. "type": "library",
  2702. "extra": {
  2703. "branch-alias": {
  2704. "dev-master": "5.x-dev"
  2705. }
  2706. },
  2707. "autoload": {
  2708. "psr-4": {
  2709. "phpDocumentor\\Reflection\\": "src"
  2710. }
  2711. },
  2712. "notification-url": "https://packagist.org/downloads/",
  2713. "license": [
  2714. "MIT"
  2715. ],
  2716. "authors": [
  2717. {
  2718. "name": "Mike van Riel",
  2719. "email": "me@mikevanriel.com"
  2720. },
  2721. {
  2722. "name": "Jaap van Otterdijk",
  2723. "email": "account@ijaap.nl"
  2724. }
  2725. ],
  2726. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2727. "support": {
  2728. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2729. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  2730. },
  2731. "time": "2020-09-03T19:13:55+00:00"
  2732. },
  2733. {
  2734. "name": "phpdocumentor/type-resolver",
  2735. "version": "1.4.0",
  2736. "source": {
  2737. "type": "git",
  2738. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2739. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  2740. },
  2741. "dist": {
  2742. "type": "zip",
  2743. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  2744. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  2745. "shasum": ""
  2746. },
  2747. "require": {
  2748. "php": "^7.2 || ^8.0",
  2749. "phpdocumentor/reflection-common": "^2.0"
  2750. },
  2751. "require-dev": {
  2752. "ext-tokenizer": "*"
  2753. },
  2754. "type": "library",
  2755. "extra": {
  2756. "branch-alias": {
  2757. "dev-1.x": "1.x-dev"
  2758. }
  2759. },
  2760. "autoload": {
  2761. "psr-4": {
  2762. "phpDocumentor\\Reflection\\": "src"
  2763. }
  2764. },
  2765. "notification-url": "https://packagist.org/downloads/",
  2766. "license": [
  2767. "MIT"
  2768. ],
  2769. "authors": [
  2770. {
  2771. "name": "Mike van Riel",
  2772. "email": "me@mikevanriel.com"
  2773. }
  2774. ],
  2775. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2776. "support": {
  2777. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2778. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  2779. },
  2780. "time": "2020-09-17T18:55:26+00:00"
  2781. },
  2782. {
  2783. "name": "psr/cache",
  2784. "version": "1.0.1",
  2785. "source": {
  2786. "type": "git",
  2787. "url": "https://github.com/php-fig/cache.git",
  2788. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2789. },
  2790. "dist": {
  2791. "type": "zip",
  2792. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2793. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2794. "shasum": ""
  2795. },
  2796. "require": {
  2797. "php": ">=5.3.0"
  2798. },
  2799. "type": "library",
  2800. "extra": {
  2801. "branch-alias": {
  2802. "dev-master": "1.0.x-dev"
  2803. }
  2804. },
  2805. "autoload": {
  2806. "psr-4": {
  2807. "Psr\\Cache\\": "src/"
  2808. }
  2809. },
  2810. "notification-url": "https://packagist.org/downloads/",
  2811. "license": [
  2812. "MIT"
  2813. ],
  2814. "authors": [
  2815. {
  2816. "name": "PHP-FIG",
  2817. "homepage": "http://www.php-fig.org/"
  2818. }
  2819. ],
  2820. "description": "Common interface for caching libraries",
  2821. "keywords": [
  2822. "cache",
  2823. "psr",
  2824. "psr-6"
  2825. ],
  2826. "support": {
  2827. "source": "https://github.com/php-fig/cache/tree/master"
  2828. },
  2829. "time": "2016-08-06T20:24:11+00:00"
  2830. },
  2831. {
  2832. "name": "psr/container",
  2833. "version": "1.0.0",
  2834. "source": {
  2835. "type": "git",
  2836. "url": "https://github.com/php-fig/container.git",
  2837. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2838. },
  2839. "dist": {
  2840. "type": "zip",
  2841. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2842. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2843. "shasum": ""
  2844. },
  2845. "require": {
  2846. "php": ">=5.3.0"
  2847. },
  2848. "type": "library",
  2849. "extra": {
  2850. "branch-alias": {
  2851. "dev-master": "1.0.x-dev"
  2852. }
  2853. },
  2854. "autoload": {
  2855. "psr-4": {
  2856. "Psr\\Container\\": "src/"
  2857. }
  2858. },
  2859. "notification-url": "https://packagist.org/downloads/",
  2860. "license": [
  2861. "MIT"
  2862. ],
  2863. "authors": [
  2864. {
  2865. "name": "PHP-FIG",
  2866. "homepage": "http://www.php-fig.org/"
  2867. }
  2868. ],
  2869. "description": "Common Container Interface (PHP FIG PSR-11)",
  2870. "homepage": "https://github.com/php-fig/container",
  2871. "keywords": [
  2872. "PSR-11",
  2873. "container",
  2874. "container-interface",
  2875. "container-interop",
  2876. "psr"
  2877. ],
  2878. "support": {
  2879. "issues": "https://github.com/php-fig/container/issues",
  2880. "source": "https://github.com/php-fig/container/tree/master"
  2881. },
  2882. "time": "2017-02-14T16:28:37+00:00"
  2883. },
  2884. {
  2885. "name": "psr/event-dispatcher",
  2886. "version": "1.0.0",
  2887. "source": {
  2888. "type": "git",
  2889. "url": "https://github.com/php-fig/event-dispatcher.git",
  2890. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2891. },
  2892. "dist": {
  2893. "type": "zip",
  2894. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2895. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2896. "shasum": ""
  2897. },
  2898. "require": {
  2899. "php": ">=7.2.0"
  2900. },
  2901. "type": "library",
  2902. "extra": {
  2903. "branch-alias": {
  2904. "dev-master": "1.0.x-dev"
  2905. }
  2906. },
  2907. "autoload": {
  2908. "psr-4": {
  2909. "Psr\\EventDispatcher\\": "src/"
  2910. }
  2911. },
  2912. "notification-url": "https://packagist.org/downloads/",
  2913. "license": [
  2914. "MIT"
  2915. ],
  2916. "authors": [
  2917. {
  2918. "name": "PHP-FIG",
  2919. "homepage": "http://www.php-fig.org/"
  2920. }
  2921. ],
  2922. "description": "Standard interfaces for event handling.",
  2923. "keywords": [
  2924. "events",
  2925. "psr",
  2926. "psr-14"
  2927. ],
  2928. "support": {
  2929. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2930. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2931. },
  2932. "time": "2019-01-08T18:20:26+00:00"
  2933. },
  2934. {
  2935. "name": "psr/link",
  2936. "version": "1.0.0",
  2937. "source": {
  2938. "type": "git",
  2939. "url": "https://github.com/php-fig/link.git",
  2940. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  2941. },
  2942. "dist": {
  2943. "type": "zip",
  2944. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  2945. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  2946. "shasum": ""
  2947. },
  2948. "require": {
  2949. "php": ">=5.3.0"
  2950. },
  2951. "type": "library",
  2952. "extra": {
  2953. "branch-alias": {
  2954. "dev-master": "1.0.x-dev"
  2955. }
  2956. },
  2957. "autoload": {
  2958. "psr-4": {
  2959. "Psr\\Link\\": "src/"
  2960. }
  2961. },
  2962. "notification-url": "https://packagist.org/downloads/",
  2963. "license": [
  2964. "MIT"
  2965. ],
  2966. "authors": [
  2967. {
  2968. "name": "PHP-FIG",
  2969. "homepage": "http://www.php-fig.org/"
  2970. }
  2971. ],
  2972. "description": "Common interfaces for HTTP links",
  2973. "keywords": [
  2974. "http",
  2975. "http-link",
  2976. "link",
  2977. "psr",
  2978. "psr-13",
  2979. "rest"
  2980. ],
  2981. "support": {
  2982. "source": "https://github.com/php-fig/link/tree/master"
  2983. },
  2984. "time": "2016-10-28T16:06:13+00:00"
  2985. },
  2986. {
  2987. "name": "psr/log",
  2988. "version": "1.1.3",
  2989. "source": {
  2990. "type": "git",
  2991. "url": "https://github.com/php-fig/log.git",
  2992. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  2993. },
  2994. "dist": {
  2995. "type": "zip",
  2996. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  2997. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  2998. "shasum": ""
  2999. },
  3000. "require": {
  3001. "php": ">=5.3.0"
  3002. },
  3003. "type": "library",
  3004. "extra": {
  3005. "branch-alias": {
  3006. "dev-master": "1.1.x-dev"
  3007. }
  3008. },
  3009. "autoload": {
  3010. "psr-4": {
  3011. "Psr\\Log\\": "Psr/Log/"
  3012. }
  3013. },
  3014. "notification-url": "https://packagist.org/downloads/",
  3015. "license": [
  3016. "MIT"
  3017. ],
  3018. "authors": [
  3019. {
  3020. "name": "PHP-FIG",
  3021. "homepage": "http://www.php-fig.org/"
  3022. }
  3023. ],
  3024. "description": "Common interface for logging libraries",
  3025. "homepage": "https://github.com/php-fig/log",
  3026. "keywords": [
  3027. "log",
  3028. "psr",
  3029. "psr-3"
  3030. ],
  3031. "support": {
  3032. "source": "https://github.com/php-fig/log/tree/1.1.3"
  3033. },
  3034. "time": "2020-03-23T09:12:05+00:00"
  3035. },
  3036. {
  3037. "name": "sensio/framework-extra-bundle",
  3038. "version": "v5.6.1",
  3039. "source": {
  3040. "type": "git",
  3041. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  3042. "reference": "430d14c01836b77c28092883d195a43ce413ee32"
  3043. },
  3044. "dist": {
  3045. "type": "zip",
  3046. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/430d14c01836b77c28092883d195a43ce413ee32",
  3047. "reference": "430d14c01836b77c28092883d195a43ce413ee32",
  3048. "shasum": ""
  3049. },
  3050. "require": {
  3051. "doctrine/annotations": "^1.0",
  3052. "php": ">=7.2.5",
  3053. "symfony/config": "^4.4|^5.0",
  3054. "symfony/dependency-injection": "^4.4|^5.0",
  3055. "symfony/framework-bundle": "^4.4|^5.0",
  3056. "symfony/http-kernel": "^4.4|^5.0"
  3057. },
  3058. "conflict": {
  3059. "doctrine/doctrine-cache-bundle": "<1.3.1",
  3060. "doctrine/persistence": "<1.3"
  3061. },
  3062. "require-dev": {
  3063. "doctrine/dbal": "^2.10|^3.0",
  3064. "doctrine/doctrine-bundle": "^1.11|^2.0",
  3065. "doctrine/orm": "^2.5",
  3066. "nyholm/psr7": "^1.1",
  3067. "symfony/browser-kit": "^4.4|^5.0",
  3068. "symfony/doctrine-bridge": "^4.4|^5.0",
  3069. "symfony/dom-crawler": "^4.4|^5.0",
  3070. "symfony/expression-language": "^4.4|^5.0",
  3071. "symfony/finder": "^4.4|^5.0",
  3072. "symfony/monolog-bridge": "^4.0|^5.0",
  3073. "symfony/monolog-bundle": "^3.2",
  3074. "symfony/phpunit-bridge": "^4.4.9|^5.0.9",
  3075. "symfony/psr-http-message-bridge": "^1.1",
  3076. "symfony/security-bundle": "^4.4|^5.0",
  3077. "symfony/twig-bundle": "^4.4|^5.0",
  3078. "symfony/yaml": "^4.4|^5.0",
  3079. "twig/twig": "^1.34|^2.4|^3.0"
  3080. },
  3081. "type": "symfony-bundle",
  3082. "extra": {
  3083. "branch-alias": {
  3084. "dev-master": "5.6.x-dev"
  3085. }
  3086. },
  3087. "autoload": {
  3088. "psr-4": {
  3089. "Sensio\\Bundle\\FrameworkExtraBundle\\": "src/"
  3090. },
  3091. "exclude-from-classmap": [
  3092. "/tests/"
  3093. ]
  3094. },
  3095. "notification-url": "https://packagist.org/downloads/",
  3096. "license": [
  3097. "MIT"
  3098. ],
  3099. "authors": [
  3100. {
  3101. "name": "Fabien Potencier",
  3102. "email": "fabien@symfony.com"
  3103. }
  3104. ],
  3105. "description": "This bundle provides a way to configure your controllers with annotations",
  3106. "keywords": [
  3107. "annotations",
  3108. "controllers"
  3109. ],
  3110. "support": {
  3111. "issues": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/issues",
  3112. "source": "https://github.com/sensiolabs/SensioFrameworkExtraBundle/tree/v5.6.1"
  3113. },
  3114. "time": "2020-08-25T19:10:18+00:00"
  3115. },
  3116. {
  3117. "name": "someonewithpc/memcached-polyfill",
  3118. "version": "1.0.1",
  3119. "source": {
  3120. "type": "git",
  3121. "url": "https://github.com/someonewithpc/memcached-polyfill.git",
  3122. "reference": "326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4"
  3123. },
  3124. "dist": {
  3125. "type": "zip",
  3126. "url": "https://api.github.com/repos/someonewithpc/memcached-polyfill/zipball/326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4",
  3127. "reference": "326a44a1ce5f936b25aa69b5c9b82a7cc8e565b4",
  3128. "shasum": ""
  3129. },
  3130. "type": "library",
  3131. "autoload": {
  3132. "psr-4": {
  3133. "": "src"
  3134. }
  3135. },
  3136. "notification-url": "https://packagist.org/downloads/",
  3137. "license": [
  3138. "GPL-3.0-or-later"
  3139. ],
  3140. "authors": [
  3141. {
  3142. "name": "Hugo Sales",
  3143. "email": "hugo@fc.up.pt"
  3144. }
  3145. ],
  3146. "description": "No-implementation memcached extension polyfill",
  3147. "keywords": [
  3148. "memcached",
  3149. "polyfill",
  3150. "symfony"
  3151. ],
  3152. "support": {
  3153. "issues": "https://github.com/someonewithpc/memcached-polyfill/issues",
  3154. "source": "https://github.com/someonewithpc/memcached-polyfill/tree/1.0.1"
  3155. },
  3156. "time": "2020-07-17T22:30:37+00:00"
  3157. },
  3158. {
  3159. "name": "someonewithpc/redis-polyfill",
  3160. "version": "1.0.1",
  3161. "source": {
  3162. "type": "git",
  3163. "url": "https://github.com/someonewithpc/php-redis-polyfill.git",
  3164. "reference": "db70a9df20bb2b82f594d84c4490b8edd20379a2"
  3165. },
  3166. "dist": {
  3167. "type": "zip",
  3168. "url": "https://api.github.com/repos/someonewithpc/php-redis-polyfill/zipball/db70a9df20bb2b82f594d84c4490b8edd20379a2",
  3169. "reference": "db70a9df20bb2b82f594d84c4490b8edd20379a2",
  3170. "shasum": ""
  3171. },
  3172. "type": "library",
  3173. "autoload": {
  3174. "psr-4": {
  3175. "": "src"
  3176. }
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "GPL-3.0-or-later"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "Hugo Sales",
  3185. "email": "hugo@fc.up.pt"
  3186. }
  3187. ],
  3188. "description": "No-implementation redis extension polyfill",
  3189. "keywords": [
  3190. "polyfill",
  3191. "redis"
  3192. ],
  3193. "support": {
  3194. "issues": "https://github.com/someonewithpc/php-redis-polyfill/issues",
  3195. "source": "https://github.com/someonewithpc/php-redis-polyfill/tree/1.0.1"
  3196. },
  3197. "time": "2020-07-17T22:29:37+00:00"
  3198. },
  3199. {
  3200. "name": "symfony/amqp-messenger",
  3201. "version": "v5.1.8",
  3202. "source": {
  3203. "type": "git",
  3204. "url": "https://github.com/symfony/amqp-messenger.git",
  3205. "reference": "daa895ff04c3a692b8ca3568445a46b44796e254"
  3206. },
  3207. "dist": {
  3208. "type": "zip",
  3209. "url": "https://api.github.com/repos/symfony/amqp-messenger/zipball/daa895ff04c3a692b8ca3568445a46b44796e254",
  3210. "reference": "daa895ff04c3a692b8ca3568445a46b44796e254",
  3211. "shasum": ""
  3212. },
  3213. "require": {
  3214. "php": ">=7.2.5",
  3215. "symfony/messenger": "^5.1"
  3216. },
  3217. "require-dev": {
  3218. "symfony/event-dispatcher": "^4.4|^5.0",
  3219. "symfony/process": "^4.4|^5.0",
  3220. "symfony/property-access": "^4.4|^5.0",
  3221. "symfony/serializer": "^4.4|^5.0"
  3222. },
  3223. "type": "symfony-bridge",
  3224. "autoload": {
  3225. "psr-4": {
  3226. "Symfony\\Component\\Messenger\\Bridge\\Amqp\\": ""
  3227. },
  3228. "exclude-from-classmap": [
  3229. "/Tests/"
  3230. ]
  3231. },
  3232. "notification-url": "https://packagist.org/downloads/",
  3233. "license": [
  3234. "MIT"
  3235. ],
  3236. "authors": [
  3237. {
  3238. "name": "Fabien Potencier",
  3239. "email": "fabien@symfony.com"
  3240. },
  3241. {
  3242. "name": "Symfony Community",
  3243. "homepage": "https://symfony.com/contributors"
  3244. }
  3245. ],
  3246. "description": "Symfony AMQP extension Messenger Bridge",
  3247. "homepage": "https://symfony.com",
  3248. "support": {
  3249. "source": "https://github.com/symfony/amqp-messenger/tree/v5.1.8"
  3250. },
  3251. "funding": [
  3252. {
  3253. "url": "https://symfony.com/sponsor",
  3254. "type": "custom"
  3255. },
  3256. {
  3257. "url": "https://github.com/fabpot",
  3258. "type": "github"
  3259. },
  3260. {
  3261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3262. "type": "tidelift"
  3263. }
  3264. ],
  3265. "time": "2020-10-27T10:11:13+00:00"
  3266. },
  3267. {
  3268. "name": "symfony/asset",
  3269. "version": "v5.1.8",
  3270. "source": {
  3271. "type": "git",
  3272. "url": "https://github.com/symfony/asset.git",
  3273. "reference": "19c59713f750642206b21a1edec5c18dea80f979"
  3274. },
  3275. "dist": {
  3276. "type": "zip",
  3277. "url": "https://api.github.com/repos/symfony/asset/zipball/19c59713f750642206b21a1edec5c18dea80f979",
  3278. "reference": "19c59713f750642206b21a1edec5c18dea80f979",
  3279. "shasum": ""
  3280. },
  3281. "require": {
  3282. "php": ">=7.2.5"
  3283. },
  3284. "require-dev": {
  3285. "symfony/http-client": "^4.4|^5.0",
  3286. "symfony/http-foundation": "^4.4|^5.0",
  3287. "symfony/http-kernel": "^4.4|^5.0"
  3288. },
  3289. "suggest": {
  3290. "symfony/http-foundation": ""
  3291. },
  3292. "type": "library",
  3293. "autoload": {
  3294. "psr-4": {
  3295. "Symfony\\Component\\Asset\\": ""
  3296. },
  3297. "exclude-from-classmap": [
  3298. "/Tests/"
  3299. ]
  3300. },
  3301. "notification-url": "https://packagist.org/downloads/",
  3302. "license": [
  3303. "MIT"
  3304. ],
  3305. "authors": [
  3306. {
  3307. "name": "Fabien Potencier",
  3308. "email": "fabien@symfony.com"
  3309. },
  3310. {
  3311. "name": "Symfony Community",
  3312. "homepage": "https://symfony.com/contributors"
  3313. }
  3314. ],
  3315. "description": "Symfony Asset Component",
  3316. "homepage": "https://symfony.com",
  3317. "support": {
  3318. "source": "https://github.com/symfony/asset/tree/v5.1.8"
  3319. },
  3320. "funding": [
  3321. {
  3322. "url": "https://symfony.com/sponsor",
  3323. "type": "custom"
  3324. },
  3325. {
  3326. "url": "https://github.com/fabpot",
  3327. "type": "github"
  3328. },
  3329. {
  3330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3331. "type": "tidelift"
  3332. }
  3333. ],
  3334. "time": "2020-10-24T12:01:57+00:00"
  3335. },
  3336. {
  3337. "name": "symfony/cache",
  3338. "version": "v5.1.8",
  3339. "source": {
  3340. "type": "git",
  3341. "url": "https://github.com/symfony/cache.git",
  3342. "reference": "d7bc33e9f9028f49f87057e7944c076d9593f046"
  3343. },
  3344. "dist": {
  3345. "type": "zip",
  3346. "url": "https://api.github.com/repos/symfony/cache/zipball/d7bc33e9f9028f49f87057e7944c076d9593f046",
  3347. "reference": "d7bc33e9f9028f49f87057e7944c076d9593f046",
  3348. "shasum": ""
  3349. },
  3350. "require": {
  3351. "php": ">=7.2.5",
  3352. "psr/cache": "~1.0",
  3353. "psr/log": "~1.0",
  3354. "symfony/cache-contracts": "^1.1.7|^2",
  3355. "symfony/polyfill-php80": "^1.15",
  3356. "symfony/service-contracts": "^1.1|^2",
  3357. "symfony/var-exporter": "^4.4|^5.0"
  3358. },
  3359. "conflict": {
  3360. "doctrine/dbal": "<2.5",
  3361. "symfony/dependency-injection": "<4.4",
  3362. "symfony/http-kernel": "<4.4",
  3363. "symfony/var-dumper": "<4.4"
  3364. },
  3365. "provide": {
  3366. "psr/cache-implementation": "1.0",
  3367. "psr/simple-cache-implementation": "1.0",
  3368. "symfony/cache-implementation": "1.0"
  3369. },
  3370. "require-dev": {
  3371. "cache/integration-tests": "dev-master",
  3372. "doctrine/cache": "^1.6",
  3373. "doctrine/dbal": "^2.5|^3.0",
  3374. "predis/predis": "^1.1",
  3375. "psr/simple-cache": "^1.0",
  3376. "symfony/config": "^4.4|^5.0",
  3377. "symfony/dependency-injection": "^4.4|^5.0",
  3378. "symfony/filesystem": "^4.4|^5.0",
  3379. "symfony/var-dumper": "^4.4|^5.0"
  3380. },
  3381. "type": "library",
  3382. "autoload": {
  3383. "psr-4": {
  3384. "Symfony\\Component\\Cache\\": ""
  3385. },
  3386. "exclude-from-classmap": [
  3387. "/Tests/"
  3388. ]
  3389. },
  3390. "notification-url": "https://packagist.org/downloads/",
  3391. "license": [
  3392. "MIT"
  3393. ],
  3394. "authors": [
  3395. {
  3396. "name": "Nicolas Grekas",
  3397. "email": "p@tchwork.com"
  3398. },
  3399. {
  3400. "name": "Symfony Community",
  3401. "homepage": "https://symfony.com/contributors"
  3402. }
  3403. ],
  3404. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  3405. "homepage": "https://symfony.com",
  3406. "keywords": [
  3407. "caching",
  3408. "psr6"
  3409. ],
  3410. "support": {
  3411. "source": "https://github.com/symfony/cache/tree/v5.1.8"
  3412. },
  3413. "funding": [
  3414. {
  3415. "url": "https://symfony.com/sponsor",
  3416. "type": "custom"
  3417. },
  3418. {
  3419. "url": "https://github.com/fabpot",
  3420. "type": "github"
  3421. },
  3422. {
  3423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3424. "type": "tidelift"
  3425. }
  3426. ],
  3427. "time": "2020-10-25T23:21:56+00:00"
  3428. },
  3429. {
  3430. "name": "symfony/cache-contracts",
  3431. "version": "v2.2.0",
  3432. "source": {
  3433. "type": "git",
  3434. "url": "https://github.com/symfony/cache-contracts.git",
  3435. "reference": "8034ca0b61d4dd967f3698aaa1da2507b631d0cb"
  3436. },
  3437. "dist": {
  3438. "type": "zip",
  3439. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/8034ca0b61d4dd967f3698aaa1da2507b631d0cb",
  3440. "reference": "8034ca0b61d4dd967f3698aaa1da2507b631d0cb",
  3441. "shasum": ""
  3442. },
  3443. "require": {
  3444. "php": ">=7.2.5",
  3445. "psr/cache": "^1.0"
  3446. },
  3447. "suggest": {
  3448. "symfony/cache-implementation": ""
  3449. },
  3450. "type": "library",
  3451. "extra": {
  3452. "branch-alias": {
  3453. "dev-master": "2.2-dev"
  3454. },
  3455. "thanks": {
  3456. "name": "symfony/contracts",
  3457. "url": "https://github.com/symfony/contracts"
  3458. }
  3459. },
  3460. "autoload": {
  3461. "psr-4": {
  3462. "Symfony\\Contracts\\Cache\\": ""
  3463. }
  3464. },
  3465. "notification-url": "https://packagist.org/downloads/",
  3466. "license": [
  3467. "MIT"
  3468. ],
  3469. "authors": [
  3470. {
  3471. "name": "Nicolas Grekas",
  3472. "email": "p@tchwork.com"
  3473. },
  3474. {
  3475. "name": "Symfony Community",
  3476. "homepage": "https://symfony.com/contributors"
  3477. }
  3478. ],
  3479. "description": "Generic abstractions related to caching",
  3480. "homepage": "https://symfony.com",
  3481. "keywords": [
  3482. "abstractions",
  3483. "contracts",
  3484. "decoupling",
  3485. "interfaces",
  3486. "interoperability",
  3487. "standards"
  3488. ],
  3489. "support": {
  3490. "source": "https://github.com/symfony/cache-contracts/tree/v2.2.0"
  3491. },
  3492. "funding": [
  3493. {
  3494. "url": "https://symfony.com/sponsor",
  3495. "type": "custom"
  3496. },
  3497. {
  3498. "url": "https://github.com/fabpot",
  3499. "type": "github"
  3500. },
  3501. {
  3502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3503. "type": "tidelift"
  3504. }
  3505. ],
  3506. "time": "2020-09-07T11:33:47+00:00"
  3507. },
  3508. {
  3509. "name": "symfony/config",
  3510. "version": "v5.1.8",
  3511. "source": {
  3512. "type": "git",
  3513. "url": "https://github.com/symfony/config.git",
  3514. "reference": "11baeefa4c179d6908655a7b6be728f62367c193"
  3515. },
  3516. "dist": {
  3517. "type": "zip",
  3518. "url": "https://api.github.com/repos/symfony/config/zipball/11baeefa4c179d6908655a7b6be728f62367c193",
  3519. "reference": "11baeefa4c179d6908655a7b6be728f62367c193",
  3520. "shasum": ""
  3521. },
  3522. "require": {
  3523. "php": ">=7.2.5",
  3524. "symfony/deprecation-contracts": "^2.1",
  3525. "symfony/filesystem": "^4.4|^5.0",
  3526. "symfony/polyfill-ctype": "~1.8",
  3527. "symfony/polyfill-php80": "^1.15"
  3528. },
  3529. "conflict": {
  3530. "symfony/finder": "<4.4"
  3531. },
  3532. "require-dev": {
  3533. "symfony/event-dispatcher": "^4.4|^5.0",
  3534. "symfony/finder": "^4.4|^5.0",
  3535. "symfony/messenger": "^4.4|^5.0",
  3536. "symfony/service-contracts": "^1.1|^2",
  3537. "symfony/yaml": "^4.4|^5.0"
  3538. },
  3539. "suggest": {
  3540. "symfony/yaml": "To use the yaml reference dumper"
  3541. },
  3542. "type": "library",
  3543. "autoload": {
  3544. "psr-4": {
  3545. "Symfony\\Component\\Config\\": ""
  3546. },
  3547. "exclude-from-classmap": [
  3548. "/Tests/"
  3549. ]
  3550. },
  3551. "notification-url": "https://packagist.org/downloads/",
  3552. "license": [
  3553. "MIT"
  3554. ],
  3555. "authors": [
  3556. {
  3557. "name": "Fabien Potencier",
  3558. "email": "fabien@symfony.com"
  3559. },
  3560. {
  3561. "name": "Symfony Community",
  3562. "homepage": "https://symfony.com/contributors"
  3563. }
  3564. ],
  3565. "description": "Symfony Config Component",
  3566. "homepage": "https://symfony.com",
  3567. "support": {
  3568. "source": "https://github.com/symfony/config/tree/v5.1.8"
  3569. },
  3570. "funding": [
  3571. {
  3572. "url": "https://symfony.com/sponsor",
  3573. "type": "custom"
  3574. },
  3575. {
  3576. "url": "https://github.com/fabpot",
  3577. "type": "github"
  3578. },
  3579. {
  3580. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3581. "type": "tidelift"
  3582. }
  3583. ],
  3584. "time": "2020-10-24T12:01:57+00:00"
  3585. },
  3586. {
  3587. "name": "symfony/console",
  3588. "version": "v5.1.8",
  3589. "source": {
  3590. "type": "git",
  3591. "url": "https://github.com/symfony/console.git",
  3592. "reference": "e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e"
  3593. },
  3594. "dist": {
  3595. "type": "zip",
  3596. "url": "https://api.github.com/repos/symfony/console/zipball/e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e",
  3597. "reference": "e0b2c29c0fa6a69089209bbe8fcff4df2a313d0e",
  3598. "shasum": ""
  3599. },
  3600. "require": {
  3601. "php": ">=7.2.5",
  3602. "symfony/polyfill-mbstring": "~1.0",
  3603. "symfony/polyfill-php73": "^1.8",
  3604. "symfony/polyfill-php80": "^1.15",
  3605. "symfony/service-contracts": "^1.1|^2",
  3606. "symfony/string": "^5.1"
  3607. },
  3608. "conflict": {
  3609. "symfony/dependency-injection": "<4.4",
  3610. "symfony/dotenv": "<5.1",
  3611. "symfony/event-dispatcher": "<4.4",
  3612. "symfony/lock": "<4.4",
  3613. "symfony/process": "<4.4"
  3614. },
  3615. "provide": {
  3616. "psr/log-implementation": "1.0"
  3617. },
  3618. "require-dev": {
  3619. "psr/log": "~1.0",
  3620. "symfony/config": "^4.4|^5.0",
  3621. "symfony/dependency-injection": "^4.4|^5.0",
  3622. "symfony/event-dispatcher": "^4.4|^5.0",
  3623. "symfony/lock": "^4.4|^5.0",
  3624. "symfony/process": "^4.4|^5.0",
  3625. "symfony/var-dumper": "^4.4|^5.0"
  3626. },
  3627. "suggest": {
  3628. "psr/log": "For using the console logger",
  3629. "symfony/event-dispatcher": "",
  3630. "symfony/lock": "",
  3631. "symfony/process": ""
  3632. },
  3633. "type": "library",
  3634. "autoload": {
  3635. "psr-4": {
  3636. "Symfony\\Component\\Console\\": ""
  3637. },
  3638. "exclude-from-classmap": [
  3639. "/Tests/"
  3640. ]
  3641. },
  3642. "notification-url": "https://packagist.org/downloads/",
  3643. "license": [
  3644. "MIT"
  3645. ],
  3646. "authors": [
  3647. {
  3648. "name": "Fabien Potencier",
  3649. "email": "fabien@symfony.com"
  3650. },
  3651. {
  3652. "name": "Symfony Community",
  3653. "homepage": "https://symfony.com/contributors"
  3654. }
  3655. ],
  3656. "description": "Symfony Console Component",
  3657. "homepage": "https://symfony.com",
  3658. "support": {
  3659. "source": "https://github.com/symfony/console/tree/v5.1.8"
  3660. },
  3661. "funding": [
  3662. {
  3663. "url": "https://symfony.com/sponsor",
  3664. "type": "custom"
  3665. },
  3666. {
  3667. "url": "https://github.com/fabpot",
  3668. "type": "github"
  3669. },
  3670. {
  3671. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3672. "type": "tidelift"
  3673. }
  3674. ],
  3675. "time": "2020-10-24T12:01:57+00:00"
  3676. },
  3677. {
  3678. "name": "symfony/dependency-injection",
  3679. "version": "v5.1.8",
  3680. "source": {
  3681. "type": "git",
  3682. "url": "https://github.com/symfony/dependency-injection.git",
  3683. "reference": "829ca6bceaf68036a123a13a979f3c89289eae78"
  3684. },
  3685. "dist": {
  3686. "type": "zip",
  3687. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/829ca6bceaf68036a123a13a979f3c89289eae78",
  3688. "reference": "829ca6bceaf68036a123a13a979f3c89289eae78",
  3689. "shasum": ""
  3690. },
  3691. "require": {
  3692. "php": ">=7.2.5",
  3693. "psr/container": "^1.0",
  3694. "symfony/deprecation-contracts": "^2.1",
  3695. "symfony/polyfill-php80": "^1.15",
  3696. "symfony/service-contracts": "^1.1.6|^2"
  3697. },
  3698. "conflict": {
  3699. "symfony/config": "<5.1",
  3700. "symfony/finder": "<4.4",
  3701. "symfony/proxy-manager-bridge": "<4.4",
  3702. "symfony/yaml": "<4.4"
  3703. },
  3704. "provide": {
  3705. "psr/container-implementation": "1.0",
  3706. "symfony/service-implementation": "1.0"
  3707. },
  3708. "require-dev": {
  3709. "symfony/config": "^5.1",
  3710. "symfony/expression-language": "^4.4|^5.0",
  3711. "symfony/yaml": "^4.4|^5.0"
  3712. },
  3713. "suggest": {
  3714. "symfony/config": "",
  3715. "symfony/expression-language": "For using expressions in service container configuration",
  3716. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  3717. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  3718. "symfony/yaml": ""
  3719. },
  3720. "type": "library",
  3721. "autoload": {
  3722. "psr-4": {
  3723. "Symfony\\Component\\DependencyInjection\\": ""
  3724. },
  3725. "exclude-from-classmap": [
  3726. "/Tests/"
  3727. ]
  3728. },
  3729. "notification-url": "https://packagist.org/downloads/",
  3730. "license": [
  3731. "MIT"
  3732. ],
  3733. "authors": [
  3734. {
  3735. "name": "Fabien Potencier",
  3736. "email": "fabien@symfony.com"
  3737. },
  3738. {
  3739. "name": "Symfony Community",
  3740. "homepage": "https://symfony.com/contributors"
  3741. }
  3742. ],
  3743. "description": "Symfony DependencyInjection Component",
  3744. "homepage": "https://symfony.com",
  3745. "support": {
  3746. "source": "https://github.com/symfony/dependency-injection/tree/v5.1.8"
  3747. },
  3748. "funding": [
  3749. {
  3750. "url": "https://symfony.com/sponsor",
  3751. "type": "custom"
  3752. },
  3753. {
  3754. "url": "https://github.com/fabpot",
  3755. "type": "github"
  3756. },
  3757. {
  3758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3759. "type": "tidelift"
  3760. }
  3761. ],
  3762. "time": "2020-10-27T10:11:13+00:00"
  3763. },
  3764. {
  3765. "name": "symfony/deprecation-contracts",
  3766. "version": "v2.2.0",
  3767. "source": {
  3768. "type": "git",
  3769. "url": "https://github.com/symfony/deprecation-contracts.git",
  3770. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  3771. },
  3772. "dist": {
  3773. "type": "zip",
  3774. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  3775. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  3776. "shasum": ""
  3777. },
  3778. "require": {
  3779. "php": ">=7.1"
  3780. },
  3781. "type": "library",
  3782. "extra": {
  3783. "branch-alias": {
  3784. "dev-master": "2.2-dev"
  3785. },
  3786. "thanks": {
  3787. "name": "symfony/contracts",
  3788. "url": "https://github.com/symfony/contracts"
  3789. }
  3790. },
  3791. "autoload": {
  3792. "files": [
  3793. "function.php"
  3794. ]
  3795. },
  3796. "notification-url": "https://packagist.org/downloads/",
  3797. "license": [
  3798. "MIT"
  3799. ],
  3800. "authors": [
  3801. {
  3802. "name": "Nicolas Grekas",
  3803. "email": "p@tchwork.com"
  3804. },
  3805. {
  3806. "name": "Symfony Community",
  3807. "homepage": "https://symfony.com/contributors"
  3808. }
  3809. ],
  3810. "description": "A generic function and convention to trigger deprecation notices",
  3811. "homepage": "https://symfony.com",
  3812. "support": {
  3813. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  3814. },
  3815. "funding": [
  3816. {
  3817. "url": "https://symfony.com/sponsor",
  3818. "type": "custom"
  3819. },
  3820. {
  3821. "url": "https://github.com/fabpot",
  3822. "type": "github"
  3823. },
  3824. {
  3825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3826. "type": "tidelift"
  3827. }
  3828. ],
  3829. "time": "2020-09-07T11:33:47+00:00"
  3830. },
  3831. {
  3832. "name": "symfony/doctrine-bridge",
  3833. "version": "v5.1.8",
  3834. "source": {
  3835. "type": "git",
  3836. "url": "https://github.com/symfony/doctrine-bridge.git",
  3837. "reference": "d01f0ec8b1225bd955d079f007c25191d93867d0"
  3838. },
  3839. "dist": {
  3840. "type": "zip",
  3841. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/d01f0ec8b1225bd955d079f007c25191d93867d0",
  3842. "reference": "d01f0ec8b1225bd955d079f007c25191d93867d0",
  3843. "shasum": ""
  3844. },
  3845. "require": {
  3846. "doctrine/event-manager": "~1.0",
  3847. "doctrine/persistence": "^1.3|^2",
  3848. "php": ">=7.2.5",
  3849. "symfony/polyfill-ctype": "~1.8",
  3850. "symfony/polyfill-mbstring": "~1.0",
  3851. "symfony/polyfill-php80": "^1.15",
  3852. "symfony/service-contracts": "^1.1|^2"
  3853. },
  3854. "conflict": {
  3855. "phpunit/phpunit": "<5.4.3",
  3856. "symfony/dependency-injection": "<4.4",
  3857. "symfony/form": "<5.1",
  3858. "symfony/http-kernel": "<5",
  3859. "symfony/messenger": "<4.4",
  3860. "symfony/property-info": "<5",
  3861. "symfony/security-bundle": "<5",
  3862. "symfony/security-core": "<5",
  3863. "symfony/validator": "<5.0.2"
  3864. },
  3865. "require-dev": {
  3866. "composer/package-versions-deprecated": "^1.8",
  3867. "doctrine/annotations": "~1.7",
  3868. "doctrine/cache": "~1.6",
  3869. "doctrine/collections": "~1.0",
  3870. "doctrine/data-fixtures": "^1.1",
  3871. "doctrine/dbal": "~2.4|^3.0",
  3872. "doctrine/orm": "^2.6.3",
  3873. "doctrine/reflection": "~1.0",
  3874. "symfony/cache": "^5.1",
  3875. "symfony/config": "^4.4|^5.0",
  3876. "symfony/dependency-injection": "^4.4|^5.0",
  3877. "symfony/doctrine-messenger": "^5.1",
  3878. "symfony/expression-language": "^4.4|^5.0",
  3879. "symfony/form": "^5.1.3",
  3880. "symfony/http-kernel": "^5.0",
  3881. "symfony/messenger": "^4.4|^5.0",
  3882. "symfony/property-access": "^4.4|^5.0",
  3883. "symfony/property-info": "^5.0",
  3884. "symfony/proxy-manager-bridge": "^4.4|^5.0",
  3885. "symfony/security-core": "^5.0",
  3886. "symfony/stopwatch": "^4.4|^5.0",
  3887. "symfony/translation": "^4.4|^5.0",
  3888. "symfony/validator": "^5.0.2",
  3889. "symfony/var-dumper": "^4.4|^5.0"
  3890. },
  3891. "suggest": {
  3892. "doctrine/data-fixtures": "",
  3893. "doctrine/dbal": "",
  3894. "doctrine/orm": "",
  3895. "symfony/form": "",
  3896. "symfony/property-info": "",
  3897. "symfony/validator": ""
  3898. },
  3899. "type": "symfony-bridge",
  3900. "autoload": {
  3901. "psr-4": {
  3902. "Symfony\\Bridge\\Doctrine\\": ""
  3903. },
  3904. "exclude-from-classmap": [
  3905. "/Tests/"
  3906. ]
  3907. },
  3908. "notification-url": "https://packagist.org/downloads/",
  3909. "license": [
  3910. "MIT"
  3911. ],
  3912. "authors": [
  3913. {
  3914. "name": "Fabien Potencier",
  3915. "email": "fabien@symfony.com"
  3916. },
  3917. {
  3918. "name": "Symfony Community",
  3919. "homepage": "https://symfony.com/contributors"
  3920. }
  3921. ],
  3922. "description": "Symfony Doctrine Bridge",
  3923. "homepage": "https://symfony.com",
  3924. "support": {
  3925. "source": "https://github.com/symfony/doctrine-bridge/tree/v5.1.8"
  3926. },
  3927. "funding": [
  3928. {
  3929. "url": "https://symfony.com/sponsor",
  3930. "type": "custom"
  3931. },
  3932. {
  3933. "url": "https://github.com/fabpot",
  3934. "type": "github"
  3935. },
  3936. {
  3937. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3938. "type": "tidelift"
  3939. }
  3940. ],
  3941. "time": "2020-10-24T12:01:57+00:00"
  3942. },
  3943. {
  3944. "name": "symfony/doctrine-messenger",
  3945. "version": "v5.1.8",
  3946. "source": {
  3947. "type": "git",
  3948. "url": "https://github.com/symfony/doctrine-messenger.git",
  3949. "reference": "dbff2dc94784923d91be06bf2296a9fdeb7d329d"
  3950. },
  3951. "dist": {
  3952. "type": "zip",
  3953. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/dbff2dc94784923d91be06bf2296a9fdeb7d329d",
  3954. "reference": "dbff2dc94784923d91be06bf2296a9fdeb7d329d",
  3955. "shasum": ""
  3956. },
  3957. "require": {
  3958. "php": ">=7.2.5",
  3959. "symfony/messenger": "^5.1",
  3960. "symfony/service-contracts": "^1.1|^2"
  3961. },
  3962. "conflict": {
  3963. "doctrine/persistence": "<1.3"
  3964. },
  3965. "require-dev": {
  3966. "doctrine/dbal": "^2.6|^3.0",
  3967. "doctrine/persistence": "^1.3|^2",
  3968. "symfony/property-access": "^4.4|^5.0",
  3969. "symfony/serializer": "^4.4|^5.0"
  3970. },
  3971. "type": "symfony-bridge",
  3972. "autoload": {
  3973. "psr-4": {
  3974. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  3975. },
  3976. "exclude-from-classmap": [
  3977. "/Tests/"
  3978. ]
  3979. },
  3980. "notification-url": "https://packagist.org/downloads/",
  3981. "license": [
  3982. "MIT"
  3983. ],
  3984. "authors": [
  3985. {
  3986. "name": "Fabien Potencier",
  3987. "email": "fabien@symfony.com"
  3988. },
  3989. {
  3990. "name": "Symfony Community",
  3991. "homepage": "https://symfony.com/contributors"
  3992. }
  3993. ],
  3994. "description": "Symfony Doctrine Messenger Bridge",
  3995. "homepage": "https://symfony.com",
  3996. "support": {
  3997. "source": "https://github.com/symfony/doctrine-messenger/tree/v5.1.8"
  3998. },
  3999. "funding": [
  4000. {
  4001. "url": "https://symfony.com/sponsor",
  4002. "type": "custom"
  4003. },
  4004. {
  4005. "url": "https://github.com/fabpot",
  4006. "type": "github"
  4007. },
  4008. {
  4009. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4010. "type": "tidelift"
  4011. }
  4012. ],
  4013. "time": "2020-10-24T12:01:57+00:00"
  4014. },
  4015. {
  4016. "name": "symfony/dotenv",
  4017. "version": "v5.1.8",
  4018. "source": {
  4019. "type": "git",
  4020. "url": "https://github.com/symfony/dotenv.git",
  4021. "reference": "29ac2a3e538da61780a769827c716738ce7accbb"
  4022. },
  4023. "dist": {
  4024. "type": "zip",
  4025. "url": "https://api.github.com/repos/symfony/dotenv/zipball/29ac2a3e538da61780a769827c716738ce7accbb",
  4026. "reference": "29ac2a3e538da61780a769827c716738ce7accbb",
  4027. "shasum": ""
  4028. },
  4029. "require": {
  4030. "php": ">=7.2.5",
  4031. "symfony/deprecation-contracts": "^2.1"
  4032. },
  4033. "require-dev": {
  4034. "symfony/process": "^4.4|^5.0"
  4035. },
  4036. "type": "library",
  4037. "autoload": {
  4038. "psr-4": {
  4039. "Symfony\\Component\\Dotenv\\": ""
  4040. },
  4041. "exclude-from-classmap": [
  4042. "/Tests/"
  4043. ]
  4044. },
  4045. "notification-url": "https://packagist.org/downloads/",
  4046. "license": [
  4047. "MIT"
  4048. ],
  4049. "authors": [
  4050. {
  4051. "name": "Fabien Potencier",
  4052. "email": "fabien@symfony.com"
  4053. },
  4054. {
  4055. "name": "Symfony Community",
  4056. "homepage": "https://symfony.com/contributors"
  4057. }
  4058. ],
  4059. "description": "Registers environment variables from a .env file",
  4060. "homepage": "https://symfony.com",
  4061. "keywords": [
  4062. "dotenv",
  4063. "env",
  4064. "environment"
  4065. ],
  4066. "support": {
  4067. "source": "https://github.com/symfony/dotenv/tree/v5.1.8"
  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": "2020-10-24T12:01:57+00:00"
  4084. },
  4085. {
  4086. "name": "symfony/error-handler",
  4087. "version": "v5.1.8",
  4088. "source": {
  4089. "type": "git",
  4090. "url": "https://github.com/symfony/error-handler.git",
  4091. "reference": "a154f2b12fd1ec708559ba73ed58bd1304e55718"
  4092. },
  4093. "dist": {
  4094. "type": "zip",
  4095. "url": "https://api.github.com/repos/symfony/error-handler/zipball/a154f2b12fd1ec708559ba73ed58bd1304e55718",
  4096. "reference": "a154f2b12fd1ec708559ba73ed58bd1304e55718",
  4097. "shasum": ""
  4098. },
  4099. "require": {
  4100. "php": ">=7.2.5",
  4101. "psr/log": "^1.0",
  4102. "symfony/polyfill-php80": "^1.15",
  4103. "symfony/var-dumper": "^4.4|^5.0"
  4104. },
  4105. "require-dev": {
  4106. "symfony/deprecation-contracts": "^2.1",
  4107. "symfony/http-kernel": "^4.4|^5.0",
  4108. "symfony/serializer": "^4.4|^5.0"
  4109. },
  4110. "type": "library",
  4111. "autoload": {
  4112. "psr-4": {
  4113. "Symfony\\Component\\ErrorHandler\\": ""
  4114. },
  4115. "exclude-from-classmap": [
  4116. "/Tests/"
  4117. ]
  4118. },
  4119. "notification-url": "https://packagist.org/downloads/",
  4120. "license": [
  4121. "MIT"
  4122. ],
  4123. "authors": [
  4124. {
  4125. "name": "Fabien Potencier",
  4126. "email": "fabien@symfony.com"
  4127. },
  4128. {
  4129. "name": "Symfony Community",
  4130. "homepage": "https://symfony.com/contributors"
  4131. }
  4132. ],
  4133. "description": "Symfony ErrorHandler Component",
  4134. "homepage": "https://symfony.com",
  4135. "support": {
  4136. "source": "https://github.com/symfony/error-handler/tree/v5.1.8"
  4137. },
  4138. "funding": [
  4139. {
  4140. "url": "https://symfony.com/sponsor",
  4141. "type": "custom"
  4142. },
  4143. {
  4144. "url": "https://github.com/fabpot",
  4145. "type": "github"
  4146. },
  4147. {
  4148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4149. "type": "tidelift"
  4150. }
  4151. ],
  4152. "time": "2020-10-24T12:01:57+00:00"
  4153. },
  4154. {
  4155. "name": "symfony/event-dispatcher",
  4156. "version": "v5.1.8",
  4157. "source": {
  4158. "type": "git",
  4159. "url": "https://github.com/symfony/event-dispatcher.git",
  4160. "reference": "26f4edae48c913fc183a3da0553fe63bdfbd361a"
  4161. },
  4162. "dist": {
  4163. "type": "zip",
  4164. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/26f4edae48c913fc183a3da0553fe63bdfbd361a",
  4165. "reference": "26f4edae48c913fc183a3da0553fe63bdfbd361a",
  4166. "shasum": ""
  4167. },
  4168. "require": {
  4169. "php": ">=7.2.5",
  4170. "symfony/deprecation-contracts": "^2.1",
  4171. "symfony/event-dispatcher-contracts": "^2",
  4172. "symfony/polyfill-php80": "^1.15"
  4173. },
  4174. "conflict": {
  4175. "symfony/dependency-injection": "<4.4"
  4176. },
  4177. "provide": {
  4178. "psr/event-dispatcher-implementation": "1.0",
  4179. "symfony/event-dispatcher-implementation": "2.0"
  4180. },
  4181. "require-dev": {
  4182. "psr/log": "~1.0",
  4183. "symfony/config": "^4.4|^5.0",
  4184. "symfony/dependency-injection": "^4.4|^5.0",
  4185. "symfony/error-handler": "^4.4|^5.0",
  4186. "symfony/expression-language": "^4.4|^5.0",
  4187. "symfony/http-foundation": "^4.4|^5.0",
  4188. "symfony/service-contracts": "^1.1|^2",
  4189. "symfony/stopwatch": "^4.4|^5.0"
  4190. },
  4191. "suggest": {
  4192. "symfony/dependency-injection": "",
  4193. "symfony/http-kernel": ""
  4194. },
  4195. "type": "library",
  4196. "autoload": {
  4197. "psr-4": {
  4198. "Symfony\\Component\\EventDispatcher\\": ""
  4199. },
  4200. "exclude-from-classmap": [
  4201. "/Tests/"
  4202. ]
  4203. },
  4204. "notification-url": "https://packagist.org/downloads/",
  4205. "license": [
  4206. "MIT"
  4207. ],
  4208. "authors": [
  4209. {
  4210. "name": "Fabien Potencier",
  4211. "email": "fabien@symfony.com"
  4212. },
  4213. {
  4214. "name": "Symfony Community",
  4215. "homepage": "https://symfony.com/contributors"
  4216. }
  4217. ],
  4218. "description": "Symfony EventDispatcher Component",
  4219. "homepage": "https://symfony.com",
  4220. "support": {
  4221. "source": "https://github.com/symfony/event-dispatcher/tree/v5.1.8"
  4222. },
  4223. "funding": [
  4224. {
  4225. "url": "https://symfony.com/sponsor",
  4226. "type": "custom"
  4227. },
  4228. {
  4229. "url": "https://github.com/fabpot",
  4230. "type": "github"
  4231. },
  4232. {
  4233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4234. "type": "tidelift"
  4235. }
  4236. ],
  4237. "time": "2020-10-24T12:01:57+00:00"
  4238. },
  4239. {
  4240. "name": "symfony/event-dispatcher-contracts",
  4241. "version": "v2.2.0",
  4242. "source": {
  4243. "type": "git",
  4244. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4245. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4246. },
  4247. "dist": {
  4248. "type": "zip",
  4249. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4250. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4251. "shasum": ""
  4252. },
  4253. "require": {
  4254. "php": ">=7.2.5",
  4255. "psr/event-dispatcher": "^1"
  4256. },
  4257. "suggest": {
  4258. "symfony/event-dispatcher-implementation": ""
  4259. },
  4260. "type": "library",
  4261. "extra": {
  4262. "branch-alias": {
  4263. "dev-master": "2.2-dev"
  4264. },
  4265. "thanks": {
  4266. "name": "symfony/contracts",
  4267. "url": "https://github.com/symfony/contracts"
  4268. }
  4269. },
  4270. "autoload": {
  4271. "psr-4": {
  4272. "Symfony\\Contracts\\EventDispatcher\\": ""
  4273. }
  4274. },
  4275. "notification-url": "https://packagist.org/downloads/",
  4276. "license": [
  4277. "MIT"
  4278. ],
  4279. "authors": [
  4280. {
  4281. "name": "Nicolas Grekas",
  4282. "email": "p@tchwork.com"
  4283. },
  4284. {
  4285. "name": "Symfony Community",
  4286. "homepage": "https://symfony.com/contributors"
  4287. }
  4288. ],
  4289. "description": "Generic abstractions related to dispatching event",
  4290. "homepage": "https://symfony.com",
  4291. "keywords": [
  4292. "abstractions",
  4293. "contracts",
  4294. "decoupling",
  4295. "interfaces",
  4296. "interoperability",
  4297. "standards"
  4298. ],
  4299. "support": {
  4300. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  4301. },
  4302. "funding": [
  4303. {
  4304. "url": "https://symfony.com/sponsor",
  4305. "type": "custom"
  4306. },
  4307. {
  4308. "url": "https://github.com/fabpot",
  4309. "type": "github"
  4310. },
  4311. {
  4312. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4313. "type": "tidelift"
  4314. }
  4315. ],
  4316. "time": "2020-09-07T11:33:47+00:00"
  4317. },
  4318. {
  4319. "name": "symfony/expression-language",
  4320. "version": "v5.1.8",
  4321. "source": {
  4322. "type": "git",
  4323. "url": "https://github.com/symfony/expression-language.git",
  4324. "reference": "2c3f5e7cf4495d9033cc2d212da6ccde0d22b067"
  4325. },
  4326. "dist": {
  4327. "type": "zip",
  4328. "url": "https://api.github.com/repos/symfony/expression-language/zipball/2c3f5e7cf4495d9033cc2d212da6ccde0d22b067",
  4329. "reference": "2c3f5e7cf4495d9033cc2d212da6ccde0d22b067",
  4330. "shasum": ""
  4331. },
  4332. "require": {
  4333. "php": ">=7.2.5",
  4334. "symfony/cache": "^4.4|^5.0",
  4335. "symfony/polyfill-php80": "^1.15",
  4336. "symfony/service-contracts": "^1.1|^2"
  4337. },
  4338. "type": "library",
  4339. "autoload": {
  4340. "psr-4": {
  4341. "Symfony\\Component\\ExpressionLanguage\\": ""
  4342. },
  4343. "exclude-from-classmap": [
  4344. "/Tests/"
  4345. ]
  4346. },
  4347. "notification-url": "https://packagist.org/downloads/",
  4348. "license": [
  4349. "MIT"
  4350. ],
  4351. "authors": [
  4352. {
  4353. "name": "Fabien Potencier",
  4354. "email": "fabien@symfony.com"
  4355. },
  4356. {
  4357. "name": "Symfony Community",
  4358. "homepage": "https://symfony.com/contributors"
  4359. }
  4360. ],
  4361. "description": "Symfony ExpressionLanguage Component",
  4362. "homepage": "https://symfony.com",
  4363. "support": {
  4364. "source": "https://github.com/symfony/expression-language/tree/v5.1.8"
  4365. },
  4366. "funding": [
  4367. {
  4368. "url": "https://symfony.com/sponsor",
  4369. "type": "custom"
  4370. },
  4371. {
  4372. "url": "https://github.com/fabpot",
  4373. "type": "github"
  4374. },
  4375. {
  4376. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4377. "type": "tidelift"
  4378. }
  4379. ],
  4380. "time": "2020-10-24T12:01:57+00:00"
  4381. },
  4382. {
  4383. "name": "symfony/filesystem",
  4384. "version": "v5.1.8",
  4385. "source": {
  4386. "type": "git",
  4387. "url": "https://github.com/symfony/filesystem.git",
  4388. "reference": "df08650ea7aee2d925380069c131a66124d79177"
  4389. },
  4390. "dist": {
  4391. "type": "zip",
  4392. "url": "https://api.github.com/repos/symfony/filesystem/zipball/df08650ea7aee2d925380069c131a66124d79177",
  4393. "reference": "df08650ea7aee2d925380069c131a66124d79177",
  4394. "shasum": ""
  4395. },
  4396. "require": {
  4397. "php": ">=7.2.5",
  4398. "symfony/polyfill-ctype": "~1.8"
  4399. },
  4400. "type": "library",
  4401. "autoload": {
  4402. "psr-4": {
  4403. "Symfony\\Component\\Filesystem\\": ""
  4404. },
  4405. "exclude-from-classmap": [
  4406. "/Tests/"
  4407. ]
  4408. },
  4409. "notification-url": "https://packagist.org/downloads/",
  4410. "license": [
  4411. "MIT"
  4412. ],
  4413. "authors": [
  4414. {
  4415. "name": "Fabien Potencier",
  4416. "email": "fabien@symfony.com"
  4417. },
  4418. {
  4419. "name": "Symfony Community",
  4420. "homepage": "https://symfony.com/contributors"
  4421. }
  4422. ],
  4423. "description": "Symfony Filesystem Component",
  4424. "homepage": "https://symfony.com",
  4425. "support": {
  4426. "source": "https://github.com/symfony/filesystem/tree/v5.1.8"
  4427. },
  4428. "funding": [
  4429. {
  4430. "url": "https://symfony.com/sponsor",
  4431. "type": "custom"
  4432. },
  4433. {
  4434. "url": "https://github.com/fabpot",
  4435. "type": "github"
  4436. },
  4437. {
  4438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4439. "type": "tidelift"
  4440. }
  4441. ],
  4442. "time": "2020-10-24T12:01:57+00:00"
  4443. },
  4444. {
  4445. "name": "symfony/finder",
  4446. "version": "v5.1.8",
  4447. "source": {
  4448. "type": "git",
  4449. "url": "https://github.com/symfony/finder.git",
  4450. "reference": "e70eb5a69c2ff61ea135a13d2266e8914a67b3a0"
  4451. },
  4452. "dist": {
  4453. "type": "zip",
  4454. "url": "https://api.github.com/repos/symfony/finder/zipball/e70eb5a69c2ff61ea135a13d2266e8914a67b3a0",
  4455. "reference": "e70eb5a69c2ff61ea135a13d2266e8914a67b3a0",
  4456. "shasum": ""
  4457. },
  4458. "require": {
  4459. "php": ">=7.2.5"
  4460. },
  4461. "type": "library",
  4462. "autoload": {
  4463. "psr-4": {
  4464. "Symfony\\Component\\Finder\\": ""
  4465. },
  4466. "exclude-from-classmap": [
  4467. "/Tests/"
  4468. ]
  4469. },
  4470. "notification-url": "https://packagist.org/downloads/",
  4471. "license": [
  4472. "MIT"
  4473. ],
  4474. "authors": [
  4475. {
  4476. "name": "Fabien Potencier",
  4477. "email": "fabien@symfony.com"
  4478. },
  4479. {
  4480. "name": "Symfony Community",
  4481. "homepage": "https://symfony.com/contributors"
  4482. }
  4483. ],
  4484. "description": "Symfony Finder Component",
  4485. "homepage": "https://symfony.com",
  4486. "support": {
  4487. "source": "https://github.com/symfony/finder/tree/v5.1.8"
  4488. },
  4489. "funding": [
  4490. {
  4491. "url": "https://symfony.com/sponsor",
  4492. "type": "custom"
  4493. },
  4494. {
  4495. "url": "https://github.com/fabpot",
  4496. "type": "github"
  4497. },
  4498. {
  4499. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4500. "type": "tidelift"
  4501. }
  4502. ],
  4503. "time": "2020-10-24T12:01:57+00:00"
  4504. },
  4505. {
  4506. "name": "symfony/flex",
  4507. "version": "v1.10.0",
  4508. "source": {
  4509. "type": "git",
  4510. "url": "https://github.com/symfony/flex.git",
  4511. "reference": "e38520236bdc911c2f219634b485bc328746e980"
  4512. },
  4513. "dist": {
  4514. "type": "zip",
  4515. "url": "https://api.github.com/repos/symfony/flex/zipball/e38520236bdc911c2f219634b485bc328746e980",
  4516. "reference": "e38520236bdc911c2f219634b485bc328746e980",
  4517. "shasum": ""
  4518. },
  4519. "require": {
  4520. "composer-plugin-api": "^1.0|^2.0",
  4521. "php": ">=7.1"
  4522. },
  4523. "require-dev": {
  4524. "composer/composer": "^1.0.2|^2.0",
  4525. "symfony/dotenv": "^4.4|^5.0",
  4526. "symfony/phpunit-bridge": "^4.4|^5.0",
  4527. "symfony/process": "^3.4|^4.4|^5.0"
  4528. },
  4529. "type": "composer-plugin",
  4530. "extra": {
  4531. "branch-alias": {
  4532. "dev-main": "1.9-dev"
  4533. },
  4534. "class": "Symfony\\Flex\\Flex"
  4535. },
  4536. "autoload": {
  4537. "psr-4": {
  4538. "Symfony\\Flex\\": "src"
  4539. }
  4540. },
  4541. "notification-url": "https://packagist.org/downloads/",
  4542. "license": [
  4543. "MIT"
  4544. ],
  4545. "authors": [
  4546. {
  4547. "name": "Fabien Potencier",
  4548. "email": "fabien.potencier@gmail.com"
  4549. }
  4550. ],
  4551. "description": "Composer plugin for Symfony",
  4552. "support": {
  4553. "issues": "https://github.com/symfony/flex/issues",
  4554. "source": "https://github.com/symfony/flex/tree/v1.10.0"
  4555. },
  4556. "funding": [
  4557. {
  4558. "url": "https://symfony.com/sponsor",
  4559. "type": "custom"
  4560. },
  4561. {
  4562. "url": "https://github.com/fabpot",
  4563. "type": "github"
  4564. },
  4565. {
  4566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4567. "type": "tidelift"
  4568. }
  4569. ],
  4570. "time": "2020-11-05T10:56:45+00:00"
  4571. },
  4572. {
  4573. "name": "symfony/form",
  4574. "version": "v5.1.8",
  4575. "source": {
  4576. "type": "git",
  4577. "url": "https://github.com/symfony/form.git",
  4578. "reference": "3f61496220b9f8672ede9b9acfb87a06c0c752f2"
  4579. },
  4580. "dist": {
  4581. "type": "zip",
  4582. "url": "https://api.github.com/repos/symfony/form/zipball/3f61496220b9f8672ede9b9acfb87a06c0c752f2",
  4583. "reference": "3f61496220b9f8672ede9b9acfb87a06c0c752f2",
  4584. "shasum": ""
  4585. },
  4586. "require": {
  4587. "php": ">=7.2.5",
  4588. "symfony/deprecation-contracts": "^2.1",
  4589. "symfony/event-dispatcher": "^4.4|^5.0",
  4590. "symfony/intl": "^4.4|^5.0",
  4591. "symfony/options-resolver": "^5.1",
  4592. "symfony/polyfill-ctype": "~1.8",
  4593. "symfony/polyfill-mbstring": "~1.0",
  4594. "symfony/polyfill-php80": "^1.15",
  4595. "symfony/property-access": "^5.0.8",
  4596. "symfony/service-contracts": "^1.1|^2"
  4597. },
  4598. "conflict": {
  4599. "phpunit/phpunit": "<5.4.3",
  4600. "symfony/console": "<4.4",
  4601. "symfony/dependency-injection": "<4.4",
  4602. "symfony/doctrine-bridge": "<4.4",
  4603. "symfony/error-handler": "<4.4.5",
  4604. "symfony/framework-bundle": "<4.4",
  4605. "symfony/http-kernel": "<4.4",
  4606. "symfony/intl": "<4.4",
  4607. "symfony/translation": "<4.4",
  4608. "symfony/translation-contracts": "<1.1.7",
  4609. "symfony/twig-bridge": "<4.4"
  4610. },
  4611. "require-dev": {
  4612. "doctrine/collections": "~1.0",
  4613. "symfony/config": "^4.4|^5.0",
  4614. "symfony/console": "^4.4|^5.0",
  4615. "symfony/dependency-injection": "^4.4|^5.0",
  4616. "symfony/expression-language": "^4.4|^5.0",
  4617. "symfony/http-foundation": "^4.4|^5.0",
  4618. "symfony/http-kernel": "^4.4|^5.0",
  4619. "symfony/security-csrf": "^4.4|^5.0",
  4620. "symfony/translation": "^4.4|^5.0",
  4621. "symfony/validator": "^4.4.12|^5.1.6",
  4622. "symfony/var-dumper": "^4.4|^5.0"
  4623. },
  4624. "suggest": {
  4625. "symfony/security-csrf": "For protecting forms against CSRF attacks.",
  4626. "symfony/twig-bridge": "For templating with Twig.",
  4627. "symfony/validator": "For form validation."
  4628. },
  4629. "type": "library",
  4630. "autoload": {
  4631. "psr-4": {
  4632. "Symfony\\Component\\Form\\": ""
  4633. },
  4634. "exclude-from-classmap": [
  4635. "/Tests/"
  4636. ]
  4637. },
  4638. "notification-url": "https://packagist.org/downloads/",
  4639. "license": [
  4640. "MIT"
  4641. ],
  4642. "authors": [
  4643. {
  4644. "name": "Fabien Potencier",
  4645. "email": "fabien@symfony.com"
  4646. },
  4647. {
  4648. "name": "Symfony Community",
  4649. "homepage": "https://symfony.com/contributors"
  4650. }
  4651. ],
  4652. "description": "Symfony Form Component",
  4653. "homepage": "https://symfony.com",
  4654. "support": {
  4655. "source": "https://github.com/symfony/form/tree/v5.1.8"
  4656. },
  4657. "funding": [
  4658. {
  4659. "url": "https://symfony.com/sponsor",
  4660. "type": "custom"
  4661. },
  4662. {
  4663. "url": "https://github.com/fabpot",
  4664. "type": "github"
  4665. },
  4666. {
  4667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4668. "type": "tidelift"
  4669. }
  4670. ],
  4671. "time": "2020-10-28T05:25:38+00:00"
  4672. },
  4673. {
  4674. "name": "symfony/framework-bundle",
  4675. "version": "v5.1.8",
  4676. "source": {
  4677. "type": "git",
  4678. "url": "https://github.com/symfony/framework-bundle.git",
  4679. "reference": "b5f961afc6cd1923c49cac0993c65bf5eee27d86"
  4680. },
  4681. "dist": {
  4682. "type": "zip",
  4683. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/b5f961afc6cd1923c49cac0993c65bf5eee27d86",
  4684. "reference": "b5f961afc6cd1923c49cac0993c65bf5eee27d86",
  4685. "shasum": ""
  4686. },
  4687. "require": {
  4688. "ext-xml": "*",
  4689. "php": ">=7.2.5",
  4690. "symfony/cache": "^4.4|^5.0",
  4691. "symfony/config": "^5.0",
  4692. "symfony/dependency-injection": "^5.1",
  4693. "symfony/error-handler": "^4.4.1|^5.0.1",
  4694. "symfony/event-dispatcher": "^5.1",
  4695. "symfony/filesystem": "^4.4|^5.0",
  4696. "symfony/finder": "^4.4|^5.0",
  4697. "symfony/http-foundation": "^4.4|^5.0",
  4698. "symfony/http-kernel": "^5.0",
  4699. "symfony/polyfill-mbstring": "~1.0",
  4700. "symfony/polyfill-php80": "^1.15",
  4701. "symfony/routing": "^5.1"
  4702. },
  4703. "conflict": {
  4704. "doctrine/persistence": "<1.3",
  4705. "phpdocumentor/reflection-docblock": "<3.0",
  4706. "phpdocumentor/type-resolver": "<0.2.1",
  4707. "phpunit/phpunit": "<5.4.3",
  4708. "symfony/asset": "<5.1",
  4709. "symfony/browser-kit": "<4.4",
  4710. "symfony/console": "<4.4",
  4711. "symfony/dom-crawler": "<4.4",
  4712. "symfony/dotenv": "<5.1",
  4713. "symfony/form": "<4.4",
  4714. "symfony/http-client": "<4.4",
  4715. "symfony/lock": "<4.4",
  4716. "symfony/mailer": "<4.4",
  4717. "symfony/messenger": "<4.4",
  4718. "symfony/mime": "<4.4",
  4719. "symfony/property-info": "<4.4",
  4720. "symfony/serializer": "<4.4",
  4721. "symfony/stopwatch": "<4.4",
  4722. "symfony/translation": "<5.0",
  4723. "symfony/twig-bridge": "<4.4",
  4724. "symfony/twig-bundle": "<4.4",
  4725. "symfony/validator": "<4.4",
  4726. "symfony/web-profiler-bundle": "<4.4",
  4727. "symfony/workflow": "<4.4"
  4728. },
  4729. "require-dev": {
  4730. "doctrine/annotations": "~1.7",
  4731. "doctrine/cache": "~1.0",
  4732. "paragonie/sodium_compat": "^1.8",
  4733. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  4734. "symfony/asset": "^5.1",
  4735. "symfony/browser-kit": "^4.4|^5.0",
  4736. "symfony/console": "^4.4|^5.0",
  4737. "symfony/css-selector": "^4.4|^5.0",
  4738. "symfony/dom-crawler": "^4.4|^5.0",
  4739. "symfony/dotenv": "^5.1",
  4740. "symfony/expression-language": "^4.4|^5.0",
  4741. "symfony/form": "^4.4|^5.0",
  4742. "symfony/http-client": "^4.4|^5.0",
  4743. "symfony/lock": "^4.4|^5.0",
  4744. "symfony/mailer": "^4.4|^5.0",
  4745. "symfony/messenger": "^4.4|^5.0",
  4746. "symfony/mime": "^4.4|^5.0",
  4747. "symfony/polyfill-intl-icu": "~1.0",
  4748. "symfony/process": "^4.4|^5.0",
  4749. "symfony/property-info": "^4.4|^5.0",
  4750. "symfony/security-bundle": "^5.1",
  4751. "symfony/security-csrf": "^4.4|^5.0",
  4752. "symfony/security-http": "^4.4|^5.0",
  4753. "symfony/serializer": "^4.4|^5.0",
  4754. "symfony/stopwatch": "^4.4|^5.0",
  4755. "symfony/string": "^5.0",
  4756. "symfony/translation": "^5.0",
  4757. "symfony/twig-bundle": "^4.4|^5.0",
  4758. "symfony/validator": "^4.4|^5.0",
  4759. "symfony/web-link": "^4.4|^5.0",
  4760. "symfony/workflow": "^4.4|^5.0",
  4761. "symfony/yaml": "^4.4|^5.0",
  4762. "twig/twig": "^2.10|^3.0"
  4763. },
  4764. "suggest": {
  4765. "ext-apcu": "For best performance of the system caches",
  4766. "symfony/console": "For using the console commands",
  4767. "symfony/form": "For using forms",
  4768. "symfony/property-info": "For using the property_info service",
  4769. "symfony/serializer": "For using the serializer service",
  4770. "symfony/validator": "For using validation",
  4771. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  4772. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  4773. },
  4774. "type": "symfony-bundle",
  4775. "autoload": {
  4776. "psr-4": {
  4777. "Symfony\\Bundle\\FrameworkBundle\\": ""
  4778. },
  4779. "exclude-from-classmap": [
  4780. "/Tests/"
  4781. ]
  4782. },
  4783. "notification-url": "https://packagist.org/downloads/",
  4784. "license": [
  4785. "MIT"
  4786. ],
  4787. "authors": [
  4788. {
  4789. "name": "Fabien Potencier",
  4790. "email": "fabien@symfony.com"
  4791. },
  4792. {
  4793. "name": "Symfony Community",
  4794. "homepage": "https://symfony.com/contributors"
  4795. }
  4796. ],
  4797. "description": "Symfony FrameworkBundle",
  4798. "homepage": "https://symfony.com",
  4799. "support": {
  4800. "source": "https://github.com/symfony/framework-bundle/tree/v5.1.8"
  4801. },
  4802. "funding": [
  4803. {
  4804. "url": "https://symfony.com/sponsor",
  4805. "type": "custom"
  4806. },
  4807. {
  4808. "url": "https://github.com/fabpot",
  4809. "type": "github"
  4810. },
  4811. {
  4812. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4813. "type": "tidelift"
  4814. }
  4815. ],
  4816. "time": "2020-10-24T12:01:57+00:00"
  4817. },
  4818. {
  4819. "name": "symfony/http-client",
  4820. "version": "v5.1.8",
  4821. "source": {
  4822. "type": "git",
  4823. "url": "https://github.com/symfony/http-client.git",
  4824. "reference": "97a6a1f9f5bb3a6094833107b58a72bc9a9165cc"
  4825. },
  4826. "dist": {
  4827. "type": "zip",
  4828. "url": "https://api.github.com/repos/symfony/http-client/zipball/97a6a1f9f5bb3a6094833107b58a72bc9a9165cc",
  4829. "reference": "97a6a1f9f5bb3a6094833107b58a72bc9a9165cc",
  4830. "shasum": ""
  4831. },
  4832. "require": {
  4833. "php": ">=7.2.5",
  4834. "psr/log": "^1.0",
  4835. "symfony/http-client-contracts": "^2.2",
  4836. "symfony/polyfill-php73": "^1.11",
  4837. "symfony/polyfill-php80": "^1.15",
  4838. "symfony/service-contracts": "^1.0|^2"
  4839. },
  4840. "provide": {
  4841. "php-http/async-client-implementation": "*",
  4842. "php-http/client-implementation": "*",
  4843. "psr/http-client-implementation": "1.0",
  4844. "symfony/http-client-implementation": "1.1"
  4845. },
  4846. "require-dev": {
  4847. "amphp/http-client": "^4.2.1",
  4848. "amphp/http-tunnel": "^1.0",
  4849. "amphp/socket": "^1.1",
  4850. "guzzlehttp/promises": "^1.3.1",
  4851. "nyholm/psr7": "^1.0",
  4852. "php-http/httplug": "^1.0|^2.0",
  4853. "psr/http-client": "^1.0",
  4854. "symfony/dependency-injection": "^4.4|^5.0",
  4855. "symfony/http-kernel": "^4.4.13|^5.1.5",
  4856. "symfony/process": "^4.4|^5.0"
  4857. },
  4858. "type": "library",
  4859. "autoload": {
  4860. "psr-4": {
  4861. "Symfony\\Component\\HttpClient\\": ""
  4862. },
  4863. "exclude-from-classmap": [
  4864. "/Tests/"
  4865. ]
  4866. },
  4867. "notification-url": "https://packagist.org/downloads/",
  4868. "license": [
  4869. "MIT"
  4870. ],
  4871. "authors": [
  4872. {
  4873. "name": "Nicolas Grekas",
  4874. "email": "p@tchwork.com"
  4875. },
  4876. {
  4877. "name": "Symfony Community",
  4878. "homepage": "https://symfony.com/contributors"
  4879. }
  4880. ],
  4881. "description": "Symfony HttpClient component",
  4882. "homepage": "https://symfony.com",
  4883. "support": {
  4884. "source": "https://github.com/symfony/http-client/tree/v5.1.8"
  4885. },
  4886. "funding": [
  4887. {
  4888. "url": "https://symfony.com/sponsor",
  4889. "type": "custom"
  4890. },
  4891. {
  4892. "url": "https://github.com/fabpot",
  4893. "type": "github"
  4894. },
  4895. {
  4896. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4897. "type": "tidelift"
  4898. }
  4899. ],
  4900. "time": "2020-10-24T12:01:57+00:00"
  4901. },
  4902. {
  4903. "name": "symfony/http-client-contracts",
  4904. "version": "v2.3.1",
  4905. "source": {
  4906. "type": "git",
  4907. "url": "https://github.com/symfony/http-client-contracts.git",
  4908. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  4909. },
  4910. "dist": {
  4911. "type": "zip",
  4912. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  4913. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  4914. "shasum": ""
  4915. },
  4916. "require": {
  4917. "php": ">=7.2.5"
  4918. },
  4919. "suggest": {
  4920. "symfony/http-client-implementation": ""
  4921. },
  4922. "type": "library",
  4923. "extra": {
  4924. "branch-version": "2.3",
  4925. "branch-alias": {
  4926. "dev-main": "2.3-dev"
  4927. },
  4928. "thanks": {
  4929. "name": "symfony/contracts",
  4930. "url": "https://github.com/symfony/contracts"
  4931. }
  4932. },
  4933. "autoload": {
  4934. "psr-4": {
  4935. "Symfony\\Contracts\\HttpClient\\": ""
  4936. }
  4937. },
  4938. "notification-url": "https://packagist.org/downloads/",
  4939. "license": [
  4940. "MIT"
  4941. ],
  4942. "authors": [
  4943. {
  4944. "name": "Nicolas Grekas",
  4945. "email": "p@tchwork.com"
  4946. },
  4947. {
  4948. "name": "Symfony Community",
  4949. "homepage": "https://symfony.com/contributors"
  4950. }
  4951. ],
  4952. "description": "Generic abstractions related to HTTP clients",
  4953. "homepage": "https://symfony.com",
  4954. "keywords": [
  4955. "abstractions",
  4956. "contracts",
  4957. "decoupling",
  4958. "interfaces",
  4959. "interoperability",
  4960. "standards"
  4961. ],
  4962. "support": {
  4963. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  4964. },
  4965. "funding": [
  4966. {
  4967. "url": "https://symfony.com/sponsor",
  4968. "type": "custom"
  4969. },
  4970. {
  4971. "url": "https://github.com/fabpot",
  4972. "type": "github"
  4973. },
  4974. {
  4975. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4976. "type": "tidelift"
  4977. }
  4978. ],
  4979. "time": "2020-10-14T17:08:19+00:00"
  4980. },
  4981. {
  4982. "name": "symfony/http-foundation",
  4983. "version": "v5.1.8",
  4984. "source": {
  4985. "type": "git",
  4986. "url": "https://github.com/symfony/http-foundation.git",
  4987. "reference": "a2860ec970404b0233ab1e59e0568d3277d32b6f"
  4988. },
  4989. "dist": {
  4990. "type": "zip",
  4991. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a2860ec970404b0233ab1e59e0568d3277d32b6f",
  4992. "reference": "a2860ec970404b0233ab1e59e0568d3277d32b6f",
  4993. "shasum": ""
  4994. },
  4995. "require": {
  4996. "php": ">=7.2.5",
  4997. "symfony/deprecation-contracts": "^2.1",
  4998. "symfony/polyfill-mbstring": "~1.1",
  4999. "symfony/polyfill-php80": "^1.15"
  5000. },
  5001. "require-dev": {
  5002. "predis/predis": "~1.0",
  5003. "symfony/cache": "^4.4|^5.0",
  5004. "symfony/expression-language": "^4.4|^5.0",
  5005. "symfony/mime": "^4.4|^5.0"
  5006. },
  5007. "suggest": {
  5008. "symfony/mime": "To use the file extension guesser"
  5009. },
  5010. "type": "library",
  5011. "autoload": {
  5012. "psr-4": {
  5013. "Symfony\\Component\\HttpFoundation\\": ""
  5014. },
  5015. "exclude-from-classmap": [
  5016. "/Tests/"
  5017. ]
  5018. },
  5019. "notification-url": "https://packagist.org/downloads/",
  5020. "license": [
  5021. "MIT"
  5022. ],
  5023. "authors": [
  5024. {
  5025. "name": "Fabien Potencier",
  5026. "email": "fabien@symfony.com"
  5027. },
  5028. {
  5029. "name": "Symfony Community",
  5030. "homepage": "https://symfony.com/contributors"
  5031. }
  5032. ],
  5033. "description": "Symfony HttpFoundation Component",
  5034. "homepage": "https://symfony.com",
  5035. "support": {
  5036. "source": "https://github.com/symfony/http-foundation/tree/v5.1.8"
  5037. },
  5038. "funding": [
  5039. {
  5040. "url": "https://symfony.com/sponsor",
  5041. "type": "custom"
  5042. },
  5043. {
  5044. "url": "https://github.com/fabpot",
  5045. "type": "github"
  5046. },
  5047. {
  5048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5049. "type": "tidelift"
  5050. }
  5051. ],
  5052. "time": "2020-10-24T12:01:57+00:00"
  5053. },
  5054. {
  5055. "name": "symfony/http-kernel",
  5056. "version": "v5.1.8",
  5057. "source": {
  5058. "type": "git",
  5059. "url": "https://github.com/symfony/http-kernel.git",
  5060. "reference": "a13b3c4d994a4fd051f4c6800c5e33c9508091dd"
  5061. },
  5062. "dist": {
  5063. "type": "zip",
  5064. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a13b3c4d994a4fd051f4c6800c5e33c9508091dd",
  5065. "reference": "a13b3c4d994a4fd051f4c6800c5e33c9508091dd",
  5066. "shasum": ""
  5067. },
  5068. "require": {
  5069. "php": ">=7.2.5",
  5070. "psr/log": "~1.0",
  5071. "symfony/deprecation-contracts": "^2.1",
  5072. "symfony/error-handler": "^4.4|^5.0",
  5073. "symfony/event-dispatcher": "^5.0",
  5074. "symfony/http-client-contracts": "^1.1|^2",
  5075. "symfony/http-foundation": "^4.4|^5.0",
  5076. "symfony/polyfill-ctype": "^1.8",
  5077. "symfony/polyfill-php73": "^1.9",
  5078. "symfony/polyfill-php80": "^1.15"
  5079. },
  5080. "conflict": {
  5081. "symfony/browser-kit": "<4.4",
  5082. "symfony/cache": "<5.0",
  5083. "symfony/config": "<5.0",
  5084. "symfony/console": "<4.4",
  5085. "symfony/dependency-injection": "<4.4",
  5086. "symfony/doctrine-bridge": "<5.0",
  5087. "symfony/form": "<5.0",
  5088. "symfony/http-client": "<5.0",
  5089. "symfony/mailer": "<5.0",
  5090. "symfony/messenger": "<5.0",
  5091. "symfony/translation": "<5.0",
  5092. "symfony/twig-bridge": "<5.0",
  5093. "symfony/validator": "<5.0",
  5094. "twig/twig": "<2.4"
  5095. },
  5096. "provide": {
  5097. "psr/log-implementation": "1.0"
  5098. },
  5099. "require-dev": {
  5100. "psr/cache": "~1.0",
  5101. "symfony/browser-kit": "^4.4|^5.0",
  5102. "symfony/config": "^5.0",
  5103. "symfony/console": "^4.4|^5.0",
  5104. "symfony/css-selector": "^4.4|^5.0",
  5105. "symfony/dependency-injection": "^4.4|^5.0",
  5106. "symfony/dom-crawler": "^4.4|^5.0",
  5107. "symfony/expression-language": "^4.4|^5.0",
  5108. "symfony/finder": "^4.4|^5.0",
  5109. "symfony/process": "^4.4|^5.0",
  5110. "symfony/routing": "^4.4|^5.0",
  5111. "symfony/stopwatch": "^4.4|^5.0",
  5112. "symfony/translation": "^4.4|^5.0",
  5113. "symfony/translation-contracts": "^1.1|^2",
  5114. "twig/twig": "^2.4|^3.0"
  5115. },
  5116. "suggest": {
  5117. "symfony/browser-kit": "",
  5118. "symfony/config": "",
  5119. "symfony/console": "",
  5120. "symfony/dependency-injection": ""
  5121. },
  5122. "type": "library",
  5123. "autoload": {
  5124. "psr-4": {
  5125. "Symfony\\Component\\HttpKernel\\": ""
  5126. },
  5127. "exclude-from-classmap": [
  5128. "/Tests/"
  5129. ]
  5130. },
  5131. "notification-url": "https://packagist.org/downloads/",
  5132. "license": [
  5133. "MIT"
  5134. ],
  5135. "authors": [
  5136. {
  5137. "name": "Fabien Potencier",
  5138. "email": "fabien@symfony.com"
  5139. },
  5140. {
  5141. "name": "Symfony Community",
  5142. "homepage": "https://symfony.com/contributors"
  5143. }
  5144. ],
  5145. "description": "Symfony HttpKernel Component",
  5146. "homepage": "https://symfony.com",
  5147. "support": {
  5148. "source": "https://github.com/symfony/http-kernel/tree/v5.1.8"
  5149. },
  5150. "funding": [
  5151. {
  5152. "url": "https://symfony.com/sponsor",
  5153. "type": "custom"
  5154. },
  5155. {
  5156. "url": "https://github.com/fabpot",
  5157. "type": "github"
  5158. },
  5159. {
  5160. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5161. "type": "tidelift"
  5162. }
  5163. ],
  5164. "time": "2020-10-28T05:55:23+00:00"
  5165. },
  5166. {
  5167. "name": "symfony/intl",
  5168. "version": "v5.1.8",
  5169. "source": {
  5170. "type": "git",
  5171. "url": "https://github.com/symfony/intl.git",
  5172. "reference": "e353c6c37afa1ff90739b3941f60ff9fa650eec3"
  5173. },
  5174. "dist": {
  5175. "type": "zip",
  5176. "url": "https://api.github.com/repos/symfony/intl/zipball/e353c6c37afa1ff90739b3941f60ff9fa650eec3",
  5177. "reference": "e353c6c37afa1ff90739b3941f60ff9fa650eec3",
  5178. "shasum": ""
  5179. },
  5180. "require": {
  5181. "php": ">=7.2.5",
  5182. "symfony/polyfill-intl-icu": "~1.0",
  5183. "symfony/polyfill-php80": "^1.15"
  5184. },
  5185. "require-dev": {
  5186. "symfony/filesystem": "^4.4|^5.0"
  5187. },
  5188. "suggest": {
  5189. "ext-intl": "to use the component with locales other than \"en\""
  5190. },
  5191. "type": "library",
  5192. "autoload": {
  5193. "psr-4": {
  5194. "Symfony\\Component\\Intl\\": ""
  5195. },
  5196. "classmap": [
  5197. "Resources/stubs"
  5198. ],
  5199. "exclude-from-classmap": [
  5200. "/Tests/"
  5201. ]
  5202. },
  5203. "notification-url": "https://packagist.org/downloads/",
  5204. "license": [
  5205. "MIT"
  5206. ],
  5207. "authors": [
  5208. {
  5209. "name": "Bernhard Schussek",
  5210. "email": "bschussek@gmail.com"
  5211. },
  5212. {
  5213. "name": "Eriksen Costa",
  5214. "email": "eriksen.costa@infranology.com.br"
  5215. },
  5216. {
  5217. "name": "Igor Wiedler",
  5218. "email": "igor@wiedler.ch"
  5219. },
  5220. {
  5221. "name": "Symfony Community",
  5222. "homepage": "https://symfony.com/contributors"
  5223. }
  5224. ],
  5225. "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
  5226. "homepage": "https://symfony.com",
  5227. "keywords": [
  5228. "i18n",
  5229. "icu",
  5230. "internationalization",
  5231. "intl",
  5232. "l10n",
  5233. "localization"
  5234. ],
  5235. "support": {
  5236. "source": "https://github.com/symfony/intl/tree/v5.1.8"
  5237. },
  5238. "funding": [
  5239. {
  5240. "url": "https://symfony.com/sponsor",
  5241. "type": "custom"
  5242. },
  5243. {
  5244. "url": "https://github.com/fabpot",
  5245. "type": "github"
  5246. },
  5247. {
  5248. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5249. "type": "tidelift"
  5250. }
  5251. ],
  5252. "time": "2020-10-24T12:01:57+00:00"
  5253. },
  5254. {
  5255. "name": "symfony/mailer",
  5256. "version": "v5.1.8",
  5257. "source": {
  5258. "type": "git",
  5259. "url": "https://github.com/symfony/mailer.git",
  5260. "reference": "fa5cc9f894a5d082e7e46bfdd44f5dd83529f0ba"
  5261. },
  5262. "dist": {
  5263. "type": "zip",
  5264. "url": "https://api.github.com/repos/symfony/mailer/zipball/fa5cc9f894a5d082e7e46bfdd44f5dd83529f0ba",
  5265. "reference": "fa5cc9f894a5d082e7e46bfdd44f5dd83529f0ba",
  5266. "shasum": ""
  5267. },
  5268. "require": {
  5269. "egulias/email-validator": "^2.1.10",
  5270. "php": ">=7.2.5",
  5271. "psr/log": "~1.0",
  5272. "symfony/event-dispatcher": "^4.4|^5.0",
  5273. "symfony/mime": "^4.4|^5.0",
  5274. "symfony/polyfill-php80": "^1.15",
  5275. "symfony/service-contracts": "^1.1|^2"
  5276. },
  5277. "conflict": {
  5278. "symfony/http-kernel": "<4.4"
  5279. },
  5280. "require-dev": {
  5281. "symfony/amazon-mailer": "^4.4|^5.0",
  5282. "symfony/google-mailer": "^4.4|^5.0",
  5283. "symfony/http-client-contracts": "^1.1|^2",
  5284. "symfony/mailchimp-mailer": "^4.4|^5.0",
  5285. "symfony/mailgun-mailer": "^4.4|^5.0",
  5286. "symfony/messenger": "^4.4|^5.0",
  5287. "symfony/postmark-mailer": "^4.4|^5.0",
  5288. "symfony/sendgrid-mailer": "^4.4|^5.0"
  5289. },
  5290. "type": "library",
  5291. "autoload": {
  5292. "psr-4": {
  5293. "Symfony\\Component\\Mailer\\": ""
  5294. },
  5295. "exclude-from-classmap": [
  5296. "/Tests/"
  5297. ]
  5298. },
  5299. "notification-url": "https://packagist.org/downloads/",
  5300. "license": [
  5301. "MIT"
  5302. ],
  5303. "authors": [
  5304. {
  5305. "name": "Fabien Potencier",
  5306. "email": "fabien@symfony.com"
  5307. },
  5308. {
  5309. "name": "Symfony Community",
  5310. "homepage": "https://symfony.com/contributors"
  5311. }
  5312. ],
  5313. "description": "Symfony Mailer Component",
  5314. "homepage": "https://symfony.com",
  5315. "support": {
  5316. "source": "https://github.com/symfony/mailer/tree/v5.1.8"
  5317. },
  5318. "funding": [
  5319. {
  5320. "url": "https://symfony.com/sponsor",
  5321. "type": "custom"
  5322. },
  5323. {
  5324. "url": "https://github.com/fabpot",
  5325. "type": "github"
  5326. },
  5327. {
  5328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5329. "type": "tidelift"
  5330. }
  5331. ],
  5332. "time": "2020-10-24T12:01:57+00:00"
  5333. },
  5334. {
  5335. "name": "symfony/messenger",
  5336. "version": "v5.1.8",
  5337. "source": {
  5338. "type": "git",
  5339. "url": "https://github.com/symfony/messenger.git",
  5340. "reference": "800acfc4dfc954aea6e6adc192e82b44c84520fe"
  5341. },
  5342. "dist": {
  5343. "type": "zip",
  5344. "url": "https://api.github.com/repos/symfony/messenger/zipball/800acfc4dfc954aea6e6adc192e82b44c84520fe",
  5345. "reference": "800acfc4dfc954aea6e6adc192e82b44c84520fe",
  5346. "shasum": ""
  5347. },
  5348. "require": {
  5349. "php": ">=7.2.5",
  5350. "psr/log": "~1.0",
  5351. "symfony/amqp-messenger": "^5.1",
  5352. "symfony/deprecation-contracts": "^2.1",
  5353. "symfony/doctrine-messenger": "^5.1",
  5354. "symfony/polyfill-php80": "^1.15",
  5355. "symfony/redis-messenger": "^5.1"
  5356. },
  5357. "conflict": {
  5358. "symfony/event-dispatcher": "<4.4",
  5359. "symfony/framework-bundle": "<4.4",
  5360. "symfony/http-kernel": "<4.4"
  5361. },
  5362. "require-dev": {
  5363. "psr/cache": "~1.0",
  5364. "symfony/console": "^4.4|^5.0",
  5365. "symfony/dependency-injection": "^4.4|^5.0",
  5366. "symfony/event-dispatcher": "^4.4|^5.0",
  5367. "symfony/http-kernel": "^4.4|^5.0",
  5368. "symfony/process": "^4.4|^5.0",
  5369. "symfony/property-access": "^4.4|^5.0",
  5370. "symfony/serializer": "^4.4|^5.0",
  5371. "symfony/service-contracts": "^1.1|^2",
  5372. "symfony/stopwatch": "^4.4|^5.0",
  5373. "symfony/validator": "^4.4|^5.0"
  5374. },
  5375. "suggest": {
  5376. "enqueue/messenger-adapter": "For using the php-enqueue library as a transport."
  5377. },
  5378. "type": "library",
  5379. "autoload": {
  5380. "psr-4": {
  5381. "Symfony\\Component\\Messenger\\": ""
  5382. },
  5383. "exclude-from-classmap": [
  5384. "/Tests/"
  5385. ]
  5386. },
  5387. "notification-url": "https://packagist.org/downloads/",
  5388. "license": [
  5389. "MIT"
  5390. ],
  5391. "authors": [
  5392. {
  5393. "name": "Samuel Roze",
  5394. "email": "samuel.roze@gmail.com"
  5395. },
  5396. {
  5397. "name": "Symfony Community",
  5398. "homepage": "https://symfony.com/contributors"
  5399. }
  5400. ],
  5401. "description": "Symfony Messenger Component",
  5402. "homepage": "https://symfony.com",
  5403. "support": {
  5404. "source": "https://github.com/symfony/messenger/tree/v5.1.8"
  5405. },
  5406. "funding": [
  5407. {
  5408. "url": "https://symfony.com/sponsor",
  5409. "type": "custom"
  5410. },
  5411. {
  5412. "url": "https://github.com/fabpot",
  5413. "type": "github"
  5414. },
  5415. {
  5416. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5417. "type": "tidelift"
  5418. }
  5419. ],
  5420. "time": "2020-10-24T12:01:57+00:00"
  5421. },
  5422. {
  5423. "name": "symfony/mime",
  5424. "version": "v5.1.8",
  5425. "source": {
  5426. "type": "git",
  5427. "url": "https://github.com/symfony/mime.git",
  5428. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b"
  5429. },
  5430. "dist": {
  5431. "type": "zip",
  5432. "url": "https://api.github.com/repos/symfony/mime/zipball/f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  5433. "reference": "f5485a92c24d4bcfc2f3fc648744fb398482ff1b",
  5434. "shasum": ""
  5435. },
  5436. "require": {
  5437. "php": ">=7.2.5",
  5438. "symfony/polyfill-intl-idn": "^1.10",
  5439. "symfony/polyfill-mbstring": "^1.0",
  5440. "symfony/polyfill-php80": "^1.15"
  5441. },
  5442. "conflict": {
  5443. "symfony/mailer": "<4.4"
  5444. },
  5445. "require-dev": {
  5446. "egulias/email-validator": "^2.1.10",
  5447. "symfony/dependency-injection": "^4.4|^5.0"
  5448. },
  5449. "type": "library",
  5450. "autoload": {
  5451. "psr-4": {
  5452. "Symfony\\Component\\Mime\\": ""
  5453. },
  5454. "exclude-from-classmap": [
  5455. "/Tests/"
  5456. ]
  5457. },
  5458. "notification-url": "https://packagist.org/downloads/",
  5459. "license": [
  5460. "MIT"
  5461. ],
  5462. "authors": [
  5463. {
  5464. "name": "Fabien Potencier",
  5465. "email": "fabien@symfony.com"
  5466. },
  5467. {
  5468. "name": "Symfony Community",
  5469. "homepage": "https://symfony.com/contributors"
  5470. }
  5471. ],
  5472. "description": "A library to manipulate MIME messages",
  5473. "homepage": "https://symfony.com",
  5474. "keywords": [
  5475. "mime",
  5476. "mime-type"
  5477. ],
  5478. "support": {
  5479. "source": "https://github.com/symfony/mime/tree/v5.1.8"
  5480. },
  5481. "funding": [
  5482. {
  5483. "url": "https://symfony.com/sponsor",
  5484. "type": "custom"
  5485. },
  5486. {
  5487. "url": "https://github.com/fabpot",
  5488. "type": "github"
  5489. },
  5490. {
  5491. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5492. "type": "tidelift"
  5493. }
  5494. ],
  5495. "time": "2020-10-24T12:01:57+00:00"
  5496. },
  5497. {
  5498. "name": "symfony/monolog-bridge",
  5499. "version": "v5.1.8",
  5500. "source": {
  5501. "type": "git",
  5502. "url": "https://github.com/symfony/monolog-bridge.git",
  5503. "reference": "0c507eddb704a3154b53f066cc0b587c4586c868"
  5504. },
  5505. "dist": {
  5506. "type": "zip",
  5507. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/0c507eddb704a3154b53f066cc0b587c4586c868",
  5508. "reference": "0c507eddb704a3154b53f066cc0b587c4586c868",
  5509. "shasum": ""
  5510. },
  5511. "require": {
  5512. "monolog/monolog": "^1.25.1|^2",
  5513. "php": ">=7.2.5",
  5514. "symfony/http-kernel": "^4.4|^5.0",
  5515. "symfony/service-contracts": "^1.1|^2"
  5516. },
  5517. "conflict": {
  5518. "symfony/console": "<4.4",
  5519. "symfony/http-foundation": "<4.4"
  5520. },
  5521. "require-dev": {
  5522. "symfony/console": "^4.4|^5.0",
  5523. "symfony/http-client": "^4.4|^5.0",
  5524. "symfony/mailer": "^4.4|^5.0",
  5525. "symfony/mime": "^4.4|^5.0",
  5526. "symfony/security-core": "^4.4|^5.0",
  5527. "symfony/var-dumper": "^4.4|^5.0"
  5528. },
  5529. "suggest": {
  5530. "symfony/console": "For the possibility to show log messages in console commands depending on verbosity settings.",
  5531. "symfony/http-kernel": "For using the debugging handlers together with the response life cycle of the HTTP kernel.",
  5532. "symfony/var-dumper": "For using the debugging handlers like the console handler or the log server handler."
  5533. },
  5534. "type": "symfony-bridge",
  5535. "autoload": {
  5536. "psr-4": {
  5537. "Symfony\\Bridge\\Monolog\\": ""
  5538. },
  5539. "exclude-from-classmap": [
  5540. "/Tests/"
  5541. ]
  5542. },
  5543. "notification-url": "https://packagist.org/downloads/",
  5544. "license": [
  5545. "MIT"
  5546. ],
  5547. "authors": [
  5548. {
  5549. "name": "Fabien Potencier",
  5550. "email": "fabien@symfony.com"
  5551. },
  5552. {
  5553. "name": "Symfony Community",
  5554. "homepage": "https://symfony.com/contributors"
  5555. }
  5556. ],
  5557. "description": "Symfony Monolog Bridge",
  5558. "homepage": "https://symfony.com",
  5559. "support": {
  5560. "source": "https://github.com/symfony/monolog-bridge/tree/v5.1.8"
  5561. },
  5562. "funding": [
  5563. {
  5564. "url": "https://symfony.com/sponsor",
  5565. "type": "custom"
  5566. },
  5567. {
  5568. "url": "https://github.com/fabpot",
  5569. "type": "github"
  5570. },
  5571. {
  5572. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5573. "type": "tidelift"
  5574. }
  5575. ],
  5576. "time": "2020-10-24T12:01:57+00:00"
  5577. },
  5578. {
  5579. "name": "symfony/monolog-bundle",
  5580. "version": "v3.6.0",
  5581. "source": {
  5582. "type": "git",
  5583. "url": "https://github.com/symfony/monolog-bundle.git",
  5584. "reference": "e495f5c7e4e672ffef4357d4a4d85f010802f940"
  5585. },
  5586. "dist": {
  5587. "type": "zip",
  5588. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/e495f5c7e4e672ffef4357d4a4d85f010802f940",
  5589. "reference": "e495f5c7e4e672ffef4357d4a4d85f010802f940",
  5590. "shasum": ""
  5591. },
  5592. "require": {
  5593. "monolog/monolog": "~1.22 || ~2.0",
  5594. "php": ">=5.6",
  5595. "symfony/config": "~3.4 || ~4.0 || ^5.0",
  5596. "symfony/dependency-injection": "~3.4.10 || ^4.0.10 || ^5.0",
  5597. "symfony/http-kernel": "~3.4 || ~4.0 || ^5.0",
  5598. "symfony/monolog-bridge": "~3.4 || ~4.0 || ^5.0"
  5599. },
  5600. "require-dev": {
  5601. "symfony/console": "~3.4 || ~4.0 || ^5.0",
  5602. "symfony/phpunit-bridge": "^4.4 || ^5.0",
  5603. "symfony/yaml": "~3.4 || ~4.0 || ^5.0"
  5604. },
  5605. "type": "symfony-bundle",
  5606. "extra": {
  5607. "branch-alias": {
  5608. "dev-master": "3.x-dev"
  5609. }
  5610. },
  5611. "autoload": {
  5612. "psr-4": {
  5613. "Symfony\\Bundle\\MonologBundle\\": ""
  5614. },
  5615. "exclude-from-classmap": [
  5616. "/Tests/"
  5617. ]
  5618. },
  5619. "notification-url": "https://packagist.org/downloads/",
  5620. "license": [
  5621. "MIT"
  5622. ],
  5623. "authors": [
  5624. {
  5625. "name": "Fabien Potencier",
  5626. "email": "fabien@symfony.com"
  5627. },
  5628. {
  5629. "name": "Symfony Community",
  5630. "homepage": "http://symfony.com/contributors"
  5631. }
  5632. ],
  5633. "description": "Symfony MonologBundle",
  5634. "homepage": "http://symfony.com",
  5635. "keywords": [
  5636. "log",
  5637. "logging"
  5638. ],
  5639. "support": {
  5640. "issues": "https://github.com/symfony/monolog-bundle/issues",
  5641. "source": "https://github.com/symfony/monolog-bundle/tree/v3.6.0"
  5642. },
  5643. "funding": [
  5644. {
  5645. "url": "https://symfony.com/sponsor",
  5646. "type": "custom"
  5647. },
  5648. {
  5649. "url": "https://github.com/fabpot",
  5650. "type": "github"
  5651. },
  5652. {
  5653. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5654. "type": "tidelift"
  5655. }
  5656. ],
  5657. "time": "2020-10-06T15:12:11+00:00"
  5658. },
  5659. {
  5660. "name": "symfony/notifier",
  5661. "version": "v5.1.8",
  5662. "source": {
  5663. "type": "git",
  5664. "url": "https://github.com/symfony/notifier.git",
  5665. "reference": "7beeb0122548109126aa74f97b7d03c0f95e594d"
  5666. },
  5667. "dist": {
  5668. "type": "zip",
  5669. "url": "https://api.github.com/repos/symfony/notifier/zipball/7beeb0122548109126aa74f97b7d03c0f95e594d",
  5670. "reference": "7beeb0122548109126aa74f97b7d03c0f95e594d",
  5671. "shasum": ""
  5672. },
  5673. "require": {
  5674. "php": ">=7.2.5",
  5675. "symfony/polyfill-php80": "^1.15"
  5676. },
  5677. "conflict": {
  5678. "symfony/http-kernel": "<4.4"
  5679. },
  5680. "type": "library",
  5681. "autoload": {
  5682. "psr-4": {
  5683. "Symfony\\Component\\Notifier\\": ""
  5684. },
  5685. "exclude-from-classmap": [
  5686. "/Tests/"
  5687. ]
  5688. },
  5689. "notification-url": "https://packagist.org/downloads/",
  5690. "license": [
  5691. "MIT"
  5692. ],
  5693. "authors": [
  5694. {
  5695. "name": "Fabien Potencier",
  5696. "email": "fabien@symfony.com"
  5697. },
  5698. {
  5699. "name": "Symfony Community",
  5700. "homepage": "https://symfony.com/contributors"
  5701. }
  5702. ],
  5703. "description": "A library to notify messages",
  5704. "homepage": "https://symfony.com",
  5705. "keywords": [
  5706. "notification",
  5707. "notifier"
  5708. ],
  5709. "support": {
  5710. "source": "https://github.com/symfony/notifier/tree/v5.1.8"
  5711. },
  5712. "funding": [
  5713. {
  5714. "url": "https://symfony.com/sponsor",
  5715. "type": "custom"
  5716. },
  5717. {
  5718. "url": "https://github.com/fabpot",
  5719. "type": "github"
  5720. },
  5721. {
  5722. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5723. "type": "tidelift"
  5724. }
  5725. ],
  5726. "time": "2020-10-24T12:03:25+00:00"
  5727. },
  5728. {
  5729. "name": "symfony/options-resolver",
  5730. "version": "v5.1.8",
  5731. "source": {
  5732. "type": "git",
  5733. "url": "https://github.com/symfony/options-resolver.git",
  5734. "reference": "c6a02905e4ffc7a1498e8ee019db2b477cd1cc02"
  5735. },
  5736. "dist": {
  5737. "type": "zip",
  5738. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/c6a02905e4ffc7a1498e8ee019db2b477cd1cc02",
  5739. "reference": "c6a02905e4ffc7a1498e8ee019db2b477cd1cc02",
  5740. "shasum": ""
  5741. },
  5742. "require": {
  5743. "php": ">=7.2.5",
  5744. "symfony/deprecation-contracts": "^2.1",
  5745. "symfony/polyfill-php80": "^1.15"
  5746. },
  5747. "type": "library",
  5748. "autoload": {
  5749. "psr-4": {
  5750. "Symfony\\Component\\OptionsResolver\\": ""
  5751. },
  5752. "exclude-from-classmap": [
  5753. "/Tests/"
  5754. ]
  5755. },
  5756. "notification-url": "https://packagist.org/downloads/",
  5757. "license": [
  5758. "MIT"
  5759. ],
  5760. "authors": [
  5761. {
  5762. "name": "Fabien Potencier",
  5763. "email": "fabien@symfony.com"
  5764. },
  5765. {
  5766. "name": "Symfony Community",
  5767. "homepage": "https://symfony.com/contributors"
  5768. }
  5769. ],
  5770. "description": "Symfony OptionsResolver Component",
  5771. "homepage": "https://symfony.com",
  5772. "keywords": [
  5773. "config",
  5774. "configuration",
  5775. "options"
  5776. ],
  5777. "support": {
  5778. "source": "https://github.com/symfony/options-resolver/tree/v5.1.8"
  5779. },
  5780. "funding": [
  5781. {
  5782. "url": "https://symfony.com/sponsor",
  5783. "type": "custom"
  5784. },
  5785. {
  5786. "url": "https://github.com/fabpot",
  5787. "type": "github"
  5788. },
  5789. {
  5790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5791. "type": "tidelift"
  5792. }
  5793. ],
  5794. "time": "2020-10-24T12:01:57+00:00"
  5795. },
  5796. {
  5797. "name": "symfony/orm-pack",
  5798. "version": "v2.0.0",
  5799. "source": {
  5800. "type": "git",
  5801. "url": "https://github.com/symfony/orm-pack.git",
  5802. "reference": "46aa731f213140388ee11ff3d2b6776a3b4a0d90"
  5803. },
  5804. "dist": {
  5805. "type": "zip",
  5806. "url": "https://api.github.com/repos/symfony/orm-pack/zipball/46aa731f213140388ee11ff3d2b6776a3b4a0d90",
  5807. "reference": "46aa731f213140388ee11ff3d2b6776a3b4a0d90",
  5808. "shasum": ""
  5809. },
  5810. "require": {
  5811. "composer/package-versions-deprecated": "*",
  5812. "doctrine/doctrine-bundle": "*",
  5813. "doctrine/doctrine-migrations-bundle": "*",
  5814. "doctrine/orm": "*"
  5815. },
  5816. "type": "symfony-pack",
  5817. "notification-url": "https://packagist.org/downloads/",
  5818. "license": [
  5819. "MIT"
  5820. ],
  5821. "description": "A pack for the Doctrine ORM",
  5822. "support": {
  5823. "issues": "https://github.com/symfony/orm-pack/issues",
  5824. "source": "https://github.com/symfony/orm-pack/tree/master"
  5825. },
  5826. "funding": [
  5827. {
  5828. "url": "https://symfony.com/sponsor",
  5829. "type": "custom"
  5830. },
  5831. {
  5832. "url": "https://github.com/fabpot",
  5833. "type": "github"
  5834. },
  5835. {
  5836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5837. "type": "tidelift"
  5838. }
  5839. ],
  5840. "time": "2020-07-14T14:34:28+00:00"
  5841. },
  5842. {
  5843. "name": "symfony/polyfill-intl-grapheme",
  5844. "version": "v1.20.0",
  5845. "source": {
  5846. "type": "git",
  5847. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5848. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
  5849. },
  5850. "dist": {
  5851. "type": "zip",
  5852. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5853. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5854. "shasum": ""
  5855. },
  5856. "require": {
  5857. "php": ">=7.1"
  5858. },
  5859. "suggest": {
  5860. "ext-intl": "For best performance"
  5861. },
  5862. "type": "library",
  5863. "extra": {
  5864. "branch-alias": {
  5865. "dev-main": "1.20-dev"
  5866. },
  5867. "thanks": {
  5868. "name": "symfony/polyfill",
  5869. "url": "https://github.com/symfony/polyfill"
  5870. }
  5871. },
  5872. "autoload": {
  5873. "psr-4": {
  5874. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5875. },
  5876. "files": [
  5877. "bootstrap.php"
  5878. ]
  5879. },
  5880. "notification-url": "https://packagist.org/downloads/",
  5881. "license": [
  5882. "MIT"
  5883. ],
  5884. "authors": [
  5885. {
  5886. "name": "Nicolas Grekas",
  5887. "email": "p@tchwork.com"
  5888. },
  5889. {
  5890. "name": "Symfony Community",
  5891. "homepage": "https://symfony.com/contributors"
  5892. }
  5893. ],
  5894. "description": "Symfony polyfill for intl's grapheme_* functions",
  5895. "homepage": "https://symfony.com",
  5896. "keywords": [
  5897. "compatibility",
  5898. "grapheme",
  5899. "intl",
  5900. "polyfill",
  5901. "portable",
  5902. "shim"
  5903. ],
  5904. "support": {
  5905. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0"
  5906. },
  5907. "funding": [
  5908. {
  5909. "url": "https://symfony.com/sponsor",
  5910. "type": "custom"
  5911. },
  5912. {
  5913. "url": "https://github.com/fabpot",
  5914. "type": "github"
  5915. },
  5916. {
  5917. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5918. "type": "tidelift"
  5919. }
  5920. ],
  5921. "time": "2020-10-23T14:02:19+00:00"
  5922. },
  5923. {
  5924. "name": "symfony/polyfill-intl-icu",
  5925. "version": "v1.20.0",
  5926. "source": {
  5927. "type": "git",
  5928. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5929. "reference": "c44d5bf6a75eed79555c6bf37505c6d39559353e"
  5930. },
  5931. "dist": {
  5932. "type": "zip",
  5933. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/c44d5bf6a75eed79555c6bf37505c6d39559353e",
  5934. "reference": "c44d5bf6a75eed79555c6bf37505c6d39559353e",
  5935. "shasum": ""
  5936. },
  5937. "require": {
  5938. "php": ">=7.1",
  5939. "symfony/intl": "~2.3|~3.0|~4.0|~5.0"
  5940. },
  5941. "suggest": {
  5942. "ext-intl": "For best performance"
  5943. },
  5944. "type": "library",
  5945. "extra": {
  5946. "branch-alias": {
  5947. "dev-main": "1.20-dev"
  5948. },
  5949. "thanks": {
  5950. "name": "symfony/polyfill",
  5951. "url": "https://github.com/symfony/polyfill"
  5952. }
  5953. },
  5954. "autoload": {
  5955. "files": [
  5956. "bootstrap.php"
  5957. ]
  5958. },
  5959. "notification-url": "https://packagist.org/downloads/",
  5960. "license": [
  5961. "MIT"
  5962. ],
  5963. "authors": [
  5964. {
  5965. "name": "Nicolas Grekas",
  5966. "email": "p@tchwork.com"
  5967. },
  5968. {
  5969. "name": "Symfony Community",
  5970. "homepage": "https://symfony.com/contributors"
  5971. }
  5972. ],
  5973. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5974. "homepage": "https://symfony.com",
  5975. "keywords": [
  5976. "compatibility",
  5977. "icu",
  5978. "intl",
  5979. "polyfill",
  5980. "portable",
  5981. "shim"
  5982. ],
  5983. "support": {
  5984. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.20.0"
  5985. },
  5986. "funding": [
  5987. {
  5988. "url": "https://symfony.com/sponsor",
  5989. "type": "custom"
  5990. },
  5991. {
  5992. "url": "https://github.com/fabpot",
  5993. "type": "github"
  5994. },
  5995. {
  5996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5997. "type": "tidelift"
  5998. }
  5999. ],
  6000. "time": "2020-10-23T14:02:19+00:00"
  6001. },
  6002. {
  6003. "name": "symfony/polyfill-intl-idn",
  6004. "version": "v1.20.0",
  6005. "source": {
  6006. "type": "git",
  6007. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6008. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  6009. },
  6010. "dist": {
  6011. "type": "zip",
  6012. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  6013. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  6014. "shasum": ""
  6015. },
  6016. "require": {
  6017. "php": ">=7.1",
  6018. "symfony/polyfill-intl-normalizer": "^1.10",
  6019. "symfony/polyfill-php72": "^1.10"
  6020. },
  6021. "suggest": {
  6022. "ext-intl": "For best performance"
  6023. },
  6024. "type": "library",
  6025. "extra": {
  6026. "branch-alias": {
  6027. "dev-main": "1.20-dev"
  6028. },
  6029. "thanks": {
  6030. "name": "symfony/polyfill",
  6031. "url": "https://github.com/symfony/polyfill"
  6032. }
  6033. },
  6034. "autoload": {
  6035. "psr-4": {
  6036. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6037. },
  6038. "files": [
  6039. "bootstrap.php"
  6040. ]
  6041. },
  6042. "notification-url": "https://packagist.org/downloads/",
  6043. "license": [
  6044. "MIT"
  6045. ],
  6046. "authors": [
  6047. {
  6048. "name": "Laurent Bassin",
  6049. "email": "laurent@bassin.info"
  6050. },
  6051. {
  6052. "name": "Trevor Rowbotham",
  6053. "email": "trevor.rowbotham@pm.me"
  6054. },
  6055. {
  6056. "name": "Symfony Community",
  6057. "homepage": "https://symfony.com/contributors"
  6058. }
  6059. ],
  6060. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6061. "homepage": "https://symfony.com",
  6062. "keywords": [
  6063. "compatibility",
  6064. "idn",
  6065. "intl",
  6066. "polyfill",
  6067. "portable",
  6068. "shim"
  6069. ],
  6070. "support": {
  6071. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  6072. },
  6073. "funding": [
  6074. {
  6075. "url": "https://symfony.com/sponsor",
  6076. "type": "custom"
  6077. },
  6078. {
  6079. "url": "https://github.com/fabpot",
  6080. "type": "github"
  6081. },
  6082. {
  6083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6084. "type": "tidelift"
  6085. }
  6086. ],
  6087. "time": "2020-10-23T14:02:19+00:00"
  6088. },
  6089. {
  6090. "name": "symfony/polyfill-intl-normalizer",
  6091. "version": "v1.20.0",
  6092. "source": {
  6093. "type": "git",
  6094. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6095. "reference": "727d1096295d807c309fb01a851577302394c897"
  6096. },
  6097. "dist": {
  6098. "type": "zip",
  6099. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  6100. "reference": "727d1096295d807c309fb01a851577302394c897",
  6101. "shasum": ""
  6102. },
  6103. "require": {
  6104. "php": ">=7.1"
  6105. },
  6106. "suggest": {
  6107. "ext-intl": "For best performance"
  6108. },
  6109. "type": "library",
  6110. "extra": {
  6111. "branch-alias": {
  6112. "dev-main": "1.20-dev"
  6113. },
  6114. "thanks": {
  6115. "name": "symfony/polyfill",
  6116. "url": "https://github.com/symfony/polyfill"
  6117. }
  6118. },
  6119. "autoload": {
  6120. "psr-4": {
  6121. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6122. },
  6123. "files": [
  6124. "bootstrap.php"
  6125. ],
  6126. "classmap": [
  6127. "Resources/stubs"
  6128. ]
  6129. },
  6130. "notification-url": "https://packagist.org/downloads/",
  6131. "license": [
  6132. "MIT"
  6133. ],
  6134. "authors": [
  6135. {
  6136. "name": "Nicolas Grekas",
  6137. "email": "p@tchwork.com"
  6138. },
  6139. {
  6140. "name": "Symfony Community",
  6141. "homepage": "https://symfony.com/contributors"
  6142. }
  6143. ],
  6144. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6145. "homepage": "https://symfony.com",
  6146. "keywords": [
  6147. "compatibility",
  6148. "intl",
  6149. "normalizer",
  6150. "polyfill",
  6151. "portable",
  6152. "shim"
  6153. ],
  6154. "support": {
  6155. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  6156. },
  6157. "funding": [
  6158. {
  6159. "url": "https://symfony.com/sponsor",
  6160. "type": "custom"
  6161. },
  6162. {
  6163. "url": "https://github.com/fabpot",
  6164. "type": "github"
  6165. },
  6166. {
  6167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6168. "type": "tidelift"
  6169. }
  6170. ],
  6171. "time": "2020-10-23T14:02:19+00:00"
  6172. },
  6173. {
  6174. "name": "symfony/polyfill-mbstring",
  6175. "version": "v1.20.0",
  6176. "source": {
  6177. "type": "git",
  6178. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6179. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  6180. },
  6181. "dist": {
  6182. "type": "zip",
  6183. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  6184. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  6185. "shasum": ""
  6186. },
  6187. "require": {
  6188. "php": ">=7.1"
  6189. },
  6190. "suggest": {
  6191. "ext-mbstring": "For best performance"
  6192. },
  6193. "type": "library",
  6194. "extra": {
  6195. "branch-alias": {
  6196. "dev-main": "1.20-dev"
  6197. },
  6198. "thanks": {
  6199. "name": "symfony/polyfill",
  6200. "url": "https://github.com/symfony/polyfill"
  6201. }
  6202. },
  6203. "autoload": {
  6204. "psr-4": {
  6205. "Symfony\\Polyfill\\Mbstring\\": ""
  6206. },
  6207. "files": [
  6208. "bootstrap.php"
  6209. ]
  6210. },
  6211. "notification-url": "https://packagist.org/downloads/",
  6212. "license": [
  6213. "MIT"
  6214. ],
  6215. "authors": [
  6216. {
  6217. "name": "Nicolas Grekas",
  6218. "email": "p@tchwork.com"
  6219. },
  6220. {
  6221. "name": "Symfony Community",
  6222. "homepage": "https://symfony.com/contributors"
  6223. }
  6224. ],
  6225. "description": "Symfony polyfill for the Mbstring extension",
  6226. "homepage": "https://symfony.com",
  6227. "keywords": [
  6228. "compatibility",
  6229. "mbstring",
  6230. "polyfill",
  6231. "portable",
  6232. "shim"
  6233. ],
  6234. "support": {
  6235. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  6236. },
  6237. "funding": [
  6238. {
  6239. "url": "https://symfony.com/sponsor",
  6240. "type": "custom"
  6241. },
  6242. {
  6243. "url": "https://github.com/fabpot",
  6244. "type": "github"
  6245. },
  6246. {
  6247. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6248. "type": "tidelift"
  6249. }
  6250. ],
  6251. "time": "2020-10-23T14:02:19+00:00"
  6252. },
  6253. {
  6254. "name": "symfony/polyfill-php73",
  6255. "version": "v1.20.0",
  6256. "source": {
  6257. "type": "git",
  6258. "url": "https://github.com/symfony/polyfill-php73.git",
  6259. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  6260. },
  6261. "dist": {
  6262. "type": "zip",
  6263. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  6264. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  6265. "shasum": ""
  6266. },
  6267. "require": {
  6268. "php": ">=7.1"
  6269. },
  6270. "type": "library",
  6271. "extra": {
  6272. "branch-alias": {
  6273. "dev-main": "1.20-dev"
  6274. },
  6275. "thanks": {
  6276. "name": "symfony/polyfill",
  6277. "url": "https://github.com/symfony/polyfill"
  6278. }
  6279. },
  6280. "autoload": {
  6281. "psr-4": {
  6282. "Symfony\\Polyfill\\Php73\\": ""
  6283. },
  6284. "files": [
  6285. "bootstrap.php"
  6286. ],
  6287. "classmap": [
  6288. "Resources/stubs"
  6289. ]
  6290. },
  6291. "notification-url": "https://packagist.org/downloads/",
  6292. "license": [
  6293. "MIT"
  6294. ],
  6295. "authors": [
  6296. {
  6297. "name": "Nicolas Grekas",
  6298. "email": "p@tchwork.com"
  6299. },
  6300. {
  6301. "name": "Symfony Community",
  6302. "homepage": "https://symfony.com/contributors"
  6303. }
  6304. ],
  6305. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6306. "homepage": "https://symfony.com",
  6307. "keywords": [
  6308. "compatibility",
  6309. "polyfill",
  6310. "portable",
  6311. "shim"
  6312. ],
  6313. "support": {
  6314. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  6315. },
  6316. "funding": [
  6317. {
  6318. "url": "https://symfony.com/sponsor",
  6319. "type": "custom"
  6320. },
  6321. {
  6322. "url": "https://github.com/fabpot",
  6323. "type": "github"
  6324. },
  6325. {
  6326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6327. "type": "tidelift"
  6328. }
  6329. ],
  6330. "time": "2020-10-23T14:02:19+00:00"
  6331. },
  6332. {
  6333. "name": "symfony/polyfill-php80",
  6334. "version": "v1.20.0",
  6335. "source": {
  6336. "type": "git",
  6337. "url": "https://github.com/symfony/polyfill-php80.git",
  6338. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  6339. },
  6340. "dist": {
  6341. "type": "zip",
  6342. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  6343. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  6344. "shasum": ""
  6345. },
  6346. "require": {
  6347. "php": ">=7.1"
  6348. },
  6349. "type": "library",
  6350. "extra": {
  6351. "branch-alias": {
  6352. "dev-main": "1.20-dev"
  6353. },
  6354. "thanks": {
  6355. "name": "symfony/polyfill",
  6356. "url": "https://github.com/symfony/polyfill"
  6357. }
  6358. },
  6359. "autoload": {
  6360. "psr-4": {
  6361. "Symfony\\Polyfill\\Php80\\": ""
  6362. },
  6363. "files": [
  6364. "bootstrap.php"
  6365. ],
  6366. "classmap": [
  6367. "Resources/stubs"
  6368. ]
  6369. },
  6370. "notification-url": "https://packagist.org/downloads/",
  6371. "license": [
  6372. "MIT"
  6373. ],
  6374. "authors": [
  6375. {
  6376. "name": "Ion Bazan",
  6377. "email": "ion.bazan@gmail.com"
  6378. },
  6379. {
  6380. "name": "Nicolas Grekas",
  6381. "email": "p@tchwork.com"
  6382. },
  6383. {
  6384. "name": "Symfony Community",
  6385. "homepage": "https://symfony.com/contributors"
  6386. }
  6387. ],
  6388. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6389. "homepage": "https://symfony.com",
  6390. "keywords": [
  6391. "compatibility",
  6392. "polyfill",
  6393. "portable",
  6394. "shim"
  6395. ],
  6396. "support": {
  6397. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  6398. },
  6399. "funding": [
  6400. {
  6401. "url": "https://symfony.com/sponsor",
  6402. "type": "custom"
  6403. },
  6404. {
  6405. "url": "https://github.com/fabpot",
  6406. "type": "github"
  6407. },
  6408. {
  6409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6410. "type": "tidelift"
  6411. }
  6412. ],
  6413. "time": "2020-10-23T14:02:19+00:00"
  6414. },
  6415. {
  6416. "name": "symfony/process",
  6417. "version": "v5.1.8",
  6418. "source": {
  6419. "type": "git",
  6420. "url": "https://github.com/symfony/process.git",
  6421. "reference": "f00872c3f6804150d6a0f73b4151daab96248101"
  6422. },
  6423. "dist": {
  6424. "type": "zip",
  6425. "url": "https://api.github.com/repos/symfony/process/zipball/f00872c3f6804150d6a0f73b4151daab96248101",
  6426. "reference": "f00872c3f6804150d6a0f73b4151daab96248101",
  6427. "shasum": ""
  6428. },
  6429. "require": {
  6430. "php": ">=7.2.5",
  6431. "symfony/polyfill-php80": "^1.15"
  6432. },
  6433. "type": "library",
  6434. "autoload": {
  6435. "psr-4": {
  6436. "Symfony\\Component\\Process\\": ""
  6437. },
  6438. "exclude-from-classmap": [
  6439. "/Tests/"
  6440. ]
  6441. },
  6442. "notification-url": "https://packagist.org/downloads/",
  6443. "license": [
  6444. "MIT"
  6445. ],
  6446. "authors": [
  6447. {
  6448. "name": "Fabien Potencier",
  6449. "email": "fabien@symfony.com"
  6450. },
  6451. {
  6452. "name": "Symfony Community",
  6453. "homepage": "https://symfony.com/contributors"
  6454. }
  6455. ],
  6456. "description": "Symfony Process Component",
  6457. "homepage": "https://symfony.com",
  6458. "support": {
  6459. "source": "https://github.com/symfony/process/tree/v5.1.8"
  6460. },
  6461. "funding": [
  6462. {
  6463. "url": "https://symfony.com/sponsor",
  6464. "type": "custom"
  6465. },
  6466. {
  6467. "url": "https://github.com/fabpot",
  6468. "type": "github"
  6469. },
  6470. {
  6471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6472. "type": "tidelift"
  6473. }
  6474. ],
  6475. "time": "2020-10-24T12:01:57+00:00"
  6476. },
  6477. {
  6478. "name": "symfony/property-access",
  6479. "version": "v5.1.8",
  6480. "source": {
  6481. "type": "git",
  6482. "url": "https://github.com/symfony/property-access.git",
  6483. "reference": "5d77df9a88600797d02c7937c153965ba3537933"
  6484. },
  6485. "dist": {
  6486. "type": "zip",
  6487. "url": "https://api.github.com/repos/symfony/property-access/zipball/5d77df9a88600797d02c7937c153965ba3537933",
  6488. "reference": "5d77df9a88600797d02c7937c153965ba3537933",
  6489. "shasum": ""
  6490. },
  6491. "require": {
  6492. "php": ">=7.2.5",
  6493. "symfony/polyfill-php80": "^1.15",
  6494. "symfony/property-info": "^5.1.1"
  6495. },
  6496. "require-dev": {
  6497. "symfony/cache": "^4.4|^5.0"
  6498. },
  6499. "suggest": {
  6500. "psr/cache-implementation": "To cache access methods."
  6501. },
  6502. "type": "library",
  6503. "autoload": {
  6504. "psr-4": {
  6505. "Symfony\\Component\\PropertyAccess\\": ""
  6506. },
  6507. "exclude-from-classmap": [
  6508. "/Tests/"
  6509. ]
  6510. },
  6511. "notification-url": "https://packagist.org/downloads/",
  6512. "license": [
  6513. "MIT"
  6514. ],
  6515. "authors": [
  6516. {
  6517. "name": "Fabien Potencier",
  6518. "email": "fabien@symfony.com"
  6519. },
  6520. {
  6521. "name": "Symfony Community",
  6522. "homepage": "https://symfony.com/contributors"
  6523. }
  6524. ],
  6525. "description": "Symfony PropertyAccess Component",
  6526. "homepage": "https://symfony.com",
  6527. "keywords": [
  6528. "access",
  6529. "array",
  6530. "extraction",
  6531. "index",
  6532. "injection",
  6533. "object",
  6534. "property",
  6535. "property path",
  6536. "reflection"
  6537. ],
  6538. "support": {
  6539. "source": "https://github.com/symfony/property-access/tree/v5.1.8"
  6540. },
  6541. "funding": [
  6542. {
  6543. "url": "https://symfony.com/sponsor",
  6544. "type": "custom"
  6545. },
  6546. {
  6547. "url": "https://github.com/fabpot",
  6548. "type": "github"
  6549. },
  6550. {
  6551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6552. "type": "tidelift"
  6553. }
  6554. ],
  6555. "time": "2020-10-24T12:01:57+00:00"
  6556. },
  6557. {
  6558. "name": "symfony/property-info",
  6559. "version": "v5.1.8",
  6560. "source": {
  6561. "type": "git",
  6562. "url": "https://github.com/symfony/property-info.git",
  6563. "reference": "fc15c51f829887b62a94a917ba793f51e80ea3e1"
  6564. },
  6565. "dist": {
  6566. "type": "zip",
  6567. "url": "https://api.github.com/repos/symfony/property-info/zipball/fc15c51f829887b62a94a917ba793f51e80ea3e1",
  6568. "reference": "fc15c51f829887b62a94a917ba793f51e80ea3e1",
  6569. "shasum": ""
  6570. },
  6571. "require": {
  6572. "php": ">=7.2.5",
  6573. "symfony/polyfill-php80": "^1.15",
  6574. "symfony/string": "^5.1"
  6575. },
  6576. "conflict": {
  6577. "phpdocumentor/reflection-docblock": "<3.2.2",
  6578. "phpdocumentor/type-resolver": "<0.3.0",
  6579. "symfony/dependency-injection": "<4.4"
  6580. },
  6581. "require-dev": {
  6582. "doctrine/annotations": "~1.7",
  6583. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6584. "symfony/cache": "^4.4|^5.0",
  6585. "symfony/dependency-injection": "^4.4|^5.0",
  6586. "symfony/serializer": "^4.4|^5.0"
  6587. },
  6588. "suggest": {
  6589. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6590. "psr/cache-implementation": "To cache results",
  6591. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6592. "symfony/serializer": "To use Serializer metadata"
  6593. },
  6594. "type": "library",
  6595. "autoload": {
  6596. "psr-4": {
  6597. "Symfony\\Component\\PropertyInfo\\": ""
  6598. },
  6599. "exclude-from-classmap": [
  6600. "/Tests/"
  6601. ]
  6602. },
  6603. "notification-url": "https://packagist.org/downloads/",
  6604. "license": [
  6605. "MIT"
  6606. ],
  6607. "authors": [
  6608. {
  6609. "name": "Kévin Dunglas",
  6610. "email": "dunglas@gmail.com"
  6611. },
  6612. {
  6613. "name": "Symfony Community",
  6614. "homepage": "https://symfony.com/contributors"
  6615. }
  6616. ],
  6617. "description": "Symfony Property Info Component",
  6618. "homepage": "https://symfony.com",
  6619. "keywords": [
  6620. "doctrine",
  6621. "phpdoc",
  6622. "property",
  6623. "symfony",
  6624. "type",
  6625. "validator"
  6626. ],
  6627. "support": {
  6628. "source": "https://github.com/symfony/property-info/tree/v5.1.8"
  6629. },
  6630. "funding": [
  6631. {
  6632. "url": "https://symfony.com/sponsor",
  6633. "type": "custom"
  6634. },
  6635. {
  6636. "url": "https://github.com/fabpot",
  6637. "type": "github"
  6638. },
  6639. {
  6640. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6641. "type": "tidelift"
  6642. }
  6643. ],
  6644. "time": "2020-10-24T12:01:57+00:00"
  6645. },
  6646. {
  6647. "name": "symfony/redis-messenger",
  6648. "version": "v5.1.8",
  6649. "source": {
  6650. "type": "git",
  6651. "url": "https://github.com/symfony/redis-messenger.git",
  6652. "reference": "0c62cc7e04f391fa88fca55dc50d8e5c6b4d4909"
  6653. },
  6654. "dist": {
  6655. "type": "zip",
  6656. "url": "https://api.github.com/repos/symfony/redis-messenger/zipball/0c62cc7e04f391fa88fca55dc50d8e5c6b4d4909",
  6657. "reference": "0c62cc7e04f391fa88fca55dc50d8e5c6b4d4909",
  6658. "shasum": ""
  6659. },
  6660. "require": {
  6661. "php": ">=7.2.5",
  6662. "symfony/messenger": "^5.1"
  6663. },
  6664. "require-dev": {
  6665. "symfony/property-access": "^4.4|^5.0",
  6666. "symfony/serializer": "^4.4|^5.0"
  6667. },
  6668. "type": "symfony-bridge",
  6669. "autoload": {
  6670. "psr-4": {
  6671. "Symfony\\Component\\Messenger\\Bridge\\Redis\\": ""
  6672. },
  6673. "exclude-from-classmap": [
  6674. "/Tests/"
  6675. ]
  6676. },
  6677. "notification-url": "https://packagist.org/downloads/",
  6678. "license": [
  6679. "MIT"
  6680. ],
  6681. "authors": [
  6682. {
  6683. "name": "Fabien Potencier",
  6684. "email": "fabien@symfony.com"
  6685. },
  6686. {
  6687. "name": "Symfony Community",
  6688. "homepage": "https://symfony.com/contributors"
  6689. }
  6690. ],
  6691. "description": "Symfony Redis extension Messenger Bridge",
  6692. "homepage": "https://symfony.com",
  6693. "support": {
  6694. "source": "https://github.com/symfony/redis-messenger/tree/v5.1.8"
  6695. },
  6696. "funding": [
  6697. {
  6698. "url": "https://symfony.com/sponsor",
  6699. "type": "custom"
  6700. },
  6701. {
  6702. "url": "https://github.com/fabpot",
  6703. "type": "github"
  6704. },
  6705. {
  6706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6707. "type": "tidelift"
  6708. }
  6709. ],
  6710. "time": "2020-10-24T12:01:57+00:00"
  6711. },
  6712. {
  6713. "name": "symfony/routing",
  6714. "version": "v5.1.8",
  6715. "source": {
  6716. "type": "git",
  6717. "url": "https://github.com/symfony/routing.git",
  6718. "reference": "d6ceee2a37b61b41079005207bf37746d1bfe71f"
  6719. },
  6720. "dist": {
  6721. "type": "zip",
  6722. "url": "https://api.github.com/repos/symfony/routing/zipball/d6ceee2a37b61b41079005207bf37746d1bfe71f",
  6723. "reference": "d6ceee2a37b61b41079005207bf37746d1bfe71f",
  6724. "shasum": ""
  6725. },
  6726. "require": {
  6727. "php": ">=7.2.5",
  6728. "symfony/deprecation-contracts": "^2.1",
  6729. "symfony/polyfill-php80": "^1.15"
  6730. },
  6731. "conflict": {
  6732. "symfony/config": "<5.0",
  6733. "symfony/dependency-injection": "<4.4",
  6734. "symfony/yaml": "<4.4"
  6735. },
  6736. "require-dev": {
  6737. "doctrine/annotations": "~1.2",
  6738. "psr/log": "~1.0",
  6739. "symfony/config": "^5.0",
  6740. "symfony/dependency-injection": "^4.4|^5.0",
  6741. "symfony/expression-language": "^4.4|^5.0",
  6742. "symfony/http-foundation": "^4.4|^5.0",
  6743. "symfony/yaml": "^4.4|^5.0"
  6744. },
  6745. "suggest": {
  6746. "doctrine/annotations": "For using the annotation loader",
  6747. "symfony/config": "For using the all-in-one router or any loader",
  6748. "symfony/expression-language": "For using expression matching",
  6749. "symfony/http-foundation": "For using a Symfony Request object",
  6750. "symfony/yaml": "For using the YAML loader"
  6751. },
  6752. "type": "library",
  6753. "autoload": {
  6754. "psr-4": {
  6755. "Symfony\\Component\\Routing\\": ""
  6756. },
  6757. "exclude-from-classmap": [
  6758. "/Tests/"
  6759. ]
  6760. },
  6761. "notification-url": "https://packagist.org/downloads/",
  6762. "license": [
  6763. "MIT"
  6764. ],
  6765. "authors": [
  6766. {
  6767. "name": "Fabien Potencier",
  6768. "email": "fabien@symfony.com"
  6769. },
  6770. {
  6771. "name": "Symfony Community",
  6772. "homepage": "https://symfony.com/contributors"
  6773. }
  6774. ],
  6775. "description": "Symfony Routing Component",
  6776. "homepage": "https://symfony.com",
  6777. "keywords": [
  6778. "router",
  6779. "routing",
  6780. "uri",
  6781. "url"
  6782. ],
  6783. "support": {
  6784. "source": "https://github.com/symfony/routing/tree/v5.1.8"
  6785. },
  6786. "funding": [
  6787. {
  6788. "url": "https://symfony.com/sponsor",
  6789. "type": "custom"
  6790. },
  6791. {
  6792. "url": "https://github.com/fabpot",
  6793. "type": "github"
  6794. },
  6795. {
  6796. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6797. "type": "tidelift"
  6798. }
  6799. ],
  6800. "time": "2020-10-24T12:01:57+00:00"
  6801. },
  6802. {
  6803. "name": "symfony/security-bundle",
  6804. "version": "v5.1.8",
  6805. "source": {
  6806. "type": "git",
  6807. "url": "https://github.com/symfony/security-bundle.git",
  6808. "reference": "8921cdb1057f615b8340a352195f4a684c876893"
  6809. },
  6810. "dist": {
  6811. "type": "zip",
  6812. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/8921cdb1057f615b8340a352195f4a684c876893",
  6813. "reference": "8921cdb1057f615b8340a352195f4a684c876893",
  6814. "shasum": ""
  6815. },
  6816. "require": {
  6817. "ext-xml": "*",
  6818. "php": ">=7.2.5",
  6819. "symfony/config": "^4.4|^5.0",
  6820. "symfony/dependency-injection": "^5.1",
  6821. "symfony/event-dispatcher": "^5.1",
  6822. "symfony/http-kernel": "^5.0",
  6823. "symfony/polyfill-php80": "^1.15",
  6824. "symfony/security-core": "^5.1",
  6825. "symfony/security-csrf": "^4.4|^5.0",
  6826. "symfony/security-guard": "^5.1",
  6827. "symfony/security-http": "^5.1,>=5.1.2"
  6828. },
  6829. "conflict": {
  6830. "symfony/browser-kit": "<4.4",
  6831. "symfony/console": "<4.4",
  6832. "symfony/framework-bundle": "<4.4",
  6833. "symfony/ldap": "<4.4",
  6834. "symfony/twig-bundle": "<4.4"
  6835. },
  6836. "require-dev": {
  6837. "doctrine/doctrine-bundle": "^2.0",
  6838. "symfony/asset": "^4.4|^5.0",
  6839. "symfony/browser-kit": "^4.4|^5.0",
  6840. "symfony/console": "^4.4|^5.0",
  6841. "symfony/css-selector": "^4.4|^5.0",
  6842. "symfony/dom-crawler": "^4.4|^5.0",
  6843. "symfony/expression-language": "^4.4|^5.0",
  6844. "symfony/form": "^4.4|^5.0",
  6845. "symfony/framework-bundle": "^4.4|^5.0",
  6846. "symfony/process": "^4.4|^5.0",
  6847. "symfony/serializer": "^4.4|^5.0",
  6848. "symfony/translation": "^4.4|^5.0",
  6849. "symfony/twig-bridge": "^4.4|^5.0",
  6850. "symfony/twig-bundle": "^4.4|^5.0",
  6851. "symfony/validator": "^4.4|^5.0",
  6852. "symfony/yaml": "^4.4|^5.0",
  6853. "twig/twig": "^2.10|^3.0"
  6854. },
  6855. "type": "symfony-bundle",
  6856. "autoload": {
  6857. "psr-4": {
  6858. "Symfony\\Bundle\\SecurityBundle\\": ""
  6859. },
  6860. "exclude-from-classmap": [
  6861. "/Tests/"
  6862. ]
  6863. },
  6864. "notification-url": "https://packagist.org/downloads/",
  6865. "license": [
  6866. "MIT"
  6867. ],
  6868. "authors": [
  6869. {
  6870. "name": "Fabien Potencier",
  6871. "email": "fabien@symfony.com"
  6872. },
  6873. {
  6874. "name": "Symfony Community",
  6875. "homepage": "https://symfony.com/contributors"
  6876. }
  6877. ],
  6878. "description": "Symfony SecurityBundle",
  6879. "homepage": "https://symfony.com",
  6880. "support": {
  6881. "source": "https://github.com/symfony/security-bundle/tree/v5.1.8"
  6882. },
  6883. "funding": [
  6884. {
  6885. "url": "https://symfony.com/sponsor",
  6886. "type": "custom"
  6887. },
  6888. {
  6889. "url": "https://github.com/fabpot",
  6890. "type": "github"
  6891. },
  6892. {
  6893. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6894. "type": "tidelift"
  6895. }
  6896. ],
  6897. "time": "2020-10-24T12:01:57+00:00"
  6898. },
  6899. {
  6900. "name": "symfony/security-core",
  6901. "version": "v5.1.8",
  6902. "source": {
  6903. "type": "git",
  6904. "url": "https://github.com/symfony/security-core.git",
  6905. "reference": "13f97112f3a7f7877460777602d4d1e7a21a5f39"
  6906. },
  6907. "dist": {
  6908. "type": "zip",
  6909. "url": "https://api.github.com/repos/symfony/security-core/zipball/13f97112f3a7f7877460777602d4d1e7a21a5f39",
  6910. "reference": "13f97112f3a7f7877460777602d4d1e7a21a5f39",
  6911. "shasum": ""
  6912. },
  6913. "require": {
  6914. "php": ">=7.2.5",
  6915. "symfony/deprecation-contracts": "^2.1",
  6916. "symfony/event-dispatcher-contracts": "^1.1|^2",
  6917. "symfony/polyfill-php80": "^1.15",
  6918. "symfony/service-contracts": "^1.1.6|^2"
  6919. },
  6920. "conflict": {
  6921. "symfony/event-dispatcher": "<4.4",
  6922. "symfony/ldap": "<4.4",
  6923. "symfony/security-guard": "<4.4"
  6924. },
  6925. "require-dev": {
  6926. "psr/container": "^1.0",
  6927. "psr/log": "~1.0",
  6928. "symfony/event-dispatcher": "^4.4|^5.0",
  6929. "symfony/expression-language": "^4.4|^5.0",
  6930. "symfony/http-foundation": "^4.4|^5.0",
  6931. "symfony/ldap": "^4.4|^5.0",
  6932. "symfony/validator": "^4.4|^5.0"
  6933. },
  6934. "suggest": {
  6935. "psr/container-implementation": "To instantiate the Security class",
  6936. "symfony/event-dispatcher": "",
  6937. "symfony/expression-language": "For using the expression voter",
  6938. "symfony/http-foundation": "",
  6939. "symfony/ldap": "For using LDAP integration",
  6940. "symfony/validator": "For using the user password constraint"
  6941. },
  6942. "type": "library",
  6943. "autoload": {
  6944. "psr-4": {
  6945. "Symfony\\Component\\Security\\Core\\": ""
  6946. },
  6947. "exclude-from-classmap": [
  6948. "/Tests/"
  6949. ]
  6950. },
  6951. "notification-url": "https://packagist.org/downloads/",
  6952. "license": [
  6953. "MIT"
  6954. ],
  6955. "authors": [
  6956. {
  6957. "name": "Fabien Potencier",
  6958. "email": "fabien@symfony.com"
  6959. },
  6960. {
  6961. "name": "Symfony Community",
  6962. "homepage": "https://symfony.com/contributors"
  6963. }
  6964. ],
  6965. "description": "Symfony Security Component - Core Library",
  6966. "homepage": "https://symfony.com",
  6967. "support": {
  6968. "source": "https://github.com/symfony/security-core/tree/v5.1.8"
  6969. },
  6970. "funding": [
  6971. {
  6972. "url": "https://symfony.com/sponsor",
  6973. "type": "custom"
  6974. },
  6975. {
  6976. "url": "https://github.com/fabpot",
  6977. "type": "github"
  6978. },
  6979. {
  6980. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6981. "type": "tidelift"
  6982. }
  6983. ],
  6984. "time": "2020-10-28T05:25:38+00:00"
  6985. },
  6986. {
  6987. "name": "symfony/security-csrf",
  6988. "version": "v5.1.8",
  6989. "source": {
  6990. "type": "git",
  6991. "url": "https://github.com/symfony/security-csrf.git",
  6992. "reference": "6d8ea23a4f0b88a13c254d007f3d814ed882f42a"
  6993. },
  6994. "dist": {
  6995. "type": "zip",
  6996. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/6d8ea23a4f0b88a13c254d007f3d814ed882f42a",
  6997. "reference": "6d8ea23a4f0b88a13c254d007f3d814ed882f42a",
  6998. "shasum": ""
  6999. },
  7000. "require": {
  7001. "php": ">=7.2.5",
  7002. "symfony/security-core": "^4.4|^5.0"
  7003. },
  7004. "conflict": {
  7005. "symfony/http-foundation": "<4.4"
  7006. },
  7007. "require-dev": {
  7008. "symfony/http-foundation": "^4.4|^5.0"
  7009. },
  7010. "suggest": {
  7011. "symfony/http-foundation": "For using the class SessionTokenStorage."
  7012. },
  7013. "type": "library",
  7014. "autoload": {
  7015. "psr-4": {
  7016. "Symfony\\Component\\Security\\Csrf\\": ""
  7017. },
  7018. "exclude-from-classmap": [
  7019. "/Tests/"
  7020. ]
  7021. },
  7022. "notification-url": "https://packagist.org/downloads/",
  7023. "license": [
  7024. "MIT"
  7025. ],
  7026. "authors": [
  7027. {
  7028. "name": "Fabien Potencier",
  7029. "email": "fabien@symfony.com"
  7030. },
  7031. {
  7032. "name": "Symfony Community",
  7033. "homepage": "https://symfony.com/contributors"
  7034. }
  7035. ],
  7036. "description": "Symfony Security Component - CSRF Library",
  7037. "homepage": "https://symfony.com",
  7038. "support": {
  7039. "source": "https://github.com/symfony/security-csrf/tree/v5.1.8"
  7040. },
  7041. "funding": [
  7042. {
  7043. "url": "https://symfony.com/sponsor",
  7044. "type": "custom"
  7045. },
  7046. {
  7047. "url": "https://github.com/fabpot",
  7048. "type": "github"
  7049. },
  7050. {
  7051. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7052. "type": "tidelift"
  7053. }
  7054. ],
  7055. "time": "2020-10-24T12:01:57+00:00"
  7056. },
  7057. {
  7058. "name": "symfony/security-guard",
  7059. "version": "v5.1.8",
  7060. "source": {
  7061. "type": "git",
  7062. "url": "https://github.com/symfony/security-guard.git",
  7063. "reference": "076e2af7e61723ff50b281806b4d0f5e4df4e6b3"
  7064. },
  7065. "dist": {
  7066. "type": "zip",
  7067. "url": "https://api.github.com/repos/symfony/security-guard/zipball/076e2af7e61723ff50b281806b4d0f5e4df4e6b3",
  7068. "reference": "076e2af7e61723ff50b281806b4d0f5e4df4e6b3",
  7069. "shasum": ""
  7070. },
  7071. "require": {
  7072. "php": ">=7.2.5",
  7073. "symfony/polyfill-php80": "^1.15",
  7074. "symfony/security-core": "^5.0",
  7075. "symfony/security-http": "^4.4.1|^5.0.1"
  7076. },
  7077. "require-dev": {
  7078. "psr/log": "~1.0"
  7079. },
  7080. "type": "library",
  7081. "autoload": {
  7082. "psr-4": {
  7083. "Symfony\\Component\\Security\\Guard\\": ""
  7084. },
  7085. "exclude-from-classmap": [
  7086. "/Tests/"
  7087. ]
  7088. },
  7089. "notification-url": "https://packagist.org/downloads/",
  7090. "license": [
  7091. "MIT"
  7092. ],
  7093. "authors": [
  7094. {
  7095. "name": "Fabien Potencier",
  7096. "email": "fabien@symfony.com"
  7097. },
  7098. {
  7099. "name": "Symfony Community",
  7100. "homepage": "https://symfony.com/contributors"
  7101. }
  7102. ],
  7103. "description": "Symfony Security Component - Guard",
  7104. "homepage": "https://symfony.com",
  7105. "support": {
  7106. "source": "https://github.com/symfony/security-guard/tree/v5.1.8"
  7107. },
  7108. "funding": [
  7109. {
  7110. "url": "https://symfony.com/sponsor",
  7111. "type": "custom"
  7112. },
  7113. {
  7114. "url": "https://github.com/fabpot",
  7115. "type": "github"
  7116. },
  7117. {
  7118. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7119. "type": "tidelift"
  7120. }
  7121. ],
  7122. "time": "2020-10-24T12:01:57+00:00"
  7123. },
  7124. {
  7125. "name": "symfony/security-http",
  7126. "version": "v5.1.8",
  7127. "source": {
  7128. "type": "git",
  7129. "url": "https://github.com/symfony/security-http.git",
  7130. "reference": "01fc5b3a641ea851624555793c19e6cec11b596f"
  7131. },
  7132. "dist": {
  7133. "type": "zip",
  7134. "url": "https://api.github.com/repos/symfony/security-http/zipball/01fc5b3a641ea851624555793c19e6cec11b596f",
  7135. "reference": "01fc5b3a641ea851624555793c19e6cec11b596f",
  7136. "shasum": ""
  7137. },
  7138. "require": {
  7139. "php": ">=7.2.5",
  7140. "symfony/deprecation-contracts": "^2.1",
  7141. "symfony/http-foundation": "^4.4.7|^5.0.7",
  7142. "symfony/http-kernel": "^4.4|^5.0",
  7143. "symfony/polyfill-php80": "^1.15",
  7144. "symfony/property-access": "^4.4|^5.0",
  7145. "symfony/security-core": "^5.1"
  7146. },
  7147. "conflict": {
  7148. "symfony/event-dispatcher": "<4.3",
  7149. "symfony/security-csrf": "<4.4"
  7150. },
  7151. "require-dev": {
  7152. "psr/log": "~1.0",
  7153. "symfony/routing": "^4.4|^5.0",
  7154. "symfony/security-csrf": "^4.4|^5.0"
  7155. },
  7156. "suggest": {
  7157. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  7158. "symfony/security-csrf": "For using tokens to protect authentication/logout attempts"
  7159. },
  7160. "type": "library",
  7161. "autoload": {
  7162. "psr-4": {
  7163. "Symfony\\Component\\Security\\Http\\": ""
  7164. },
  7165. "exclude-from-classmap": [
  7166. "/Tests/"
  7167. ]
  7168. },
  7169. "notification-url": "https://packagist.org/downloads/",
  7170. "license": [
  7171. "MIT"
  7172. ],
  7173. "authors": [
  7174. {
  7175. "name": "Fabien Potencier",
  7176. "email": "fabien@symfony.com"
  7177. },
  7178. {
  7179. "name": "Symfony Community",
  7180. "homepage": "https://symfony.com/contributors"
  7181. }
  7182. ],
  7183. "description": "Symfony Security Component - HTTP Integration",
  7184. "homepage": "https://symfony.com",
  7185. "support": {
  7186. "source": "https://github.com/symfony/security-http/tree/v5.1.8"
  7187. },
  7188. "funding": [
  7189. {
  7190. "url": "https://symfony.com/sponsor",
  7191. "type": "custom"
  7192. },
  7193. {
  7194. "url": "https://github.com/fabpot",
  7195. "type": "github"
  7196. },
  7197. {
  7198. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7199. "type": "tidelift"
  7200. }
  7201. ],
  7202. "time": "2020-10-25T22:13:28+00:00"
  7203. },
  7204. {
  7205. "name": "symfony/serializer",
  7206. "version": "v5.1.8",
  7207. "source": {
  7208. "type": "git",
  7209. "url": "https://github.com/symfony/serializer.git",
  7210. "reference": "20d3c6c58c41344a427488c0d2902bfbfbe17ddb"
  7211. },
  7212. "dist": {
  7213. "type": "zip",
  7214. "url": "https://api.github.com/repos/symfony/serializer/zipball/20d3c6c58c41344a427488c0d2902bfbfbe17ddb",
  7215. "reference": "20d3c6c58c41344a427488c0d2902bfbfbe17ddb",
  7216. "shasum": ""
  7217. },
  7218. "require": {
  7219. "php": ">=7.2.5",
  7220. "symfony/polyfill-ctype": "~1.8",
  7221. "symfony/polyfill-php80": "^1.15"
  7222. },
  7223. "conflict": {
  7224. "phpdocumentor/type-resolver": "<0.2.1",
  7225. "symfony/dependency-injection": "<4.4",
  7226. "symfony/property-access": "<4.4",
  7227. "symfony/property-info": "<4.4",
  7228. "symfony/yaml": "<4.4"
  7229. },
  7230. "require-dev": {
  7231. "doctrine/annotations": "~1.0",
  7232. "doctrine/cache": "~1.0",
  7233. "phpdocumentor/reflection-docblock": "^3.2|^4.0",
  7234. "symfony/cache": "^4.4|^5.0",
  7235. "symfony/config": "^4.4|^5.0",
  7236. "symfony/dependency-injection": "^4.4|^5.0",
  7237. "symfony/error-handler": "^4.4|^5.0",
  7238. "symfony/http-foundation": "^4.4|^5.0",
  7239. "symfony/mime": "^4.4|^5.0",
  7240. "symfony/property-access": "^4.4|^5.0",
  7241. "symfony/property-info": "^4.4|^5.0",
  7242. "symfony/validator": "^4.4|^5.0",
  7243. "symfony/yaml": "^4.4|^5.0"
  7244. },
  7245. "suggest": {
  7246. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  7247. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  7248. "psr/cache-implementation": "For using the metadata cache.",
  7249. "symfony/config": "For using the XML mapping loader.",
  7250. "symfony/mime": "For using a MIME type guesser within the DataUriNormalizer.",
  7251. "symfony/property-access": "For using the ObjectNormalizer.",
  7252. "symfony/property-info": "To deserialize relations.",
  7253. "symfony/yaml": "For using the default YAML mapping loader."
  7254. },
  7255. "type": "library",
  7256. "autoload": {
  7257. "psr-4": {
  7258. "Symfony\\Component\\Serializer\\": ""
  7259. },
  7260. "exclude-from-classmap": [
  7261. "/Tests/"
  7262. ]
  7263. },
  7264. "notification-url": "https://packagist.org/downloads/",
  7265. "license": [
  7266. "MIT"
  7267. ],
  7268. "authors": [
  7269. {
  7270. "name": "Fabien Potencier",
  7271. "email": "fabien@symfony.com"
  7272. },
  7273. {
  7274. "name": "Symfony Community",
  7275. "homepage": "https://symfony.com/contributors"
  7276. }
  7277. ],
  7278. "description": "Symfony Serializer Component",
  7279. "homepage": "https://symfony.com",
  7280. "support": {
  7281. "source": "https://github.com/symfony/serializer/tree/v5.1.8"
  7282. },
  7283. "funding": [
  7284. {
  7285. "url": "https://symfony.com/sponsor",
  7286. "type": "custom"
  7287. },
  7288. {
  7289. "url": "https://github.com/fabpot",
  7290. "type": "github"
  7291. },
  7292. {
  7293. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7294. "type": "tidelift"
  7295. }
  7296. ],
  7297. "time": "2020-10-24T12:01:57+00:00"
  7298. },
  7299. {
  7300. "name": "symfony/serializer-pack",
  7301. "version": "v1.0.4",
  7302. "source": {
  7303. "type": "git",
  7304. "url": "https://github.com/symfony/serializer-pack.git",
  7305. "reference": "61173947057d5e1bf1c79e2a6ab6a8430be0602e"
  7306. },
  7307. "dist": {
  7308. "type": "zip",
  7309. "url": "https://api.github.com/repos/symfony/serializer-pack/zipball/61173947057d5e1bf1c79e2a6ab6a8430be0602e",
  7310. "reference": "61173947057d5e1bf1c79e2a6ab6a8430be0602e",
  7311. "shasum": ""
  7312. },
  7313. "require": {
  7314. "doctrine/annotations": "^1.0",
  7315. "phpdocumentor/reflection-docblock": "*",
  7316. "symfony/property-access": "*",
  7317. "symfony/property-info": "*",
  7318. "symfony/serializer": "*"
  7319. },
  7320. "type": "symfony-pack",
  7321. "notification-url": "https://packagist.org/downloads/",
  7322. "license": [
  7323. "MIT"
  7324. ],
  7325. "description": "A pack for the Symfony serializer",
  7326. "support": {
  7327. "issues": "https://github.com/symfony/serializer-pack/issues",
  7328. "source": "https://github.com/symfony/serializer-pack/tree/v1.0.4"
  7329. },
  7330. "funding": [
  7331. {
  7332. "url": "https://symfony.com/sponsor",
  7333. "type": "custom"
  7334. },
  7335. {
  7336. "url": "https://github.com/fabpot",
  7337. "type": "github"
  7338. },
  7339. {
  7340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7341. "type": "tidelift"
  7342. }
  7343. ],
  7344. "time": "2020-10-19T08:52:16+00:00"
  7345. },
  7346. {
  7347. "name": "symfony/service-contracts",
  7348. "version": "v2.2.0",
  7349. "source": {
  7350. "type": "git",
  7351. "url": "https://github.com/symfony/service-contracts.git",
  7352. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  7353. },
  7354. "dist": {
  7355. "type": "zip",
  7356. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  7357. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  7358. "shasum": ""
  7359. },
  7360. "require": {
  7361. "php": ">=7.2.5",
  7362. "psr/container": "^1.0"
  7363. },
  7364. "suggest": {
  7365. "symfony/service-implementation": ""
  7366. },
  7367. "type": "library",
  7368. "extra": {
  7369. "branch-alias": {
  7370. "dev-master": "2.2-dev"
  7371. },
  7372. "thanks": {
  7373. "name": "symfony/contracts",
  7374. "url": "https://github.com/symfony/contracts"
  7375. }
  7376. },
  7377. "autoload": {
  7378. "psr-4": {
  7379. "Symfony\\Contracts\\Service\\": ""
  7380. }
  7381. },
  7382. "notification-url": "https://packagist.org/downloads/",
  7383. "license": [
  7384. "MIT"
  7385. ],
  7386. "authors": [
  7387. {
  7388. "name": "Nicolas Grekas",
  7389. "email": "p@tchwork.com"
  7390. },
  7391. {
  7392. "name": "Symfony Community",
  7393. "homepage": "https://symfony.com/contributors"
  7394. }
  7395. ],
  7396. "description": "Generic abstractions related to writing services",
  7397. "homepage": "https://symfony.com",
  7398. "keywords": [
  7399. "abstractions",
  7400. "contracts",
  7401. "decoupling",
  7402. "interfaces",
  7403. "interoperability",
  7404. "standards"
  7405. ],
  7406. "support": {
  7407. "source": "https://github.com/symfony/service-contracts/tree/master"
  7408. },
  7409. "funding": [
  7410. {
  7411. "url": "https://symfony.com/sponsor",
  7412. "type": "custom"
  7413. },
  7414. {
  7415. "url": "https://github.com/fabpot",
  7416. "type": "github"
  7417. },
  7418. {
  7419. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7420. "type": "tidelift"
  7421. }
  7422. ],
  7423. "time": "2020-09-07T11:33:47+00:00"
  7424. },
  7425. {
  7426. "name": "symfony/stopwatch",
  7427. "version": "v5.1.8",
  7428. "source": {
  7429. "type": "git",
  7430. "url": "https://github.com/symfony/stopwatch.git",
  7431. "reference": "3d9f57c89011f0266e6b1d469e5c0110513859d5"
  7432. },
  7433. "dist": {
  7434. "type": "zip",
  7435. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/3d9f57c89011f0266e6b1d469e5c0110513859d5",
  7436. "reference": "3d9f57c89011f0266e6b1d469e5c0110513859d5",
  7437. "shasum": ""
  7438. },
  7439. "require": {
  7440. "php": ">=7.2.5",
  7441. "symfony/service-contracts": "^1.0|^2"
  7442. },
  7443. "type": "library",
  7444. "autoload": {
  7445. "psr-4": {
  7446. "Symfony\\Component\\Stopwatch\\": ""
  7447. },
  7448. "exclude-from-classmap": [
  7449. "/Tests/"
  7450. ]
  7451. },
  7452. "notification-url": "https://packagist.org/downloads/",
  7453. "license": [
  7454. "MIT"
  7455. ],
  7456. "authors": [
  7457. {
  7458. "name": "Fabien Potencier",
  7459. "email": "fabien@symfony.com"
  7460. },
  7461. {
  7462. "name": "Symfony Community",
  7463. "homepage": "https://symfony.com/contributors"
  7464. }
  7465. ],
  7466. "description": "Symfony Stopwatch Component",
  7467. "homepage": "https://symfony.com",
  7468. "support": {
  7469. "source": "https://github.com/symfony/stopwatch/tree/v5.1.8"
  7470. },
  7471. "funding": [
  7472. {
  7473. "url": "https://symfony.com/sponsor",
  7474. "type": "custom"
  7475. },
  7476. {
  7477. "url": "https://github.com/fabpot",
  7478. "type": "github"
  7479. },
  7480. {
  7481. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7482. "type": "tidelift"
  7483. }
  7484. ],
  7485. "time": "2020-10-24T12:01:57+00:00"
  7486. },
  7487. {
  7488. "name": "symfony/string",
  7489. "version": "v5.1.8",
  7490. "source": {
  7491. "type": "git",
  7492. "url": "https://github.com/symfony/string.git",
  7493. "reference": "a97573e960303db71be0dd8fda9be3bca5e0feea"
  7494. },
  7495. "dist": {
  7496. "type": "zip",
  7497. "url": "https://api.github.com/repos/symfony/string/zipball/a97573e960303db71be0dd8fda9be3bca5e0feea",
  7498. "reference": "a97573e960303db71be0dd8fda9be3bca5e0feea",
  7499. "shasum": ""
  7500. },
  7501. "require": {
  7502. "php": ">=7.2.5",
  7503. "symfony/polyfill-ctype": "~1.8",
  7504. "symfony/polyfill-intl-grapheme": "~1.0",
  7505. "symfony/polyfill-intl-normalizer": "~1.0",
  7506. "symfony/polyfill-mbstring": "~1.0",
  7507. "symfony/polyfill-php80": "~1.15"
  7508. },
  7509. "require-dev": {
  7510. "symfony/error-handler": "^4.4|^5.0",
  7511. "symfony/http-client": "^4.4|^5.0",
  7512. "symfony/translation-contracts": "^1.1|^2",
  7513. "symfony/var-exporter": "^4.4|^5.0"
  7514. },
  7515. "type": "library",
  7516. "autoload": {
  7517. "psr-4": {
  7518. "Symfony\\Component\\String\\": ""
  7519. },
  7520. "files": [
  7521. "Resources/functions.php"
  7522. ],
  7523. "exclude-from-classmap": [
  7524. "/Tests/"
  7525. ]
  7526. },
  7527. "notification-url": "https://packagist.org/downloads/",
  7528. "license": [
  7529. "MIT"
  7530. ],
  7531. "authors": [
  7532. {
  7533. "name": "Nicolas Grekas",
  7534. "email": "p@tchwork.com"
  7535. },
  7536. {
  7537. "name": "Symfony Community",
  7538. "homepage": "https://symfony.com/contributors"
  7539. }
  7540. ],
  7541. "description": "Symfony String component",
  7542. "homepage": "https://symfony.com",
  7543. "keywords": [
  7544. "grapheme",
  7545. "i18n",
  7546. "string",
  7547. "unicode",
  7548. "utf-8",
  7549. "utf8"
  7550. ],
  7551. "support": {
  7552. "source": "https://github.com/symfony/string/tree/v5.1.8"
  7553. },
  7554. "funding": [
  7555. {
  7556. "url": "https://symfony.com/sponsor",
  7557. "type": "custom"
  7558. },
  7559. {
  7560. "url": "https://github.com/fabpot",
  7561. "type": "github"
  7562. },
  7563. {
  7564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7565. "type": "tidelift"
  7566. }
  7567. ],
  7568. "time": "2020-10-24T12:01:57+00:00"
  7569. },
  7570. {
  7571. "name": "symfony/translation",
  7572. "version": "v5.1.8",
  7573. "source": {
  7574. "type": "git",
  7575. "url": "https://github.com/symfony/translation.git",
  7576. "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6"
  7577. },
  7578. "dist": {
  7579. "type": "zip",
  7580. "url": "https://api.github.com/repos/symfony/translation/zipball/27980838fd261e04379fa91e94e81e662fe5a1b6",
  7581. "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6",
  7582. "shasum": ""
  7583. },
  7584. "require": {
  7585. "php": ">=7.2.5",
  7586. "symfony/polyfill-mbstring": "~1.0",
  7587. "symfony/polyfill-php80": "^1.15",
  7588. "symfony/translation-contracts": "^2"
  7589. },
  7590. "conflict": {
  7591. "symfony/config": "<4.4",
  7592. "symfony/dependency-injection": "<5.0",
  7593. "symfony/http-kernel": "<5.0",
  7594. "symfony/twig-bundle": "<5.0",
  7595. "symfony/yaml": "<4.4"
  7596. },
  7597. "provide": {
  7598. "symfony/translation-implementation": "2.0"
  7599. },
  7600. "require-dev": {
  7601. "psr/log": "~1.0",
  7602. "symfony/config": "^4.4|^5.0",
  7603. "symfony/console": "^4.4|^5.0",
  7604. "symfony/dependency-injection": "^5.0",
  7605. "symfony/finder": "^4.4|^5.0",
  7606. "symfony/http-kernel": "^5.0",
  7607. "symfony/intl": "^4.4|^5.0",
  7608. "symfony/service-contracts": "^1.1.2|^2",
  7609. "symfony/yaml": "^4.4|^5.0"
  7610. },
  7611. "suggest": {
  7612. "psr/log-implementation": "To use logging capability in translator",
  7613. "symfony/config": "",
  7614. "symfony/yaml": ""
  7615. },
  7616. "type": "library",
  7617. "autoload": {
  7618. "psr-4": {
  7619. "Symfony\\Component\\Translation\\": ""
  7620. },
  7621. "exclude-from-classmap": [
  7622. "/Tests/"
  7623. ]
  7624. },
  7625. "notification-url": "https://packagist.org/downloads/",
  7626. "license": [
  7627. "MIT"
  7628. ],
  7629. "authors": [
  7630. {
  7631. "name": "Fabien Potencier",
  7632. "email": "fabien@symfony.com"
  7633. },
  7634. {
  7635. "name": "Symfony Community",
  7636. "homepage": "https://symfony.com/contributors"
  7637. }
  7638. ],
  7639. "description": "Symfony Translation Component",
  7640. "homepage": "https://symfony.com",
  7641. "support": {
  7642. "source": "https://github.com/symfony/translation/tree/v5.1.8"
  7643. },
  7644. "funding": [
  7645. {
  7646. "url": "https://symfony.com/sponsor",
  7647. "type": "custom"
  7648. },
  7649. {
  7650. "url": "https://github.com/fabpot",
  7651. "type": "github"
  7652. },
  7653. {
  7654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7655. "type": "tidelift"
  7656. }
  7657. ],
  7658. "time": "2020-10-24T12:01:57+00:00"
  7659. },
  7660. {
  7661. "name": "symfony/translation-contracts",
  7662. "version": "v2.3.0",
  7663. "source": {
  7664. "type": "git",
  7665. "url": "https://github.com/symfony/translation-contracts.git",
  7666. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  7667. },
  7668. "dist": {
  7669. "type": "zip",
  7670. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  7671. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  7672. "shasum": ""
  7673. },
  7674. "require": {
  7675. "php": ">=7.2.5"
  7676. },
  7677. "suggest": {
  7678. "symfony/translation-implementation": ""
  7679. },
  7680. "type": "library",
  7681. "extra": {
  7682. "branch-alias": {
  7683. "dev-master": "2.3-dev"
  7684. },
  7685. "thanks": {
  7686. "name": "symfony/contracts",
  7687. "url": "https://github.com/symfony/contracts"
  7688. }
  7689. },
  7690. "autoload": {
  7691. "psr-4": {
  7692. "Symfony\\Contracts\\Translation\\": ""
  7693. }
  7694. },
  7695. "notification-url": "https://packagist.org/downloads/",
  7696. "license": [
  7697. "MIT"
  7698. ],
  7699. "authors": [
  7700. {
  7701. "name": "Nicolas Grekas",
  7702. "email": "p@tchwork.com"
  7703. },
  7704. {
  7705. "name": "Symfony Community",
  7706. "homepage": "https://symfony.com/contributors"
  7707. }
  7708. ],
  7709. "description": "Generic abstractions related to translation",
  7710. "homepage": "https://symfony.com",
  7711. "keywords": [
  7712. "abstractions",
  7713. "contracts",
  7714. "decoupling",
  7715. "interfaces",
  7716. "interoperability",
  7717. "standards"
  7718. ],
  7719. "support": {
  7720. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  7721. },
  7722. "funding": [
  7723. {
  7724. "url": "https://symfony.com/sponsor",
  7725. "type": "custom"
  7726. },
  7727. {
  7728. "url": "https://github.com/fabpot",
  7729. "type": "github"
  7730. },
  7731. {
  7732. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7733. "type": "tidelift"
  7734. }
  7735. ],
  7736. "time": "2020-09-28T13:05:58+00:00"
  7737. },
  7738. {
  7739. "name": "symfony/twig-bridge",
  7740. "version": "v5.1.8",
  7741. "source": {
  7742. "type": "git",
  7743. "url": "https://github.com/symfony/twig-bridge.git",
  7744. "reference": "874735a8c97963af2009e0eaee55b17fc0846db2"
  7745. },
  7746. "dist": {
  7747. "type": "zip",
  7748. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/874735a8c97963af2009e0eaee55b17fc0846db2",
  7749. "reference": "874735a8c97963af2009e0eaee55b17fc0846db2",
  7750. "shasum": ""
  7751. },
  7752. "require": {
  7753. "php": ">=7.2.5",
  7754. "symfony/polyfill-php80": "^1.15",
  7755. "symfony/translation-contracts": "^1.1|^2",
  7756. "twig/twig": "^2.10|^3.0"
  7757. },
  7758. "conflict": {
  7759. "symfony/console": "<4.4",
  7760. "symfony/form": "<5.1",
  7761. "symfony/http-foundation": "<4.4",
  7762. "symfony/http-kernel": "<4.4",
  7763. "symfony/translation": "<5.0",
  7764. "symfony/workflow": "<4.4"
  7765. },
  7766. "require-dev": {
  7767. "egulias/email-validator": "^2.1.10",
  7768. "symfony/asset": "^4.4|^5.0",
  7769. "symfony/console": "^4.4|^5.0",
  7770. "symfony/dependency-injection": "^4.4|^5.0",
  7771. "symfony/expression-language": "^4.4|^5.0",
  7772. "symfony/finder": "^4.4|^5.0",
  7773. "symfony/form": "^5.1",
  7774. "symfony/http-foundation": "^4.4|^5.0",
  7775. "symfony/http-kernel": "^4.4|^5.0",
  7776. "symfony/mime": "^4.4|^5.0",
  7777. "symfony/polyfill-intl-icu": "~1.0",
  7778. "symfony/routing": "^4.4|^5.0",
  7779. "symfony/security-acl": "^2.8|^3.0",
  7780. "symfony/security-core": "^4.4|^5.0",
  7781. "symfony/security-csrf": "^4.4|^5.0",
  7782. "symfony/security-http": "^4.4|^5.0",
  7783. "symfony/stopwatch": "^4.4|^5.0",
  7784. "symfony/translation": "^5.0",
  7785. "symfony/web-link": "^4.4|^5.0",
  7786. "symfony/workflow": "^4.4|^5.0",
  7787. "symfony/yaml": "^4.4|^5.0",
  7788. "twig/cssinliner-extra": "^2.12",
  7789. "twig/inky-extra": "^2.12",
  7790. "twig/markdown-extra": "^2.12"
  7791. },
  7792. "suggest": {
  7793. "symfony/asset": "For using the AssetExtension",
  7794. "symfony/expression-language": "For using the ExpressionExtension",
  7795. "symfony/finder": "",
  7796. "symfony/form": "For using the FormExtension",
  7797. "symfony/http-kernel": "For using the HttpKernelExtension",
  7798. "symfony/routing": "For using the RoutingExtension",
  7799. "symfony/security-core": "For using the SecurityExtension",
  7800. "symfony/security-csrf": "For using the CsrfExtension",
  7801. "symfony/security-http": "For using the LogoutUrlExtension",
  7802. "symfony/stopwatch": "For using the StopwatchExtension",
  7803. "symfony/translation": "For using the TranslationExtension",
  7804. "symfony/var-dumper": "For using the DumpExtension",
  7805. "symfony/web-link": "For using the WebLinkExtension",
  7806. "symfony/yaml": "For using the YamlExtension"
  7807. },
  7808. "type": "symfony-bridge",
  7809. "autoload": {
  7810. "psr-4": {
  7811. "Symfony\\Bridge\\Twig\\": ""
  7812. },
  7813. "exclude-from-classmap": [
  7814. "/Tests/"
  7815. ]
  7816. },
  7817. "notification-url": "https://packagist.org/downloads/",
  7818. "license": [
  7819. "MIT"
  7820. ],
  7821. "authors": [
  7822. {
  7823. "name": "Fabien Potencier",
  7824. "email": "fabien@symfony.com"
  7825. },
  7826. {
  7827. "name": "Symfony Community",
  7828. "homepage": "https://symfony.com/contributors"
  7829. }
  7830. ],
  7831. "description": "Symfony Twig Bridge",
  7832. "homepage": "https://symfony.com",
  7833. "support": {
  7834. "source": "https://github.com/symfony/twig-bridge/tree/v5.1.8"
  7835. },
  7836. "funding": [
  7837. {
  7838. "url": "https://symfony.com/sponsor",
  7839. "type": "custom"
  7840. },
  7841. {
  7842. "url": "https://github.com/fabpot",
  7843. "type": "github"
  7844. },
  7845. {
  7846. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7847. "type": "tidelift"
  7848. }
  7849. ],
  7850. "time": "2020-10-24T12:01:57+00:00"
  7851. },
  7852. {
  7853. "name": "symfony/twig-bundle",
  7854. "version": "v5.1.8",
  7855. "source": {
  7856. "type": "git",
  7857. "url": "https://github.com/symfony/twig-bundle.git",
  7858. "reference": "370bb30a9e8dc2b0c29791eec300b0b529bd783f"
  7859. },
  7860. "dist": {
  7861. "type": "zip",
  7862. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/370bb30a9e8dc2b0c29791eec300b0b529bd783f",
  7863. "reference": "370bb30a9e8dc2b0c29791eec300b0b529bd783f",
  7864. "shasum": ""
  7865. },
  7866. "require": {
  7867. "php": ">=7.2.5",
  7868. "symfony/config": "^4.4|^5.0",
  7869. "symfony/http-foundation": "^4.4|^5.0",
  7870. "symfony/http-kernel": "^5.0",
  7871. "symfony/polyfill-ctype": "~1.8",
  7872. "symfony/twig-bridge": "^5.0",
  7873. "twig/twig": "^2.10|^3.0"
  7874. },
  7875. "conflict": {
  7876. "symfony/dependency-injection": "<4.4",
  7877. "symfony/framework-bundle": "<5.0",
  7878. "symfony/translation": "<5.0"
  7879. },
  7880. "require-dev": {
  7881. "doctrine/annotations": "~1.7",
  7882. "doctrine/cache": "~1.0",
  7883. "symfony/asset": "^4.4|^5.0",
  7884. "symfony/dependency-injection": "^4.4|^5.0",
  7885. "symfony/expression-language": "^4.4|^5.0",
  7886. "symfony/finder": "^4.4|^5.0",
  7887. "symfony/form": "^4.4|^5.0",
  7888. "symfony/framework-bundle": "^5.0",
  7889. "symfony/routing": "^4.4|^5.0",
  7890. "symfony/stopwatch": "^4.4|^5.0",
  7891. "symfony/translation": "^5.0",
  7892. "symfony/web-link": "^4.4|^5.0",
  7893. "symfony/yaml": "^4.4|^5.0"
  7894. },
  7895. "type": "symfony-bundle",
  7896. "autoload": {
  7897. "psr-4": {
  7898. "Symfony\\Bundle\\TwigBundle\\": ""
  7899. },
  7900. "exclude-from-classmap": [
  7901. "/Tests/"
  7902. ]
  7903. },
  7904. "notification-url": "https://packagist.org/downloads/",
  7905. "license": [
  7906. "MIT"
  7907. ],
  7908. "authors": [
  7909. {
  7910. "name": "Fabien Potencier",
  7911. "email": "fabien@symfony.com"
  7912. },
  7913. {
  7914. "name": "Symfony Community",
  7915. "homepage": "https://symfony.com/contributors"
  7916. }
  7917. ],
  7918. "description": "Symfony TwigBundle",
  7919. "homepage": "https://symfony.com",
  7920. "support": {
  7921. "source": "https://github.com/symfony/twig-bundle/tree/v5.1.8"
  7922. },
  7923. "funding": [
  7924. {
  7925. "url": "https://symfony.com/sponsor",
  7926. "type": "custom"
  7927. },
  7928. {
  7929. "url": "https://github.com/fabpot",
  7930. "type": "github"
  7931. },
  7932. {
  7933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7934. "type": "tidelift"
  7935. }
  7936. ],
  7937. "time": "2020-10-24T12:01:57+00:00"
  7938. },
  7939. {
  7940. "name": "symfony/twig-pack",
  7941. "version": "v1.0.2",
  7942. "source": {
  7943. "type": "git",
  7944. "url": "https://github.com/symfony/twig-pack.git",
  7945. "reference": "08a73e833e07921c464336deb7630f93e85ef930"
  7946. },
  7947. "dist": {
  7948. "type": "zip",
  7949. "url": "https://api.github.com/repos/symfony/twig-pack/zipball/08a73e833e07921c464336deb7630f93e85ef930",
  7950. "reference": "08a73e833e07921c464336deb7630f93e85ef930",
  7951. "shasum": ""
  7952. },
  7953. "require": {
  7954. "symfony/twig-bundle": "*",
  7955. "twig/extra-bundle": "^2.12|^3.0",
  7956. "twig/twig": "^2.12|^3.0"
  7957. },
  7958. "type": "symfony-pack",
  7959. "notification-url": "https://packagist.org/downloads/",
  7960. "license": [
  7961. "MIT"
  7962. ],
  7963. "description": "A Twig pack for Symfony projects",
  7964. "support": {
  7965. "issues": "https://github.com/symfony/twig-pack/issues",
  7966. "source": "https://github.com/symfony/twig-pack/tree/v1.0.2"
  7967. },
  7968. "funding": [
  7969. {
  7970. "url": "https://symfony.com/sponsor",
  7971. "type": "custom"
  7972. },
  7973. {
  7974. "url": "https://github.com/fabpot",
  7975. "type": "github"
  7976. },
  7977. {
  7978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7979. "type": "tidelift"
  7980. }
  7981. ],
  7982. "time": "2020-10-19T08:46:41+00:00"
  7983. },
  7984. {
  7985. "name": "symfony/validator",
  7986. "version": "v5.1.8",
  7987. "source": {
  7988. "type": "git",
  7989. "url": "https://github.com/symfony/validator.git",
  7990. "reference": "360acadab7edcdca9005c4ad3b535f9c20db62fb"
  7991. },
  7992. "dist": {
  7993. "type": "zip",
  7994. "url": "https://api.github.com/repos/symfony/validator/zipball/360acadab7edcdca9005c4ad3b535f9c20db62fb",
  7995. "reference": "360acadab7edcdca9005c4ad3b535f9c20db62fb",
  7996. "shasum": ""
  7997. },
  7998. "require": {
  7999. "php": ">=7.2.5",
  8000. "symfony/deprecation-contracts": "^2.0",
  8001. "symfony/polyfill-ctype": "~1.8",
  8002. "symfony/polyfill-mbstring": "~1.0",
  8003. "symfony/polyfill-php80": "^1.15",
  8004. "symfony/translation-contracts": "^1.1|^2"
  8005. },
  8006. "conflict": {
  8007. "doctrine/lexer": "<1.0.2",
  8008. "phpunit/phpunit": "<5.4.3",
  8009. "symfony/dependency-injection": "<4.4",
  8010. "symfony/expression-language": "<5.1",
  8011. "symfony/http-kernel": "<4.4",
  8012. "symfony/intl": "<4.4",
  8013. "symfony/translation": "<4.4",
  8014. "symfony/yaml": "<4.4"
  8015. },
  8016. "require-dev": {
  8017. "doctrine/annotations": "~1.7",
  8018. "doctrine/cache": "~1.0",
  8019. "egulias/email-validator": "^2.1.10",
  8020. "symfony/cache": "^4.4|^5.0",
  8021. "symfony/config": "^4.4|^5.0",
  8022. "symfony/dependency-injection": "^4.4|^5.0",
  8023. "symfony/expression-language": "^5.1",
  8024. "symfony/http-client": "^4.4|^5.0",
  8025. "symfony/http-foundation": "^4.4|^5.0",
  8026. "symfony/http-kernel": "^4.4|^5.0",
  8027. "symfony/intl": "^4.4|^5.0",
  8028. "symfony/mime": "^4.4|^5.0",
  8029. "symfony/property-access": "^4.4|^5.0",
  8030. "symfony/property-info": "^4.4|^5.0",
  8031. "symfony/translation": "^4.4|^5.0",
  8032. "symfony/yaml": "^4.4|^5.0"
  8033. },
  8034. "suggest": {
  8035. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8036. "doctrine/cache": "For using the default cached annotation reader.",
  8037. "egulias/email-validator": "Strict (RFC compliant) email validation",
  8038. "psr/cache-implementation": "For using the mapping cache.",
  8039. "symfony/config": "",
  8040. "symfony/expression-language": "For using the Expression validator and the ExpressionLanguageSyntax constraints",
  8041. "symfony/http-foundation": "",
  8042. "symfony/intl": "",
  8043. "symfony/property-access": "For accessing properties within comparison constraints",
  8044. "symfony/property-info": "To automatically add NotNull and Type constraints",
  8045. "symfony/translation": "For translating validation errors.",
  8046. "symfony/yaml": ""
  8047. },
  8048. "type": "library",
  8049. "autoload": {
  8050. "psr-4": {
  8051. "Symfony\\Component\\Validator\\": ""
  8052. },
  8053. "exclude-from-classmap": [
  8054. "/Tests/"
  8055. ]
  8056. },
  8057. "notification-url": "https://packagist.org/downloads/",
  8058. "license": [
  8059. "MIT"
  8060. ],
  8061. "authors": [
  8062. {
  8063. "name": "Fabien Potencier",
  8064. "email": "fabien@symfony.com"
  8065. },
  8066. {
  8067. "name": "Symfony Community",
  8068. "homepage": "https://symfony.com/contributors"
  8069. }
  8070. ],
  8071. "description": "Symfony Validator Component",
  8072. "homepage": "https://symfony.com",
  8073. "support": {
  8074. "source": "https://github.com/symfony/validator/tree/v5.1.8"
  8075. },
  8076. "funding": [
  8077. {
  8078. "url": "https://symfony.com/sponsor",
  8079. "type": "custom"
  8080. },
  8081. {
  8082. "url": "https://github.com/fabpot",
  8083. "type": "github"
  8084. },
  8085. {
  8086. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8087. "type": "tidelift"
  8088. }
  8089. ],
  8090. "time": "2020-10-28T05:25:38+00:00"
  8091. },
  8092. {
  8093. "name": "symfony/var-dumper",
  8094. "version": "v5.1.8",
  8095. "source": {
  8096. "type": "git",
  8097. "url": "https://github.com/symfony/var-dumper.git",
  8098. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a"
  8099. },
  8100. "dist": {
  8101. "type": "zip",
  8102. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  8103. "reference": "4e13f3fcefb1fcaaa5efb5403581406f4e840b9a",
  8104. "shasum": ""
  8105. },
  8106. "require": {
  8107. "php": ">=7.2.5",
  8108. "symfony/polyfill-mbstring": "~1.0",
  8109. "symfony/polyfill-php80": "^1.15"
  8110. },
  8111. "conflict": {
  8112. "phpunit/phpunit": "<5.4.3",
  8113. "symfony/console": "<4.4"
  8114. },
  8115. "require-dev": {
  8116. "ext-iconv": "*",
  8117. "symfony/console": "^4.4|^5.0",
  8118. "symfony/process": "^4.4|^5.0",
  8119. "twig/twig": "^2.4|^3.0"
  8120. },
  8121. "suggest": {
  8122. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8123. "ext-intl": "To show region name in time zone dump",
  8124. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8125. },
  8126. "bin": [
  8127. "Resources/bin/var-dump-server"
  8128. ],
  8129. "type": "library",
  8130. "autoload": {
  8131. "files": [
  8132. "Resources/functions/dump.php"
  8133. ],
  8134. "psr-4": {
  8135. "Symfony\\Component\\VarDumper\\": ""
  8136. },
  8137. "exclude-from-classmap": [
  8138. "/Tests/"
  8139. ]
  8140. },
  8141. "notification-url": "https://packagist.org/downloads/",
  8142. "license": [
  8143. "MIT"
  8144. ],
  8145. "authors": [
  8146. {
  8147. "name": "Nicolas Grekas",
  8148. "email": "p@tchwork.com"
  8149. },
  8150. {
  8151. "name": "Symfony Community",
  8152. "homepage": "https://symfony.com/contributors"
  8153. }
  8154. ],
  8155. "description": "Symfony mechanism for exploring and dumping PHP variables",
  8156. "homepage": "https://symfony.com",
  8157. "keywords": [
  8158. "debug",
  8159. "dump"
  8160. ],
  8161. "support": {
  8162. "source": "https://github.com/symfony/var-dumper/tree/v5.1.8"
  8163. },
  8164. "funding": [
  8165. {
  8166. "url": "https://symfony.com/sponsor",
  8167. "type": "custom"
  8168. },
  8169. {
  8170. "url": "https://github.com/fabpot",
  8171. "type": "github"
  8172. },
  8173. {
  8174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8175. "type": "tidelift"
  8176. }
  8177. ],
  8178. "time": "2020-10-27T10:11:13+00:00"
  8179. },
  8180. {
  8181. "name": "symfony/var-exporter",
  8182. "version": "v5.1.8",
  8183. "source": {
  8184. "type": "git",
  8185. "url": "https://github.com/symfony/var-exporter.git",
  8186. "reference": "b4048bfc6248413592462c029381bdb2f7b6525f"
  8187. },
  8188. "dist": {
  8189. "type": "zip",
  8190. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b4048bfc6248413592462c029381bdb2f7b6525f",
  8191. "reference": "b4048bfc6248413592462c029381bdb2f7b6525f",
  8192. "shasum": ""
  8193. },
  8194. "require": {
  8195. "php": ">=7.2.5",
  8196. "symfony/polyfill-php80": "^1.15"
  8197. },
  8198. "require-dev": {
  8199. "symfony/var-dumper": "^4.4.9|^5.0.9"
  8200. },
  8201. "type": "library",
  8202. "autoload": {
  8203. "psr-4": {
  8204. "Symfony\\Component\\VarExporter\\": ""
  8205. },
  8206. "exclude-from-classmap": [
  8207. "/Tests/"
  8208. ]
  8209. },
  8210. "notification-url": "https://packagist.org/downloads/",
  8211. "license": [
  8212. "MIT"
  8213. ],
  8214. "authors": [
  8215. {
  8216. "name": "Nicolas Grekas",
  8217. "email": "p@tchwork.com"
  8218. },
  8219. {
  8220. "name": "Symfony Community",
  8221. "homepage": "https://symfony.com/contributors"
  8222. }
  8223. ],
  8224. "description": "A blend of var_export() + serialize() to turn any serializable data structure to plain PHP code",
  8225. "homepage": "https://symfony.com",
  8226. "keywords": [
  8227. "clone",
  8228. "construct",
  8229. "export",
  8230. "hydrate",
  8231. "instantiate",
  8232. "serialize"
  8233. ],
  8234. "support": {
  8235. "source": "https://github.com/symfony/var-exporter/tree/v5.1.8"
  8236. },
  8237. "funding": [
  8238. {
  8239. "url": "https://symfony.com/sponsor",
  8240. "type": "custom"
  8241. },
  8242. {
  8243. "url": "https://github.com/fabpot",
  8244. "type": "github"
  8245. },
  8246. {
  8247. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8248. "type": "tidelift"
  8249. }
  8250. ],
  8251. "time": "2020-10-24T12:01:57+00:00"
  8252. },
  8253. {
  8254. "name": "symfony/web-link",
  8255. "version": "v5.1.8",
  8256. "source": {
  8257. "type": "git",
  8258. "url": "https://github.com/symfony/web-link.git",
  8259. "reference": "e805314ad8c4298d9bfc75335e35f83d6db2f43f"
  8260. },
  8261. "dist": {
  8262. "type": "zip",
  8263. "url": "https://api.github.com/repos/symfony/web-link/zipball/e805314ad8c4298d9bfc75335e35f83d6db2f43f",
  8264. "reference": "e805314ad8c4298d9bfc75335e35f83d6db2f43f",
  8265. "shasum": ""
  8266. },
  8267. "require": {
  8268. "php": ">=7.2.5",
  8269. "psr/link": "^1.0"
  8270. },
  8271. "conflict": {
  8272. "symfony/http-kernel": "<4.4"
  8273. },
  8274. "provide": {
  8275. "psr/link-implementation": "1.0"
  8276. },
  8277. "require-dev": {
  8278. "symfony/http-foundation": "^4.4|^5.0",
  8279. "symfony/http-kernel": "^4.4|^5.0"
  8280. },
  8281. "suggest": {
  8282. "symfony/http-kernel": ""
  8283. },
  8284. "type": "library",
  8285. "autoload": {
  8286. "psr-4": {
  8287. "Symfony\\Component\\WebLink\\": ""
  8288. },
  8289. "exclude-from-classmap": [
  8290. "/Tests/"
  8291. ]
  8292. },
  8293. "notification-url": "https://packagist.org/downloads/",
  8294. "license": [
  8295. "MIT"
  8296. ],
  8297. "authors": [
  8298. {
  8299. "name": "Kévin Dunglas",
  8300. "email": "dunglas@gmail.com"
  8301. },
  8302. {
  8303. "name": "Symfony Community",
  8304. "homepage": "https://symfony.com/contributors"
  8305. }
  8306. ],
  8307. "description": "Symfony WebLink Component",
  8308. "homepage": "https://symfony.com",
  8309. "keywords": [
  8310. "dns-prefetch",
  8311. "http",
  8312. "http2",
  8313. "link",
  8314. "performance",
  8315. "prefetch",
  8316. "preload",
  8317. "prerender",
  8318. "psr13",
  8319. "push"
  8320. ],
  8321. "support": {
  8322. "source": "https://github.com/symfony/web-link/tree/v5.1.8"
  8323. },
  8324. "funding": [
  8325. {
  8326. "url": "https://symfony.com/sponsor",
  8327. "type": "custom"
  8328. },
  8329. {
  8330. "url": "https://github.com/fabpot",
  8331. "type": "github"
  8332. },
  8333. {
  8334. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8335. "type": "tidelift"
  8336. }
  8337. ],
  8338. "time": "2020-10-24T12:01:57+00:00"
  8339. },
  8340. {
  8341. "name": "symfony/yaml",
  8342. "version": "v5.1.8",
  8343. "source": {
  8344. "type": "git",
  8345. "url": "https://github.com/symfony/yaml.git",
  8346. "reference": "f284e032c3cefefb9943792132251b79a6127ca6"
  8347. },
  8348. "dist": {
  8349. "type": "zip",
  8350. "url": "https://api.github.com/repos/symfony/yaml/zipball/f284e032c3cefefb9943792132251b79a6127ca6",
  8351. "reference": "f284e032c3cefefb9943792132251b79a6127ca6",
  8352. "shasum": ""
  8353. },
  8354. "require": {
  8355. "php": ">=7.2.5",
  8356. "symfony/deprecation-contracts": "^2.1",
  8357. "symfony/polyfill-ctype": "~1.8"
  8358. },
  8359. "conflict": {
  8360. "symfony/console": "<4.4"
  8361. },
  8362. "require-dev": {
  8363. "symfony/console": "^4.4|^5.0"
  8364. },
  8365. "suggest": {
  8366. "symfony/console": "For validating YAML files using the lint command"
  8367. },
  8368. "bin": [
  8369. "Resources/bin/yaml-lint"
  8370. ],
  8371. "type": "library",
  8372. "autoload": {
  8373. "psr-4": {
  8374. "Symfony\\Component\\Yaml\\": ""
  8375. },
  8376. "exclude-from-classmap": [
  8377. "/Tests/"
  8378. ]
  8379. },
  8380. "notification-url": "https://packagist.org/downloads/",
  8381. "license": [
  8382. "MIT"
  8383. ],
  8384. "authors": [
  8385. {
  8386. "name": "Fabien Potencier",
  8387. "email": "fabien@symfony.com"
  8388. },
  8389. {
  8390. "name": "Symfony Community",
  8391. "homepage": "https://symfony.com/contributors"
  8392. }
  8393. ],
  8394. "description": "Symfony Yaml Component",
  8395. "homepage": "https://symfony.com",
  8396. "support": {
  8397. "source": "https://github.com/symfony/yaml/tree/v5.1.8"
  8398. },
  8399. "funding": [
  8400. {
  8401. "url": "https://symfony.com/sponsor",
  8402. "type": "custom"
  8403. },
  8404. {
  8405. "url": "https://github.com/fabpot",
  8406. "type": "github"
  8407. },
  8408. {
  8409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8410. "type": "tidelift"
  8411. }
  8412. ],
  8413. "time": "2020-10-24T12:03:25+00:00"
  8414. },
  8415. {
  8416. "name": "symfonycasts/verify-email-bundle",
  8417. "version": "v1.0.0",
  8418. "source": {
  8419. "type": "git",
  8420. "url": "https://github.com/SymfonyCasts/verify-email-bundle.git",
  8421. "reference": "501e503f6a8ae282ffb3fff167e0740dae56b1ae"
  8422. },
  8423. "dist": {
  8424. "type": "zip",
  8425. "url": "https://api.github.com/repos/SymfonyCasts/verify-email-bundle/zipball/501e503f6a8ae282ffb3fff167e0740dae56b1ae",
  8426. "reference": "501e503f6a8ae282ffb3fff167e0740dae56b1ae",
  8427. "shasum": ""
  8428. },
  8429. "require": {
  8430. "php": "^7.2.5",
  8431. "symfony/config": "^4.4 | ^5.0",
  8432. "symfony/dependency-injection": "^4.4 | ^5.0",
  8433. "symfony/http-kernel": "^4.4 | ^5.0",
  8434. "symfony/routing": "^4.4 | ^5.0"
  8435. },
  8436. "conflict": {
  8437. "symfony/framework-bundle": "<4.4"
  8438. },
  8439. "require-dev": {
  8440. "doctrine/orm": "^2.7",
  8441. "doctrine/persistence": "^1.3",
  8442. "friendsofphp/php-cs-fixer": "^2.16",
  8443. "symfony/framework-bundle": "^4.4 | ^5.0",
  8444. "symfony/phpunit-bridge": "^5.0",
  8445. "vimeo/psalm": "^3.8"
  8446. },
  8447. "type": "symfony-bundle",
  8448. "autoload": {
  8449. "psr-4": {
  8450. "SymfonyCasts\\Bundle\\VerifyEmail\\": "src/"
  8451. }
  8452. },
  8453. "notification-url": "https://packagist.org/downloads/",
  8454. "license": [
  8455. "MIT"
  8456. ],
  8457. "description": "Simple, stylish Email Verification for Symfony",
  8458. "support": {
  8459. "issues": "https://github.com/SymfonyCasts/verify-email-bundle/issues",
  8460. "source": "https://github.com/SymfonyCasts/verify-email-bundle/tree/master"
  8461. },
  8462. "time": "2020-05-24T11:04:34+00:00"
  8463. },
  8464. {
  8465. "name": "tgalopin/html-sanitizer",
  8466. "version": "1.4.0",
  8467. "source": {
  8468. "type": "git",
  8469. "url": "https://github.com/tgalopin/html-sanitizer.git",
  8470. "reference": "56cca6b48de4e50d16a4f549e3e677ae0d561e91"
  8471. },
  8472. "dist": {
  8473. "type": "zip",
  8474. "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/56cca6b48de4e50d16a4f549e3e677ae0d561e91",
  8475. "reference": "56cca6b48de4e50d16a4f549e3e677ae0d561e91",
  8476. "shasum": ""
  8477. },
  8478. "require": {
  8479. "ext-dom": "*",
  8480. "league/uri-parser": "^1.4.1",
  8481. "masterminds/html5": "^2.4",
  8482. "php": ">=7.1",
  8483. "psr/log": "^1.0"
  8484. },
  8485. "require-dev": {
  8486. "phpunit/phpunit": "^7.4",
  8487. "symfony/var-dumper": "^4.1"
  8488. },
  8489. "type": "library",
  8490. "autoload": {
  8491. "psr-4": {
  8492. "HtmlSanitizer\\": "src"
  8493. }
  8494. },
  8495. "notification-url": "https://packagist.org/downloads/",
  8496. "license": [
  8497. "MIT"
  8498. ],
  8499. "authors": [
  8500. {
  8501. "name": "Titouan Galopin",
  8502. "email": "galopintitouan@gmail.com"
  8503. }
  8504. ],
  8505. "description": "Sanitize untrustworthy HTML user input",
  8506. "support": {
  8507. "issues": "https://github.com/tgalopin/html-sanitizer/issues",
  8508. "source": "https://github.com/tgalopin/html-sanitizer/tree/master"
  8509. },
  8510. "time": "2020-02-03T16:51:08+00:00"
  8511. },
  8512. {
  8513. "name": "tgalopin/html-sanitizer-bundle",
  8514. "version": "1.2.0",
  8515. "source": {
  8516. "type": "git",
  8517. "url": "https://github.com/tgalopin/html-sanitizer-bundle.git",
  8518. "reference": "df42087a1b1660eea37032f9ce3dc0997452d3e2"
  8519. },
  8520. "dist": {
  8521. "type": "zip",
  8522. "url": "https://api.github.com/repos/tgalopin/html-sanitizer-bundle/zipball/df42087a1b1660eea37032f9ce3dc0997452d3e2",
  8523. "reference": "df42087a1b1660eea37032f9ce3dc0997452d3e2",
  8524. "shasum": ""
  8525. },
  8526. "require": {
  8527. "php": ">=7.1",
  8528. "symfony/framework-bundle": "^3.4|^4.0|^5.0",
  8529. "tgalopin/html-sanitizer": "^1.1"
  8530. },
  8531. "require-dev": {
  8532. "phpunit/phpunit": "^7.4",
  8533. "symfony/form": "^4.1|^5.0",
  8534. "symfony/twig-bundle": "^4.1|^5.0",
  8535. "symfony/var-dumper": "^4.1|^5.0"
  8536. },
  8537. "type": "symfony-bundle",
  8538. "autoload": {
  8539. "psr-4": {
  8540. "HtmlSanitizer\\Bundle\\": "src"
  8541. }
  8542. },
  8543. "notification-url": "https://packagist.org/downloads/",
  8544. "license": [
  8545. "MIT"
  8546. ],
  8547. "authors": [
  8548. {
  8549. "name": "Titouan Galopin",
  8550. "email": "galopintitouan@gmail.com"
  8551. }
  8552. ],
  8553. "description": "Symfony Bundle for https://github.com/tgalopin/html-sanitizer",
  8554. "support": {
  8555. "issues": "https://github.com/tgalopin/html-sanitizer-bundle/issues",
  8556. "source": "https://github.com/tgalopin/html-sanitizer-bundle/tree/master"
  8557. },
  8558. "time": "2019-11-23T09:46:29+00:00"
  8559. },
  8560. {
  8561. "name": "twig/extra-bundle",
  8562. "version": "v3.1.1",
  8563. "source": {
  8564. "type": "git",
  8565. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8566. "reference": "a7c5799cf742ab0827f5d32df37528ee8bf5a233"
  8567. },
  8568. "dist": {
  8569. "type": "zip",
  8570. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/a7c5799cf742ab0827f5d32df37528ee8bf5a233",
  8571. "reference": "a7c5799cf742ab0827f5d32df37528ee8bf5a233",
  8572. "shasum": ""
  8573. },
  8574. "require": {
  8575. "php": "^7.1.3|^8.0",
  8576. "symfony/framework-bundle": "^4.3|^5.0",
  8577. "symfony/twig-bundle": "^4.3|^5.0",
  8578. "twig/twig": "^2.4|^3.0"
  8579. },
  8580. "require-dev": {
  8581. "twig/cssinliner-extra": "^2.12|^3.0",
  8582. "twig/html-extra": "^2.12|^3.0",
  8583. "twig/inky-extra": "^2.12|^3.0",
  8584. "twig/intl-extra": "^2.12|^3.0",
  8585. "twig/markdown-extra": "^2.12|^3.0"
  8586. },
  8587. "type": "symfony-bundle",
  8588. "extra": {
  8589. "branch-alias": {
  8590. "dev-master": "3.0-dev"
  8591. }
  8592. },
  8593. "autoload": {
  8594. "psr-4": {
  8595. "Twig\\Extra\\TwigExtraBundle\\": "src/"
  8596. }
  8597. },
  8598. "notification-url": "https://packagist.org/downloads/",
  8599. "license": [
  8600. "MIT"
  8601. ],
  8602. "authors": [
  8603. {
  8604. "name": "Fabien Potencier",
  8605. "email": "fabien@symfony.com",
  8606. "homepage": "http://fabien.potencier.org",
  8607. "role": "Lead Developer"
  8608. }
  8609. ],
  8610. "description": "A Symfony bundle for extra Twig extensions",
  8611. "homepage": "https://twig.symfony.com",
  8612. "keywords": [
  8613. "bundle",
  8614. "extra",
  8615. "twig"
  8616. ],
  8617. "support": {
  8618. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.1.1"
  8619. },
  8620. "funding": [
  8621. {
  8622. "url": "https://github.com/fabpot",
  8623. "type": "github"
  8624. },
  8625. {
  8626. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8627. "type": "tidelift"
  8628. }
  8629. ],
  8630. "time": "2020-05-21T09:56:39+00:00"
  8631. },
  8632. {
  8633. "name": "twig/markdown-extra",
  8634. "version": "v3.1.1",
  8635. "source": {
  8636. "type": "git",
  8637. "url": "https://github.com/twigphp/markdown-extra.git",
  8638. "reference": "1fe798d559665b64bda4b08eda10793427d7e3bc"
  8639. },
  8640. "dist": {
  8641. "type": "zip",
  8642. "url": "https://api.github.com/repos/twigphp/markdown-extra/zipball/1fe798d559665b64bda4b08eda10793427d7e3bc",
  8643. "reference": "1fe798d559665b64bda4b08eda10793427d7e3bc",
  8644. "shasum": ""
  8645. },
  8646. "require": {
  8647. "php": ">=7.1.3",
  8648. "twig/twig": "^2.4|^3.0"
  8649. },
  8650. "require-dev": {
  8651. "erusev/parsedown": "^1.7",
  8652. "league/commonmark": "^1.0",
  8653. "league/html-to-markdown": "^4.8",
  8654. "michelf/php-markdown": "^1.8",
  8655. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  8656. },
  8657. "type": "library",
  8658. "extra": {
  8659. "branch-alias": {
  8660. "dev-master": "3.0-dev"
  8661. }
  8662. },
  8663. "autoload": {
  8664. "psr-4": {
  8665. "Twig\\Extra\\Markdown\\": "src/"
  8666. }
  8667. },
  8668. "notification-url": "https://packagist.org/downloads/",
  8669. "license": [
  8670. "MIT"
  8671. ],
  8672. "authors": [
  8673. {
  8674. "name": "Fabien Potencier",
  8675. "email": "fabien@symfony.com",
  8676. "homepage": "http://fabien.potencier.org",
  8677. "role": "Lead Developer"
  8678. }
  8679. ],
  8680. "description": "A Twig extension for Markdown",
  8681. "homepage": "https://twig.symfony.com",
  8682. "keywords": [
  8683. "html",
  8684. "markdown",
  8685. "twig"
  8686. ],
  8687. "support": {
  8688. "source": "https://github.com/twigphp/markdown-extra/tree/v3.1.1"
  8689. },
  8690. "funding": [
  8691. {
  8692. "url": "https://github.com/fabpot",
  8693. "type": "github"
  8694. },
  8695. {
  8696. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8697. "type": "tidelift"
  8698. }
  8699. ],
  8700. "time": "2020-08-05T14:54:08+00:00"
  8701. },
  8702. {
  8703. "name": "twig/twig",
  8704. "version": "v3.1.1",
  8705. "source": {
  8706. "type": "git",
  8707. "url": "https://github.com/twigphp/Twig.git",
  8708. "reference": "b02fa41f3783a2616eccef7b92fbc2343ffed737"
  8709. },
  8710. "dist": {
  8711. "type": "zip",
  8712. "url": "https://api.github.com/repos/twigphp/Twig/zipball/b02fa41f3783a2616eccef7b92fbc2343ffed737",
  8713. "reference": "b02fa41f3783a2616eccef7b92fbc2343ffed737",
  8714. "shasum": ""
  8715. },
  8716. "require": {
  8717. "php": ">=7.2.5",
  8718. "symfony/polyfill-ctype": "^1.8",
  8719. "symfony/polyfill-mbstring": "^1.3"
  8720. },
  8721. "require-dev": {
  8722. "psr/container": "^1.0",
  8723. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  8724. },
  8725. "type": "library",
  8726. "extra": {
  8727. "branch-alias": {
  8728. "dev-master": "3.1-dev"
  8729. }
  8730. },
  8731. "autoload": {
  8732. "psr-4": {
  8733. "Twig\\": "src/"
  8734. }
  8735. },
  8736. "notification-url": "https://packagist.org/downloads/",
  8737. "license": [
  8738. "BSD-3-Clause"
  8739. ],
  8740. "authors": [
  8741. {
  8742. "name": "Fabien Potencier",
  8743. "email": "fabien@symfony.com",
  8744. "homepage": "http://fabien.potencier.org",
  8745. "role": "Lead Developer"
  8746. },
  8747. {
  8748. "name": "Twig Team",
  8749. "role": "Contributors"
  8750. },
  8751. {
  8752. "name": "Armin Ronacher",
  8753. "email": "armin.ronacher@active-4.com",
  8754. "role": "Project Founder"
  8755. }
  8756. ],
  8757. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8758. "homepage": "https://twig.symfony.com",
  8759. "keywords": [
  8760. "templating"
  8761. ],
  8762. "support": {
  8763. "issues": "https://github.com/twigphp/Twig/issues",
  8764. "source": "https://github.com/twigphp/Twig/tree/v3.1.1"
  8765. },
  8766. "funding": [
  8767. {
  8768. "url": "https://github.com/fabpot",
  8769. "type": "github"
  8770. },
  8771. {
  8772. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8773. "type": "tidelift"
  8774. }
  8775. ],
  8776. "time": "2020-10-27T19:28:23+00:00"
  8777. },
  8778. {
  8779. "name": "webimpress/safe-writer",
  8780. "version": "2.1.0",
  8781. "source": {
  8782. "type": "git",
  8783. "url": "https://github.com/webimpress/safe-writer.git",
  8784. "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd"
  8785. },
  8786. "dist": {
  8787. "type": "zip",
  8788. "url": "https://api.github.com/repos/webimpress/safe-writer/zipball/5cfafdec5873c389036f14bf832a5efc9390dcdd",
  8789. "reference": "5cfafdec5873c389036f14bf832a5efc9390dcdd",
  8790. "shasum": ""
  8791. },
  8792. "require": {
  8793. "php": "^7.2 || ^8.0"
  8794. },
  8795. "require-dev": {
  8796. "phpunit/phpunit": "^8.5.8 || ^9.3.7",
  8797. "vimeo/psalm": "^3.14.2",
  8798. "webimpress/coding-standard": "^1.1.5"
  8799. },
  8800. "type": "library",
  8801. "extra": {
  8802. "branch-alias": {
  8803. "dev-master": "2.1.x-dev",
  8804. "dev-develop": "2.2.x-dev",
  8805. "dev-release-1.0": "1.0.x-dev"
  8806. }
  8807. },
  8808. "autoload": {
  8809. "psr-4": {
  8810. "Webimpress\\SafeWriter\\": "src/"
  8811. }
  8812. },
  8813. "notification-url": "https://packagist.org/downloads/",
  8814. "license": [
  8815. "BSD-2-Clause"
  8816. ],
  8817. "description": "Tool to write files safely, to avoid race conditions",
  8818. "keywords": [
  8819. "concurrent write",
  8820. "file writer",
  8821. "race condition",
  8822. "safe writer",
  8823. "webimpress"
  8824. ],
  8825. "support": {
  8826. "issues": "https://github.com/webimpress/safe-writer/issues",
  8827. "source": "https://github.com/webimpress/safe-writer/tree/master"
  8828. },
  8829. "funding": [
  8830. {
  8831. "url": "https://github.com/michalbundyra",
  8832. "type": "github"
  8833. }
  8834. ],
  8835. "time": "2020-08-25T07:21:11+00:00"
  8836. },
  8837. {
  8838. "name": "webmozart/assert",
  8839. "version": "1.9.1",
  8840. "source": {
  8841. "type": "git",
  8842. "url": "https://github.com/webmozart/assert.git",
  8843. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  8844. },
  8845. "dist": {
  8846. "type": "zip",
  8847. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8848. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8849. "shasum": ""
  8850. },
  8851. "require": {
  8852. "php": "^5.3.3 || ^7.0 || ^8.0",
  8853. "symfony/polyfill-ctype": "^1.8"
  8854. },
  8855. "conflict": {
  8856. "phpstan/phpstan": "<0.12.20",
  8857. "vimeo/psalm": "<3.9.1"
  8858. },
  8859. "require-dev": {
  8860. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8861. },
  8862. "type": "library",
  8863. "autoload": {
  8864. "psr-4": {
  8865. "Webmozart\\Assert\\": "src/"
  8866. }
  8867. },
  8868. "notification-url": "https://packagist.org/downloads/",
  8869. "license": [
  8870. "MIT"
  8871. ],
  8872. "authors": [
  8873. {
  8874. "name": "Bernhard Schussek",
  8875. "email": "bschussek@gmail.com"
  8876. }
  8877. ],
  8878. "description": "Assertions to validate method input/output with nice error messages.",
  8879. "keywords": [
  8880. "assert",
  8881. "check",
  8882. "validate"
  8883. ],
  8884. "support": {
  8885. "issues": "https://github.com/webmozart/assert/issues",
  8886. "source": "https://github.com/webmozart/assert/tree/master"
  8887. },
  8888. "time": "2020-07-08T17:02:28+00:00"
  8889. }
  8890. ],
  8891. "packages-dev": [
  8892. {
  8893. "name": "composer/semver",
  8894. "version": "3.2.2",
  8895. "source": {
  8896. "type": "git",
  8897. "url": "https://github.com/composer/semver.git",
  8898. "reference": "4089fddb67bcf6bf860d91b979e95be303835002"
  8899. },
  8900. "dist": {
  8901. "type": "zip",
  8902. "url": "https://api.github.com/repos/composer/semver/zipball/4089fddb67bcf6bf860d91b979e95be303835002",
  8903. "reference": "4089fddb67bcf6bf860d91b979e95be303835002",
  8904. "shasum": ""
  8905. },
  8906. "require": {
  8907. "php": "^5.3.2 || ^7.0 || ^8.0"
  8908. },
  8909. "require-dev": {
  8910. "phpstan/phpstan": "^0.12.19",
  8911. "symfony/phpunit-bridge": "^4.2 || ^5"
  8912. },
  8913. "type": "library",
  8914. "extra": {
  8915. "branch-alias": {
  8916. "dev-main": "3.x-dev"
  8917. }
  8918. },
  8919. "autoload": {
  8920. "psr-4": {
  8921. "Composer\\Semver\\": "src"
  8922. }
  8923. },
  8924. "notification-url": "https://packagist.org/downloads/",
  8925. "license": [
  8926. "MIT"
  8927. ],
  8928. "authors": [
  8929. {
  8930. "name": "Nils Adermann",
  8931. "email": "naderman@naderman.de",
  8932. "homepage": "http://www.naderman.de"
  8933. },
  8934. {
  8935. "name": "Jordi Boggiano",
  8936. "email": "j.boggiano@seld.be",
  8937. "homepage": "http://seld.be"
  8938. },
  8939. {
  8940. "name": "Rob Bast",
  8941. "email": "rob.bast@gmail.com",
  8942. "homepage": "http://robbast.nl"
  8943. }
  8944. ],
  8945. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8946. "keywords": [
  8947. "semantic",
  8948. "semver",
  8949. "validation",
  8950. "versioning"
  8951. ],
  8952. "support": {
  8953. "irc": "irc://irc.freenode.org/composer",
  8954. "issues": "https://github.com/composer/semver/issues",
  8955. "source": "https://github.com/composer/semver/tree/3.2.2"
  8956. },
  8957. "funding": [
  8958. {
  8959. "url": "https://packagist.com",
  8960. "type": "custom"
  8961. },
  8962. {
  8963. "url": "https://github.com/composer",
  8964. "type": "github"
  8965. },
  8966. {
  8967. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8968. "type": "tidelift"
  8969. }
  8970. ],
  8971. "time": "2020-10-14T08:51:15+00:00"
  8972. },
  8973. {
  8974. "name": "composer/xdebug-handler",
  8975. "version": "1.4.4",
  8976. "source": {
  8977. "type": "git",
  8978. "url": "https://github.com/composer/xdebug-handler.git",
  8979. "reference": "6e076a124f7ee146f2487554a94b6a19a74887ba"
  8980. },
  8981. "dist": {
  8982. "type": "zip",
  8983. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6e076a124f7ee146f2487554a94b6a19a74887ba",
  8984. "reference": "6e076a124f7ee146f2487554a94b6a19a74887ba",
  8985. "shasum": ""
  8986. },
  8987. "require": {
  8988. "php": "^5.3.2 || ^7.0 || ^8.0",
  8989. "psr/log": "^1.0"
  8990. },
  8991. "require-dev": {
  8992. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  8993. },
  8994. "type": "library",
  8995. "autoload": {
  8996. "psr-4": {
  8997. "Composer\\XdebugHandler\\": "src"
  8998. }
  8999. },
  9000. "notification-url": "https://packagist.org/downloads/",
  9001. "license": [
  9002. "MIT"
  9003. ],
  9004. "authors": [
  9005. {
  9006. "name": "John Stevenson",
  9007. "email": "john-stevenson@blueyonder.co.uk"
  9008. }
  9009. ],
  9010. "description": "Restarts a process without Xdebug.",
  9011. "keywords": [
  9012. "Xdebug",
  9013. "performance"
  9014. ],
  9015. "support": {
  9016. "irc": "irc://irc.freenode.org/composer",
  9017. "issues": "https://github.com/composer/xdebug-handler/issues",
  9018. "source": "https://github.com/composer/xdebug-handler/tree/1.4.4"
  9019. },
  9020. "funding": [
  9021. {
  9022. "url": "https://packagist.com",
  9023. "type": "custom"
  9024. },
  9025. {
  9026. "url": "https://github.com/composer",
  9027. "type": "github"
  9028. },
  9029. {
  9030. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  9031. "type": "tidelift"
  9032. }
  9033. ],
  9034. "time": "2020-10-24T12:39:10+00:00"
  9035. },
  9036. {
  9037. "name": "friendsofphp/php-cs-fixer",
  9038. "version": "v2.16.7",
  9039. "source": {
  9040. "type": "git",
  9041. "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
  9042. "reference": "4e35806a6d7d8510d6842ae932e8832363d22c87"
  9043. },
  9044. "dist": {
  9045. "type": "zip",
  9046. "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/4e35806a6d7d8510d6842ae932e8832363d22c87",
  9047. "reference": "4e35806a6d7d8510d6842ae932e8832363d22c87",
  9048. "shasum": ""
  9049. },
  9050. "require": {
  9051. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  9052. "composer/xdebug-handler": "^1.2",
  9053. "doctrine/annotations": "^1.2",
  9054. "ext-json": "*",
  9055. "ext-tokenizer": "*",
  9056. "php": "^7.1",
  9057. "php-cs-fixer/diff": "^1.3",
  9058. "symfony/console": "^3.4.43 || ^4.1.6 || ^5.0",
  9059. "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0",
  9060. "symfony/filesystem": "^3.0 || ^4.0 || ^5.0",
  9061. "symfony/finder": "^3.0 || ^4.0 || ^5.0",
  9062. "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0",
  9063. "symfony/polyfill-php70": "^1.0",
  9064. "symfony/polyfill-php72": "^1.4",
  9065. "symfony/process": "^3.0 || ^4.0 || ^5.0",
  9066. "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0"
  9067. },
  9068. "require-dev": {
  9069. "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
  9070. "justinrainbow/json-schema": "^5.0",
  9071. "keradus/cli-executor": "^1.4",
  9072. "mikey179/vfsstream": "^1.6",
  9073. "php-coveralls/php-coveralls": "^2.4.1",
  9074. "php-cs-fixer/accessible-object": "^1.0",
  9075. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  9076. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  9077. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.1",
  9078. "phpunitgoodpractices/traits": "^1.9.1",
  9079. "symfony/phpunit-bridge": "^5.1",
  9080. "symfony/yaml": "^3.0 || ^4.0 || ^5.0"
  9081. },
  9082. "suggest": {
  9083. "ext-dom": "For handling output formats in XML",
  9084. "ext-mbstring": "For handling non-UTF8 characters.",
  9085. "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
  9086. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
  9087. "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
  9088. },
  9089. "bin": [
  9090. "php-cs-fixer"
  9091. ],
  9092. "type": "application",
  9093. "autoload": {
  9094. "psr-4": {
  9095. "PhpCsFixer\\": "src/"
  9096. },
  9097. "classmap": [
  9098. "tests/Test/AbstractFixerTestCase.php",
  9099. "tests/Test/AbstractIntegrationCaseFactory.php",
  9100. "tests/Test/AbstractIntegrationTestCase.php",
  9101. "tests/Test/Assert/AssertTokensTrait.php",
  9102. "tests/Test/IntegrationCase.php",
  9103. "tests/Test/IntegrationCaseFactory.php",
  9104. "tests/Test/IntegrationCaseFactoryInterface.php",
  9105. "tests/Test/InternalIntegrationCaseFactory.php",
  9106. "tests/Test/IsIdenticalConstraint.php",
  9107. "tests/TestCase.php"
  9108. ]
  9109. },
  9110. "notification-url": "https://packagist.org/downloads/",
  9111. "license": [
  9112. "MIT"
  9113. ],
  9114. "authors": [
  9115. {
  9116. "name": "Fabien Potencier",
  9117. "email": "fabien@symfony.com"
  9118. },
  9119. {
  9120. "name": "Dariusz Rumiński",
  9121. "email": "dariusz.ruminski@gmail.com"
  9122. }
  9123. ],
  9124. "description": "A tool to automatically fix PHP code style",
  9125. "support": {
  9126. "issues": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues",
  9127. "source": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/tree/v2.16.7"
  9128. },
  9129. "funding": [
  9130. {
  9131. "url": "https://github.com/keradus",
  9132. "type": "github"
  9133. }
  9134. ],
  9135. "time": "2020-10-27T22:44:27+00:00"
  9136. },
  9137. {
  9138. "name": "niels-de-blaauw/php-doc-check",
  9139. "version": "v0.2.2",
  9140. "source": {
  9141. "type": "git",
  9142. "url": "https://github.com/NielsdeBlaauw/php-doc-check.git",
  9143. "reference": "c0262fb76db3ed3f93ae0a2857bf41b695ec3b62"
  9144. },
  9145. "dist": {
  9146. "type": "zip",
  9147. "url": "https://api.github.com/repos/NielsdeBlaauw/php-doc-check/zipball/c0262fb76db3ed3f93ae0a2857bf41b695ec3b62",
  9148. "reference": "c0262fb76db3ed3f93ae0a2857bf41b695ec3b62",
  9149. "shasum": ""
  9150. },
  9151. "require": {
  9152. "nikic/php-parser": "^4.2",
  9153. "ulrichsg/getopt-php": "^3.2",
  9154. "wp-cli/php-cli-tools": "^0.11.11"
  9155. },
  9156. "require-dev": {
  9157. "humbug/box": "^3.4",
  9158. "phpmd/phpmd": "^2.6",
  9159. "phpstan/phpstan": "^0.11.1",
  9160. "phpunit/phpunit": "^7.5",
  9161. "squizlabs/php_codesniffer": "^3.4"
  9162. },
  9163. "bin": [
  9164. "bin/php-doc-check"
  9165. ],
  9166. "type": "library",
  9167. "autoload": {
  9168. "psr-4": {
  9169. "NdB\\PhpDocCheck\\": "src"
  9170. }
  9171. },
  9172. "notification-url": "https://packagist.org/downloads/",
  9173. "license": [
  9174. "MIT"
  9175. ],
  9176. "authors": [
  9177. {
  9178. "name": "Niels de Blaauw",
  9179. "email": "niels.de.blaauw@gmail.com"
  9180. }
  9181. ],
  9182. "description": "Command line tool that identifies code that needs documentation.",
  9183. "time": "2019-02-10T20:38:29+00:00"
  9184. },
  9185. {
  9186. "name": "nikic/php-parser",
  9187. "version": "v4.10.2",
  9188. "source": {
  9189. "type": "git",
  9190. "url": "https://github.com/nikic/PHP-Parser.git",
  9191. "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
  9192. },
  9193. "dist": {
  9194. "type": "zip",
  9195. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
  9196. "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
  9197. "shasum": ""
  9198. },
  9199. "require": {
  9200. "ext-tokenizer": "*",
  9201. "php": ">=7.0"
  9202. },
  9203. "require-dev": {
  9204. "ircmaxell/php-yacc": "^0.0.7",
  9205. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  9206. },
  9207. "bin": [
  9208. "bin/php-parse"
  9209. ],
  9210. "type": "library",
  9211. "extra": {
  9212. "branch-alias": {
  9213. "dev-master": "4.9-dev"
  9214. }
  9215. },
  9216. "autoload": {
  9217. "psr-4": {
  9218. "PhpParser\\": "lib/PhpParser"
  9219. }
  9220. },
  9221. "notification-url": "https://packagist.org/downloads/",
  9222. "license": [
  9223. "BSD-3-Clause"
  9224. ],
  9225. "authors": [
  9226. {
  9227. "name": "Nikita Popov"
  9228. }
  9229. ],
  9230. "description": "A PHP parser written in PHP",
  9231. "keywords": [
  9232. "parser",
  9233. "php"
  9234. ],
  9235. "support": {
  9236. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9237. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.2"
  9238. },
  9239. "time": "2020-09-26T10:30:38+00:00"
  9240. },
  9241. {
  9242. "name": "php-cs-fixer/diff",
  9243. "version": "v1.3.1",
  9244. "source": {
  9245. "type": "git",
  9246. "url": "https://github.com/PHP-CS-Fixer/diff.git",
  9247. "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759"
  9248. },
  9249. "dist": {
  9250. "type": "zip",
  9251. "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/dbd31aeb251639ac0b9e7e29405c1441907f5759",
  9252. "reference": "dbd31aeb251639ac0b9e7e29405c1441907f5759",
  9253. "shasum": ""
  9254. },
  9255. "require": {
  9256. "php": "^5.6 || ^7.0 || ^8.0"
  9257. },
  9258. "require-dev": {
  9259. "phpunit/phpunit": "^5.7.23 || ^6.4.3 || ^7.0",
  9260. "symfony/process": "^3.3"
  9261. },
  9262. "type": "library",
  9263. "autoload": {
  9264. "classmap": [
  9265. "src/"
  9266. ]
  9267. },
  9268. "notification-url": "https://packagist.org/downloads/",
  9269. "license": [
  9270. "BSD-3-Clause"
  9271. ],
  9272. "authors": [
  9273. {
  9274. "name": "Sebastian Bergmann",
  9275. "email": "sebastian@phpunit.de"
  9276. },
  9277. {
  9278. "name": "Kore Nordmann",
  9279. "email": "mail@kore-nordmann.de"
  9280. },
  9281. {
  9282. "name": "SpacePossum"
  9283. }
  9284. ],
  9285. "description": "sebastian/diff v2 backport support for PHP5.6",
  9286. "homepage": "https://github.com/PHP-CS-Fixer",
  9287. "keywords": [
  9288. "diff"
  9289. ],
  9290. "support": {
  9291. "issues": "https://github.com/PHP-CS-Fixer/diff/issues",
  9292. "source": "https://github.com/PHP-CS-Fixer/diff/tree/v1.3.1"
  9293. },
  9294. "time": "2020-10-14T08:39:05+00:00"
  9295. },
  9296. {
  9297. "name": "symfony/browser-kit",
  9298. "version": "v5.1.8",
  9299. "source": {
  9300. "type": "git",
  9301. "url": "https://github.com/symfony/browser-kit.git",
  9302. "reference": "65b7d208280f2700f43ba44a8059a25d7b01347b"
  9303. },
  9304. "dist": {
  9305. "type": "zip",
  9306. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/65b7d208280f2700f43ba44a8059a25d7b01347b",
  9307. "reference": "65b7d208280f2700f43ba44a8059a25d7b01347b",
  9308. "shasum": ""
  9309. },
  9310. "require": {
  9311. "php": ">=7.2.5",
  9312. "symfony/dom-crawler": "^4.4|^5.0"
  9313. },
  9314. "require-dev": {
  9315. "symfony/css-selector": "^4.4|^5.0",
  9316. "symfony/http-client": "^4.4|^5.0",
  9317. "symfony/mime": "^4.4|^5.0",
  9318. "symfony/process": "^4.4|^5.0"
  9319. },
  9320. "suggest": {
  9321. "symfony/process": ""
  9322. },
  9323. "type": "library",
  9324. "autoload": {
  9325. "psr-4": {
  9326. "Symfony\\Component\\BrowserKit\\": ""
  9327. },
  9328. "exclude-from-classmap": [
  9329. "/Tests/"
  9330. ]
  9331. },
  9332. "notification-url": "https://packagist.org/downloads/",
  9333. "license": [
  9334. "MIT"
  9335. ],
  9336. "authors": [
  9337. {
  9338. "name": "Fabien Potencier",
  9339. "email": "fabien@symfony.com"
  9340. },
  9341. {
  9342. "name": "Symfony Community",
  9343. "homepage": "https://symfony.com/contributors"
  9344. }
  9345. ],
  9346. "description": "Symfony BrowserKit Component",
  9347. "homepage": "https://symfony.com",
  9348. "support": {
  9349. "source": "https://github.com/symfony/browser-kit/tree/v5.1.8"
  9350. },
  9351. "funding": [
  9352. {
  9353. "url": "https://symfony.com/sponsor",
  9354. "type": "custom"
  9355. },
  9356. {
  9357. "url": "https://github.com/fabpot",
  9358. "type": "github"
  9359. },
  9360. {
  9361. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9362. "type": "tidelift"
  9363. }
  9364. ],
  9365. "time": "2020-10-24T12:01:57+00:00"
  9366. },
  9367. {
  9368. "name": "symfony/css-selector",
  9369. "version": "v5.1.8",
  9370. "source": {
  9371. "type": "git",
  9372. "url": "https://github.com/symfony/css-selector.git",
  9373. "reference": "6cbebda22ffc0d4bb8fea0c1311c2ca54c4c8fa0"
  9374. },
  9375. "dist": {
  9376. "type": "zip",
  9377. "url": "https://api.github.com/repos/symfony/css-selector/zipball/6cbebda22ffc0d4bb8fea0c1311c2ca54c4c8fa0",
  9378. "reference": "6cbebda22ffc0d4bb8fea0c1311c2ca54c4c8fa0",
  9379. "shasum": ""
  9380. },
  9381. "require": {
  9382. "php": ">=7.2.5"
  9383. },
  9384. "type": "library",
  9385. "autoload": {
  9386. "psr-4": {
  9387. "Symfony\\Component\\CssSelector\\": ""
  9388. },
  9389. "exclude-from-classmap": [
  9390. "/Tests/"
  9391. ]
  9392. },
  9393. "notification-url": "https://packagist.org/downloads/",
  9394. "license": [
  9395. "MIT"
  9396. ],
  9397. "authors": [
  9398. {
  9399. "name": "Fabien Potencier",
  9400. "email": "fabien@symfony.com"
  9401. },
  9402. {
  9403. "name": "Jean-François Simon",
  9404. "email": "jeanfrancois.simon@sensiolabs.com"
  9405. },
  9406. {
  9407. "name": "Symfony Community",
  9408. "homepage": "https://symfony.com/contributors"
  9409. }
  9410. ],
  9411. "description": "Symfony CssSelector Component",
  9412. "homepage": "https://symfony.com",
  9413. "support": {
  9414. "source": "https://github.com/symfony/css-selector/tree/v5.1.8"
  9415. },
  9416. "funding": [
  9417. {
  9418. "url": "https://symfony.com/sponsor",
  9419. "type": "custom"
  9420. },
  9421. {
  9422. "url": "https://github.com/fabpot",
  9423. "type": "github"
  9424. },
  9425. {
  9426. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9427. "type": "tidelift"
  9428. }
  9429. ],
  9430. "time": "2020-10-24T12:01:57+00:00"
  9431. },
  9432. {
  9433. "name": "symfony/debug-bundle",
  9434. "version": "v5.1.8",
  9435. "source": {
  9436. "type": "git",
  9437. "url": "https://github.com/symfony/debug-bundle.git",
  9438. "reference": "183a36bdb251eeeeff640ffbceea3403ac5c8d40"
  9439. },
  9440. "dist": {
  9441. "type": "zip",
  9442. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/183a36bdb251eeeeff640ffbceea3403ac5c8d40",
  9443. "reference": "183a36bdb251eeeeff640ffbceea3403ac5c8d40",
  9444. "shasum": ""
  9445. },
  9446. "require": {
  9447. "ext-xml": "*",
  9448. "php": ">=7.2.5",
  9449. "symfony/http-kernel": "^4.4|^5.0",
  9450. "symfony/twig-bridge": "^4.4|^5.0",
  9451. "symfony/var-dumper": "^4.4|^5.0"
  9452. },
  9453. "conflict": {
  9454. "symfony/config": "<4.4",
  9455. "symfony/dependency-injection": "<4.4"
  9456. },
  9457. "require-dev": {
  9458. "symfony/config": "^4.4|^5.0",
  9459. "symfony/dependency-injection": "^4.4|^5.0",
  9460. "symfony/web-profiler-bundle": "^4.4|^5.0"
  9461. },
  9462. "suggest": {
  9463. "symfony/config": "For service container configuration",
  9464. "symfony/dependency-injection": "For using as a service from the container"
  9465. },
  9466. "type": "symfony-bundle",
  9467. "autoload": {
  9468. "psr-4": {
  9469. "Symfony\\Bundle\\DebugBundle\\": ""
  9470. },
  9471. "exclude-from-classmap": [
  9472. "/Tests/"
  9473. ]
  9474. },
  9475. "notification-url": "https://packagist.org/downloads/",
  9476. "license": [
  9477. "MIT"
  9478. ],
  9479. "authors": [
  9480. {
  9481. "name": "Fabien Potencier",
  9482. "email": "fabien@symfony.com"
  9483. },
  9484. {
  9485. "name": "Symfony Community",
  9486. "homepage": "https://symfony.com/contributors"
  9487. }
  9488. ],
  9489. "description": "Symfony DebugBundle",
  9490. "homepage": "https://symfony.com",
  9491. "support": {
  9492. "source": "https://github.com/symfony/debug-bundle/tree/v5.1.8"
  9493. },
  9494. "funding": [
  9495. {
  9496. "url": "https://symfony.com/sponsor",
  9497. "type": "custom"
  9498. },
  9499. {
  9500. "url": "https://github.com/fabpot",
  9501. "type": "github"
  9502. },
  9503. {
  9504. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9505. "type": "tidelift"
  9506. }
  9507. ],
  9508. "time": "2020-10-24T12:01:57+00:00"
  9509. },
  9510. {
  9511. "name": "symfony/debug-pack",
  9512. "version": "v1.0.9",
  9513. "source": {
  9514. "type": "git",
  9515. "url": "https://github.com/symfony/debug-pack.git",
  9516. "reference": "cfd5093378e9cafe500f05c777a22fe8a64a9342"
  9517. },
  9518. "dist": {
  9519. "type": "zip",
  9520. "url": "https://api.github.com/repos/symfony/debug-pack/zipball/cfd5093378e9cafe500f05c777a22fe8a64a9342",
  9521. "reference": "cfd5093378e9cafe500f05c777a22fe8a64a9342",
  9522. "shasum": ""
  9523. },
  9524. "require": {
  9525. "symfony/debug-bundle": "*",
  9526. "symfony/monolog-bundle": "^3.0",
  9527. "symfony/profiler-pack": "*",
  9528. "symfony/var-dumper": "*"
  9529. },
  9530. "type": "symfony-pack",
  9531. "notification-url": "https://packagist.org/downloads/",
  9532. "license": [
  9533. "MIT"
  9534. ],
  9535. "description": "A debug pack for Symfony projects",
  9536. "support": {
  9537. "issues": "https://github.com/symfony/debug-pack/issues",
  9538. "source": "https://github.com/symfony/debug-pack/tree/v1.0.9"
  9539. },
  9540. "funding": [
  9541. {
  9542. "url": "https://symfony.com/sponsor",
  9543. "type": "custom"
  9544. },
  9545. {
  9546. "url": "https://github.com/fabpot",
  9547. "type": "github"
  9548. },
  9549. {
  9550. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9551. "type": "tidelift"
  9552. }
  9553. ],
  9554. "time": "2020-10-19T08:51:51+00:00"
  9555. },
  9556. {
  9557. "name": "symfony/dom-crawler",
  9558. "version": "v5.1.8",
  9559. "source": {
  9560. "type": "git",
  9561. "url": "https://github.com/symfony/dom-crawler.git",
  9562. "reference": "0969122fe144dd8ab2e8c98c7e03eedc621b368c"
  9563. },
  9564. "dist": {
  9565. "type": "zip",
  9566. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/0969122fe144dd8ab2e8c98c7e03eedc621b368c",
  9567. "reference": "0969122fe144dd8ab2e8c98c7e03eedc621b368c",
  9568. "shasum": ""
  9569. },
  9570. "require": {
  9571. "php": ">=7.2.5",
  9572. "symfony/polyfill-ctype": "~1.8",
  9573. "symfony/polyfill-mbstring": "~1.0",
  9574. "symfony/polyfill-php80": "^1.15"
  9575. },
  9576. "conflict": {
  9577. "masterminds/html5": "<2.6"
  9578. },
  9579. "require-dev": {
  9580. "masterminds/html5": "^2.6",
  9581. "symfony/css-selector": "^4.4|^5.0"
  9582. },
  9583. "suggest": {
  9584. "symfony/css-selector": ""
  9585. },
  9586. "type": "library",
  9587. "autoload": {
  9588. "psr-4": {
  9589. "Symfony\\Component\\DomCrawler\\": ""
  9590. },
  9591. "exclude-from-classmap": [
  9592. "/Tests/"
  9593. ]
  9594. },
  9595. "notification-url": "https://packagist.org/downloads/",
  9596. "license": [
  9597. "MIT"
  9598. ],
  9599. "authors": [
  9600. {
  9601. "name": "Fabien Potencier",
  9602. "email": "fabien@symfony.com"
  9603. },
  9604. {
  9605. "name": "Symfony Community",
  9606. "homepage": "https://symfony.com/contributors"
  9607. }
  9608. ],
  9609. "description": "Symfony DomCrawler Component",
  9610. "homepage": "https://symfony.com",
  9611. "support": {
  9612. "source": "https://github.com/symfony/dom-crawler/tree/v5.1.8"
  9613. },
  9614. "funding": [
  9615. {
  9616. "url": "https://symfony.com/sponsor",
  9617. "type": "custom"
  9618. },
  9619. {
  9620. "url": "https://github.com/fabpot",
  9621. "type": "github"
  9622. },
  9623. {
  9624. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9625. "type": "tidelift"
  9626. }
  9627. ],
  9628. "time": "2020-10-24T12:01:57+00:00"
  9629. },
  9630. {
  9631. "name": "symfony/maker-bundle",
  9632. "version": "v1.23.0",
  9633. "source": {
  9634. "type": "git",
  9635. "url": "https://github.com/symfony/maker-bundle.git",
  9636. "reference": "ffaee624a20a462ec2da82942d3c9d8fc8dd1421"
  9637. },
  9638. "dist": {
  9639. "type": "zip",
  9640. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/ffaee624a20a462ec2da82942d3c9d8fc8dd1421",
  9641. "reference": "ffaee624a20a462ec2da82942d3c9d8fc8dd1421",
  9642. "shasum": ""
  9643. },
  9644. "require": {
  9645. "doctrine/inflector": "^1.2",
  9646. "nikic/php-parser": "^4.0",
  9647. "php": ">=7.1.3",
  9648. "symfony/config": "^3.4|^4.0|^5.0",
  9649. "symfony/console": "^3.4|^4.0|^5.0",
  9650. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9651. "symfony/filesystem": "^3.4|^4.0|^5.0",
  9652. "symfony/finder": "^3.4|^4.0|^5.0",
  9653. "symfony/framework-bundle": "^3.4|^4.0|^5.0",
  9654. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  9655. },
  9656. "require-dev": {
  9657. "composer/semver": "^3.0@dev",
  9658. "doctrine/doctrine-bundle": "^1.8|^2.0",
  9659. "doctrine/orm": "^2.3",
  9660. "friendsofphp/php-cs-fixer": "^2.8",
  9661. "friendsoftwig/twigcs": "^3.1.2",
  9662. "symfony/http-client": "^4.3|^5.0",
  9663. "symfony/phpunit-bridge": "^4.3|^5.0",
  9664. "symfony/process": "^3.4|^4.0|^5.0",
  9665. "symfony/security-core": "^3.4|^4.0|^5.0",
  9666. "symfony/yaml": "^3.4|^4.0|^5.0"
  9667. },
  9668. "type": "symfony-bundle",
  9669. "extra": {
  9670. "branch-alias": {
  9671. "dev-master": "1.0-dev"
  9672. }
  9673. },
  9674. "autoload": {
  9675. "psr-4": {
  9676. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9677. }
  9678. },
  9679. "notification-url": "https://packagist.org/downloads/",
  9680. "license": [
  9681. "MIT"
  9682. ],
  9683. "authors": [
  9684. {
  9685. "name": "Symfony Community",
  9686. "homepage": "https://symfony.com/contributors"
  9687. }
  9688. ],
  9689. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9690. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9691. "keywords": [
  9692. "code generator",
  9693. "generator",
  9694. "scaffold",
  9695. "scaffolding"
  9696. ],
  9697. "support": {
  9698. "issues": "https://github.com/symfony/maker-bundle/issues",
  9699. "source": "https://github.com/symfony/maker-bundle/tree/v1.23.0"
  9700. },
  9701. "funding": [
  9702. {
  9703. "url": "https://symfony.com/sponsor",
  9704. "type": "custom"
  9705. },
  9706. {
  9707. "url": "https://github.com/fabpot",
  9708. "type": "github"
  9709. },
  9710. {
  9711. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9712. "type": "tidelift"
  9713. }
  9714. ],
  9715. "time": "2020-10-28T15:35:16+00:00"
  9716. },
  9717. {
  9718. "name": "symfony/phpunit-bridge",
  9719. "version": "v5.1.8",
  9720. "source": {
  9721. "type": "git",
  9722. "url": "https://github.com/symfony/phpunit-bridge.git",
  9723. "reference": "61744927348cd391ac12f7c6b70544991275845c"
  9724. },
  9725. "dist": {
  9726. "type": "zip",
  9727. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/61744927348cd391ac12f7c6b70544991275845c",
  9728. "reference": "61744927348cd391ac12f7c6b70544991275845c",
  9729. "shasum": ""
  9730. },
  9731. "require": {
  9732. "php": ">=5.5.9"
  9733. },
  9734. "conflict": {
  9735. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0|<6.4,>=6.0|9.1.2"
  9736. },
  9737. "require-dev": {
  9738. "symfony/deprecation-contracts": "^2.1"
  9739. },
  9740. "suggest": {
  9741. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  9742. },
  9743. "bin": [
  9744. "bin/simple-phpunit"
  9745. ],
  9746. "type": "symfony-bridge",
  9747. "extra": {
  9748. "thanks": {
  9749. "name": "phpunit/phpunit",
  9750. "url": "https://github.com/sebastianbergmann/phpunit"
  9751. }
  9752. },
  9753. "autoload": {
  9754. "files": [
  9755. "bootstrap.php"
  9756. ],
  9757. "psr-4": {
  9758. "Symfony\\Bridge\\PhpUnit\\": ""
  9759. },
  9760. "exclude-from-classmap": [
  9761. "/Tests/"
  9762. ]
  9763. },
  9764. "notification-url": "https://packagist.org/downloads/",
  9765. "license": [
  9766. "MIT"
  9767. ],
  9768. "authors": [
  9769. {
  9770. "name": "Nicolas Grekas",
  9771. "email": "p@tchwork.com"
  9772. },
  9773. {
  9774. "name": "Symfony Community",
  9775. "homepage": "https://symfony.com/contributors"
  9776. }
  9777. ],
  9778. "description": "Symfony PHPUnit Bridge",
  9779. "homepage": "https://symfony.com",
  9780. "support": {
  9781. "source": "https://github.com/symfony/phpunit-bridge/tree/v5.1.8"
  9782. },
  9783. "funding": [
  9784. {
  9785. "url": "https://symfony.com/sponsor",
  9786. "type": "custom"
  9787. },
  9788. {
  9789. "url": "https://github.com/fabpot",
  9790. "type": "github"
  9791. },
  9792. {
  9793. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9794. "type": "tidelift"
  9795. }
  9796. ],
  9797. "time": "2020-10-24T15:53:55+00:00"
  9798. },
  9799. {
  9800. "name": "symfony/profiler-pack",
  9801. "version": "v1.0.5",
  9802. "source": {
  9803. "type": "git",
  9804. "url": "https://github.com/symfony/profiler-pack.git",
  9805. "reference": "29ec66471082b4eb068db11eb4f0a48c277653f7"
  9806. },
  9807. "dist": {
  9808. "type": "zip",
  9809. "url": "https://api.github.com/repos/symfony/profiler-pack/zipball/29ec66471082b4eb068db11eb4f0a48c277653f7",
  9810. "reference": "29ec66471082b4eb068db11eb4f0a48c277653f7",
  9811. "shasum": ""
  9812. },
  9813. "require": {
  9814. "symfony/stopwatch": "*",
  9815. "symfony/twig-bundle": "*",
  9816. "symfony/web-profiler-bundle": "*"
  9817. },
  9818. "type": "symfony-pack",
  9819. "notification-url": "https://packagist.org/downloads/",
  9820. "license": [
  9821. "MIT"
  9822. ],
  9823. "description": "A pack for the Symfony web profiler",
  9824. "support": {
  9825. "issues": "https://github.com/symfony/profiler-pack/issues",
  9826. "source": "https://github.com/symfony/profiler-pack/tree/v1.0.5"
  9827. },
  9828. "funding": [
  9829. {
  9830. "url": "https://symfony.com/sponsor",
  9831. "type": "custom"
  9832. },
  9833. {
  9834. "url": "https://github.com/fabpot",
  9835. "type": "github"
  9836. },
  9837. {
  9838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9839. "type": "tidelift"
  9840. }
  9841. ],
  9842. "time": "2020-08-12T06:50:46+00:00"
  9843. },
  9844. {
  9845. "name": "symfony/test-pack",
  9846. "version": "v1.0.7",
  9847. "source": {
  9848. "type": "git",
  9849. "url": "https://github.com/symfony/test-pack.git",
  9850. "reference": "e61756c97cbedae00b7cf43b87abcfadfeb2746c"
  9851. },
  9852. "dist": {
  9853. "type": "zip",
  9854. "url": "https://api.github.com/repos/symfony/test-pack/zipball/e61756c97cbedae00b7cf43b87abcfadfeb2746c",
  9855. "reference": "e61756c97cbedae00b7cf43b87abcfadfeb2746c",
  9856. "shasum": ""
  9857. },
  9858. "require": {
  9859. "symfony/browser-kit": "*",
  9860. "symfony/css-selector": "*",
  9861. "symfony/phpunit-bridge": "*"
  9862. },
  9863. "type": "symfony-pack",
  9864. "notification-url": "https://packagist.org/downloads/",
  9865. "license": [
  9866. "MIT"
  9867. ],
  9868. "description": "A pack for functional and end-to-end testing within a Symfony app",
  9869. "support": {
  9870. "issues": "https://github.com/symfony/test-pack/issues",
  9871. "source": "https://github.com/symfony/test-pack/tree/v1.0.7"
  9872. },
  9873. "funding": [
  9874. {
  9875. "url": "https://symfony.com/sponsor",
  9876. "type": "custom"
  9877. },
  9878. {
  9879. "url": "https://github.com/fabpot",
  9880. "type": "github"
  9881. },
  9882. {
  9883. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9884. "type": "tidelift"
  9885. }
  9886. ],
  9887. "time": "2020-10-19T08:52:28+00:00"
  9888. },
  9889. {
  9890. "name": "symfony/web-profiler-bundle",
  9891. "version": "v5.1.8",
  9892. "source": {
  9893. "type": "git",
  9894. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9895. "reference": "d94865ad9365ee4ac0d9bd24d9e90410e7ec6185"
  9896. },
  9897. "dist": {
  9898. "type": "zip",
  9899. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/d94865ad9365ee4ac0d9bd24d9e90410e7ec6185",
  9900. "reference": "d94865ad9365ee4ac0d9bd24d9e90410e7ec6185",
  9901. "shasum": ""
  9902. },
  9903. "require": {
  9904. "php": ">=7.2.5",
  9905. "symfony/config": "^4.4|^5.0",
  9906. "symfony/framework-bundle": "^5.1",
  9907. "symfony/http-kernel": "^4.4|^5.0",
  9908. "symfony/routing": "^4.4|^5.0",
  9909. "symfony/twig-bundle": "^4.4|^5.0",
  9910. "twig/twig": "^2.10|^3.0"
  9911. },
  9912. "conflict": {
  9913. "symfony/form": "<4.4",
  9914. "symfony/messenger": "<4.4"
  9915. },
  9916. "require-dev": {
  9917. "symfony/browser-kit": "^4.4|^5.0",
  9918. "symfony/console": "^4.4|^5.0",
  9919. "symfony/css-selector": "^4.4|^5.0",
  9920. "symfony/stopwatch": "^4.4|^5.0"
  9921. },
  9922. "type": "symfony-bundle",
  9923. "autoload": {
  9924. "psr-4": {
  9925. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9926. },
  9927. "exclude-from-classmap": [
  9928. "/Tests/"
  9929. ]
  9930. },
  9931. "notification-url": "https://packagist.org/downloads/",
  9932. "license": [
  9933. "MIT"
  9934. ],
  9935. "authors": [
  9936. {
  9937. "name": "Fabien Potencier",
  9938. "email": "fabien@symfony.com"
  9939. },
  9940. {
  9941. "name": "Symfony Community",
  9942. "homepage": "https://symfony.com/contributors"
  9943. }
  9944. ],
  9945. "description": "Symfony WebProfilerBundle",
  9946. "homepage": "https://symfony.com",
  9947. "support": {
  9948. "source": "https://github.com/symfony/web-profiler-bundle/tree/v5.1.8"
  9949. },
  9950. "funding": [
  9951. {
  9952. "url": "https://symfony.com/sponsor",
  9953. "type": "custom"
  9954. },
  9955. {
  9956. "url": "https://github.com/fabpot",
  9957. "type": "github"
  9958. },
  9959. {
  9960. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9961. "type": "tidelift"
  9962. }
  9963. ],
  9964. "time": "2020-10-24T12:01:57+00:00"
  9965. },
  9966. {
  9967. "name": "ulrichsg/getopt-php",
  9968. "version": "v3.4.0",
  9969. "source": {
  9970. "type": "git",
  9971. "url": "https://github.com/getopt-php/getopt-php.git",
  9972. "reference": "9121d7c2c51a6a59ee407c49a13b4d8cfae71075"
  9973. },
  9974. "dist": {
  9975. "type": "zip",
  9976. "url": "https://api.github.com/repos/getopt-php/getopt-php/zipball/9121d7c2c51a6a59ee407c49a13b4d8cfae71075",
  9977. "reference": "9121d7c2c51a6a59ee407c49a13b4d8cfae71075",
  9978. "shasum": ""
  9979. },
  9980. "require": {
  9981. "ext-mbstring": "*",
  9982. "php": ">=5.4.0"
  9983. },
  9984. "require-dev": {
  9985. "phpunit/phpunit": "^4.8",
  9986. "squizlabs/php_codesniffer": "^2.7"
  9987. },
  9988. "type": "library",
  9989. "autoload": {
  9990. "psr-4": {
  9991. "GetOpt\\": "src"
  9992. }
  9993. },
  9994. "notification-url": "https://packagist.org/downloads/",
  9995. "license": [
  9996. "MIT"
  9997. ],
  9998. "authors": [
  9999. {
  10000. "name": "Ulrich Schmidt-Goertz",
  10001. "email": "ulrich@schmidt-goertz.de"
  10002. },
  10003. {
  10004. "name": "Thomas Flori",
  10005. "email": "thflori@gmail.com"
  10006. }
  10007. ],
  10008. "description": "Command line arguments parser for PHP 5.4 - 7.3",
  10009. "homepage": "http://getopt-php.github.io/getopt-php",
  10010. "time": "2020-07-14T06:09:04+00:00"
  10011. },
  10012. {
  10013. "name": "wp-cli/php-cli-tools",
  10014. "version": "v0.11.11",
  10015. "source": {
  10016. "type": "git",
  10017. "url": "https://github.com/wp-cli/php-cli-tools.git",
  10018. "reference": "fe9c7c44a9e1bf2196ec51dc38da0593dbf2993f"
  10019. },
  10020. "dist": {
  10021. "type": "zip",
  10022. "url": "https://api.github.com/repos/wp-cli/php-cli-tools/zipball/fe9c7c44a9e1bf2196ec51dc38da0593dbf2993f",
  10023. "reference": "fe9c7c44a9e1bf2196ec51dc38da0593dbf2993f",
  10024. "shasum": ""
  10025. },
  10026. "require": {
  10027. "php": ">= 5.3.0"
  10028. },
  10029. "type": "library",
  10030. "autoload": {
  10031. "psr-0": {
  10032. "cli": "lib/"
  10033. },
  10034. "files": [
  10035. "lib/cli/cli.php"
  10036. ]
  10037. },
  10038. "notification-url": "https://packagist.org/downloads/",
  10039. "license": [
  10040. "MIT"
  10041. ],
  10042. "authors": [
  10043. {
  10044. "name": "James Logsdon",
  10045. "email": "jlogsdon@php.net",
  10046. "role": "Developer"
  10047. },
  10048. {
  10049. "name": "Daniel Bachhuber",
  10050. "email": "daniel@handbuilt.co",
  10051. "role": "Maintainer"
  10052. }
  10053. ],
  10054. "description": "Console utilities for PHP",
  10055. "homepage": "http://github.com/wp-cli/php-cli-tools",
  10056. "keywords": [
  10057. "cli",
  10058. "console"
  10059. ],
  10060. "time": "2018-09-04T13:28:00+00:00"
  10061. }
  10062. ],
  10063. "aliases": [],
  10064. "minimum-stability": "stable",
  10065. "stability-flags": {
  10066. "alchemy/zippy": 20
  10067. },
  10068. "prefer-stable": false,
  10069. "prefer-lowest": false,
  10070. "platform": {
  10071. "php": "^7.4",
  10072. "ext-ctype": "*",
  10073. "ext-iconv": "*"
  10074. },
  10075. "platform-dev": [],
  10076. "plugin-api-version": "1.1.0"
  10077. }