composer.lock 271 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562
  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": "7b56bfb5d21eaae286e532c3ed2f8941",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.2|^8.0",
  25. "symfony/http-foundation": "^4|^5|^6",
  26. "symfony/http-kernel": "^4|^5|^6"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^7|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.1-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  62. },
  63. "time": "2022-01-18T09:12:03+00:00"
  64. },
  65. {
  66. "name": "brick/math",
  67. "version": "0.10.2",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/brick/math.git",
  71. "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/brick/math/zipball/459f2781e1a08d52ee56b0b1444086e038561e3f",
  76. "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": "^7.4 || ^8.0"
  82. },
  83. "require-dev": {
  84. "php-coveralls/php-coveralls": "^2.2",
  85. "phpunit/phpunit": "^9.0",
  86. "vimeo/psalm": "4.25.0"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "Brick\\Math\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "description": "Arbitrary-precision arithmetic library",
  99. "keywords": [
  100. "Arbitrary-precision",
  101. "BigInteger",
  102. "BigRational",
  103. "arithmetic",
  104. "bigdecimal",
  105. "bignum",
  106. "brick",
  107. "math"
  108. ],
  109. "support": {
  110. "issues": "https://github.com/brick/math/issues",
  111. "source": "https://github.com/brick/math/tree/0.10.2"
  112. },
  113. "funding": [
  114. {
  115. "url": "https://github.com/BenMorel",
  116. "type": "github"
  117. }
  118. ],
  119. "time": "2022-08-10T22:54:19+00:00"
  120. },
  121. {
  122. "name": "dflydev/dot-access-data",
  123. "version": "v3.0.2",
  124. "source": {
  125. "type": "git",
  126. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  127. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  132. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  133. "shasum": ""
  134. },
  135. "require": {
  136. "php": "^7.1 || ^8.0"
  137. },
  138. "require-dev": {
  139. "phpstan/phpstan": "^0.12.42",
  140. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  141. "scrutinizer/ocular": "1.6.0",
  142. "squizlabs/php_codesniffer": "^3.5",
  143. "vimeo/psalm": "^4.0.0"
  144. },
  145. "type": "library",
  146. "extra": {
  147. "branch-alias": {
  148. "dev-main": "3.x-dev"
  149. }
  150. },
  151. "autoload": {
  152. "psr-4": {
  153. "Dflydev\\DotAccessData\\": "src/"
  154. }
  155. },
  156. "notification-url": "https://packagist.org/downloads/",
  157. "license": [
  158. "MIT"
  159. ],
  160. "authors": [
  161. {
  162. "name": "Dragonfly Development Inc.",
  163. "email": "info@dflydev.com",
  164. "homepage": "http://dflydev.com"
  165. },
  166. {
  167. "name": "Beau Simensen",
  168. "email": "beau@dflydev.com",
  169. "homepage": "http://beausimensen.com"
  170. },
  171. {
  172. "name": "Carlos Frutos",
  173. "email": "carlos@kiwing.it",
  174. "homepage": "https://github.com/cfrutos"
  175. },
  176. {
  177. "name": "Colin O'Dell",
  178. "email": "colinodell@gmail.com",
  179. "homepage": "https://www.colinodell.com"
  180. }
  181. ],
  182. "description": "Given a deep data structure, access data by dot notation.",
  183. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  184. "keywords": [
  185. "access",
  186. "data",
  187. "dot",
  188. "notation"
  189. ],
  190. "support": {
  191. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  192. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  193. },
  194. "time": "2022-10-27T11:44:00+00:00"
  195. },
  196. {
  197. "name": "doctrine/inflector",
  198. "version": "2.0.6",
  199. "source": {
  200. "type": "git",
  201. "url": "https://github.com/doctrine/inflector.git",
  202. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
  203. },
  204. "dist": {
  205. "type": "zip",
  206. "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  207. "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
  208. "shasum": ""
  209. },
  210. "require": {
  211. "php": "^7.2 || ^8.0"
  212. },
  213. "require-dev": {
  214. "doctrine/coding-standard": "^10",
  215. "phpstan/phpstan": "^1.8",
  216. "phpstan/phpstan-phpunit": "^1.1",
  217. "phpstan/phpstan-strict-rules": "^1.3",
  218. "phpunit/phpunit": "^8.5 || ^9.5",
  219. "vimeo/psalm": "^4.25"
  220. },
  221. "type": "library",
  222. "autoload": {
  223. "psr-4": {
  224. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  225. }
  226. },
  227. "notification-url": "https://packagist.org/downloads/",
  228. "license": [
  229. "MIT"
  230. ],
  231. "authors": [
  232. {
  233. "name": "Guilherme Blanco",
  234. "email": "guilhermeblanco@gmail.com"
  235. },
  236. {
  237. "name": "Roman Borschel",
  238. "email": "roman@code-factory.org"
  239. },
  240. {
  241. "name": "Benjamin Eberlei",
  242. "email": "kontakt@beberlei.de"
  243. },
  244. {
  245. "name": "Jonathan Wage",
  246. "email": "jonwage@gmail.com"
  247. },
  248. {
  249. "name": "Johannes Schmitt",
  250. "email": "schmittjoh@gmail.com"
  251. }
  252. ],
  253. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  254. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  255. "keywords": [
  256. "inflection",
  257. "inflector",
  258. "lowercase",
  259. "manipulation",
  260. "php",
  261. "plural",
  262. "singular",
  263. "strings",
  264. "uppercase",
  265. "words"
  266. ],
  267. "support": {
  268. "issues": "https://github.com/doctrine/inflector/issues",
  269. "source": "https://github.com/doctrine/inflector/tree/2.0.6"
  270. },
  271. "funding": [
  272. {
  273. "url": "https://www.doctrine-project.org/sponsorship.html",
  274. "type": "custom"
  275. },
  276. {
  277. "url": "https://www.patreon.com/phpdoctrine",
  278. "type": "patreon"
  279. },
  280. {
  281. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  282. "type": "tidelift"
  283. }
  284. ],
  285. "time": "2022-10-20T09:10:12+00:00"
  286. },
  287. {
  288. "name": "doctrine/lexer",
  289. "version": "1.2.3",
  290. "source": {
  291. "type": "git",
  292. "url": "https://github.com/doctrine/lexer.git",
  293. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  294. },
  295. "dist": {
  296. "type": "zip",
  297. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  298. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  299. "shasum": ""
  300. },
  301. "require": {
  302. "php": "^7.1 || ^8.0"
  303. },
  304. "require-dev": {
  305. "doctrine/coding-standard": "^9.0",
  306. "phpstan/phpstan": "^1.3",
  307. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  308. "vimeo/psalm": "^4.11"
  309. },
  310. "type": "library",
  311. "autoload": {
  312. "psr-4": {
  313. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  314. }
  315. },
  316. "notification-url": "https://packagist.org/downloads/",
  317. "license": [
  318. "MIT"
  319. ],
  320. "authors": [
  321. {
  322. "name": "Guilherme Blanco",
  323. "email": "guilhermeblanco@gmail.com"
  324. },
  325. {
  326. "name": "Roman Borschel",
  327. "email": "roman@code-factory.org"
  328. },
  329. {
  330. "name": "Johannes Schmitt",
  331. "email": "schmittjoh@gmail.com"
  332. }
  333. ],
  334. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  335. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  336. "keywords": [
  337. "annotations",
  338. "docblock",
  339. "lexer",
  340. "parser",
  341. "php"
  342. ],
  343. "support": {
  344. "issues": "https://github.com/doctrine/lexer/issues",
  345. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  346. },
  347. "funding": [
  348. {
  349. "url": "https://www.doctrine-project.org/sponsorship.html",
  350. "type": "custom"
  351. },
  352. {
  353. "url": "https://www.patreon.com/phpdoctrine",
  354. "type": "patreon"
  355. },
  356. {
  357. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  358. "type": "tidelift"
  359. }
  360. ],
  361. "time": "2022-02-28T11:07:21+00:00"
  362. },
  363. {
  364. "name": "dragonmantank/cron-expression",
  365. "version": "v3.3.2",
  366. "source": {
  367. "type": "git",
  368. "url": "https://github.com/dragonmantank/cron-expression.git",
  369. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8"
  370. },
  371. "dist": {
  372. "type": "zip",
  373. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8",
  374. "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8",
  375. "shasum": ""
  376. },
  377. "require": {
  378. "php": "^7.2|^8.0",
  379. "webmozart/assert": "^1.0"
  380. },
  381. "replace": {
  382. "mtdowling/cron-expression": "^1.0"
  383. },
  384. "require-dev": {
  385. "phpstan/extension-installer": "^1.0",
  386. "phpstan/phpstan": "^1.0",
  387. "phpstan/phpstan-webmozart-assert": "^1.0",
  388. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  389. },
  390. "type": "library",
  391. "autoload": {
  392. "psr-4": {
  393. "Cron\\": "src/Cron/"
  394. }
  395. },
  396. "notification-url": "https://packagist.org/downloads/",
  397. "license": [
  398. "MIT"
  399. ],
  400. "authors": [
  401. {
  402. "name": "Chris Tankersley",
  403. "email": "chris@ctankersley.com",
  404. "homepage": "https://github.com/dragonmantank"
  405. }
  406. ],
  407. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  408. "keywords": [
  409. "cron",
  410. "schedule"
  411. ],
  412. "support": {
  413. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  414. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2"
  415. },
  416. "funding": [
  417. {
  418. "url": "https://github.com/dragonmantank",
  419. "type": "github"
  420. }
  421. ],
  422. "time": "2022-09-10T18:51:20+00:00"
  423. },
  424. {
  425. "name": "egulias/email-validator",
  426. "version": "2.1.25",
  427. "source": {
  428. "type": "git",
  429. "url": "https://github.com/egulias/EmailValidator.git",
  430. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  431. },
  432. "dist": {
  433. "type": "zip",
  434. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  435. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  436. "shasum": ""
  437. },
  438. "require": {
  439. "doctrine/lexer": "^1.0.1",
  440. "php": ">=5.5",
  441. "symfony/polyfill-intl-idn": "^1.10"
  442. },
  443. "require-dev": {
  444. "dominicsayers/isemail": "^3.0.7",
  445. "phpunit/phpunit": "^4.8.36|^7.5.15",
  446. "satooshi/php-coveralls": "^1.0.1"
  447. },
  448. "suggest": {
  449. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  450. },
  451. "type": "library",
  452. "extra": {
  453. "branch-alias": {
  454. "dev-master": "2.1.x-dev"
  455. }
  456. },
  457. "autoload": {
  458. "psr-4": {
  459. "Egulias\\EmailValidator\\": "src"
  460. }
  461. },
  462. "notification-url": "https://packagist.org/downloads/",
  463. "license": [
  464. "MIT"
  465. ],
  466. "authors": [
  467. {
  468. "name": "Eduardo Gulias Davis"
  469. }
  470. ],
  471. "description": "A library for validating emails against several RFCs",
  472. "homepage": "https://github.com/egulias/EmailValidator",
  473. "keywords": [
  474. "email",
  475. "emailvalidation",
  476. "emailvalidator",
  477. "validation",
  478. "validator"
  479. ],
  480. "support": {
  481. "issues": "https://github.com/egulias/EmailValidator/issues",
  482. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  483. },
  484. "funding": [
  485. {
  486. "url": "https://github.com/egulias",
  487. "type": "github"
  488. }
  489. ],
  490. "time": "2020-12-29T14:50:06+00:00"
  491. },
  492. {
  493. "name": "fideloper/proxy",
  494. "version": "4.4.2",
  495. "source": {
  496. "type": "git",
  497. "url": "https://github.com/fideloper/TrustedProxy.git",
  498. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  499. },
  500. "dist": {
  501. "type": "zip",
  502. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  503. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  504. "shasum": ""
  505. },
  506. "require": {
  507. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  508. "php": ">=5.4.0"
  509. },
  510. "require-dev": {
  511. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  512. "mockery/mockery": "^1.0",
  513. "phpunit/phpunit": "^8.5.8|^9.3.3"
  514. },
  515. "type": "library",
  516. "extra": {
  517. "laravel": {
  518. "providers": [
  519. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  520. ]
  521. }
  522. },
  523. "autoload": {
  524. "psr-4": {
  525. "Fideloper\\Proxy\\": "src/"
  526. }
  527. },
  528. "notification-url": "https://packagist.org/downloads/",
  529. "license": [
  530. "MIT"
  531. ],
  532. "authors": [
  533. {
  534. "name": "Chris Fidao",
  535. "email": "fideloper@gmail.com"
  536. }
  537. ],
  538. "description": "Set trusted proxies for Laravel",
  539. "keywords": [
  540. "load balancing",
  541. "proxy",
  542. "trusted proxy"
  543. ],
  544. "support": {
  545. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  546. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  547. },
  548. "time": "2022-02-09T13:33:34+00:00"
  549. },
  550. {
  551. "name": "fruitcake/laravel-cors",
  552. "version": "v2.2.0",
  553. "source": {
  554. "type": "git",
  555. "url": "https://github.com/fruitcake/laravel-cors.git",
  556. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  557. },
  558. "dist": {
  559. "type": "zip",
  560. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  561. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  562. "shasum": ""
  563. },
  564. "require": {
  565. "asm89/stack-cors": "^2.0.1",
  566. "illuminate/contracts": "^6|^7|^8|^9",
  567. "illuminate/support": "^6|^7|^8|^9",
  568. "php": ">=7.2"
  569. },
  570. "require-dev": {
  571. "laravel/framework": "^6|^7.24|^8",
  572. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  573. "phpunit/phpunit": "^6|^7|^8|^9",
  574. "squizlabs/php_codesniffer": "^3.5"
  575. },
  576. "type": "library",
  577. "extra": {
  578. "branch-alias": {
  579. "dev-master": "2.1-dev"
  580. },
  581. "laravel": {
  582. "providers": [
  583. "Fruitcake\\Cors\\CorsServiceProvider"
  584. ]
  585. }
  586. },
  587. "autoload": {
  588. "psr-4": {
  589. "Fruitcake\\Cors\\": "src/"
  590. }
  591. },
  592. "notification-url": "https://packagist.org/downloads/",
  593. "license": [
  594. "MIT"
  595. ],
  596. "authors": [
  597. {
  598. "name": "Fruitcake",
  599. "homepage": "https://fruitcake.nl"
  600. },
  601. {
  602. "name": "Barry vd. Heuvel",
  603. "email": "barryvdh@gmail.com"
  604. }
  605. ],
  606. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  607. "keywords": [
  608. "api",
  609. "cors",
  610. "crossdomain",
  611. "laravel"
  612. ],
  613. "support": {
  614. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  615. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  616. },
  617. "funding": [
  618. {
  619. "url": "https://fruitcake.nl",
  620. "type": "custom"
  621. },
  622. {
  623. "url": "https://github.com/barryvdh",
  624. "type": "github"
  625. }
  626. ],
  627. "abandoned": true,
  628. "time": "2022-02-23T14:25:13+00:00"
  629. },
  630. {
  631. "name": "graham-campbell/result-type",
  632. "version": "v1.1.0",
  633. "source": {
  634. "type": "git",
  635. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  636. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8"
  637. },
  638. "dist": {
  639. "type": "zip",
  640. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/a878d45c1914464426dc94da61c9e1d36ae262a8",
  641. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8",
  642. "shasum": ""
  643. },
  644. "require": {
  645. "php": "^7.2.5 || ^8.0",
  646. "phpoption/phpoption": "^1.9"
  647. },
  648. "require-dev": {
  649. "phpunit/phpunit": "^8.5.28 || ^9.5.21"
  650. },
  651. "type": "library",
  652. "autoload": {
  653. "psr-4": {
  654. "GrahamCampbell\\ResultType\\": "src/"
  655. }
  656. },
  657. "notification-url": "https://packagist.org/downloads/",
  658. "license": [
  659. "MIT"
  660. ],
  661. "authors": [
  662. {
  663. "name": "Graham Campbell",
  664. "email": "hello@gjcampbell.co.uk",
  665. "homepage": "https://github.com/GrahamCampbell"
  666. }
  667. ],
  668. "description": "An Implementation Of The Result Type",
  669. "keywords": [
  670. "Graham Campbell",
  671. "GrahamCampbell",
  672. "Result Type",
  673. "Result-Type",
  674. "result"
  675. ],
  676. "support": {
  677. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  678. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.0"
  679. },
  680. "funding": [
  681. {
  682. "url": "https://github.com/GrahamCampbell",
  683. "type": "github"
  684. },
  685. {
  686. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  687. "type": "tidelift"
  688. }
  689. ],
  690. "time": "2022-07-30T15:56:11+00:00"
  691. },
  692. {
  693. "name": "guzzlehttp/guzzle",
  694. "version": "7.5.0",
  695. "source": {
  696. "type": "git",
  697. "url": "https://github.com/guzzle/guzzle.git",
  698. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  699. },
  700. "dist": {
  701. "type": "zip",
  702. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  703. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  704. "shasum": ""
  705. },
  706. "require": {
  707. "ext-json": "*",
  708. "guzzlehttp/promises": "^1.5",
  709. "guzzlehttp/psr7": "^1.9 || ^2.4",
  710. "php": "^7.2.5 || ^8.0",
  711. "psr/http-client": "^1.0",
  712. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  713. },
  714. "provide": {
  715. "psr/http-client-implementation": "1.0"
  716. },
  717. "require-dev": {
  718. "bamarni/composer-bin-plugin": "^1.8.1",
  719. "ext-curl": "*",
  720. "php-http/client-integration-tests": "^3.0",
  721. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  722. "psr/log": "^1.1 || ^2.0 || ^3.0"
  723. },
  724. "suggest": {
  725. "ext-curl": "Required for CURL handler support",
  726. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  727. "psr/log": "Required for using the Log middleware"
  728. },
  729. "type": "library",
  730. "extra": {
  731. "bamarni-bin": {
  732. "bin-links": true,
  733. "forward-command": false
  734. },
  735. "branch-alias": {
  736. "dev-master": "7.5-dev"
  737. }
  738. },
  739. "autoload": {
  740. "files": [
  741. "src/functions_include.php"
  742. ],
  743. "psr-4": {
  744. "GuzzleHttp\\": "src/"
  745. }
  746. },
  747. "notification-url": "https://packagist.org/downloads/",
  748. "license": [
  749. "MIT"
  750. ],
  751. "authors": [
  752. {
  753. "name": "Graham Campbell",
  754. "email": "hello@gjcampbell.co.uk",
  755. "homepage": "https://github.com/GrahamCampbell"
  756. },
  757. {
  758. "name": "Michael Dowling",
  759. "email": "mtdowling@gmail.com",
  760. "homepage": "https://github.com/mtdowling"
  761. },
  762. {
  763. "name": "Jeremy Lindblom",
  764. "email": "jeremeamia@gmail.com",
  765. "homepage": "https://github.com/jeremeamia"
  766. },
  767. {
  768. "name": "George Mponos",
  769. "email": "gmponos@gmail.com",
  770. "homepage": "https://github.com/gmponos"
  771. },
  772. {
  773. "name": "Tobias Nyholm",
  774. "email": "tobias.nyholm@gmail.com",
  775. "homepage": "https://github.com/Nyholm"
  776. },
  777. {
  778. "name": "Márk Sági-Kazár",
  779. "email": "mark.sagikazar@gmail.com",
  780. "homepage": "https://github.com/sagikazarmark"
  781. },
  782. {
  783. "name": "Tobias Schultze",
  784. "email": "webmaster@tubo-world.de",
  785. "homepage": "https://github.com/Tobion"
  786. }
  787. ],
  788. "description": "Guzzle is a PHP HTTP client library",
  789. "keywords": [
  790. "client",
  791. "curl",
  792. "framework",
  793. "http",
  794. "http client",
  795. "psr-18",
  796. "psr-7",
  797. "rest",
  798. "web service"
  799. ],
  800. "support": {
  801. "issues": "https://github.com/guzzle/guzzle/issues",
  802. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  803. },
  804. "funding": [
  805. {
  806. "url": "https://github.com/GrahamCampbell",
  807. "type": "github"
  808. },
  809. {
  810. "url": "https://github.com/Nyholm",
  811. "type": "github"
  812. },
  813. {
  814. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  815. "type": "tidelift"
  816. }
  817. ],
  818. "time": "2022-08-28T15:39:27+00:00"
  819. },
  820. {
  821. "name": "guzzlehttp/promises",
  822. "version": "1.5.2",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/guzzle/promises.git",
  826. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  831. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  832. "shasum": ""
  833. },
  834. "require": {
  835. "php": ">=5.5"
  836. },
  837. "require-dev": {
  838. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  839. },
  840. "type": "library",
  841. "extra": {
  842. "branch-alias": {
  843. "dev-master": "1.5-dev"
  844. }
  845. },
  846. "autoload": {
  847. "files": [
  848. "src/functions_include.php"
  849. ],
  850. "psr-4": {
  851. "GuzzleHttp\\Promise\\": "src/"
  852. }
  853. },
  854. "notification-url": "https://packagist.org/downloads/",
  855. "license": [
  856. "MIT"
  857. ],
  858. "authors": [
  859. {
  860. "name": "Graham Campbell",
  861. "email": "hello@gjcampbell.co.uk",
  862. "homepage": "https://github.com/GrahamCampbell"
  863. },
  864. {
  865. "name": "Michael Dowling",
  866. "email": "mtdowling@gmail.com",
  867. "homepage": "https://github.com/mtdowling"
  868. },
  869. {
  870. "name": "Tobias Nyholm",
  871. "email": "tobias.nyholm@gmail.com",
  872. "homepage": "https://github.com/Nyholm"
  873. },
  874. {
  875. "name": "Tobias Schultze",
  876. "email": "webmaster@tubo-world.de",
  877. "homepage": "https://github.com/Tobion"
  878. }
  879. ],
  880. "description": "Guzzle promises library",
  881. "keywords": [
  882. "promise"
  883. ],
  884. "support": {
  885. "issues": "https://github.com/guzzle/promises/issues",
  886. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  887. },
  888. "funding": [
  889. {
  890. "url": "https://github.com/GrahamCampbell",
  891. "type": "github"
  892. },
  893. {
  894. "url": "https://github.com/Nyholm",
  895. "type": "github"
  896. },
  897. {
  898. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  899. "type": "tidelift"
  900. }
  901. ],
  902. "time": "2022-08-28T14:55:35+00:00"
  903. },
  904. {
  905. "name": "guzzlehttp/psr7",
  906. "version": "2.4.3",
  907. "source": {
  908. "type": "git",
  909. "url": "https://github.com/guzzle/psr7.git",
  910. "reference": "67c26b443f348a51926030c83481b85718457d3d"
  911. },
  912. "dist": {
  913. "type": "zip",
  914. "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d",
  915. "reference": "67c26b443f348a51926030c83481b85718457d3d",
  916. "shasum": ""
  917. },
  918. "require": {
  919. "php": "^7.2.5 || ^8.0",
  920. "psr/http-factory": "^1.0",
  921. "psr/http-message": "^1.0",
  922. "ralouphie/getallheaders": "^3.0"
  923. },
  924. "provide": {
  925. "psr/http-factory-implementation": "1.0",
  926. "psr/http-message-implementation": "1.0"
  927. },
  928. "require-dev": {
  929. "bamarni/composer-bin-plugin": "^1.8.1",
  930. "http-interop/http-factory-tests": "^0.9",
  931. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  932. },
  933. "suggest": {
  934. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  935. },
  936. "type": "library",
  937. "extra": {
  938. "bamarni-bin": {
  939. "bin-links": true,
  940. "forward-command": false
  941. },
  942. "branch-alias": {
  943. "dev-master": "2.4-dev"
  944. }
  945. },
  946. "autoload": {
  947. "psr-4": {
  948. "GuzzleHttp\\Psr7\\": "src/"
  949. }
  950. },
  951. "notification-url": "https://packagist.org/downloads/",
  952. "license": [
  953. "MIT"
  954. ],
  955. "authors": [
  956. {
  957. "name": "Graham Campbell",
  958. "email": "hello@gjcampbell.co.uk",
  959. "homepage": "https://github.com/GrahamCampbell"
  960. },
  961. {
  962. "name": "Michael Dowling",
  963. "email": "mtdowling@gmail.com",
  964. "homepage": "https://github.com/mtdowling"
  965. },
  966. {
  967. "name": "George Mponos",
  968. "email": "gmponos@gmail.com",
  969. "homepage": "https://github.com/gmponos"
  970. },
  971. {
  972. "name": "Tobias Nyholm",
  973. "email": "tobias.nyholm@gmail.com",
  974. "homepage": "https://github.com/Nyholm"
  975. },
  976. {
  977. "name": "Márk Sági-Kazár",
  978. "email": "mark.sagikazar@gmail.com",
  979. "homepage": "https://github.com/sagikazarmark"
  980. },
  981. {
  982. "name": "Tobias Schultze",
  983. "email": "webmaster@tubo-world.de",
  984. "homepage": "https://github.com/Tobion"
  985. },
  986. {
  987. "name": "Márk Sági-Kazár",
  988. "email": "mark.sagikazar@gmail.com",
  989. "homepage": "https://sagikazarmark.hu"
  990. }
  991. ],
  992. "description": "PSR-7 message implementation that also provides common utility methods",
  993. "keywords": [
  994. "http",
  995. "message",
  996. "psr-7",
  997. "request",
  998. "response",
  999. "stream",
  1000. "uri",
  1001. "url"
  1002. ],
  1003. "support": {
  1004. "issues": "https://github.com/guzzle/psr7/issues",
  1005. "source": "https://github.com/guzzle/psr7/tree/2.4.3"
  1006. },
  1007. "funding": [
  1008. {
  1009. "url": "https://github.com/GrahamCampbell",
  1010. "type": "github"
  1011. },
  1012. {
  1013. "url": "https://github.com/Nyholm",
  1014. "type": "github"
  1015. },
  1016. {
  1017. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1018. "type": "tidelift"
  1019. }
  1020. ],
  1021. "time": "2022-10-26T14:07:24+00:00"
  1022. },
  1023. {
  1024. "name": "laravel/framework",
  1025. "version": "v8.83.27",
  1026. "source": {
  1027. "type": "git",
  1028. "url": "https://github.com/laravel/framework.git",
  1029. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  1030. },
  1031. "dist": {
  1032. "type": "zip",
  1033. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  1034. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  1035. "shasum": ""
  1036. },
  1037. "require": {
  1038. "doctrine/inflector": "^1.4|^2.0",
  1039. "dragonmantank/cron-expression": "^3.0.2",
  1040. "egulias/email-validator": "^2.1.10",
  1041. "ext-json": "*",
  1042. "ext-mbstring": "*",
  1043. "ext-openssl": "*",
  1044. "laravel/serializable-closure": "^1.0",
  1045. "league/commonmark": "^1.3|^2.0.2",
  1046. "league/flysystem": "^1.1",
  1047. "monolog/monolog": "^2.0",
  1048. "nesbot/carbon": "^2.53.1",
  1049. "opis/closure": "^3.6",
  1050. "php": "^7.3|^8.0",
  1051. "psr/container": "^1.0",
  1052. "psr/log": "^1.0|^2.0",
  1053. "psr/simple-cache": "^1.0",
  1054. "ramsey/uuid": "^4.2.2",
  1055. "swiftmailer/swiftmailer": "^6.3",
  1056. "symfony/console": "^5.4",
  1057. "symfony/error-handler": "^5.4",
  1058. "symfony/finder": "^5.4",
  1059. "symfony/http-foundation": "^5.4",
  1060. "symfony/http-kernel": "^5.4",
  1061. "symfony/mime": "^5.4",
  1062. "symfony/process": "^5.4",
  1063. "symfony/routing": "^5.4",
  1064. "symfony/var-dumper": "^5.4",
  1065. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1066. "vlucas/phpdotenv": "^5.4.1",
  1067. "voku/portable-ascii": "^1.6.1"
  1068. },
  1069. "conflict": {
  1070. "tightenco/collect": "<5.5.33"
  1071. },
  1072. "provide": {
  1073. "psr/container-implementation": "1.0",
  1074. "psr/simple-cache-implementation": "1.0"
  1075. },
  1076. "replace": {
  1077. "illuminate/auth": "self.version",
  1078. "illuminate/broadcasting": "self.version",
  1079. "illuminate/bus": "self.version",
  1080. "illuminate/cache": "self.version",
  1081. "illuminate/collections": "self.version",
  1082. "illuminate/config": "self.version",
  1083. "illuminate/console": "self.version",
  1084. "illuminate/container": "self.version",
  1085. "illuminate/contracts": "self.version",
  1086. "illuminate/cookie": "self.version",
  1087. "illuminate/database": "self.version",
  1088. "illuminate/encryption": "self.version",
  1089. "illuminate/events": "self.version",
  1090. "illuminate/filesystem": "self.version",
  1091. "illuminate/hashing": "self.version",
  1092. "illuminate/http": "self.version",
  1093. "illuminate/log": "self.version",
  1094. "illuminate/macroable": "self.version",
  1095. "illuminate/mail": "self.version",
  1096. "illuminate/notifications": "self.version",
  1097. "illuminate/pagination": "self.version",
  1098. "illuminate/pipeline": "self.version",
  1099. "illuminate/queue": "self.version",
  1100. "illuminate/redis": "self.version",
  1101. "illuminate/routing": "self.version",
  1102. "illuminate/session": "self.version",
  1103. "illuminate/support": "self.version",
  1104. "illuminate/testing": "self.version",
  1105. "illuminate/translation": "self.version",
  1106. "illuminate/validation": "self.version",
  1107. "illuminate/view": "self.version"
  1108. },
  1109. "require-dev": {
  1110. "aws/aws-sdk-php": "^3.198.1",
  1111. "doctrine/dbal": "^2.13.3|^3.1.4",
  1112. "filp/whoops": "^2.14.3",
  1113. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1114. "league/flysystem-cached-adapter": "^1.0",
  1115. "mockery/mockery": "^1.4.4",
  1116. "orchestra/testbench-core": "^6.27",
  1117. "pda/pheanstalk": "^4.0",
  1118. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1119. "predis/predis": "^1.1.9",
  1120. "symfony/cache": "^5.4"
  1121. },
  1122. "suggest": {
  1123. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1124. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1125. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1126. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1127. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1128. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1129. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1130. "ext-memcached": "Required to use the memcache cache driver.",
  1131. "ext-pcntl": "Required to use all features of the queue worker.",
  1132. "ext-posix": "Required to use all features of the queue worker.",
  1133. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1134. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1135. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1136. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1137. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1138. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1139. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1140. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1141. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1142. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1143. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1144. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  1145. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1146. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1147. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  1148. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  1149. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  1150. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1151. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1152. },
  1153. "type": "library",
  1154. "extra": {
  1155. "branch-alias": {
  1156. "dev-master": "8.x-dev"
  1157. }
  1158. },
  1159. "autoload": {
  1160. "files": [
  1161. "src/Illuminate/Collections/helpers.php",
  1162. "src/Illuminate/Events/functions.php",
  1163. "src/Illuminate/Foundation/helpers.php",
  1164. "src/Illuminate/Support/helpers.php"
  1165. ],
  1166. "psr-4": {
  1167. "Illuminate\\": "src/Illuminate/",
  1168. "Illuminate\\Support\\": [
  1169. "src/Illuminate/Macroable/",
  1170. "src/Illuminate/Collections/"
  1171. ]
  1172. }
  1173. },
  1174. "notification-url": "https://packagist.org/downloads/",
  1175. "license": [
  1176. "MIT"
  1177. ],
  1178. "authors": [
  1179. {
  1180. "name": "Taylor Otwell",
  1181. "email": "taylor@laravel.com"
  1182. }
  1183. ],
  1184. "description": "The Laravel Framework.",
  1185. "homepage": "https://laravel.com",
  1186. "keywords": [
  1187. "framework",
  1188. "laravel"
  1189. ],
  1190. "support": {
  1191. "issues": "https://github.com/laravel/framework/issues",
  1192. "source": "https://github.com/laravel/framework"
  1193. },
  1194. "time": "2022-12-08T15:28:55+00:00"
  1195. },
  1196. {
  1197. "name": "laravel/serializable-closure",
  1198. "version": "v1.3.0",
  1199. "source": {
  1200. "type": "git",
  1201. "url": "https://github.com/laravel/serializable-closure.git",
  1202. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37"
  1203. },
  1204. "dist": {
  1205. "type": "zip",
  1206. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  1207. "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37",
  1208. "shasum": ""
  1209. },
  1210. "require": {
  1211. "php": "^7.3|^8.0"
  1212. },
  1213. "require-dev": {
  1214. "nesbot/carbon": "^2.61",
  1215. "pestphp/pest": "^1.21.3",
  1216. "phpstan/phpstan": "^1.8.2",
  1217. "symfony/var-dumper": "^5.4.11"
  1218. },
  1219. "type": "library",
  1220. "extra": {
  1221. "branch-alias": {
  1222. "dev-master": "1.x-dev"
  1223. }
  1224. },
  1225. "autoload": {
  1226. "psr-4": {
  1227. "Laravel\\SerializableClosure\\": "src/"
  1228. }
  1229. },
  1230. "notification-url": "https://packagist.org/downloads/",
  1231. "license": [
  1232. "MIT"
  1233. ],
  1234. "authors": [
  1235. {
  1236. "name": "Taylor Otwell",
  1237. "email": "taylor@laravel.com"
  1238. },
  1239. {
  1240. "name": "Nuno Maduro",
  1241. "email": "nuno@laravel.com"
  1242. }
  1243. ],
  1244. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1245. "keywords": [
  1246. "closure",
  1247. "laravel",
  1248. "serializable"
  1249. ],
  1250. "support": {
  1251. "issues": "https://github.com/laravel/serializable-closure/issues",
  1252. "source": "https://github.com/laravel/serializable-closure"
  1253. },
  1254. "time": "2023-01-30T18:31:20+00:00"
  1255. },
  1256. {
  1257. "name": "laravel/tinker",
  1258. "version": "v2.8.0",
  1259. "source": {
  1260. "type": "git",
  1261. "url": "https://github.com/laravel/tinker.git",
  1262. "reference": "74d0b287cc4ae65d15c368dd697aae71d62a73ad"
  1263. },
  1264. "dist": {
  1265. "type": "zip",
  1266. "url": "https://api.github.com/repos/laravel/tinker/zipball/74d0b287cc4ae65d15c368dd697aae71d62a73ad",
  1267. "reference": "74d0b287cc4ae65d15c368dd697aae71d62a73ad",
  1268. "shasum": ""
  1269. },
  1270. "require": {
  1271. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1272. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1273. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1274. "php": "^7.2.5|^8.0",
  1275. "psy/psysh": "^0.10.4|^0.11.1",
  1276. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  1277. },
  1278. "require-dev": {
  1279. "mockery/mockery": "~1.3.3|^1.4.2",
  1280. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1281. },
  1282. "suggest": {
  1283. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  1284. },
  1285. "type": "library",
  1286. "extra": {
  1287. "branch-alias": {
  1288. "dev-master": "2.x-dev"
  1289. },
  1290. "laravel": {
  1291. "providers": [
  1292. "Laravel\\Tinker\\TinkerServiceProvider"
  1293. ]
  1294. }
  1295. },
  1296. "autoload": {
  1297. "psr-4": {
  1298. "Laravel\\Tinker\\": "src/"
  1299. }
  1300. },
  1301. "notification-url": "https://packagist.org/downloads/",
  1302. "license": [
  1303. "MIT"
  1304. ],
  1305. "authors": [
  1306. {
  1307. "name": "Taylor Otwell",
  1308. "email": "taylor@laravel.com"
  1309. }
  1310. ],
  1311. "description": "Powerful REPL for the Laravel framework.",
  1312. "keywords": [
  1313. "REPL",
  1314. "Tinker",
  1315. "laravel",
  1316. "psysh"
  1317. ],
  1318. "support": {
  1319. "issues": "https://github.com/laravel/tinker/issues",
  1320. "source": "https://github.com/laravel/tinker/tree/v2.8.0"
  1321. },
  1322. "time": "2023-01-10T18:03:30+00:00"
  1323. },
  1324. {
  1325. "name": "league/commonmark",
  1326. "version": "2.3.9",
  1327. "source": {
  1328. "type": "git",
  1329. "url": "https://github.com/thephpleague/commonmark.git",
  1330. "reference": "c1e114f74e518daca2729ea8c4bf1167038fa4b5"
  1331. },
  1332. "dist": {
  1333. "type": "zip",
  1334. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c1e114f74e518daca2729ea8c4bf1167038fa4b5",
  1335. "reference": "c1e114f74e518daca2729ea8c4bf1167038fa4b5",
  1336. "shasum": ""
  1337. },
  1338. "require": {
  1339. "ext-mbstring": "*",
  1340. "league/config": "^1.1.1",
  1341. "php": "^7.4 || ^8.0",
  1342. "psr/event-dispatcher": "^1.0",
  1343. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1344. "symfony/polyfill-php80": "^1.16"
  1345. },
  1346. "require-dev": {
  1347. "cebe/markdown": "^1.0",
  1348. "commonmark/cmark": "0.30.0",
  1349. "commonmark/commonmark.js": "0.30.0",
  1350. "composer/package-versions-deprecated": "^1.8",
  1351. "embed/embed": "^4.4",
  1352. "erusev/parsedown": "^1.0",
  1353. "ext-json": "*",
  1354. "github/gfm": "0.29.0",
  1355. "michelf/php-markdown": "^1.4 || ^2.0",
  1356. "nyholm/psr7": "^1.5",
  1357. "phpstan/phpstan": "^1.8.2",
  1358. "phpunit/phpunit": "^9.5.21",
  1359. "scrutinizer/ocular": "^1.8.1",
  1360. "symfony/finder": "^5.3 | ^6.0",
  1361. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1362. "unleashedtech/php-coding-standard": "^3.1.1",
  1363. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1364. },
  1365. "suggest": {
  1366. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1367. },
  1368. "type": "library",
  1369. "extra": {
  1370. "branch-alias": {
  1371. "dev-main": "2.4-dev"
  1372. }
  1373. },
  1374. "autoload": {
  1375. "psr-4": {
  1376. "League\\CommonMark\\": "src"
  1377. }
  1378. },
  1379. "notification-url": "https://packagist.org/downloads/",
  1380. "license": [
  1381. "BSD-3-Clause"
  1382. ],
  1383. "authors": [
  1384. {
  1385. "name": "Colin O'Dell",
  1386. "email": "colinodell@gmail.com",
  1387. "homepage": "https://www.colinodell.com",
  1388. "role": "Lead Developer"
  1389. }
  1390. ],
  1391. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1392. "homepage": "https://commonmark.thephpleague.com",
  1393. "keywords": [
  1394. "commonmark",
  1395. "flavored",
  1396. "gfm",
  1397. "github",
  1398. "github-flavored",
  1399. "markdown",
  1400. "md",
  1401. "parser"
  1402. ],
  1403. "support": {
  1404. "docs": "https://commonmark.thephpleague.com/",
  1405. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1406. "issues": "https://github.com/thephpleague/commonmark/issues",
  1407. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1408. "source": "https://github.com/thephpleague/commonmark"
  1409. },
  1410. "funding": [
  1411. {
  1412. "url": "https://www.colinodell.com/sponsor",
  1413. "type": "custom"
  1414. },
  1415. {
  1416. "url": "https://www.paypal.me/colinpodell/10.00",
  1417. "type": "custom"
  1418. },
  1419. {
  1420. "url": "https://github.com/colinodell",
  1421. "type": "github"
  1422. },
  1423. {
  1424. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1425. "type": "tidelift"
  1426. }
  1427. ],
  1428. "time": "2023-02-15T14:07:24+00:00"
  1429. },
  1430. {
  1431. "name": "league/config",
  1432. "version": "v1.2.0",
  1433. "source": {
  1434. "type": "git",
  1435. "url": "https://github.com/thephpleague/config.git",
  1436. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1437. },
  1438. "dist": {
  1439. "type": "zip",
  1440. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1441. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1442. "shasum": ""
  1443. },
  1444. "require": {
  1445. "dflydev/dot-access-data": "^3.0.1",
  1446. "nette/schema": "^1.2",
  1447. "php": "^7.4 || ^8.0"
  1448. },
  1449. "require-dev": {
  1450. "phpstan/phpstan": "^1.8.2",
  1451. "phpunit/phpunit": "^9.5.5",
  1452. "scrutinizer/ocular": "^1.8.1",
  1453. "unleashedtech/php-coding-standard": "^3.1",
  1454. "vimeo/psalm": "^4.7.3"
  1455. },
  1456. "type": "library",
  1457. "extra": {
  1458. "branch-alias": {
  1459. "dev-main": "1.2-dev"
  1460. }
  1461. },
  1462. "autoload": {
  1463. "psr-4": {
  1464. "League\\Config\\": "src"
  1465. }
  1466. },
  1467. "notification-url": "https://packagist.org/downloads/",
  1468. "license": [
  1469. "BSD-3-Clause"
  1470. ],
  1471. "authors": [
  1472. {
  1473. "name": "Colin O'Dell",
  1474. "email": "colinodell@gmail.com",
  1475. "homepage": "https://www.colinodell.com",
  1476. "role": "Lead Developer"
  1477. }
  1478. ],
  1479. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1480. "homepage": "https://config.thephpleague.com",
  1481. "keywords": [
  1482. "array",
  1483. "config",
  1484. "configuration",
  1485. "dot",
  1486. "dot-access",
  1487. "nested",
  1488. "schema"
  1489. ],
  1490. "support": {
  1491. "docs": "https://config.thephpleague.com/",
  1492. "issues": "https://github.com/thephpleague/config/issues",
  1493. "rss": "https://github.com/thephpleague/config/releases.atom",
  1494. "source": "https://github.com/thephpleague/config"
  1495. },
  1496. "funding": [
  1497. {
  1498. "url": "https://www.colinodell.com/sponsor",
  1499. "type": "custom"
  1500. },
  1501. {
  1502. "url": "https://www.paypal.me/colinpodell/10.00",
  1503. "type": "custom"
  1504. },
  1505. {
  1506. "url": "https://github.com/colinodell",
  1507. "type": "github"
  1508. }
  1509. ],
  1510. "time": "2022-12-11T20:36:23+00:00"
  1511. },
  1512. {
  1513. "name": "league/flysystem",
  1514. "version": "1.1.10",
  1515. "source": {
  1516. "type": "git",
  1517. "url": "https://github.com/thephpleague/flysystem.git",
  1518. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  1519. },
  1520. "dist": {
  1521. "type": "zip",
  1522. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1523. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1524. "shasum": ""
  1525. },
  1526. "require": {
  1527. "ext-fileinfo": "*",
  1528. "league/mime-type-detection": "^1.3",
  1529. "php": "^7.2.5 || ^8.0"
  1530. },
  1531. "conflict": {
  1532. "league/flysystem-sftp": "<1.0.6"
  1533. },
  1534. "require-dev": {
  1535. "phpspec/prophecy": "^1.11.1",
  1536. "phpunit/phpunit": "^8.5.8"
  1537. },
  1538. "suggest": {
  1539. "ext-ftp": "Allows you to use FTP server storage",
  1540. "ext-openssl": "Allows you to use FTPS server storage",
  1541. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1542. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1543. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1544. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1545. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1546. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1547. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1548. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1549. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1550. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1551. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1552. },
  1553. "type": "library",
  1554. "extra": {
  1555. "branch-alias": {
  1556. "dev-master": "1.1-dev"
  1557. }
  1558. },
  1559. "autoload": {
  1560. "psr-4": {
  1561. "League\\Flysystem\\": "src/"
  1562. }
  1563. },
  1564. "notification-url": "https://packagist.org/downloads/",
  1565. "license": [
  1566. "MIT"
  1567. ],
  1568. "authors": [
  1569. {
  1570. "name": "Frank de Jonge",
  1571. "email": "info@frenky.net"
  1572. }
  1573. ],
  1574. "description": "Filesystem abstraction: Many filesystems, one API.",
  1575. "keywords": [
  1576. "Cloud Files",
  1577. "WebDAV",
  1578. "abstraction",
  1579. "aws",
  1580. "cloud",
  1581. "copy.com",
  1582. "dropbox",
  1583. "file systems",
  1584. "files",
  1585. "filesystem",
  1586. "filesystems",
  1587. "ftp",
  1588. "rackspace",
  1589. "remote",
  1590. "s3",
  1591. "sftp",
  1592. "storage"
  1593. ],
  1594. "support": {
  1595. "issues": "https://github.com/thephpleague/flysystem/issues",
  1596. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  1597. },
  1598. "funding": [
  1599. {
  1600. "url": "https://offset.earth/frankdejonge",
  1601. "type": "other"
  1602. }
  1603. ],
  1604. "time": "2022-10-04T09:16:37+00:00"
  1605. },
  1606. {
  1607. "name": "league/mime-type-detection",
  1608. "version": "1.11.0",
  1609. "source": {
  1610. "type": "git",
  1611. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1612. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  1613. },
  1614. "dist": {
  1615. "type": "zip",
  1616. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1617. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1618. "shasum": ""
  1619. },
  1620. "require": {
  1621. "ext-fileinfo": "*",
  1622. "php": "^7.2 || ^8.0"
  1623. },
  1624. "require-dev": {
  1625. "friendsofphp/php-cs-fixer": "^3.2",
  1626. "phpstan/phpstan": "^0.12.68",
  1627. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1628. },
  1629. "type": "library",
  1630. "autoload": {
  1631. "psr-4": {
  1632. "League\\MimeTypeDetection\\": "src"
  1633. }
  1634. },
  1635. "notification-url": "https://packagist.org/downloads/",
  1636. "license": [
  1637. "MIT"
  1638. ],
  1639. "authors": [
  1640. {
  1641. "name": "Frank de Jonge",
  1642. "email": "info@frankdejonge.nl"
  1643. }
  1644. ],
  1645. "description": "Mime-type detection for Flysystem",
  1646. "support": {
  1647. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1648. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  1649. },
  1650. "funding": [
  1651. {
  1652. "url": "https://github.com/frankdejonge",
  1653. "type": "github"
  1654. },
  1655. {
  1656. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1657. "type": "tidelift"
  1658. }
  1659. ],
  1660. "time": "2022-04-17T13:12:02+00:00"
  1661. },
  1662. {
  1663. "name": "monolog/monolog",
  1664. "version": "2.9.1",
  1665. "source": {
  1666. "type": "git",
  1667. "url": "https://github.com/Seldaek/monolog.git",
  1668. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
  1669. },
  1670. "dist": {
  1671. "type": "zip",
  1672. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  1673. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  1674. "shasum": ""
  1675. },
  1676. "require": {
  1677. "php": ">=7.2",
  1678. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1679. },
  1680. "provide": {
  1681. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1682. },
  1683. "require-dev": {
  1684. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1685. "doctrine/couchdb": "~1.0@dev",
  1686. "elasticsearch/elasticsearch": "^7 || ^8",
  1687. "ext-json": "*",
  1688. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  1689. "guzzlehttp/guzzle": "^7.4",
  1690. "guzzlehttp/psr7": "^2.2",
  1691. "mongodb/mongodb": "^1.8",
  1692. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1693. "phpspec/prophecy": "^1.15",
  1694. "phpstan/phpstan": "^0.12.91",
  1695. "phpunit/phpunit": "^8.5.14",
  1696. "predis/predis": "^1.1 || ^2.0",
  1697. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1698. "ruflin/elastica": "^7",
  1699. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1700. "symfony/mailer": "^5.4 || ^6",
  1701. "symfony/mime": "^5.4 || ^6"
  1702. },
  1703. "suggest": {
  1704. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1705. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1706. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1707. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1708. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1709. "ext-mbstring": "Allow to work properly with unicode symbols",
  1710. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1711. "ext-openssl": "Required to send log messages using SSL",
  1712. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1713. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1714. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1715. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1716. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1717. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1718. },
  1719. "type": "library",
  1720. "extra": {
  1721. "branch-alias": {
  1722. "dev-main": "2.x-dev"
  1723. }
  1724. },
  1725. "autoload": {
  1726. "psr-4": {
  1727. "Monolog\\": "src/Monolog"
  1728. }
  1729. },
  1730. "notification-url": "https://packagist.org/downloads/",
  1731. "license": [
  1732. "MIT"
  1733. ],
  1734. "authors": [
  1735. {
  1736. "name": "Jordi Boggiano",
  1737. "email": "j.boggiano@seld.be",
  1738. "homepage": "https://seld.be"
  1739. }
  1740. ],
  1741. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1742. "homepage": "https://github.com/Seldaek/monolog",
  1743. "keywords": [
  1744. "log",
  1745. "logging",
  1746. "psr-3"
  1747. ],
  1748. "support": {
  1749. "issues": "https://github.com/Seldaek/monolog/issues",
  1750. "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
  1751. },
  1752. "funding": [
  1753. {
  1754. "url": "https://github.com/Seldaek",
  1755. "type": "github"
  1756. },
  1757. {
  1758. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1759. "type": "tidelift"
  1760. }
  1761. ],
  1762. "time": "2023-02-06T13:44:46+00:00"
  1763. },
  1764. {
  1765. "name": "nesbot/carbon",
  1766. "version": "2.66.0",
  1767. "source": {
  1768. "type": "git",
  1769. "url": "https://github.com/briannesbitt/Carbon.git",
  1770. "reference": "496712849902241f04902033b0441b269effe001"
  1771. },
  1772. "dist": {
  1773. "type": "zip",
  1774. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  1775. "reference": "496712849902241f04902033b0441b269effe001",
  1776. "shasum": ""
  1777. },
  1778. "require": {
  1779. "ext-json": "*",
  1780. "php": "^7.1.8 || ^8.0",
  1781. "symfony/polyfill-mbstring": "^1.0",
  1782. "symfony/polyfill-php80": "^1.16",
  1783. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1784. },
  1785. "require-dev": {
  1786. "doctrine/dbal": "^2.0 || ^3.1.4",
  1787. "doctrine/orm": "^2.7",
  1788. "friendsofphp/php-cs-fixer": "^3.0",
  1789. "kylekatarnls/multi-tester": "^2.0",
  1790. "ondrejmirtes/better-reflection": "*",
  1791. "phpmd/phpmd": "^2.9",
  1792. "phpstan/extension-installer": "^1.0",
  1793. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1794. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1795. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1796. "squizlabs/php_codesniffer": "^3.4"
  1797. },
  1798. "bin": [
  1799. "bin/carbon"
  1800. ],
  1801. "type": "library",
  1802. "extra": {
  1803. "branch-alias": {
  1804. "dev-3.x": "3.x-dev",
  1805. "dev-master": "2.x-dev"
  1806. },
  1807. "laravel": {
  1808. "providers": [
  1809. "Carbon\\Laravel\\ServiceProvider"
  1810. ]
  1811. },
  1812. "phpstan": {
  1813. "includes": [
  1814. "extension.neon"
  1815. ]
  1816. }
  1817. },
  1818. "autoload": {
  1819. "psr-4": {
  1820. "Carbon\\": "src/Carbon/"
  1821. }
  1822. },
  1823. "notification-url": "https://packagist.org/downloads/",
  1824. "license": [
  1825. "MIT"
  1826. ],
  1827. "authors": [
  1828. {
  1829. "name": "Brian Nesbitt",
  1830. "email": "brian@nesbot.com",
  1831. "homepage": "https://markido.com"
  1832. },
  1833. {
  1834. "name": "kylekatarnls",
  1835. "homepage": "https://github.com/kylekatarnls"
  1836. }
  1837. ],
  1838. "description": "An API extension for DateTime that supports 281 different languages.",
  1839. "homepage": "https://carbon.nesbot.com",
  1840. "keywords": [
  1841. "date",
  1842. "datetime",
  1843. "time"
  1844. ],
  1845. "support": {
  1846. "docs": "https://carbon.nesbot.com/docs",
  1847. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1848. "source": "https://github.com/briannesbitt/Carbon"
  1849. },
  1850. "funding": [
  1851. {
  1852. "url": "https://github.com/sponsors/kylekatarnls",
  1853. "type": "github"
  1854. },
  1855. {
  1856. "url": "https://opencollective.com/Carbon#sponsor",
  1857. "type": "opencollective"
  1858. },
  1859. {
  1860. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  1861. "type": "tidelift"
  1862. }
  1863. ],
  1864. "time": "2023-01-29T18:53:47+00:00"
  1865. },
  1866. {
  1867. "name": "nette/schema",
  1868. "version": "v1.2.3",
  1869. "source": {
  1870. "type": "git",
  1871. "url": "https://github.com/nette/schema.git",
  1872. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  1873. },
  1874. "dist": {
  1875. "type": "zip",
  1876. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  1877. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  1878. "shasum": ""
  1879. },
  1880. "require": {
  1881. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  1882. "php": ">=7.1 <8.3"
  1883. },
  1884. "require-dev": {
  1885. "nette/tester": "^2.3 || ^2.4",
  1886. "phpstan/phpstan-nette": "^1.0",
  1887. "tracy/tracy": "^2.7"
  1888. },
  1889. "type": "library",
  1890. "extra": {
  1891. "branch-alias": {
  1892. "dev-master": "1.2-dev"
  1893. }
  1894. },
  1895. "autoload": {
  1896. "classmap": [
  1897. "src/"
  1898. ]
  1899. },
  1900. "notification-url": "https://packagist.org/downloads/",
  1901. "license": [
  1902. "BSD-3-Clause",
  1903. "GPL-2.0-only",
  1904. "GPL-3.0-only"
  1905. ],
  1906. "authors": [
  1907. {
  1908. "name": "David Grudl",
  1909. "homepage": "https://davidgrudl.com"
  1910. },
  1911. {
  1912. "name": "Nette Community",
  1913. "homepage": "https://nette.org/contributors"
  1914. }
  1915. ],
  1916. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  1917. "homepage": "https://nette.org",
  1918. "keywords": [
  1919. "config",
  1920. "nette"
  1921. ],
  1922. "support": {
  1923. "issues": "https://github.com/nette/schema/issues",
  1924. "source": "https://github.com/nette/schema/tree/v1.2.3"
  1925. },
  1926. "time": "2022-10-13T01:24:26+00:00"
  1927. },
  1928. {
  1929. "name": "nette/utils",
  1930. "version": "v4.0.0",
  1931. "source": {
  1932. "type": "git",
  1933. "url": "https://github.com/nette/utils.git",
  1934. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  1935. },
  1936. "dist": {
  1937. "type": "zip",
  1938. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  1939. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  1940. "shasum": ""
  1941. },
  1942. "require": {
  1943. "php": ">=8.0 <8.3"
  1944. },
  1945. "conflict": {
  1946. "nette/finder": "<3",
  1947. "nette/schema": "<1.2.2"
  1948. },
  1949. "require-dev": {
  1950. "jetbrains/phpstorm-attributes": "dev-master",
  1951. "nette/tester": "^2.4",
  1952. "phpstan/phpstan": "^1.0",
  1953. "tracy/tracy": "^2.9"
  1954. },
  1955. "suggest": {
  1956. "ext-gd": "to use Image",
  1957. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  1958. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  1959. "ext-json": "to use Nette\\Utils\\Json",
  1960. "ext-mbstring": "to use Strings::lower() etc...",
  1961. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  1962. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  1963. },
  1964. "type": "library",
  1965. "extra": {
  1966. "branch-alias": {
  1967. "dev-master": "4.0-dev"
  1968. }
  1969. },
  1970. "autoload": {
  1971. "classmap": [
  1972. "src/"
  1973. ]
  1974. },
  1975. "notification-url": "https://packagist.org/downloads/",
  1976. "license": [
  1977. "BSD-3-Clause",
  1978. "GPL-2.0-only",
  1979. "GPL-3.0-only"
  1980. ],
  1981. "authors": [
  1982. {
  1983. "name": "David Grudl",
  1984. "homepage": "https://davidgrudl.com"
  1985. },
  1986. {
  1987. "name": "Nette Community",
  1988. "homepage": "https://nette.org/contributors"
  1989. }
  1990. ],
  1991. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  1992. "homepage": "https://nette.org",
  1993. "keywords": [
  1994. "array",
  1995. "core",
  1996. "datetime",
  1997. "images",
  1998. "json",
  1999. "nette",
  2000. "paginator",
  2001. "password",
  2002. "slugify",
  2003. "string",
  2004. "unicode",
  2005. "utf-8",
  2006. "utility",
  2007. "validation"
  2008. ],
  2009. "support": {
  2010. "issues": "https://github.com/nette/utils/issues",
  2011. "source": "https://github.com/nette/utils/tree/v4.0.0"
  2012. },
  2013. "time": "2023-02-02T10:41:53+00:00"
  2014. },
  2015. {
  2016. "name": "nikic/php-parser",
  2017. "version": "v4.15.3",
  2018. "source": {
  2019. "type": "git",
  2020. "url": "https://github.com/nikic/PHP-Parser.git",
  2021. "reference": "570e980a201d8ed0236b0a62ddf2c9cbb2034039"
  2022. },
  2023. "dist": {
  2024. "type": "zip",
  2025. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/570e980a201d8ed0236b0a62ddf2c9cbb2034039",
  2026. "reference": "570e980a201d8ed0236b0a62ddf2c9cbb2034039",
  2027. "shasum": ""
  2028. },
  2029. "require": {
  2030. "ext-tokenizer": "*",
  2031. "php": ">=7.0"
  2032. },
  2033. "require-dev": {
  2034. "ircmaxell/php-yacc": "^0.0.7",
  2035. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2036. },
  2037. "bin": [
  2038. "bin/php-parse"
  2039. ],
  2040. "type": "library",
  2041. "extra": {
  2042. "branch-alias": {
  2043. "dev-master": "4.9-dev"
  2044. }
  2045. },
  2046. "autoload": {
  2047. "psr-4": {
  2048. "PhpParser\\": "lib/PhpParser"
  2049. }
  2050. },
  2051. "notification-url": "https://packagist.org/downloads/",
  2052. "license": [
  2053. "BSD-3-Clause"
  2054. ],
  2055. "authors": [
  2056. {
  2057. "name": "Nikita Popov"
  2058. }
  2059. ],
  2060. "description": "A PHP parser written in PHP",
  2061. "keywords": [
  2062. "parser",
  2063. "php"
  2064. ],
  2065. "support": {
  2066. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2067. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.3"
  2068. },
  2069. "time": "2023-01-16T22:05:37+00:00"
  2070. },
  2071. {
  2072. "name": "opis/closure",
  2073. "version": "3.6.3",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://github.com/opis/closure.git",
  2077. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  2082. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  2083. "shasum": ""
  2084. },
  2085. "require": {
  2086. "php": "^5.4 || ^7.0 || ^8.0"
  2087. },
  2088. "require-dev": {
  2089. "jeremeamia/superclosure": "^2.0",
  2090. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  2091. },
  2092. "type": "library",
  2093. "extra": {
  2094. "branch-alias": {
  2095. "dev-master": "3.6.x-dev"
  2096. }
  2097. },
  2098. "autoload": {
  2099. "files": [
  2100. "functions.php"
  2101. ],
  2102. "psr-4": {
  2103. "Opis\\Closure\\": "src/"
  2104. }
  2105. },
  2106. "notification-url": "https://packagist.org/downloads/",
  2107. "license": [
  2108. "MIT"
  2109. ],
  2110. "authors": [
  2111. {
  2112. "name": "Marius Sarca",
  2113. "email": "marius.sarca@gmail.com"
  2114. },
  2115. {
  2116. "name": "Sorin Sarca",
  2117. "email": "sarca_sorin@hotmail.com"
  2118. }
  2119. ],
  2120. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2121. "homepage": "https://opis.io/closure",
  2122. "keywords": [
  2123. "anonymous functions",
  2124. "closure",
  2125. "function",
  2126. "serializable",
  2127. "serialization",
  2128. "serialize"
  2129. ],
  2130. "support": {
  2131. "issues": "https://github.com/opis/closure/issues",
  2132. "source": "https://github.com/opis/closure/tree/3.6.3"
  2133. },
  2134. "time": "2022-01-27T09:35:39+00:00"
  2135. },
  2136. {
  2137. "name": "phpoption/phpoption",
  2138. "version": "1.9.0",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://github.com/schmittjoh/php-option.git",
  2142. "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dc5ff11e274a90cc1c743f66c9ad700ce50db9ab",
  2147. "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab",
  2148. "shasum": ""
  2149. },
  2150. "require": {
  2151. "php": "^7.2.5 || ^8.0"
  2152. },
  2153. "require-dev": {
  2154. "bamarni/composer-bin-plugin": "^1.8",
  2155. "phpunit/phpunit": "^8.5.28 || ^9.5.21"
  2156. },
  2157. "type": "library",
  2158. "extra": {
  2159. "bamarni-bin": {
  2160. "bin-links": true,
  2161. "forward-command": true
  2162. },
  2163. "branch-alias": {
  2164. "dev-master": "1.9-dev"
  2165. }
  2166. },
  2167. "autoload": {
  2168. "psr-4": {
  2169. "PhpOption\\": "src/PhpOption/"
  2170. }
  2171. },
  2172. "notification-url": "https://packagist.org/downloads/",
  2173. "license": [
  2174. "Apache-2.0"
  2175. ],
  2176. "authors": [
  2177. {
  2178. "name": "Johannes M. Schmitt",
  2179. "email": "schmittjoh@gmail.com",
  2180. "homepage": "https://github.com/schmittjoh"
  2181. },
  2182. {
  2183. "name": "Graham Campbell",
  2184. "email": "hello@gjcampbell.co.uk",
  2185. "homepage": "https://github.com/GrahamCampbell"
  2186. }
  2187. ],
  2188. "description": "Option Type for PHP",
  2189. "keywords": [
  2190. "language",
  2191. "option",
  2192. "php",
  2193. "type"
  2194. ],
  2195. "support": {
  2196. "issues": "https://github.com/schmittjoh/php-option/issues",
  2197. "source": "https://github.com/schmittjoh/php-option/tree/1.9.0"
  2198. },
  2199. "funding": [
  2200. {
  2201. "url": "https://github.com/GrahamCampbell",
  2202. "type": "github"
  2203. },
  2204. {
  2205. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2206. "type": "tidelift"
  2207. }
  2208. ],
  2209. "time": "2022-07-30T15:51:26+00:00"
  2210. },
  2211. {
  2212. "name": "psr/container",
  2213. "version": "1.1.2",
  2214. "source": {
  2215. "type": "git",
  2216. "url": "https://github.com/php-fig/container.git",
  2217. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2218. },
  2219. "dist": {
  2220. "type": "zip",
  2221. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2222. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2223. "shasum": ""
  2224. },
  2225. "require": {
  2226. "php": ">=7.4.0"
  2227. },
  2228. "type": "library",
  2229. "autoload": {
  2230. "psr-4": {
  2231. "Psr\\Container\\": "src/"
  2232. }
  2233. },
  2234. "notification-url": "https://packagist.org/downloads/",
  2235. "license": [
  2236. "MIT"
  2237. ],
  2238. "authors": [
  2239. {
  2240. "name": "PHP-FIG",
  2241. "homepage": "https://www.php-fig.org/"
  2242. }
  2243. ],
  2244. "description": "Common Container Interface (PHP FIG PSR-11)",
  2245. "homepage": "https://github.com/php-fig/container",
  2246. "keywords": [
  2247. "PSR-11",
  2248. "container",
  2249. "container-interface",
  2250. "container-interop",
  2251. "psr"
  2252. ],
  2253. "support": {
  2254. "issues": "https://github.com/php-fig/container/issues",
  2255. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2256. },
  2257. "time": "2021-11-05T16:50:12+00:00"
  2258. },
  2259. {
  2260. "name": "psr/event-dispatcher",
  2261. "version": "1.0.0",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://github.com/php-fig/event-dispatcher.git",
  2265. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2270. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2271. "shasum": ""
  2272. },
  2273. "require": {
  2274. "php": ">=7.2.0"
  2275. },
  2276. "type": "library",
  2277. "extra": {
  2278. "branch-alias": {
  2279. "dev-master": "1.0.x-dev"
  2280. }
  2281. },
  2282. "autoload": {
  2283. "psr-4": {
  2284. "Psr\\EventDispatcher\\": "src/"
  2285. }
  2286. },
  2287. "notification-url": "https://packagist.org/downloads/",
  2288. "license": [
  2289. "MIT"
  2290. ],
  2291. "authors": [
  2292. {
  2293. "name": "PHP-FIG",
  2294. "homepage": "http://www.php-fig.org/"
  2295. }
  2296. ],
  2297. "description": "Standard interfaces for event handling.",
  2298. "keywords": [
  2299. "events",
  2300. "psr",
  2301. "psr-14"
  2302. ],
  2303. "support": {
  2304. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2305. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2306. },
  2307. "time": "2019-01-08T18:20:26+00:00"
  2308. },
  2309. {
  2310. "name": "psr/http-client",
  2311. "version": "1.0.1",
  2312. "source": {
  2313. "type": "git",
  2314. "url": "https://github.com/php-fig/http-client.git",
  2315. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2316. },
  2317. "dist": {
  2318. "type": "zip",
  2319. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2320. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2321. "shasum": ""
  2322. },
  2323. "require": {
  2324. "php": "^7.0 || ^8.0",
  2325. "psr/http-message": "^1.0"
  2326. },
  2327. "type": "library",
  2328. "extra": {
  2329. "branch-alias": {
  2330. "dev-master": "1.0.x-dev"
  2331. }
  2332. },
  2333. "autoload": {
  2334. "psr-4": {
  2335. "Psr\\Http\\Client\\": "src/"
  2336. }
  2337. },
  2338. "notification-url": "https://packagist.org/downloads/",
  2339. "license": [
  2340. "MIT"
  2341. ],
  2342. "authors": [
  2343. {
  2344. "name": "PHP-FIG",
  2345. "homepage": "http://www.php-fig.org/"
  2346. }
  2347. ],
  2348. "description": "Common interface for HTTP clients",
  2349. "homepage": "https://github.com/php-fig/http-client",
  2350. "keywords": [
  2351. "http",
  2352. "http-client",
  2353. "psr",
  2354. "psr-18"
  2355. ],
  2356. "support": {
  2357. "source": "https://github.com/php-fig/http-client/tree/master"
  2358. },
  2359. "time": "2020-06-29T06:28:15+00:00"
  2360. },
  2361. {
  2362. "name": "psr/http-factory",
  2363. "version": "1.0.1",
  2364. "source": {
  2365. "type": "git",
  2366. "url": "https://github.com/php-fig/http-factory.git",
  2367. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2368. },
  2369. "dist": {
  2370. "type": "zip",
  2371. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2372. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2373. "shasum": ""
  2374. },
  2375. "require": {
  2376. "php": ">=7.0.0",
  2377. "psr/http-message": "^1.0"
  2378. },
  2379. "type": "library",
  2380. "extra": {
  2381. "branch-alias": {
  2382. "dev-master": "1.0.x-dev"
  2383. }
  2384. },
  2385. "autoload": {
  2386. "psr-4": {
  2387. "Psr\\Http\\Message\\": "src/"
  2388. }
  2389. },
  2390. "notification-url": "https://packagist.org/downloads/",
  2391. "license": [
  2392. "MIT"
  2393. ],
  2394. "authors": [
  2395. {
  2396. "name": "PHP-FIG",
  2397. "homepage": "http://www.php-fig.org/"
  2398. }
  2399. ],
  2400. "description": "Common interfaces for PSR-7 HTTP message factories",
  2401. "keywords": [
  2402. "factory",
  2403. "http",
  2404. "message",
  2405. "psr",
  2406. "psr-17",
  2407. "psr-7",
  2408. "request",
  2409. "response"
  2410. ],
  2411. "support": {
  2412. "source": "https://github.com/php-fig/http-factory/tree/master"
  2413. },
  2414. "time": "2019-04-30T12:38:16+00:00"
  2415. },
  2416. {
  2417. "name": "psr/http-message",
  2418. "version": "1.0.1",
  2419. "source": {
  2420. "type": "git",
  2421. "url": "https://github.com/php-fig/http-message.git",
  2422. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2423. },
  2424. "dist": {
  2425. "type": "zip",
  2426. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2427. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2428. "shasum": ""
  2429. },
  2430. "require": {
  2431. "php": ">=5.3.0"
  2432. },
  2433. "type": "library",
  2434. "extra": {
  2435. "branch-alias": {
  2436. "dev-master": "1.0.x-dev"
  2437. }
  2438. },
  2439. "autoload": {
  2440. "psr-4": {
  2441. "Psr\\Http\\Message\\": "src/"
  2442. }
  2443. },
  2444. "notification-url": "https://packagist.org/downloads/",
  2445. "license": [
  2446. "MIT"
  2447. ],
  2448. "authors": [
  2449. {
  2450. "name": "PHP-FIG",
  2451. "homepage": "http://www.php-fig.org/"
  2452. }
  2453. ],
  2454. "description": "Common interface for HTTP messages",
  2455. "homepage": "https://github.com/php-fig/http-message",
  2456. "keywords": [
  2457. "http",
  2458. "http-message",
  2459. "psr",
  2460. "psr-7",
  2461. "request",
  2462. "response"
  2463. ],
  2464. "support": {
  2465. "source": "https://github.com/php-fig/http-message/tree/master"
  2466. },
  2467. "time": "2016-08-06T14:39:51+00:00"
  2468. },
  2469. {
  2470. "name": "psr/log",
  2471. "version": "2.0.0",
  2472. "source": {
  2473. "type": "git",
  2474. "url": "https://github.com/php-fig/log.git",
  2475. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  2476. },
  2477. "dist": {
  2478. "type": "zip",
  2479. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  2480. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  2481. "shasum": ""
  2482. },
  2483. "require": {
  2484. "php": ">=8.0.0"
  2485. },
  2486. "type": "library",
  2487. "extra": {
  2488. "branch-alias": {
  2489. "dev-master": "2.0.x-dev"
  2490. }
  2491. },
  2492. "autoload": {
  2493. "psr-4": {
  2494. "Psr\\Log\\": "src"
  2495. }
  2496. },
  2497. "notification-url": "https://packagist.org/downloads/",
  2498. "license": [
  2499. "MIT"
  2500. ],
  2501. "authors": [
  2502. {
  2503. "name": "PHP-FIG",
  2504. "homepage": "https://www.php-fig.org/"
  2505. }
  2506. ],
  2507. "description": "Common interface for logging libraries",
  2508. "homepage": "https://github.com/php-fig/log",
  2509. "keywords": [
  2510. "log",
  2511. "psr",
  2512. "psr-3"
  2513. ],
  2514. "support": {
  2515. "source": "https://github.com/php-fig/log/tree/2.0.0"
  2516. },
  2517. "time": "2021-07-14T16:41:46+00:00"
  2518. },
  2519. {
  2520. "name": "psr/simple-cache",
  2521. "version": "1.0.1",
  2522. "source": {
  2523. "type": "git",
  2524. "url": "https://github.com/php-fig/simple-cache.git",
  2525. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2526. },
  2527. "dist": {
  2528. "type": "zip",
  2529. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2530. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2531. "shasum": ""
  2532. },
  2533. "require": {
  2534. "php": ">=5.3.0"
  2535. },
  2536. "type": "library",
  2537. "extra": {
  2538. "branch-alias": {
  2539. "dev-master": "1.0.x-dev"
  2540. }
  2541. },
  2542. "autoload": {
  2543. "psr-4": {
  2544. "Psr\\SimpleCache\\": "src/"
  2545. }
  2546. },
  2547. "notification-url": "https://packagist.org/downloads/",
  2548. "license": [
  2549. "MIT"
  2550. ],
  2551. "authors": [
  2552. {
  2553. "name": "PHP-FIG",
  2554. "homepage": "http://www.php-fig.org/"
  2555. }
  2556. ],
  2557. "description": "Common interfaces for simple caching",
  2558. "keywords": [
  2559. "cache",
  2560. "caching",
  2561. "psr",
  2562. "psr-16",
  2563. "simple-cache"
  2564. ],
  2565. "support": {
  2566. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2567. },
  2568. "time": "2017-10-23T01:57:42+00:00"
  2569. },
  2570. {
  2571. "name": "psy/psysh",
  2572. "version": "v0.11.12",
  2573. "source": {
  2574. "type": "git",
  2575. "url": "https://github.com/bobthecow/psysh.git",
  2576. "reference": "52cb7c47d403c31c0adc9bf7710fc355f93c20f7"
  2577. },
  2578. "dist": {
  2579. "type": "zip",
  2580. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/52cb7c47d403c31c0adc9bf7710fc355f93c20f7",
  2581. "reference": "52cb7c47d403c31c0adc9bf7710fc355f93c20f7",
  2582. "shasum": ""
  2583. },
  2584. "require": {
  2585. "ext-json": "*",
  2586. "ext-tokenizer": "*",
  2587. "nikic/php-parser": "^4.0 || ^3.1",
  2588. "php": "^8.0 || ^7.0.8",
  2589. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  2590. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  2591. },
  2592. "conflict": {
  2593. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  2594. },
  2595. "require-dev": {
  2596. "bamarni/composer-bin-plugin": "^1.2"
  2597. },
  2598. "suggest": {
  2599. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2600. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2601. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2602. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  2603. },
  2604. "bin": [
  2605. "bin/psysh"
  2606. ],
  2607. "type": "library",
  2608. "extra": {
  2609. "branch-alias": {
  2610. "dev-main": "0.11.x-dev"
  2611. }
  2612. },
  2613. "autoload": {
  2614. "files": [
  2615. "src/functions.php"
  2616. ],
  2617. "psr-4": {
  2618. "Psy\\": "src/"
  2619. }
  2620. },
  2621. "notification-url": "https://packagist.org/downloads/",
  2622. "license": [
  2623. "MIT"
  2624. ],
  2625. "authors": [
  2626. {
  2627. "name": "Justin Hileman",
  2628. "email": "justin@justinhileman.info",
  2629. "homepage": "http://justinhileman.com"
  2630. }
  2631. ],
  2632. "description": "An interactive shell for modern PHP.",
  2633. "homepage": "http://psysh.org",
  2634. "keywords": [
  2635. "REPL",
  2636. "console",
  2637. "interactive",
  2638. "shell"
  2639. ],
  2640. "support": {
  2641. "issues": "https://github.com/bobthecow/psysh/issues",
  2642. "source": "https://github.com/bobthecow/psysh/tree/v0.11.12"
  2643. },
  2644. "time": "2023-01-29T21:24:40+00:00"
  2645. },
  2646. {
  2647. "name": "ralouphie/getallheaders",
  2648. "version": "3.0.3",
  2649. "source": {
  2650. "type": "git",
  2651. "url": "https://github.com/ralouphie/getallheaders.git",
  2652. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2653. },
  2654. "dist": {
  2655. "type": "zip",
  2656. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2657. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2658. "shasum": ""
  2659. },
  2660. "require": {
  2661. "php": ">=5.6"
  2662. },
  2663. "require-dev": {
  2664. "php-coveralls/php-coveralls": "^2.1",
  2665. "phpunit/phpunit": "^5 || ^6.5"
  2666. },
  2667. "type": "library",
  2668. "autoload": {
  2669. "files": [
  2670. "src/getallheaders.php"
  2671. ]
  2672. },
  2673. "notification-url": "https://packagist.org/downloads/",
  2674. "license": [
  2675. "MIT"
  2676. ],
  2677. "authors": [
  2678. {
  2679. "name": "Ralph Khattar",
  2680. "email": "ralph.khattar@gmail.com"
  2681. }
  2682. ],
  2683. "description": "A polyfill for getallheaders.",
  2684. "support": {
  2685. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2686. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2687. },
  2688. "time": "2019-03-08T08:55:37+00:00"
  2689. },
  2690. {
  2691. "name": "ramsey/collection",
  2692. "version": "2.0.0",
  2693. "source": {
  2694. "type": "git",
  2695. "url": "https://github.com/ramsey/collection.git",
  2696. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  2697. },
  2698. "dist": {
  2699. "type": "zip",
  2700. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  2701. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  2702. "shasum": ""
  2703. },
  2704. "require": {
  2705. "php": "^8.1"
  2706. },
  2707. "require-dev": {
  2708. "captainhook/plugin-composer": "^5.3",
  2709. "ergebnis/composer-normalize": "^2.28.3",
  2710. "fakerphp/faker": "^1.21",
  2711. "hamcrest/hamcrest-php": "^2.0",
  2712. "jangregor/phpstan-prophecy": "^1.0",
  2713. "mockery/mockery": "^1.5",
  2714. "php-parallel-lint/php-console-highlighter": "^1.0",
  2715. "php-parallel-lint/php-parallel-lint": "^1.3",
  2716. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  2717. "phpspec/prophecy-phpunit": "^2.0",
  2718. "phpstan/extension-installer": "^1.2",
  2719. "phpstan/phpstan": "^1.9",
  2720. "phpstan/phpstan-mockery": "^1.1",
  2721. "phpstan/phpstan-phpunit": "^1.3",
  2722. "phpunit/phpunit": "^9.5",
  2723. "psalm/plugin-mockery": "^1.1",
  2724. "psalm/plugin-phpunit": "^0.18.4",
  2725. "ramsey/coding-standard": "^2.0.3",
  2726. "ramsey/conventional-commits": "^1.3",
  2727. "vimeo/psalm": "^5.4"
  2728. },
  2729. "type": "library",
  2730. "extra": {
  2731. "captainhook": {
  2732. "force-install": true
  2733. },
  2734. "ramsey/conventional-commits": {
  2735. "configFile": "conventional-commits.json"
  2736. }
  2737. },
  2738. "autoload": {
  2739. "psr-4": {
  2740. "Ramsey\\Collection\\": "src/"
  2741. }
  2742. },
  2743. "notification-url": "https://packagist.org/downloads/",
  2744. "license": [
  2745. "MIT"
  2746. ],
  2747. "authors": [
  2748. {
  2749. "name": "Ben Ramsey",
  2750. "email": "ben@benramsey.com",
  2751. "homepage": "https://benramsey.com"
  2752. }
  2753. ],
  2754. "description": "A PHP library for representing and manipulating collections.",
  2755. "keywords": [
  2756. "array",
  2757. "collection",
  2758. "hash",
  2759. "map",
  2760. "queue",
  2761. "set"
  2762. ],
  2763. "support": {
  2764. "issues": "https://github.com/ramsey/collection/issues",
  2765. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  2766. },
  2767. "funding": [
  2768. {
  2769. "url": "https://github.com/ramsey",
  2770. "type": "github"
  2771. },
  2772. {
  2773. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  2774. "type": "tidelift"
  2775. }
  2776. ],
  2777. "time": "2022-12-31T21:50:55+00:00"
  2778. },
  2779. {
  2780. "name": "ramsey/uuid",
  2781. "version": "4.7.3",
  2782. "source": {
  2783. "type": "git",
  2784. "url": "https://github.com/ramsey/uuid.git",
  2785. "reference": "433b2014e3979047db08a17a205f410ba3869cf2"
  2786. },
  2787. "dist": {
  2788. "type": "zip",
  2789. "url": "https://api.github.com/repos/ramsey/uuid/zipball/433b2014e3979047db08a17a205f410ba3869cf2",
  2790. "reference": "433b2014e3979047db08a17a205f410ba3869cf2",
  2791. "shasum": ""
  2792. },
  2793. "require": {
  2794. "brick/math": "^0.8.8 || ^0.9 || ^0.10",
  2795. "ext-json": "*",
  2796. "php": "^8.0",
  2797. "ramsey/collection": "^1.2 || ^2.0"
  2798. },
  2799. "replace": {
  2800. "rhumsaa/uuid": "self.version"
  2801. },
  2802. "require-dev": {
  2803. "captainhook/captainhook": "^5.10",
  2804. "captainhook/plugin-composer": "^5.3",
  2805. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2806. "doctrine/annotations": "^1.8",
  2807. "ergebnis/composer-normalize": "^2.15",
  2808. "mockery/mockery": "^1.3",
  2809. "paragonie/random-lib": "^2",
  2810. "php-mock/php-mock": "^2.2",
  2811. "php-mock/php-mock-mockery": "^1.3",
  2812. "php-parallel-lint/php-parallel-lint": "^1.1",
  2813. "phpbench/phpbench": "^1.0",
  2814. "phpstan/extension-installer": "^1.1",
  2815. "phpstan/phpstan": "^1.8",
  2816. "phpstan/phpstan-mockery": "^1.1",
  2817. "phpstan/phpstan-phpunit": "^1.1",
  2818. "phpunit/phpunit": "^8.5 || ^9",
  2819. "ramsey/composer-repl": "^1.4",
  2820. "slevomat/coding-standard": "^8.4",
  2821. "squizlabs/php_codesniffer": "^3.5",
  2822. "vimeo/psalm": "^4.9"
  2823. },
  2824. "suggest": {
  2825. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2826. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2827. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2828. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2829. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2830. },
  2831. "type": "library",
  2832. "extra": {
  2833. "captainhook": {
  2834. "force-install": true
  2835. }
  2836. },
  2837. "autoload": {
  2838. "files": [
  2839. "src/functions.php"
  2840. ],
  2841. "psr-4": {
  2842. "Ramsey\\Uuid\\": "src/"
  2843. }
  2844. },
  2845. "notification-url": "https://packagist.org/downloads/",
  2846. "license": [
  2847. "MIT"
  2848. ],
  2849. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2850. "keywords": [
  2851. "guid",
  2852. "identifier",
  2853. "uuid"
  2854. ],
  2855. "support": {
  2856. "issues": "https://github.com/ramsey/uuid/issues",
  2857. "source": "https://github.com/ramsey/uuid/tree/4.7.3"
  2858. },
  2859. "funding": [
  2860. {
  2861. "url": "https://github.com/ramsey",
  2862. "type": "github"
  2863. },
  2864. {
  2865. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  2866. "type": "tidelift"
  2867. }
  2868. ],
  2869. "time": "2023-01-12T18:13:24+00:00"
  2870. },
  2871. {
  2872. "name": "swiftmailer/swiftmailer",
  2873. "version": "v6.3.0",
  2874. "source": {
  2875. "type": "git",
  2876. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2877. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  2878. },
  2879. "dist": {
  2880. "type": "zip",
  2881. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2882. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2883. "shasum": ""
  2884. },
  2885. "require": {
  2886. "egulias/email-validator": "^2.0|^3.1",
  2887. "php": ">=7.0.0",
  2888. "symfony/polyfill-iconv": "^1.0",
  2889. "symfony/polyfill-intl-idn": "^1.10",
  2890. "symfony/polyfill-mbstring": "^1.0"
  2891. },
  2892. "require-dev": {
  2893. "mockery/mockery": "^1.0",
  2894. "symfony/phpunit-bridge": "^4.4|^5.4"
  2895. },
  2896. "suggest": {
  2897. "ext-intl": "Needed to support internationalized email addresses"
  2898. },
  2899. "type": "library",
  2900. "extra": {
  2901. "branch-alias": {
  2902. "dev-master": "6.2-dev"
  2903. }
  2904. },
  2905. "autoload": {
  2906. "files": [
  2907. "lib/swift_required.php"
  2908. ]
  2909. },
  2910. "notification-url": "https://packagist.org/downloads/",
  2911. "license": [
  2912. "MIT"
  2913. ],
  2914. "authors": [
  2915. {
  2916. "name": "Chris Corbyn"
  2917. },
  2918. {
  2919. "name": "Fabien Potencier",
  2920. "email": "fabien@symfony.com"
  2921. }
  2922. ],
  2923. "description": "Swiftmailer, free feature-rich PHP mailer",
  2924. "homepage": "https://swiftmailer.symfony.com",
  2925. "keywords": [
  2926. "email",
  2927. "mail",
  2928. "mailer"
  2929. ],
  2930. "support": {
  2931. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2932. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  2933. },
  2934. "funding": [
  2935. {
  2936. "url": "https://github.com/fabpot",
  2937. "type": "github"
  2938. },
  2939. {
  2940. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  2941. "type": "tidelift"
  2942. }
  2943. ],
  2944. "abandoned": "symfony/mailer",
  2945. "time": "2021-10-18T15:26:12+00:00"
  2946. },
  2947. {
  2948. "name": "symfony/console",
  2949. "version": "v5.4.19",
  2950. "source": {
  2951. "type": "git",
  2952. "url": "https://github.com/symfony/console.git",
  2953. "reference": "dccb8d251a9017d5994c988b034d3e18aaabf740"
  2954. },
  2955. "dist": {
  2956. "type": "zip",
  2957. "url": "https://api.github.com/repos/symfony/console/zipball/dccb8d251a9017d5994c988b034d3e18aaabf740",
  2958. "reference": "dccb8d251a9017d5994c988b034d3e18aaabf740",
  2959. "shasum": ""
  2960. },
  2961. "require": {
  2962. "php": ">=7.2.5",
  2963. "symfony/deprecation-contracts": "^2.1|^3",
  2964. "symfony/polyfill-mbstring": "~1.0",
  2965. "symfony/polyfill-php73": "^1.9",
  2966. "symfony/polyfill-php80": "^1.16",
  2967. "symfony/service-contracts": "^1.1|^2|^3",
  2968. "symfony/string": "^5.1|^6.0"
  2969. },
  2970. "conflict": {
  2971. "psr/log": ">=3",
  2972. "symfony/dependency-injection": "<4.4",
  2973. "symfony/dotenv": "<5.1",
  2974. "symfony/event-dispatcher": "<4.4",
  2975. "symfony/lock": "<4.4",
  2976. "symfony/process": "<4.4"
  2977. },
  2978. "provide": {
  2979. "psr/log-implementation": "1.0|2.0"
  2980. },
  2981. "require-dev": {
  2982. "psr/log": "^1|^2",
  2983. "symfony/config": "^4.4|^5.0|^6.0",
  2984. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2985. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2986. "symfony/lock": "^4.4|^5.0|^6.0",
  2987. "symfony/process": "^4.4|^5.0|^6.0",
  2988. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2989. },
  2990. "suggest": {
  2991. "psr/log": "For using the console logger",
  2992. "symfony/event-dispatcher": "",
  2993. "symfony/lock": "",
  2994. "symfony/process": ""
  2995. },
  2996. "type": "library",
  2997. "autoload": {
  2998. "psr-4": {
  2999. "Symfony\\Component\\Console\\": ""
  3000. },
  3001. "exclude-from-classmap": [
  3002. "/Tests/"
  3003. ]
  3004. },
  3005. "notification-url": "https://packagist.org/downloads/",
  3006. "license": [
  3007. "MIT"
  3008. ],
  3009. "authors": [
  3010. {
  3011. "name": "Fabien Potencier",
  3012. "email": "fabien@symfony.com"
  3013. },
  3014. {
  3015. "name": "Symfony Community",
  3016. "homepage": "https://symfony.com/contributors"
  3017. }
  3018. ],
  3019. "description": "Eases the creation of beautiful and testable command line interfaces",
  3020. "homepage": "https://symfony.com",
  3021. "keywords": [
  3022. "cli",
  3023. "command line",
  3024. "console",
  3025. "terminal"
  3026. ],
  3027. "support": {
  3028. "source": "https://github.com/symfony/console/tree/v5.4.19"
  3029. },
  3030. "funding": [
  3031. {
  3032. "url": "https://symfony.com/sponsor",
  3033. "type": "custom"
  3034. },
  3035. {
  3036. "url": "https://github.com/fabpot",
  3037. "type": "github"
  3038. },
  3039. {
  3040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3041. "type": "tidelift"
  3042. }
  3043. ],
  3044. "time": "2023-01-01T08:32:19+00:00"
  3045. },
  3046. {
  3047. "name": "symfony/css-selector",
  3048. "version": "v6.2.5",
  3049. "source": {
  3050. "type": "git",
  3051. "url": "https://github.com/symfony/css-selector.git",
  3052. "reference": "bf1b9d4ad8b1cf0dbde8b08e0135a2f6259b9ba1"
  3053. },
  3054. "dist": {
  3055. "type": "zip",
  3056. "url": "https://api.github.com/repos/symfony/css-selector/zipball/bf1b9d4ad8b1cf0dbde8b08e0135a2f6259b9ba1",
  3057. "reference": "bf1b9d4ad8b1cf0dbde8b08e0135a2f6259b9ba1",
  3058. "shasum": ""
  3059. },
  3060. "require": {
  3061. "php": ">=8.1"
  3062. },
  3063. "type": "library",
  3064. "autoload": {
  3065. "psr-4": {
  3066. "Symfony\\Component\\CssSelector\\": ""
  3067. },
  3068. "exclude-from-classmap": [
  3069. "/Tests/"
  3070. ]
  3071. },
  3072. "notification-url": "https://packagist.org/downloads/",
  3073. "license": [
  3074. "MIT"
  3075. ],
  3076. "authors": [
  3077. {
  3078. "name": "Fabien Potencier",
  3079. "email": "fabien@symfony.com"
  3080. },
  3081. {
  3082. "name": "Jean-François Simon",
  3083. "email": "jeanfrancois.simon@sensiolabs.com"
  3084. },
  3085. {
  3086. "name": "Symfony Community",
  3087. "homepage": "https://symfony.com/contributors"
  3088. }
  3089. ],
  3090. "description": "Converts CSS selectors to XPath expressions",
  3091. "homepage": "https://symfony.com",
  3092. "support": {
  3093. "source": "https://github.com/symfony/css-selector/tree/v6.2.5"
  3094. },
  3095. "funding": [
  3096. {
  3097. "url": "https://symfony.com/sponsor",
  3098. "type": "custom"
  3099. },
  3100. {
  3101. "url": "https://github.com/fabpot",
  3102. "type": "github"
  3103. },
  3104. {
  3105. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3106. "type": "tidelift"
  3107. }
  3108. ],
  3109. "time": "2023-01-01T08:38:09+00:00"
  3110. },
  3111. {
  3112. "name": "symfony/deprecation-contracts",
  3113. "version": "v3.2.0",
  3114. "source": {
  3115. "type": "git",
  3116. "url": "https://github.com/symfony/deprecation-contracts.git",
  3117. "reference": "1ee04c65529dea5d8744774d474e7cbd2f1206d3"
  3118. },
  3119. "dist": {
  3120. "type": "zip",
  3121. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/1ee04c65529dea5d8744774d474e7cbd2f1206d3",
  3122. "reference": "1ee04c65529dea5d8744774d474e7cbd2f1206d3",
  3123. "shasum": ""
  3124. },
  3125. "require": {
  3126. "php": ">=8.1"
  3127. },
  3128. "type": "library",
  3129. "extra": {
  3130. "branch-alias": {
  3131. "dev-main": "3.3-dev"
  3132. },
  3133. "thanks": {
  3134. "name": "symfony/contracts",
  3135. "url": "https://github.com/symfony/contracts"
  3136. }
  3137. },
  3138. "autoload": {
  3139. "files": [
  3140. "function.php"
  3141. ]
  3142. },
  3143. "notification-url": "https://packagist.org/downloads/",
  3144. "license": [
  3145. "MIT"
  3146. ],
  3147. "authors": [
  3148. {
  3149. "name": "Nicolas Grekas",
  3150. "email": "p@tchwork.com"
  3151. },
  3152. {
  3153. "name": "Symfony Community",
  3154. "homepage": "https://symfony.com/contributors"
  3155. }
  3156. ],
  3157. "description": "A generic function and convention to trigger deprecation notices",
  3158. "homepage": "https://symfony.com",
  3159. "support": {
  3160. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.0"
  3161. },
  3162. "funding": [
  3163. {
  3164. "url": "https://symfony.com/sponsor",
  3165. "type": "custom"
  3166. },
  3167. {
  3168. "url": "https://github.com/fabpot",
  3169. "type": "github"
  3170. },
  3171. {
  3172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3173. "type": "tidelift"
  3174. }
  3175. ],
  3176. "time": "2022-11-25T10:21:52+00:00"
  3177. },
  3178. {
  3179. "name": "symfony/error-handler",
  3180. "version": "v5.4.19",
  3181. "source": {
  3182. "type": "git",
  3183. "url": "https://github.com/symfony/error-handler.git",
  3184. "reference": "438ef3e5e6481244785da3ce8cf8f4e74e7f2822"
  3185. },
  3186. "dist": {
  3187. "type": "zip",
  3188. "url": "https://api.github.com/repos/symfony/error-handler/zipball/438ef3e5e6481244785da3ce8cf8f4e74e7f2822",
  3189. "reference": "438ef3e5e6481244785da3ce8cf8f4e74e7f2822",
  3190. "shasum": ""
  3191. },
  3192. "require": {
  3193. "php": ">=7.2.5",
  3194. "psr/log": "^1|^2|^3",
  3195. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3196. },
  3197. "require-dev": {
  3198. "symfony/deprecation-contracts": "^2.1|^3",
  3199. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3200. "symfony/serializer": "^4.4|^5.0|^6.0"
  3201. },
  3202. "bin": [
  3203. "Resources/bin/patch-type-declarations"
  3204. ],
  3205. "type": "library",
  3206. "autoload": {
  3207. "psr-4": {
  3208. "Symfony\\Component\\ErrorHandler\\": ""
  3209. },
  3210. "exclude-from-classmap": [
  3211. "/Tests/"
  3212. ]
  3213. },
  3214. "notification-url": "https://packagist.org/downloads/",
  3215. "license": [
  3216. "MIT"
  3217. ],
  3218. "authors": [
  3219. {
  3220. "name": "Fabien Potencier",
  3221. "email": "fabien@symfony.com"
  3222. },
  3223. {
  3224. "name": "Symfony Community",
  3225. "homepage": "https://symfony.com/contributors"
  3226. }
  3227. ],
  3228. "description": "Provides tools to manage errors and ease debugging PHP code",
  3229. "homepage": "https://symfony.com",
  3230. "support": {
  3231. "source": "https://github.com/symfony/error-handler/tree/v5.4.19"
  3232. },
  3233. "funding": [
  3234. {
  3235. "url": "https://symfony.com/sponsor",
  3236. "type": "custom"
  3237. },
  3238. {
  3239. "url": "https://github.com/fabpot",
  3240. "type": "github"
  3241. },
  3242. {
  3243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3244. "type": "tidelift"
  3245. }
  3246. ],
  3247. "time": "2023-01-01T08:32:19+00:00"
  3248. },
  3249. {
  3250. "name": "symfony/event-dispatcher",
  3251. "version": "v6.2.5",
  3252. "source": {
  3253. "type": "git",
  3254. "url": "https://github.com/symfony/event-dispatcher.git",
  3255. "reference": "f02d108b5e9fd4a6245aa73a9d2df2ec060c3e68"
  3256. },
  3257. "dist": {
  3258. "type": "zip",
  3259. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f02d108b5e9fd4a6245aa73a9d2df2ec060c3e68",
  3260. "reference": "f02d108b5e9fd4a6245aa73a9d2df2ec060c3e68",
  3261. "shasum": ""
  3262. },
  3263. "require": {
  3264. "php": ">=8.1",
  3265. "symfony/event-dispatcher-contracts": "^2|^3"
  3266. },
  3267. "conflict": {
  3268. "symfony/dependency-injection": "<5.4"
  3269. },
  3270. "provide": {
  3271. "psr/event-dispatcher-implementation": "1.0",
  3272. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3273. },
  3274. "require-dev": {
  3275. "psr/log": "^1|^2|^3",
  3276. "symfony/config": "^5.4|^6.0",
  3277. "symfony/dependency-injection": "^5.4|^6.0",
  3278. "symfony/error-handler": "^5.4|^6.0",
  3279. "symfony/expression-language": "^5.4|^6.0",
  3280. "symfony/http-foundation": "^5.4|^6.0",
  3281. "symfony/service-contracts": "^1.1|^2|^3",
  3282. "symfony/stopwatch": "^5.4|^6.0"
  3283. },
  3284. "suggest": {
  3285. "symfony/dependency-injection": "",
  3286. "symfony/http-kernel": ""
  3287. },
  3288. "type": "library",
  3289. "autoload": {
  3290. "psr-4": {
  3291. "Symfony\\Component\\EventDispatcher\\": ""
  3292. },
  3293. "exclude-from-classmap": [
  3294. "/Tests/"
  3295. ]
  3296. },
  3297. "notification-url": "https://packagist.org/downloads/",
  3298. "license": [
  3299. "MIT"
  3300. ],
  3301. "authors": [
  3302. {
  3303. "name": "Fabien Potencier",
  3304. "email": "fabien@symfony.com"
  3305. },
  3306. {
  3307. "name": "Symfony Community",
  3308. "homepage": "https://symfony.com/contributors"
  3309. }
  3310. ],
  3311. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3312. "homepage": "https://symfony.com",
  3313. "support": {
  3314. "source": "https://github.com/symfony/event-dispatcher/tree/v6.2.5"
  3315. },
  3316. "funding": [
  3317. {
  3318. "url": "https://symfony.com/sponsor",
  3319. "type": "custom"
  3320. },
  3321. {
  3322. "url": "https://github.com/fabpot",
  3323. "type": "github"
  3324. },
  3325. {
  3326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3327. "type": "tidelift"
  3328. }
  3329. ],
  3330. "time": "2023-01-01T08:38:09+00:00"
  3331. },
  3332. {
  3333. "name": "symfony/event-dispatcher-contracts",
  3334. "version": "v3.2.0",
  3335. "source": {
  3336. "type": "git",
  3337. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3338. "reference": "0782b0b52a737a05b4383d0df35a474303cabdae"
  3339. },
  3340. "dist": {
  3341. "type": "zip",
  3342. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0782b0b52a737a05b4383d0df35a474303cabdae",
  3343. "reference": "0782b0b52a737a05b4383d0df35a474303cabdae",
  3344. "shasum": ""
  3345. },
  3346. "require": {
  3347. "php": ">=8.1",
  3348. "psr/event-dispatcher": "^1"
  3349. },
  3350. "suggest": {
  3351. "symfony/event-dispatcher-implementation": ""
  3352. },
  3353. "type": "library",
  3354. "extra": {
  3355. "branch-alias": {
  3356. "dev-main": "3.3-dev"
  3357. },
  3358. "thanks": {
  3359. "name": "symfony/contracts",
  3360. "url": "https://github.com/symfony/contracts"
  3361. }
  3362. },
  3363. "autoload": {
  3364. "psr-4": {
  3365. "Symfony\\Contracts\\EventDispatcher\\": ""
  3366. }
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "MIT"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "Nicolas Grekas",
  3375. "email": "p@tchwork.com"
  3376. },
  3377. {
  3378. "name": "Symfony Community",
  3379. "homepage": "https://symfony.com/contributors"
  3380. }
  3381. ],
  3382. "description": "Generic abstractions related to dispatching event",
  3383. "homepage": "https://symfony.com",
  3384. "keywords": [
  3385. "abstractions",
  3386. "contracts",
  3387. "decoupling",
  3388. "interfaces",
  3389. "interoperability",
  3390. "standards"
  3391. ],
  3392. "support": {
  3393. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.2.0"
  3394. },
  3395. "funding": [
  3396. {
  3397. "url": "https://symfony.com/sponsor",
  3398. "type": "custom"
  3399. },
  3400. {
  3401. "url": "https://github.com/fabpot",
  3402. "type": "github"
  3403. },
  3404. {
  3405. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3406. "type": "tidelift"
  3407. }
  3408. ],
  3409. "time": "2022-11-25T10:21:52+00:00"
  3410. },
  3411. {
  3412. "name": "symfony/finder",
  3413. "version": "v5.4.19",
  3414. "source": {
  3415. "type": "git",
  3416. "url": "https://github.com/symfony/finder.git",
  3417. "reference": "6071aebf810ad13fe8200c224f36103abb37cf1f"
  3418. },
  3419. "dist": {
  3420. "type": "zip",
  3421. "url": "https://api.github.com/repos/symfony/finder/zipball/6071aebf810ad13fe8200c224f36103abb37cf1f",
  3422. "reference": "6071aebf810ad13fe8200c224f36103abb37cf1f",
  3423. "shasum": ""
  3424. },
  3425. "require": {
  3426. "php": ">=7.2.5",
  3427. "symfony/deprecation-contracts": "^2.1|^3",
  3428. "symfony/polyfill-php80": "^1.16"
  3429. },
  3430. "type": "library",
  3431. "autoload": {
  3432. "psr-4": {
  3433. "Symfony\\Component\\Finder\\": ""
  3434. },
  3435. "exclude-from-classmap": [
  3436. "/Tests/"
  3437. ]
  3438. },
  3439. "notification-url": "https://packagist.org/downloads/",
  3440. "license": [
  3441. "MIT"
  3442. ],
  3443. "authors": [
  3444. {
  3445. "name": "Fabien Potencier",
  3446. "email": "fabien@symfony.com"
  3447. },
  3448. {
  3449. "name": "Symfony Community",
  3450. "homepage": "https://symfony.com/contributors"
  3451. }
  3452. ],
  3453. "description": "Finds files and directories via an intuitive fluent interface",
  3454. "homepage": "https://symfony.com",
  3455. "support": {
  3456. "source": "https://github.com/symfony/finder/tree/v5.4.19"
  3457. },
  3458. "funding": [
  3459. {
  3460. "url": "https://symfony.com/sponsor",
  3461. "type": "custom"
  3462. },
  3463. {
  3464. "url": "https://github.com/fabpot",
  3465. "type": "github"
  3466. },
  3467. {
  3468. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3469. "type": "tidelift"
  3470. }
  3471. ],
  3472. "time": "2023-01-14T19:14:44+00:00"
  3473. },
  3474. {
  3475. "name": "symfony/http-foundation",
  3476. "version": "v5.4.20",
  3477. "source": {
  3478. "type": "git",
  3479. "url": "https://github.com/symfony/http-foundation.git",
  3480. "reference": "d0435363362a47c14e9cf50663cb8ffbf491875a"
  3481. },
  3482. "dist": {
  3483. "type": "zip",
  3484. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d0435363362a47c14e9cf50663cb8ffbf491875a",
  3485. "reference": "d0435363362a47c14e9cf50663cb8ffbf491875a",
  3486. "shasum": ""
  3487. },
  3488. "require": {
  3489. "php": ">=7.2.5",
  3490. "symfony/deprecation-contracts": "^2.1|^3",
  3491. "symfony/polyfill-mbstring": "~1.1",
  3492. "symfony/polyfill-php80": "^1.16"
  3493. },
  3494. "require-dev": {
  3495. "predis/predis": "~1.0",
  3496. "symfony/cache": "^4.4|^5.0|^6.0",
  3497. "symfony/dependency-injection": "^5.4|^6.0",
  3498. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3499. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  3500. "symfony/mime": "^4.4|^5.0|^6.0",
  3501. "symfony/rate-limiter": "^5.2|^6.0"
  3502. },
  3503. "suggest": {
  3504. "symfony/mime": "To use the file extension guesser"
  3505. },
  3506. "type": "library",
  3507. "autoload": {
  3508. "psr-4": {
  3509. "Symfony\\Component\\HttpFoundation\\": ""
  3510. },
  3511. "exclude-from-classmap": [
  3512. "/Tests/"
  3513. ]
  3514. },
  3515. "notification-url": "https://packagist.org/downloads/",
  3516. "license": [
  3517. "MIT"
  3518. ],
  3519. "authors": [
  3520. {
  3521. "name": "Fabien Potencier",
  3522. "email": "fabien@symfony.com"
  3523. },
  3524. {
  3525. "name": "Symfony Community",
  3526. "homepage": "https://symfony.com/contributors"
  3527. }
  3528. ],
  3529. "description": "Defines an object-oriented layer for the HTTP specification",
  3530. "homepage": "https://symfony.com",
  3531. "support": {
  3532. "source": "https://github.com/symfony/http-foundation/tree/v5.4.20"
  3533. },
  3534. "funding": [
  3535. {
  3536. "url": "https://symfony.com/sponsor",
  3537. "type": "custom"
  3538. },
  3539. {
  3540. "url": "https://github.com/fabpot",
  3541. "type": "github"
  3542. },
  3543. {
  3544. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3545. "type": "tidelift"
  3546. }
  3547. ],
  3548. "time": "2023-01-29T11:11:52+00:00"
  3549. },
  3550. {
  3551. "name": "symfony/http-kernel",
  3552. "version": "v5.4.20",
  3553. "source": {
  3554. "type": "git",
  3555. "url": "https://github.com/symfony/http-kernel.git",
  3556. "reference": "aaeec341582d3c160cc9ecfa8b2419ba6c69954e"
  3557. },
  3558. "dist": {
  3559. "type": "zip",
  3560. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/aaeec341582d3c160cc9ecfa8b2419ba6c69954e",
  3561. "reference": "aaeec341582d3c160cc9ecfa8b2419ba6c69954e",
  3562. "shasum": ""
  3563. },
  3564. "require": {
  3565. "php": ">=7.2.5",
  3566. "psr/log": "^1|^2",
  3567. "symfony/deprecation-contracts": "^2.1|^3",
  3568. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3569. "symfony/event-dispatcher": "^5.0|^6.0",
  3570. "symfony/http-foundation": "^5.3.7|^6.0",
  3571. "symfony/polyfill-ctype": "^1.8",
  3572. "symfony/polyfill-php73": "^1.9",
  3573. "symfony/polyfill-php80": "^1.16"
  3574. },
  3575. "conflict": {
  3576. "symfony/browser-kit": "<5.4",
  3577. "symfony/cache": "<5.0",
  3578. "symfony/config": "<5.0",
  3579. "symfony/console": "<4.4",
  3580. "symfony/dependency-injection": "<5.3",
  3581. "symfony/doctrine-bridge": "<5.0",
  3582. "symfony/form": "<5.0",
  3583. "symfony/http-client": "<5.0",
  3584. "symfony/mailer": "<5.0",
  3585. "symfony/messenger": "<5.0",
  3586. "symfony/translation": "<5.0",
  3587. "symfony/twig-bridge": "<5.0",
  3588. "symfony/validator": "<5.0",
  3589. "twig/twig": "<2.13"
  3590. },
  3591. "provide": {
  3592. "psr/log-implementation": "1.0|2.0"
  3593. },
  3594. "require-dev": {
  3595. "psr/cache": "^1.0|^2.0|^3.0",
  3596. "symfony/browser-kit": "^5.4|^6.0",
  3597. "symfony/config": "^5.0|^6.0",
  3598. "symfony/console": "^4.4|^5.0|^6.0",
  3599. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3600. "symfony/dependency-injection": "^5.3|^6.0",
  3601. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  3602. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3603. "symfony/finder": "^4.4|^5.0|^6.0",
  3604. "symfony/http-client-contracts": "^1.1|^2|^3",
  3605. "symfony/process": "^4.4|^5.0|^6.0",
  3606. "symfony/routing": "^4.4|^5.0|^6.0",
  3607. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3608. "symfony/translation": "^4.4|^5.0|^6.0",
  3609. "symfony/translation-contracts": "^1.1|^2|^3",
  3610. "twig/twig": "^2.13|^3.0.4"
  3611. },
  3612. "suggest": {
  3613. "symfony/browser-kit": "",
  3614. "symfony/config": "",
  3615. "symfony/console": "",
  3616. "symfony/dependency-injection": ""
  3617. },
  3618. "type": "library",
  3619. "autoload": {
  3620. "psr-4": {
  3621. "Symfony\\Component\\HttpKernel\\": ""
  3622. },
  3623. "exclude-from-classmap": [
  3624. "/Tests/"
  3625. ]
  3626. },
  3627. "notification-url": "https://packagist.org/downloads/",
  3628. "license": [
  3629. "MIT"
  3630. ],
  3631. "authors": [
  3632. {
  3633. "name": "Fabien Potencier",
  3634. "email": "fabien@symfony.com"
  3635. },
  3636. {
  3637. "name": "Symfony Community",
  3638. "homepage": "https://symfony.com/contributors"
  3639. }
  3640. ],
  3641. "description": "Provides a structured process for converting a Request into a Response",
  3642. "homepage": "https://symfony.com",
  3643. "support": {
  3644. "source": "https://github.com/symfony/http-kernel/tree/v5.4.20"
  3645. },
  3646. "funding": [
  3647. {
  3648. "url": "https://symfony.com/sponsor",
  3649. "type": "custom"
  3650. },
  3651. {
  3652. "url": "https://github.com/fabpot",
  3653. "type": "github"
  3654. },
  3655. {
  3656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3657. "type": "tidelift"
  3658. }
  3659. ],
  3660. "time": "2023-02-01T08:18:48+00:00"
  3661. },
  3662. {
  3663. "name": "symfony/mime",
  3664. "version": "v5.4.19",
  3665. "source": {
  3666. "type": "git",
  3667. "url": "https://github.com/symfony/mime.git",
  3668. "reference": "a858429a9c704edc53fe057228cf9ca282ba48eb"
  3669. },
  3670. "dist": {
  3671. "type": "zip",
  3672. "url": "https://api.github.com/repos/symfony/mime/zipball/a858429a9c704edc53fe057228cf9ca282ba48eb",
  3673. "reference": "a858429a9c704edc53fe057228cf9ca282ba48eb",
  3674. "shasum": ""
  3675. },
  3676. "require": {
  3677. "php": ">=7.2.5",
  3678. "symfony/deprecation-contracts": "^2.1|^3",
  3679. "symfony/polyfill-intl-idn": "^1.10",
  3680. "symfony/polyfill-mbstring": "^1.0",
  3681. "symfony/polyfill-php80": "^1.16"
  3682. },
  3683. "conflict": {
  3684. "egulias/email-validator": "~3.0.0",
  3685. "phpdocumentor/reflection-docblock": "<3.2.2",
  3686. "phpdocumentor/type-resolver": "<1.4.0",
  3687. "symfony/mailer": "<4.4",
  3688. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  3689. },
  3690. "require-dev": {
  3691. "egulias/email-validator": "^2.1.10|^3.1|^4",
  3692. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3693. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3694. "symfony/property-access": "^4.4|^5.1|^6.0",
  3695. "symfony/property-info": "^4.4|^5.1|^6.0",
  3696. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  3697. },
  3698. "type": "library",
  3699. "autoload": {
  3700. "psr-4": {
  3701. "Symfony\\Component\\Mime\\": ""
  3702. },
  3703. "exclude-from-classmap": [
  3704. "/Tests/"
  3705. ]
  3706. },
  3707. "notification-url": "https://packagist.org/downloads/",
  3708. "license": [
  3709. "MIT"
  3710. ],
  3711. "authors": [
  3712. {
  3713. "name": "Fabien Potencier",
  3714. "email": "fabien@symfony.com"
  3715. },
  3716. {
  3717. "name": "Symfony Community",
  3718. "homepage": "https://symfony.com/contributors"
  3719. }
  3720. ],
  3721. "description": "Allows manipulating MIME messages",
  3722. "homepage": "https://symfony.com",
  3723. "keywords": [
  3724. "mime",
  3725. "mime-type"
  3726. ],
  3727. "support": {
  3728. "source": "https://github.com/symfony/mime/tree/v5.4.19"
  3729. },
  3730. "funding": [
  3731. {
  3732. "url": "https://symfony.com/sponsor",
  3733. "type": "custom"
  3734. },
  3735. {
  3736. "url": "https://github.com/fabpot",
  3737. "type": "github"
  3738. },
  3739. {
  3740. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3741. "type": "tidelift"
  3742. }
  3743. ],
  3744. "time": "2023-01-09T05:43:46+00:00"
  3745. },
  3746. {
  3747. "name": "symfony/polyfill-ctype",
  3748. "version": "v1.27.0",
  3749. "source": {
  3750. "type": "git",
  3751. "url": "https://github.com/symfony/polyfill-ctype.git",
  3752. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  3753. },
  3754. "dist": {
  3755. "type": "zip",
  3756. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  3757. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  3758. "shasum": ""
  3759. },
  3760. "require": {
  3761. "php": ">=7.1"
  3762. },
  3763. "provide": {
  3764. "ext-ctype": "*"
  3765. },
  3766. "suggest": {
  3767. "ext-ctype": "For best performance"
  3768. },
  3769. "type": "library",
  3770. "extra": {
  3771. "branch-alias": {
  3772. "dev-main": "1.27-dev"
  3773. },
  3774. "thanks": {
  3775. "name": "symfony/polyfill",
  3776. "url": "https://github.com/symfony/polyfill"
  3777. }
  3778. },
  3779. "autoload": {
  3780. "files": [
  3781. "bootstrap.php"
  3782. ],
  3783. "psr-4": {
  3784. "Symfony\\Polyfill\\Ctype\\": ""
  3785. }
  3786. },
  3787. "notification-url": "https://packagist.org/downloads/",
  3788. "license": [
  3789. "MIT"
  3790. ],
  3791. "authors": [
  3792. {
  3793. "name": "Gert de Pagter",
  3794. "email": "BackEndTea@gmail.com"
  3795. },
  3796. {
  3797. "name": "Symfony Community",
  3798. "homepage": "https://symfony.com/contributors"
  3799. }
  3800. ],
  3801. "description": "Symfony polyfill for ctype functions",
  3802. "homepage": "https://symfony.com",
  3803. "keywords": [
  3804. "compatibility",
  3805. "ctype",
  3806. "polyfill",
  3807. "portable"
  3808. ],
  3809. "support": {
  3810. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  3811. },
  3812. "funding": [
  3813. {
  3814. "url": "https://symfony.com/sponsor",
  3815. "type": "custom"
  3816. },
  3817. {
  3818. "url": "https://github.com/fabpot",
  3819. "type": "github"
  3820. },
  3821. {
  3822. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3823. "type": "tidelift"
  3824. }
  3825. ],
  3826. "time": "2022-11-03T14:55:06+00:00"
  3827. },
  3828. {
  3829. "name": "symfony/polyfill-iconv",
  3830. "version": "v1.27.0",
  3831. "source": {
  3832. "type": "git",
  3833. "url": "https://github.com/symfony/polyfill-iconv.git",
  3834. "reference": "927013f3aac555983a5059aada98e1907d842695"
  3835. },
  3836. "dist": {
  3837. "type": "zip",
  3838. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  3839. "reference": "927013f3aac555983a5059aada98e1907d842695",
  3840. "shasum": ""
  3841. },
  3842. "require": {
  3843. "php": ">=7.1"
  3844. },
  3845. "provide": {
  3846. "ext-iconv": "*"
  3847. },
  3848. "suggest": {
  3849. "ext-iconv": "For best performance"
  3850. },
  3851. "type": "library",
  3852. "extra": {
  3853. "branch-alias": {
  3854. "dev-main": "1.27-dev"
  3855. },
  3856. "thanks": {
  3857. "name": "symfony/polyfill",
  3858. "url": "https://github.com/symfony/polyfill"
  3859. }
  3860. },
  3861. "autoload": {
  3862. "files": [
  3863. "bootstrap.php"
  3864. ],
  3865. "psr-4": {
  3866. "Symfony\\Polyfill\\Iconv\\": ""
  3867. }
  3868. },
  3869. "notification-url": "https://packagist.org/downloads/",
  3870. "license": [
  3871. "MIT"
  3872. ],
  3873. "authors": [
  3874. {
  3875. "name": "Nicolas Grekas",
  3876. "email": "p@tchwork.com"
  3877. },
  3878. {
  3879. "name": "Symfony Community",
  3880. "homepage": "https://symfony.com/contributors"
  3881. }
  3882. ],
  3883. "description": "Symfony polyfill for the Iconv extension",
  3884. "homepage": "https://symfony.com",
  3885. "keywords": [
  3886. "compatibility",
  3887. "iconv",
  3888. "polyfill",
  3889. "portable",
  3890. "shim"
  3891. ],
  3892. "support": {
  3893. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  3894. },
  3895. "funding": [
  3896. {
  3897. "url": "https://symfony.com/sponsor",
  3898. "type": "custom"
  3899. },
  3900. {
  3901. "url": "https://github.com/fabpot",
  3902. "type": "github"
  3903. },
  3904. {
  3905. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3906. "type": "tidelift"
  3907. }
  3908. ],
  3909. "time": "2022-11-03T14:55:06+00:00"
  3910. },
  3911. {
  3912. "name": "symfony/polyfill-intl-grapheme",
  3913. "version": "v1.27.0",
  3914. "source": {
  3915. "type": "git",
  3916. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3917. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  3918. },
  3919. "dist": {
  3920. "type": "zip",
  3921. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  3922. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  3923. "shasum": ""
  3924. },
  3925. "require": {
  3926. "php": ">=7.1"
  3927. },
  3928. "suggest": {
  3929. "ext-intl": "For best performance"
  3930. },
  3931. "type": "library",
  3932. "extra": {
  3933. "branch-alias": {
  3934. "dev-main": "1.27-dev"
  3935. },
  3936. "thanks": {
  3937. "name": "symfony/polyfill",
  3938. "url": "https://github.com/symfony/polyfill"
  3939. }
  3940. },
  3941. "autoload": {
  3942. "files": [
  3943. "bootstrap.php"
  3944. ],
  3945. "psr-4": {
  3946. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3947. }
  3948. },
  3949. "notification-url": "https://packagist.org/downloads/",
  3950. "license": [
  3951. "MIT"
  3952. ],
  3953. "authors": [
  3954. {
  3955. "name": "Nicolas Grekas",
  3956. "email": "p@tchwork.com"
  3957. },
  3958. {
  3959. "name": "Symfony Community",
  3960. "homepage": "https://symfony.com/contributors"
  3961. }
  3962. ],
  3963. "description": "Symfony polyfill for intl's grapheme_* functions",
  3964. "homepage": "https://symfony.com",
  3965. "keywords": [
  3966. "compatibility",
  3967. "grapheme",
  3968. "intl",
  3969. "polyfill",
  3970. "portable",
  3971. "shim"
  3972. ],
  3973. "support": {
  3974. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  3975. },
  3976. "funding": [
  3977. {
  3978. "url": "https://symfony.com/sponsor",
  3979. "type": "custom"
  3980. },
  3981. {
  3982. "url": "https://github.com/fabpot",
  3983. "type": "github"
  3984. },
  3985. {
  3986. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3987. "type": "tidelift"
  3988. }
  3989. ],
  3990. "time": "2022-11-03T14:55:06+00:00"
  3991. },
  3992. {
  3993. "name": "symfony/polyfill-intl-idn",
  3994. "version": "v1.27.0",
  3995. "source": {
  3996. "type": "git",
  3997. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3998. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  3999. },
  4000. "dist": {
  4001. "type": "zip",
  4002. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  4003. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  4004. "shasum": ""
  4005. },
  4006. "require": {
  4007. "php": ">=7.1",
  4008. "symfony/polyfill-intl-normalizer": "^1.10",
  4009. "symfony/polyfill-php72": "^1.10"
  4010. },
  4011. "suggest": {
  4012. "ext-intl": "For best performance"
  4013. },
  4014. "type": "library",
  4015. "extra": {
  4016. "branch-alias": {
  4017. "dev-main": "1.27-dev"
  4018. },
  4019. "thanks": {
  4020. "name": "symfony/polyfill",
  4021. "url": "https://github.com/symfony/polyfill"
  4022. }
  4023. },
  4024. "autoload": {
  4025. "files": [
  4026. "bootstrap.php"
  4027. ],
  4028. "psr-4": {
  4029. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4030. }
  4031. },
  4032. "notification-url": "https://packagist.org/downloads/",
  4033. "license": [
  4034. "MIT"
  4035. ],
  4036. "authors": [
  4037. {
  4038. "name": "Laurent Bassin",
  4039. "email": "laurent@bassin.info"
  4040. },
  4041. {
  4042. "name": "Trevor Rowbotham",
  4043. "email": "trevor.rowbotham@pm.me"
  4044. },
  4045. {
  4046. "name": "Symfony Community",
  4047. "homepage": "https://symfony.com/contributors"
  4048. }
  4049. ],
  4050. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4051. "homepage": "https://symfony.com",
  4052. "keywords": [
  4053. "compatibility",
  4054. "idn",
  4055. "intl",
  4056. "polyfill",
  4057. "portable",
  4058. "shim"
  4059. ],
  4060. "support": {
  4061. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  4062. },
  4063. "funding": [
  4064. {
  4065. "url": "https://symfony.com/sponsor",
  4066. "type": "custom"
  4067. },
  4068. {
  4069. "url": "https://github.com/fabpot",
  4070. "type": "github"
  4071. },
  4072. {
  4073. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4074. "type": "tidelift"
  4075. }
  4076. ],
  4077. "time": "2022-11-03T14:55:06+00:00"
  4078. },
  4079. {
  4080. "name": "symfony/polyfill-intl-normalizer",
  4081. "version": "v1.27.0",
  4082. "source": {
  4083. "type": "git",
  4084. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4085. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  4086. },
  4087. "dist": {
  4088. "type": "zip",
  4089. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  4090. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  4091. "shasum": ""
  4092. },
  4093. "require": {
  4094. "php": ">=7.1"
  4095. },
  4096. "suggest": {
  4097. "ext-intl": "For best performance"
  4098. },
  4099. "type": "library",
  4100. "extra": {
  4101. "branch-alias": {
  4102. "dev-main": "1.27-dev"
  4103. },
  4104. "thanks": {
  4105. "name": "symfony/polyfill",
  4106. "url": "https://github.com/symfony/polyfill"
  4107. }
  4108. },
  4109. "autoload": {
  4110. "files": [
  4111. "bootstrap.php"
  4112. ],
  4113. "psr-4": {
  4114. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4115. },
  4116. "classmap": [
  4117. "Resources/stubs"
  4118. ]
  4119. },
  4120. "notification-url": "https://packagist.org/downloads/",
  4121. "license": [
  4122. "MIT"
  4123. ],
  4124. "authors": [
  4125. {
  4126. "name": "Nicolas Grekas",
  4127. "email": "p@tchwork.com"
  4128. },
  4129. {
  4130. "name": "Symfony Community",
  4131. "homepage": "https://symfony.com/contributors"
  4132. }
  4133. ],
  4134. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4135. "homepage": "https://symfony.com",
  4136. "keywords": [
  4137. "compatibility",
  4138. "intl",
  4139. "normalizer",
  4140. "polyfill",
  4141. "portable",
  4142. "shim"
  4143. ],
  4144. "support": {
  4145. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  4146. },
  4147. "funding": [
  4148. {
  4149. "url": "https://symfony.com/sponsor",
  4150. "type": "custom"
  4151. },
  4152. {
  4153. "url": "https://github.com/fabpot",
  4154. "type": "github"
  4155. },
  4156. {
  4157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4158. "type": "tidelift"
  4159. }
  4160. ],
  4161. "time": "2022-11-03T14:55:06+00:00"
  4162. },
  4163. {
  4164. "name": "symfony/polyfill-mbstring",
  4165. "version": "v1.27.0",
  4166. "source": {
  4167. "type": "git",
  4168. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4169. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  4170. },
  4171. "dist": {
  4172. "type": "zip",
  4173. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  4174. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  4175. "shasum": ""
  4176. },
  4177. "require": {
  4178. "php": ">=7.1"
  4179. },
  4180. "provide": {
  4181. "ext-mbstring": "*"
  4182. },
  4183. "suggest": {
  4184. "ext-mbstring": "For best performance"
  4185. },
  4186. "type": "library",
  4187. "extra": {
  4188. "branch-alias": {
  4189. "dev-main": "1.27-dev"
  4190. },
  4191. "thanks": {
  4192. "name": "symfony/polyfill",
  4193. "url": "https://github.com/symfony/polyfill"
  4194. }
  4195. },
  4196. "autoload": {
  4197. "files": [
  4198. "bootstrap.php"
  4199. ],
  4200. "psr-4": {
  4201. "Symfony\\Polyfill\\Mbstring\\": ""
  4202. }
  4203. },
  4204. "notification-url": "https://packagist.org/downloads/",
  4205. "license": [
  4206. "MIT"
  4207. ],
  4208. "authors": [
  4209. {
  4210. "name": "Nicolas Grekas",
  4211. "email": "p@tchwork.com"
  4212. },
  4213. {
  4214. "name": "Symfony Community",
  4215. "homepage": "https://symfony.com/contributors"
  4216. }
  4217. ],
  4218. "description": "Symfony polyfill for the Mbstring extension",
  4219. "homepage": "https://symfony.com",
  4220. "keywords": [
  4221. "compatibility",
  4222. "mbstring",
  4223. "polyfill",
  4224. "portable",
  4225. "shim"
  4226. ],
  4227. "support": {
  4228. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  4229. },
  4230. "funding": [
  4231. {
  4232. "url": "https://symfony.com/sponsor",
  4233. "type": "custom"
  4234. },
  4235. {
  4236. "url": "https://github.com/fabpot",
  4237. "type": "github"
  4238. },
  4239. {
  4240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4241. "type": "tidelift"
  4242. }
  4243. ],
  4244. "time": "2022-11-03T14:55:06+00:00"
  4245. },
  4246. {
  4247. "name": "symfony/polyfill-php72",
  4248. "version": "v1.27.0",
  4249. "source": {
  4250. "type": "git",
  4251. "url": "https://github.com/symfony/polyfill-php72.git",
  4252. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  4253. },
  4254. "dist": {
  4255. "type": "zip",
  4256. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  4257. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  4258. "shasum": ""
  4259. },
  4260. "require": {
  4261. "php": ">=7.1"
  4262. },
  4263. "type": "library",
  4264. "extra": {
  4265. "branch-alias": {
  4266. "dev-main": "1.27-dev"
  4267. },
  4268. "thanks": {
  4269. "name": "symfony/polyfill",
  4270. "url": "https://github.com/symfony/polyfill"
  4271. }
  4272. },
  4273. "autoload": {
  4274. "files": [
  4275. "bootstrap.php"
  4276. ],
  4277. "psr-4": {
  4278. "Symfony\\Polyfill\\Php72\\": ""
  4279. }
  4280. },
  4281. "notification-url": "https://packagist.org/downloads/",
  4282. "license": [
  4283. "MIT"
  4284. ],
  4285. "authors": [
  4286. {
  4287. "name": "Nicolas Grekas",
  4288. "email": "p@tchwork.com"
  4289. },
  4290. {
  4291. "name": "Symfony Community",
  4292. "homepage": "https://symfony.com/contributors"
  4293. }
  4294. ],
  4295. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4296. "homepage": "https://symfony.com",
  4297. "keywords": [
  4298. "compatibility",
  4299. "polyfill",
  4300. "portable",
  4301. "shim"
  4302. ],
  4303. "support": {
  4304. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  4305. },
  4306. "funding": [
  4307. {
  4308. "url": "https://symfony.com/sponsor",
  4309. "type": "custom"
  4310. },
  4311. {
  4312. "url": "https://github.com/fabpot",
  4313. "type": "github"
  4314. },
  4315. {
  4316. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4317. "type": "tidelift"
  4318. }
  4319. ],
  4320. "time": "2022-11-03T14:55:06+00:00"
  4321. },
  4322. {
  4323. "name": "symfony/polyfill-php73",
  4324. "version": "v1.27.0",
  4325. "source": {
  4326. "type": "git",
  4327. "url": "https://github.com/symfony/polyfill-php73.git",
  4328. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  4329. },
  4330. "dist": {
  4331. "type": "zip",
  4332. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  4333. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  4334. "shasum": ""
  4335. },
  4336. "require": {
  4337. "php": ">=7.1"
  4338. },
  4339. "type": "library",
  4340. "extra": {
  4341. "branch-alias": {
  4342. "dev-main": "1.27-dev"
  4343. },
  4344. "thanks": {
  4345. "name": "symfony/polyfill",
  4346. "url": "https://github.com/symfony/polyfill"
  4347. }
  4348. },
  4349. "autoload": {
  4350. "files": [
  4351. "bootstrap.php"
  4352. ],
  4353. "psr-4": {
  4354. "Symfony\\Polyfill\\Php73\\": ""
  4355. },
  4356. "classmap": [
  4357. "Resources/stubs"
  4358. ]
  4359. },
  4360. "notification-url": "https://packagist.org/downloads/",
  4361. "license": [
  4362. "MIT"
  4363. ],
  4364. "authors": [
  4365. {
  4366. "name": "Nicolas Grekas",
  4367. "email": "p@tchwork.com"
  4368. },
  4369. {
  4370. "name": "Symfony Community",
  4371. "homepage": "https://symfony.com/contributors"
  4372. }
  4373. ],
  4374. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4375. "homepage": "https://symfony.com",
  4376. "keywords": [
  4377. "compatibility",
  4378. "polyfill",
  4379. "portable",
  4380. "shim"
  4381. ],
  4382. "support": {
  4383. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  4384. },
  4385. "funding": [
  4386. {
  4387. "url": "https://symfony.com/sponsor",
  4388. "type": "custom"
  4389. },
  4390. {
  4391. "url": "https://github.com/fabpot",
  4392. "type": "github"
  4393. },
  4394. {
  4395. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4396. "type": "tidelift"
  4397. }
  4398. ],
  4399. "time": "2022-11-03T14:55:06+00:00"
  4400. },
  4401. {
  4402. "name": "symfony/polyfill-php80",
  4403. "version": "v1.27.0",
  4404. "source": {
  4405. "type": "git",
  4406. "url": "https://github.com/symfony/polyfill-php80.git",
  4407. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  4408. },
  4409. "dist": {
  4410. "type": "zip",
  4411. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4412. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4413. "shasum": ""
  4414. },
  4415. "require": {
  4416. "php": ">=7.1"
  4417. },
  4418. "type": "library",
  4419. "extra": {
  4420. "branch-alias": {
  4421. "dev-main": "1.27-dev"
  4422. },
  4423. "thanks": {
  4424. "name": "symfony/polyfill",
  4425. "url": "https://github.com/symfony/polyfill"
  4426. }
  4427. },
  4428. "autoload": {
  4429. "files": [
  4430. "bootstrap.php"
  4431. ],
  4432. "psr-4": {
  4433. "Symfony\\Polyfill\\Php80\\": ""
  4434. },
  4435. "classmap": [
  4436. "Resources/stubs"
  4437. ]
  4438. },
  4439. "notification-url": "https://packagist.org/downloads/",
  4440. "license": [
  4441. "MIT"
  4442. ],
  4443. "authors": [
  4444. {
  4445. "name": "Ion Bazan",
  4446. "email": "ion.bazan@gmail.com"
  4447. },
  4448. {
  4449. "name": "Nicolas Grekas",
  4450. "email": "p@tchwork.com"
  4451. },
  4452. {
  4453. "name": "Symfony Community",
  4454. "homepage": "https://symfony.com/contributors"
  4455. }
  4456. ],
  4457. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4458. "homepage": "https://symfony.com",
  4459. "keywords": [
  4460. "compatibility",
  4461. "polyfill",
  4462. "portable",
  4463. "shim"
  4464. ],
  4465. "support": {
  4466. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  4467. },
  4468. "funding": [
  4469. {
  4470. "url": "https://symfony.com/sponsor",
  4471. "type": "custom"
  4472. },
  4473. {
  4474. "url": "https://github.com/fabpot",
  4475. "type": "github"
  4476. },
  4477. {
  4478. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4479. "type": "tidelift"
  4480. }
  4481. ],
  4482. "time": "2022-11-03T14:55:06+00:00"
  4483. },
  4484. {
  4485. "name": "symfony/process",
  4486. "version": "v5.4.19",
  4487. "source": {
  4488. "type": "git",
  4489. "url": "https://github.com/symfony/process.git",
  4490. "reference": "c5ba874c9b636dbccf761e22ce750e88ec3f55e1"
  4491. },
  4492. "dist": {
  4493. "type": "zip",
  4494. "url": "https://api.github.com/repos/symfony/process/zipball/c5ba874c9b636dbccf761e22ce750e88ec3f55e1",
  4495. "reference": "c5ba874c9b636dbccf761e22ce750e88ec3f55e1",
  4496. "shasum": ""
  4497. },
  4498. "require": {
  4499. "php": ">=7.2.5",
  4500. "symfony/polyfill-php80": "^1.16"
  4501. },
  4502. "type": "library",
  4503. "autoload": {
  4504. "psr-4": {
  4505. "Symfony\\Component\\Process\\": ""
  4506. },
  4507. "exclude-from-classmap": [
  4508. "/Tests/"
  4509. ]
  4510. },
  4511. "notification-url": "https://packagist.org/downloads/",
  4512. "license": [
  4513. "MIT"
  4514. ],
  4515. "authors": [
  4516. {
  4517. "name": "Fabien Potencier",
  4518. "email": "fabien@symfony.com"
  4519. },
  4520. {
  4521. "name": "Symfony Community",
  4522. "homepage": "https://symfony.com/contributors"
  4523. }
  4524. ],
  4525. "description": "Executes commands in sub-processes",
  4526. "homepage": "https://symfony.com",
  4527. "support": {
  4528. "source": "https://github.com/symfony/process/tree/v5.4.19"
  4529. },
  4530. "funding": [
  4531. {
  4532. "url": "https://symfony.com/sponsor",
  4533. "type": "custom"
  4534. },
  4535. {
  4536. "url": "https://github.com/fabpot",
  4537. "type": "github"
  4538. },
  4539. {
  4540. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4541. "type": "tidelift"
  4542. }
  4543. ],
  4544. "time": "2023-01-01T08:32:19+00:00"
  4545. },
  4546. {
  4547. "name": "symfony/routing",
  4548. "version": "v5.4.19",
  4549. "source": {
  4550. "type": "git",
  4551. "url": "https://github.com/symfony/routing.git",
  4552. "reference": "df1b28f37c8e78912213c58ef6ab2f2037bbfdc5"
  4553. },
  4554. "dist": {
  4555. "type": "zip",
  4556. "url": "https://api.github.com/repos/symfony/routing/zipball/df1b28f37c8e78912213c58ef6ab2f2037bbfdc5",
  4557. "reference": "df1b28f37c8e78912213c58ef6ab2f2037bbfdc5",
  4558. "shasum": ""
  4559. },
  4560. "require": {
  4561. "php": ">=7.2.5",
  4562. "symfony/deprecation-contracts": "^2.1|^3",
  4563. "symfony/polyfill-php80": "^1.16"
  4564. },
  4565. "conflict": {
  4566. "doctrine/annotations": "<1.12",
  4567. "symfony/config": "<5.3",
  4568. "symfony/dependency-injection": "<4.4",
  4569. "symfony/yaml": "<4.4"
  4570. },
  4571. "require-dev": {
  4572. "doctrine/annotations": "^1.12|^2",
  4573. "psr/log": "^1|^2|^3",
  4574. "symfony/config": "^5.3|^6.0",
  4575. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4576. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4577. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  4578. "symfony/yaml": "^4.4|^5.0|^6.0"
  4579. },
  4580. "suggest": {
  4581. "symfony/config": "For using the all-in-one router or any loader",
  4582. "symfony/expression-language": "For using expression matching",
  4583. "symfony/http-foundation": "For using a Symfony Request object",
  4584. "symfony/yaml": "For using the YAML loader"
  4585. },
  4586. "type": "library",
  4587. "autoload": {
  4588. "psr-4": {
  4589. "Symfony\\Component\\Routing\\": ""
  4590. },
  4591. "exclude-from-classmap": [
  4592. "/Tests/"
  4593. ]
  4594. },
  4595. "notification-url": "https://packagist.org/downloads/",
  4596. "license": [
  4597. "MIT"
  4598. ],
  4599. "authors": [
  4600. {
  4601. "name": "Fabien Potencier",
  4602. "email": "fabien@symfony.com"
  4603. },
  4604. {
  4605. "name": "Symfony Community",
  4606. "homepage": "https://symfony.com/contributors"
  4607. }
  4608. ],
  4609. "description": "Maps an HTTP request to a set of configuration variables",
  4610. "homepage": "https://symfony.com",
  4611. "keywords": [
  4612. "router",
  4613. "routing",
  4614. "uri",
  4615. "url"
  4616. ],
  4617. "support": {
  4618. "source": "https://github.com/symfony/routing/tree/v5.4.19"
  4619. },
  4620. "funding": [
  4621. {
  4622. "url": "https://symfony.com/sponsor",
  4623. "type": "custom"
  4624. },
  4625. {
  4626. "url": "https://github.com/fabpot",
  4627. "type": "github"
  4628. },
  4629. {
  4630. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4631. "type": "tidelift"
  4632. }
  4633. ],
  4634. "time": "2023-01-01T08:32:19+00:00"
  4635. },
  4636. {
  4637. "name": "symfony/service-contracts",
  4638. "version": "v2.5.2",
  4639. "source": {
  4640. "type": "git",
  4641. "url": "https://github.com/symfony/service-contracts.git",
  4642. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  4643. },
  4644. "dist": {
  4645. "type": "zip",
  4646. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  4647. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  4648. "shasum": ""
  4649. },
  4650. "require": {
  4651. "php": ">=7.2.5",
  4652. "psr/container": "^1.1",
  4653. "symfony/deprecation-contracts": "^2.1|^3"
  4654. },
  4655. "conflict": {
  4656. "ext-psr": "<1.1|>=2"
  4657. },
  4658. "suggest": {
  4659. "symfony/service-implementation": ""
  4660. },
  4661. "type": "library",
  4662. "extra": {
  4663. "branch-alias": {
  4664. "dev-main": "2.5-dev"
  4665. },
  4666. "thanks": {
  4667. "name": "symfony/contracts",
  4668. "url": "https://github.com/symfony/contracts"
  4669. }
  4670. },
  4671. "autoload": {
  4672. "psr-4": {
  4673. "Symfony\\Contracts\\Service\\": ""
  4674. }
  4675. },
  4676. "notification-url": "https://packagist.org/downloads/",
  4677. "license": [
  4678. "MIT"
  4679. ],
  4680. "authors": [
  4681. {
  4682. "name": "Nicolas Grekas",
  4683. "email": "p@tchwork.com"
  4684. },
  4685. {
  4686. "name": "Symfony Community",
  4687. "homepage": "https://symfony.com/contributors"
  4688. }
  4689. ],
  4690. "description": "Generic abstractions related to writing services",
  4691. "homepage": "https://symfony.com",
  4692. "keywords": [
  4693. "abstractions",
  4694. "contracts",
  4695. "decoupling",
  4696. "interfaces",
  4697. "interoperability",
  4698. "standards"
  4699. ],
  4700. "support": {
  4701. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  4702. },
  4703. "funding": [
  4704. {
  4705. "url": "https://symfony.com/sponsor",
  4706. "type": "custom"
  4707. },
  4708. {
  4709. "url": "https://github.com/fabpot",
  4710. "type": "github"
  4711. },
  4712. {
  4713. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4714. "type": "tidelift"
  4715. }
  4716. ],
  4717. "time": "2022-05-30T19:17:29+00:00"
  4718. },
  4719. {
  4720. "name": "symfony/string",
  4721. "version": "v6.2.5",
  4722. "source": {
  4723. "type": "git",
  4724. "url": "https://github.com/symfony/string.git",
  4725. "reference": "b2dac0fa27b1ac0f9c0c0b23b43977f12308d0b0"
  4726. },
  4727. "dist": {
  4728. "type": "zip",
  4729. "url": "https://api.github.com/repos/symfony/string/zipball/b2dac0fa27b1ac0f9c0c0b23b43977f12308d0b0",
  4730. "reference": "b2dac0fa27b1ac0f9c0c0b23b43977f12308d0b0",
  4731. "shasum": ""
  4732. },
  4733. "require": {
  4734. "php": ">=8.1",
  4735. "symfony/polyfill-ctype": "~1.8",
  4736. "symfony/polyfill-intl-grapheme": "~1.0",
  4737. "symfony/polyfill-intl-normalizer": "~1.0",
  4738. "symfony/polyfill-mbstring": "~1.0"
  4739. },
  4740. "conflict": {
  4741. "symfony/translation-contracts": "<2.0"
  4742. },
  4743. "require-dev": {
  4744. "symfony/error-handler": "^5.4|^6.0",
  4745. "symfony/http-client": "^5.4|^6.0",
  4746. "symfony/intl": "^6.2",
  4747. "symfony/translation-contracts": "^2.0|^3.0",
  4748. "symfony/var-exporter": "^5.4|^6.0"
  4749. },
  4750. "type": "library",
  4751. "autoload": {
  4752. "files": [
  4753. "Resources/functions.php"
  4754. ],
  4755. "psr-4": {
  4756. "Symfony\\Component\\String\\": ""
  4757. },
  4758. "exclude-from-classmap": [
  4759. "/Tests/"
  4760. ]
  4761. },
  4762. "notification-url": "https://packagist.org/downloads/",
  4763. "license": [
  4764. "MIT"
  4765. ],
  4766. "authors": [
  4767. {
  4768. "name": "Nicolas Grekas",
  4769. "email": "p@tchwork.com"
  4770. },
  4771. {
  4772. "name": "Symfony Community",
  4773. "homepage": "https://symfony.com/contributors"
  4774. }
  4775. ],
  4776. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4777. "homepage": "https://symfony.com",
  4778. "keywords": [
  4779. "grapheme",
  4780. "i18n",
  4781. "string",
  4782. "unicode",
  4783. "utf-8",
  4784. "utf8"
  4785. ],
  4786. "support": {
  4787. "source": "https://github.com/symfony/string/tree/v6.2.5"
  4788. },
  4789. "funding": [
  4790. {
  4791. "url": "https://symfony.com/sponsor",
  4792. "type": "custom"
  4793. },
  4794. {
  4795. "url": "https://github.com/fabpot",
  4796. "type": "github"
  4797. },
  4798. {
  4799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4800. "type": "tidelift"
  4801. }
  4802. ],
  4803. "time": "2023-01-01T08:38:09+00:00"
  4804. },
  4805. {
  4806. "name": "symfony/translation",
  4807. "version": "v6.2.5",
  4808. "source": {
  4809. "type": "git",
  4810. "url": "https://github.com/symfony/translation.git",
  4811. "reference": "60556925a703cfbc1581cde3b3f35b0bb0ea904c"
  4812. },
  4813. "dist": {
  4814. "type": "zip",
  4815. "url": "https://api.github.com/repos/symfony/translation/zipball/60556925a703cfbc1581cde3b3f35b0bb0ea904c",
  4816. "reference": "60556925a703cfbc1581cde3b3f35b0bb0ea904c",
  4817. "shasum": ""
  4818. },
  4819. "require": {
  4820. "php": ">=8.1",
  4821. "symfony/polyfill-mbstring": "~1.0",
  4822. "symfony/translation-contracts": "^2.3|^3.0"
  4823. },
  4824. "conflict": {
  4825. "symfony/config": "<5.4",
  4826. "symfony/console": "<5.4",
  4827. "symfony/dependency-injection": "<5.4",
  4828. "symfony/http-kernel": "<5.4",
  4829. "symfony/twig-bundle": "<5.4",
  4830. "symfony/yaml": "<5.4"
  4831. },
  4832. "provide": {
  4833. "symfony/translation-implementation": "2.3|3.0"
  4834. },
  4835. "require-dev": {
  4836. "nikic/php-parser": "^4.13",
  4837. "psr/log": "^1|^2|^3",
  4838. "symfony/config": "^5.4|^6.0",
  4839. "symfony/console": "^5.4|^6.0",
  4840. "symfony/dependency-injection": "^5.4|^6.0",
  4841. "symfony/finder": "^5.4|^6.0",
  4842. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  4843. "symfony/http-kernel": "^5.4|^6.0",
  4844. "symfony/intl": "^5.4|^6.0",
  4845. "symfony/polyfill-intl-icu": "^1.21",
  4846. "symfony/routing": "^5.4|^6.0",
  4847. "symfony/service-contracts": "^1.1.2|^2|^3",
  4848. "symfony/yaml": "^5.4|^6.0"
  4849. },
  4850. "suggest": {
  4851. "nikic/php-parser": "To use PhpAstExtractor",
  4852. "psr/log-implementation": "To use logging capability in translator",
  4853. "symfony/config": "",
  4854. "symfony/yaml": ""
  4855. },
  4856. "type": "library",
  4857. "autoload": {
  4858. "files": [
  4859. "Resources/functions.php"
  4860. ],
  4861. "psr-4": {
  4862. "Symfony\\Component\\Translation\\": ""
  4863. },
  4864. "exclude-from-classmap": [
  4865. "/Tests/"
  4866. ]
  4867. },
  4868. "notification-url": "https://packagist.org/downloads/",
  4869. "license": [
  4870. "MIT"
  4871. ],
  4872. "authors": [
  4873. {
  4874. "name": "Fabien Potencier",
  4875. "email": "fabien@symfony.com"
  4876. },
  4877. {
  4878. "name": "Symfony Community",
  4879. "homepage": "https://symfony.com/contributors"
  4880. }
  4881. ],
  4882. "description": "Provides tools to internationalize your application",
  4883. "homepage": "https://symfony.com",
  4884. "support": {
  4885. "source": "https://github.com/symfony/translation/tree/v6.2.5"
  4886. },
  4887. "funding": [
  4888. {
  4889. "url": "https://symfony.com/sponsor",
  4890. "type": "custom"
  4891. },
  4892. {
  4893. "url": "https://github.com/fabpot",
  4894. "type": "github"
  4895. },
  4896. {
  4897. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4898. "type": "tidelift"
  4899. }
  4900. ],
  4901. "time": "2023-01-05T07:00:27+00:00"
  4902. },
  4903. {
  4904. "name": "symfony/translation-contracts",
  4905. "version": "v3.2.0",
  4906. "source": {
  4907. "type": "git",
  4908. "url": "https://github.com/symfony/translation-contracts.git",
  4909. "reference": "68cce71402305a015f8c1589bfada1280dc64fe7"
  4910. },
  4911. "dist": {
  4912. "type": "zip",
  4913. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/68cce71402305a015f8c1589bfada1280dc64fe7",
  4914. "reference": "68cce71402305a015f8c1589bfada1280dc64fe7",
  4915. "shasum": ""
  4916. },
  4917. "require": {
  4918. "php": ">=8.1"
  4919. },
  4920. "suggest": {
  4921. "symfony/translation-implementation": ""
  4922. },
  4923. "type": "library",
  4924. "extra": {
  4925. "branch-alias": {
  4926. "dev-main": "3.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\\Translation\\": ""
  4936. },
  4937. "exclude-from-classmap": [
  4938. "/Test/"
  4939. ]
  4940. },
  4941. "notification-url": "https://packagist.org/downloads/",
  4942. "license": [
  4943. "MIT"
  4944. ],
  4945. "authors": [
  4946. {
  4947. "name": "Nicolas Grekas",
  4948. "email": "p@tchwork.com"
  4949. },
  4950. {
  4951. "name": "Symfony Community",
  4952. "homepage": "https://symfony.com/contributors"
  4953. }
  4954. ],
  4955. "description": "Generic abstractions related to translation",
  4956. "homepage": "https://symfony.com",
  4957. "keywords": [
  4958. "abstractions",
  4959. "contracts",
  4960. "decoupling",
  4961. "interfaces",
  4962. "interoperability",
  4963. "standards"
  4964. ],
  4965. "support": {
  4966. "source": "https://github.com/symfony/translation-contracts/tree/v3.2.0"
  4967. },
  4968. "funding": [
  4969. {
  4970. "url": "https://symfony.com/sponsor",
  4971. "type": "custom"
  4972. },
  4973. {
  4974. "url": "https://github.com/fabpot",
  4975. "type": "github"
  4976. },
  4977. {
  4978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4979. "type": "tidelift"
  4980. }
  4981. ],
  4982. "time": "2022-11-25T10:21:52+00:00"
  4983. },
  4984. {
  4985. "name": "symfony/var-dumper",
  4986. "version": "v5.4.19",
  4987. "source": {
  4988. "type": "git",
  4989. "url": "https://github.com/symfony/var-dumper.git",
  4990. "reference": "2944bbc23f5f8da2b962fbcbf7c4a6109b2f4b7b"
  4991. },
  4992. "dist": {
  4993. "type": "zip",
  4994. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2944bbc23f5f8da2b962fbcbf7c4a6109b2f4b7b",
  4995. "reference": "2944bbc23f5f8da2b962fbcbf7c4a6109b2f4b7b",
  4996. "shasum": ""
  4997. },
  4998. "require": {
  4999. "php": ">=7.2.5",
  5000. "symfony/polyfill-mbstring": "~1.0",
  5001. "symfony/polyfill-php80": "^1.16"
  5002. },
  5003. "conflict": {
  5004. "phpunit/phpunit": "<5.4.3",
  5005. "symfony/console": "<4.4"
  5006. },
  5007. "require-dev": {
  5008. "ext-iconv": "*",
  5009. "symfony/console": "^4.4|^5.0|^6.0",
  5010. "symfony/process": "^4.4|^5.0|^6.0",
  5011. "symfony/uid": "^5.1|^6.0",
  5012. "twig/twig": "^2.13|^3.0.4"
  5013. },
  5014. "suggest": {
  5015. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5016. "ext-intl": "To show region name in time zone dump",
  5017. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5018. },
  5019. "bin": [
  5020. "Resources/bin/var-dump-server"
  5021. ],
  5022. "type": "library",
  5023. "autoload": {
  5024. "files": [
  5025. "Resources/functions/dump.php"
  5026. ],
  5027. "psr-4": {
  5028. "Symfony\\Component\\VarDumper\\": ""
  5029. },
  5030. "exclude-from-classmap": [
  5031. "/Tests/"
  5032. ]
  5033. },
  5034. "notification-url": "https://packagist.org/downloads/",
  5035. "license": [
  5036. "MIT"
  5037. ],
  5038. "authors": [
  5039. {
  5040. "name": "Nicolas Grekas",
  5041. "email": "p@tchwork.com"
  5042. },
  5043. {
  5044. "name": "Symfony Community",
  5045. "homepage": "https://symfony.com/contributors"
  5046. }
  5047. ],
  5048. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5049. "homepage": "https://symfony.com",
  5050. "keywords": [
  5051. "debug",
  5052. "dump"
  5053. ],
  5054. "support": {
  5055. "source": "https://github.com/symfony/var-dumper/tree/v5.4.19"
  5056. },
  5057. "funding": [
  5058. {
  5059. "url": "https://symfony.com/sponsor",
  5060. "type": "custom"
  5061. },
  5062. {
  5063. "url": "https://github.com/fabpot",
  5064. "type": "github"
  5065. },
  5066. {
  5067. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5068. "type": "tidelift"
  5069. }
  5070. ],
  5071. "time": "2023-01-16T10:52:33+00:00"
  5072. },
  5073. {
  5074. "name": "tijsverkoyen/css-to-inline-styles",
  5075. "version": "2.2.6",
  5076. "source": {
  5077. "type": "git",
  5078. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5079. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  5080. },
  5081. "dist": {
  5082. "type": "zip",
  5083. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  5084. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  5085. "shasum": ""
  5086. },
  5087. "require": {
  5088. "ext-dom": "*",
  5089. "ext-libxml": "*",
  5090. "php": "^5.5 || ^7.0 || ^8.0",
  5091. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  5092. },
  5093. "require-dev": {
  5094. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5095. },
  5096. "type": "library",
  5097. "extra": {
  5098. "branch-alias": {
  5099. "dev-master": "2.2.x-dev"
  5100. }
  5101. },
  5102. "autoload": {
  5103. "psr-4": {
  5104. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5105. }
  5106. },
  5107. "notification-url": "https://packagist.org/downloads/",
  5108. "license": [
  5109. "BSD-3-Clause"
  5110. ],
  5111. "authors": [
  5112. {
  5113. "name": "Tijs Verkoyen",
  5114. "email": "css_to_inline_styles@verkoyen.eu",
  5115. "role": "Developer"
  5116. }
  5117. ],
  5118. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  5119. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5120. "support": {
  5121. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  5122. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  5123. },
  5124. "time": "2023-01-03T09:29:04+00:00"
  5125. },
  5126. {
  5127. "name": "vlucas/phpdotenv",
  5128. "version": "v5.5.0",
  5129. "source": {
  5130. "type": "git",
  5131. "url": "https://github.com/vlucas/phpdotenv.git",
  5132. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  5133. },
  5134. "dist": {
  5135. "type": "zip",
  5136. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  5137. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  5138. "shasum": ""
  5139. },
  5140. "require": {
  5141. "ext-pcre": "*",
  5142. "graham-campbell/result-type": "^1.0.2",
  5143. "php": "^7.1.3 || ^8.0",
  5144. "phpoption/phpoption": "^1.8",
  5145. "symfony/polyfill-ctype": "^1.23",
  5146. "symfony/polyfill-mbstring": "^1.23.1",
  5147. "symfony/polyfill-php80": "^1.23.1"
  5148. },
  5149. "require-dev": {
  5150. "bamarni/composer-bin-plugin": "^1.4.1",
  5151. "ext-filter": "*",
  5152. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  5153. },
  5154. "suggest": {
  5155. "ext-filter": "Required to use the boolean validator."
  5156. },
  5157. "type": "library",
  5158. "extra": {
  5159. "bamarni-bin": {
  5160. "bin-links": true,
  5161. "forward-command": true
  5162. },
  5163. "branch-alias": {
  5164. "dev-master": "5.5-dev"
  5165. }
  5166. },
  5167. "autoload": {
  5168. "psr-4": {
  5169. "Dotenv\\": "src/"
  5170. }
  5171. },
  5172. "notification-url": "https://packagist.org/downloads/",
  5173. "license": [
  5174. "BSD-3-Clause"
  5175. ],
  5176. "authors": [
  5177. {
  5178. "name": "Graham Campbell",
  5179. "email": "hello@gjcampbell.co.uk",
  5180. "homepage": "https://github.com/GrahamCampbell"
  5181. },
  5182. {
  5183. "name": "Vance Lucas",
  5184. "email": "vance@vancelucas.com",
  5185. "homepage": "https://github.com/vlucas"
  5186. }
  5187. ],
  5188. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5189. "keywords": [
  5190. "dotenv",
  5191. "env",
  5192. "environment"
  5193. ],
  5194. "support": {
  5195. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5196. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  5197. },
  5198. "funding": [
  5199. {
  5200. "url": "https://github.com/GrahamCampbell",
  5201. "type": "github"
  5202. },
  5203. {
  5204. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5205. "type": "tidelift"
  5206. }
  5207. ],
  5208. "time": "2022-10-16T01:01:54+00:00"
  5209. },
  5210. {
  5211. "name": "voku/portable-ascii",
  5212. "version": "1.6.1",
  5213. "source": {
  5214. "type": "git",
  5215. "url": "https://github.com/voku/portable-ascii.git",
  5216. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  5217. },
  5218. "dist": {
  5219. "type": "zip",
  5220. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  5221. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  5222. "shasum": ""
  5223. },
  5224. "require": {
  5225. "php": ">=7.0.0"
  5226. },
  5227. "require-dev": {
  5228. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5229. },
  5230. "suggest": {
  5231. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5232. },
  5233. "type": "library",
  5234. "autoload": {
  5235. "psr-4": {
  5236. "voku\\": "src/voku/"
  5237. }
  5238. },
  5239. "notification-url": "https://packagist.org/downloads/",
  5240. "license": [
  5241. "MIT"
  5242. ],
  5243. "authors": [
  5244. {
  5245. "name": "Lars Moelleken",
  5246. "homepage": "http://www.moelleken.org/"
  5247. }
  5248. ],
  5249. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5250. "homepage": "https://github.com/voku/portable-ascii",
  5251. "keywords": [
  5252. "ascii",
  5253. "clean",
  5254. "php"
  5255. ],
  5256. "support": {
  5257. "issues": "https://github.com/voku/portable-ascii/issues",
  5258. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  5259. },
  5260. "funding": [
  5261. {
  5262. "url": "https://www.paypal.me/moelleken",
  5263. "type": "custom"
  5264. },
  5265. {
  5266. "url": "https://github.com/voku",
  5267. "type": "github"
  5268. },
  5269. {
  5270. "url": "https://opencollective.com/portable-ascii",
  5271. "type": "open_collective"
  5272. },
  5273. {
  5274. "url": "https://www.patreon.com/voku",
  5275. "type": "patreon"
  5276. },
  5277. {
  5278. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5279. "type": "tidelift"
  5280. }
  5281. ],
  5282. "time": "2022-01-24T18:55:24+00:00"
  5283. },
  5284. {
  5285. "name": "webmozart/assert",
  5286. "version": "1.11.0",
  5287. "source": {
  5288. "type": "git",
  5289. "url": "https://github.com/webmozarts/assert.git",
  5290. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  5291. },
  5292. "dist": {
  5293. "type": "zip",
  5294. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  5295. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  5296. "shasum": ""
  5297. },
  5298. "require": {
  5299. "ext-ctype": "*",
  5300. "php": "^7.2 || ^8.0"
  5301. },
  5302. "conflict": {
  5303. "phpstan/phpstan": "<0.12.20",
  5304. "vimeo/psalm": "<4.6.1 || 4.6.2"
  5305. },
  5306. "require-dev": {
  5307. "phpunit/phpunit": "^8.5.13"
  5308. },
  5309. "type": "library",
  5310. "extra": {
  5311. "branch-alias": {
  5312. "dev-master": "1.10-dev"
  5313. }
  5314. },
  5315. "autoload": {
  5316. "psr-4": {
  5317. "Webmozart\\Assert\\": "src/"
  5318. }
  5319. },
  5320. "notification-url": "https://packagist.org/downloads/",
  5321. "license": [
  5322. "MIT"
  5323. ],
  5324. "authors": [
  5325. {
  5326. "name": "Bernhard Schussek",
  5327. "email": "bschussek@gmail.com"
  5328. }
  5329. ],
  5330. "description": "Assertions to validate method input/output with nice error messages.",
  5331. "keywords": [
  5332. "assert",
  5333. "check",
  5334. "validate"
  5335. ],
  5336. "support": {
  5337. "issues": "https://github.com/webmozarts/assert/issues",
  5338. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  5339. },
  5340. "time": "2022-06-03T18:03:27+00:00"
  5341. }
  5342. ],
  5343. "packages-dev": [
  5344. {
  5345. "name": "doctrine/instantiator",
  5346. "version": "2.0.0",
  5347. "source": {
  5348. "type": "git",
  5349. "url": "https://github.com/doctrine/instantiator.git",
  5350. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  5351. },
  5352. "dist": {
  5353. "type": "zip",
  5354. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  5355. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  5356. "shasum": ""
  5357. },
  5358. "require": {
  5359. "php": "^8.1"
  5360. },
  5361. "require-dev": {
  5362. "doctrine/coding-standard": "^11",
  5363. "ext-pdo": "*",
  5364. "ext-phar": "*",
  5365. "phpbench/phpbench": "^1.2",
  5366. "phpstan/phpstan": "^1.9.4",
  5367. "phpstan/phpstan-phpunit": "^1.3",
  5368. "phpunit/phpunit": "^9.5.27",
  5369. "vimeo/psalm": "^5.4"
  5370. },
  5371. "type": "library",
  5372. "autoload": {
  5373. "psr-4": {
  5374. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5375. }
  5376. },
  5377. "notification-url": "https://packagist.org/downloads/",
  5378. "license": [
  5379. "MIT"
  5380. ],
  5381. "authors": [
  5382. {
  5383. "name": "Marco Pivetta",
  5384. "email": "ocramius@gmail.com",
  5385. "homepage": "https://ocramius.github.io/"
  5386. }
  5387. ],
  5388. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5389. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  5390. "keywords": [
  5391. "constructor",
  5392. "instantiate"
  5393. ],
  5394. "support": {
  5395. "issues": "https://github.com/doctrine/instantiator/issues",
  5396. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  5397. },
  5398. "funding": [
  5399. {
  5400. "url": "https://www.doctrine-project.org/sponsorship.html",
  5401. "type": "custom"
  5402. },
  5403. {
  5404. "url": "https://www.patreon.com/phpdoctrine",
  5405. "type": "patreon"
  5406. },
  5407. {
  5408. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  5409. "type": "tidelift"
  5410. }
  5411. ],
  5412. "time": "2022-12-30T00:23:10+00:00"
  5413. },
  5414. {
  5415. "name": "facade/flare-client-php",
  5416. "version": "1.10.0",
  5417. "source": {
  5418. "type": "git",
  5419. "url": "https://github.com/facade/flare-client-php.git",
  5420. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  5421. },
  5422. "dist": {
  5423. "type": "zip",
  5424. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  5425. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  5426. "shasum": ""
  5427. },
  5428. "require": {
  5429. "facade/ignition-contracts": "~1.0",
  5430. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  5431. "php": "^7.1|^8.0",
  5432. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  5433. "symfony/mime": "^3.4|^4.0|^5.1",
  5434. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  5435. },
  5436. "require-dev": {
  5437. "friendsofphp/php-cs-fixer": "^2.14",
  5438. "phpunit/phpunit": "^7.5",
  5439. "spatie/phpunit-snapshot-assertions": "^2.0"
  5440. },
  5441. "type": "library",
  5442. "extra": {
  5443. "branch-alias": {
  5444. "dev-master": "1.0-dev"
  5445. }
  5446. },
  5447. "autoload": {
  5448. "files": [
  5449. "src/helpers.php"
  5450. ],
  5451. "psr-4": {
  5452. "Facade\\FlareClient\\": "src"
  5453. }
  5454. },
  5455. "notification-url": "https://packagist.org/downloads/",
  5456. "license": [
  5457. "MIT"
  5458. ],
  5459. "description": "Send PHP errors to Flare",
  5460. "homepage": "https://github.com/facade/flare-client-php",
  5461. "keywords": [
  5462. "exception",
  5463. "facade",
  5464. "flare",
  5465. "reporting"
  5466. ],
  5467. "support": {
  5468. "issues": "https://github.com/facade/flare-client-php/issues",
  5469. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  5470. },
  5471. "funding": [
  5472. {
  5473. "url": "https://github.com/spatie",
  5474. "type": "github"
  5475. }
  5476. ],
  5477. "time": "2022-08-09T11:23:57+00:00"
  5478. },
  5479. {
  5480. "name": "facade/ignition",
  5481. "version": "2.17.7",
  5482. "source": {
  5483. "type": "git",
  5484. "url": "https://github.com/facade/ignition.git",
  5485. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  5486. },
  5487. "dist": {
  5488. "type": "zip",
  5489. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  5490. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  5491. "shasum": ""
  5492. },
  5493. "require": {
  5494. "ext-curl": "*",
  5495. "ext-json": "*",
  5496. "ext-mbstring": "*",
  5497. "facade/flare-client-php": "^1.9.1",
  5498. "facade/ignition-contracts": "^1.0.2",
  5499. "illuminate/support": "^7.0|^8.0",
  5500. "monolog/monolog": "^2.0",
  5501. "php": "^7.2.5|^8.0",
  5502. "symfony/console": "^5.0",
  5503. "symfony/var-dumper": "^5.0"
  5504. },
  5505. "require-dev": {
  5506. "friendsofphp/php-cs-fixer": "^2.14",
  5507. "livewire/livewire": "^2.4",
  5508. "mockery/mockery": "^1.3",
  5509. "orchestra/testbench": "^5.0|^6.0",
  5510. "psalm/plugin-laravel": "^1.2"
  5511. },
  5512. "suggest": {
  5513. "laravel/telescope": "^3.1"
  5514. },
  5515. "type": "library",
  5516. "extra": {
  5517. "branch-alias": {
  5518. "dev-master": "2.x-dev"
  5519. },
  5520. "laravel": {
  5521. "providers": [
  5522. "Facade\\Ignition\\IgnitionServiceProvider"
  5523. ],
  5524. "aliases": {
  5525. "Flare": "Facade\\Ignition\\Facades\\Flare"
  5526. }
  5527. }
  5528. },
  5529. "autoload": {
  5530. "files": [
  5531. "src/helpers.php"
  5532. ],
  5533. "psr-4": {
  5534. "Facade\\Ignition\\": "src"
  5535. }
  5536. },
  5537. "notification-url": "https://packagist.org/downloads/",
  5538. "license": [
  5539. "MIT"
  5540. ],
  5541. "description": "A beautiful error page for Laravel applications.",
  5542. "homepage": "https://github.com/facade/ignition",
  5543. "keywords": [
  5544. "error",
  5545. "flare",
  5546. "laravel",
  5547. "page"
  5548. ],
  5549. "support": {
  5550. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  5551. "forum": "https://twitter.com/flareappio",
  5552. "issues": "https://github.com/facade/ignition/issues",
  5553. "source": "https://github.com/facade/ignition"
  5554. },
  5555. "time": "2023-01-26T12:34:59+00:00"
  5556. },
  5557. {
  5558. "name": "facade/ignition-contracts",
  5559. "version": "1.0.2",
  5560. "source": {
  5561. "type": "git",
  5562. "url": "https://github.com/facade/ignition-contracts.git",
  5563. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  5564. },
  5565. "dist": {
  5566. "type": "zip",
  5567. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5568. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  5569. "shasum": ""
  5570. },
  5571. "require": {
  5572. "php": "^7.3|^8.0"
  5573. },
  5574. "require-dev": {
  5575. "friendsofphp/php-cs-fixer": "^v2.15.8",
  5576. "phpunit/phpunit": "^9.3.11",
  5577. "vimeo/psalm": "^3.17.1"
  5578. },
  5579. "type": "library",
  5580. "autoload": {
  5581. "psr-4": {
  5582. "Facade\\IgnitionContracts\\": "src"
  5583. }
  5584. },
  5585. "notification-url": "https://packagist.org/downloads/",
  5586. "license": [
  5587. "MIT"
  5588. ],
  5589. "authors": [
  5590. {
  5591. "name": "Freek Van der Herten",
  5592. "email": "freek@spatie.be",
  5593. "homepage": "https://flareapp.io",
  5594. "role": "Developer"
  5595. }
  5596. ],
  5597. "description": "Solution contracts for Ignition",
  5598. "homepage": "https://github.com/facade/ignition-contracts",
  5599. "keywords": [
  5600. "contracts",
  5601. "flare",
  5602. "ignition"
  5603. ],
  5604. "support": {
  5605. "issues": "https://github.com/facade/ignition-contracts/issues",
  5606. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  5607. },
  5608. "time": "2020-10-16T08:27:54+00:00"
  5609. },
  5610. {
  5611. "name": "filp/whoops",
  5612. "version": "2.14.6",
  5613. "source": {
  5614. "type": "git",
  5615. "url": "https://github.com/filp/whoops.git",
  5616. "reference": "f7948baaa0330277c729714910336383286305da"
  5617. },
  5618. "dist": {
  5619. "type": "zip",
  5620. "url": "https://api.github.com/repos/filp/whoops/zipball/f7948baaa0330277c729714910336383286305da",
  5621. "reference": "f7948baaa0330277c729714910336383286305da",
  5622. "shasum": ""
  5623. },
  5624. "require": {
  5625. "php": "^5.5.9 || ^7.0 || ^8.0",
  5626. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  5627. },
  5628. "require-dev": {
  5629. "mockery/mockery": "^0.9 || ^1.0",
  5630. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  5631. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  5632. },
  5633. "suggest": {
  5634. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5635. "whoops/soap": "Formats errors as SOAP responses"
  5636. },
  5637. "type": "library",
  5638. "extra": {
  5639. "branch-alias": {
  5640. "dev-master": "2.7-dev"
  5641. }
  5642. },
  5643. "autoload": {
  5644. "psr-4": {
  5645. "Whoops\\": "src/Whoops/"
  5646. }
  5647. },
  5648. "notification-url": "https://packagist.org/downloads/",
  5649. "license": [
  5650. "MIT"
  5651. ],
  5652. "authors": [
  5653. {
  5654. "name": "Filipe Dobreira",
  5655. "homepage": "https://github.com/filp",
  5656. "role": "Developer"
  5657. }
  5658. ],
  5659. "description": "php error handling for cool kids",
  5660. "homepage": "https://filp.github.io/whoops/",
  5661. "keywords": [
  5662. "error",
  5663. "exception",
  5664. "handling",
  5665. "library",
  5666. "throwable",
  5667. "whoops"
  5668. ],
  5669. "support": {
  5670. "issues": "https://github.com/filp/whoops/issues",
  5671. "source": "https://github.com/filp/whoops/tree/2.14.6"
  5672. },
  5673. "funding": [
  5674. {
  5675. "url": "https://github.com/denis-sokolov",
  5676. "type": "github"
  5677. }
  5678. ],
  5679. "time": "2022-11-02T16:23:29+00:00"
  5680. },
  5681. {
  5682. "name": "fzaninotto/faker",
  5683. "version": "v1.9.2",
  5684. "source": {
  5685. "type": "git",
  5686. "url": "https://github.com/fzaninotto/Faker.git",
  5687. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  5688. },
  5689. "dist": {
  5690. "type": "zip",
  5691. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  5692. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  5693. "shasum": ""
  5694. },
  5695. "require": {
  5696. "php": "^5.3.3 || ^7.0"
  5697. },
  5698. "require-dev": {
  5699. "ext-intl": "*",
  5700. "phpunit/phpunit": "^4.8.35 || ^5.7",
  5701. "squizlabs/php_codesniffer": "^2.9.2"
  5702. },
  5703. "type": "library",
  5704. "extra": {
  5705. "branch-alias": {
  5706. "dev-master": "1.9-dev"
  5707. }
  5708. },
  5709. "autoload": {
  5710. "psr-4": {
  5711. "Faker\\": "src/Faker/"
  5712. }
  5713. },
  5714. "notification-url": "https://packagist.org/downloads/",
  5715. "license": [
  5716. "MIT"
  5717. ],
  5718. "authors": [
  5719. {
  5720. "name": "François Zaninotto"
  5721. }
  5722. ],
  5723. "description": "Faker is a PHP library that generates fake data for you.",
  5724. "keywords": [
  5725. "data",
  5726. "faker",
  5727. "fixtures"
  5728. ],
  5729. "support": {
  5730. "issues": "https://github.com/fzaninotto/Faker/issues",
  5731. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  5732. },
  5733. "abandoned": true,
  5734. "time": "2020-12-11T09:56:16+00:00"
  5735. },
  5736. {
  5737. "name": "hamcrest/hamcrest-php",
  5738. "version": "v2.0.1",
  5739. "source": {
  5740. "type": "git",
  5741. "url": "https://github.com/hamcrest/hamcrest-php.git",
  5742. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  5743. },
  5744. "dist": {
  5745. "type": "zip",
  5746. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5747. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5748. "shasum": ""
  5749. },
  5750. "require": {
  5751. "php": "^5.3|^7.0|^8.0"
  5752. },
  5753. "replace": {
  5754. "cordoval/hamcrest-php": "*",
  5755. "davedevelopment/hamcrest-php": "*",
  5756. "kodova/hamcrest-php": "*"
  5757. },
  5758. "require-dev": {
  5759. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  5760. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  5761. },
  5762. "type": "library",
  5763. "extra": {
  5764. "branch-alias": {
  5765. "dev-master": "2.1-dev"
  5766. }
  5767. },
  5768. "autoload": {
  5769. "classmap": [
  5770. "hamcrest"
  5771. ]
  5772. },
  5773. "notification-url": "https://packagist.org/downloads/",
  5774. "license": [
  5775. "BSD-3-Clause"
  5776. ],
  5777. "description": "This is the PHP port of Hamcrest Matchers",
  5778. "keywords": [
  5779. "test"
  5780. ],
  5781. "support": {
  5782. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  5783. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  5784. },
  5785. "time": "2020-07-09T08:09:16+00:00"
  5786. },
  5787. {
  5788. "name": "mockery/mockery",
  5789. "version": "1.5.1",
  5790. "source": {
  5791. "type": "git",
  5792. "url": "https://github.com/mockery/mockery.git",
  5793. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  5794. },
  5795. "dist": {
  5796. "type": "zip",
  5797. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  5798. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  5799. "shasum": ""
  5800. },
  5801. "require": {
  5802. "hamcrest/hamcrest-php": "^2.0.1",
  5803. "lib-pcre": ">=7.0",
  5804. "php": "^7.3 || ^8.0"
  5805. },
  5806. "conflict": {
  5807. "phpunit/phpunit": "<8.0"
  5808. },
  5809. "require-dev": {
  5810. "phpunit/phpunit": "^8.5 || ^9.3"
  5811. },
  5812. "type": "library",
  5813. "extra": {
  5814. "branch-alias": {
  5815. "dev-master": "1.4.x-dev"
  5816. }
  5817. },
  5818. "autoload": {
  5819. "psr-0": {
  5820. "Mockery": "library/"
  5821. }
  5822. },
  5823. "notification-url": "https://packagist.org/downloads/",
  5824. "license": [
  5825. "BSD-3-Clause"
  5826. ],
  5827. "authors": [
  5828. {
  5829. "name": "Pádraic Brady",
  5830. "email": "padraic.brady@gmail.com",
  5831. "homepage": "http://blog.astrumfutura.com"
  5832. },
  5833. {
  5834. "name": "Dave Marshall",
  5835. "email": "dave.marshall@atstsolutions.co.uk",
  5836. "homepage": "http://davedevelopment.co.uk"
  5837. }
  5838. ],
  5839. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5840. "homepage": "https://github.com/mockery/mockery",
  5841. "keywords": [
  5842. "BDD",
  5843. "TDD",
  5844. "library",
  5845. "mock",
  5846. "mock objects",
  5847. "mockery",
  5848. "stub",
  5849. "test",
  5850. "test double",
  5851. "testing"
  5852. ],
  5853. "support": {
  5854. "issues": "https://github.com/mockery/mockery/issues",
  5855. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  5856. },
  5857. "time": "2022-09-07T15:32:08+00:00"
  5858. },
  5859. {
  5860. "name": "myclabs/deep-copy",
  5861. "version": "1.11.0",
  5862. "source": {
  5863. "type": "git",
  5864. "url": "https://github.com/myclabs/DeepCopy.git",
  5865. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  5866. },
  5867. "dist": {
  5868. "type": "zip",
  5869. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  5870. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  5871. "shasum": ""
  5872. },
  5873. "require": {
  5874. "php": "^7.1 || ^8.0"
  5875. },
  5876. "conflict": {
  5877. "doctrine/collections": "<1.6.8",
  5878. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  5879. },
  5880. "require-dev": {
  5881. "doctrine/collections": "^1.6.8",
  5882. "doctrine/common": "^2.13.3 || ^3.2.2",
  5883. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  5884. },
  5885. "type": "library",
  5886. "autoload": {
  5887. "files": [
  5888. "src/DeepCopy/deep_copy.php"
  5889. ],
  5890. "psr-4": {
  5891. "DeepCopy\\": "src/DeepCopy/"
  5892. }
  5893. },
  5894. "notification-url": "https://packagist.org/downloads/",
  5895. "license": [
  5896. "MIT"
  5897. ],
  5898. "description": "Create deep copies (clones) of your objects",
  5899. "keywords": [
  5900. "clone",
  5901. "copy",
  5902. "duplicate",
  5903. "object",
  5904. "object graph"
  5905. ],
  5906. "support": {
  5907. "issues": "https://github.com/myclabs/DeepCopy/issues",
  5908. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  5909. },
  5910. "funding": [
  5911. {
  5912. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  5913. "type": "tidelift"
  5914. }
  5915. ],
  5916. "time": "2022-03-03T13:19:32+00:00"
  5917. },
  5918. {
  5919. "name": "nunomaduro/collision",
  5920. "version": "v5.11.0",
  5921. "source": {
  5922. "type": "git",
  5923. "url": "https://github.com/nunomaduro/collision.git",
  5924. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  5925. },
  5926. "dist": {
  5927. "type": "zip",
  5928. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  5929. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  5930. "shasum": ""
  5931. },
  5932. "require": {
  5933. "facade/ignition-contracts": "^1.0",
  5934. "filp/whoops": "^2.14.3",
  5935. "php": "^7.3 || ^8.0",
  5936. "symfony/console": "^5.0"
  5937. },
  5938. "require-dev": {
  5939. "brianium/paratest": "^6.1",
  5940. "fideloper/proxy": "^4.4.1",
  5941. "fruitcake/laravel-cors": "^2.0.3",
  5942. "laravel/framework": "8.x-dev",
  5943. "nunomaduro/larastan": "^0.6.2",
  5944. "nunomaduro/mock-final-classes": "^1.0",
  5945. "orchestra/testbench": "^6.0",
  5946. "phpstan/phpstan": "^0.12.64",
  5947. "phpunit/phpunit": "^9.5.0"
  5948. },
  5949. "type": "library",
  5950. "extra": {
  5951. "laravel": {
  5952. "providers": [
  5953. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5954. ]
  5955. }
  5956. },
  5957. "autoload": {
  5958. "psr-4": {
  5959. "NunoMaduro\\Collision\\": "src/"
  5960. }
  5961. },
  5962. "notification-url": "https://packagist.org/downloads/",
  5963. "license": [
  5964. "MIT"
  5965. ],
  5966. "authors": [
  5967. {
  5968. "name": "Nuno Maduro",
  5969. "email": "enunomaduro@gmail.com"
  5970. }
  5971. ],
  5972. "description": "Cli error handling for console/command-line PHP applications.",
  5973. "keywords": [
  5974. "artisan",
  5975. "cli",
  5976. "command-line",
  5977. "console",
  5978. "error",
  5979. "handling",
  5980. "laravel",
  5981. "laravel-zero",
  5982. "php",
  5983. "symfony"
  5984. ],
  5985. "support": {
  5986. "issues": "https://github.com/nunomaduro/collision/issues",
  5987. "source": "https://github.com/nunomaduro/collision"
  5988. },
  5989. "funding": [
  5990. {
  5991. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5992. "type": "custom"
  5993. },
  5994. {
  5995. "url": "https://github.com/nunomaduro",
  5996. "type": "github"
  5997. },
  5998. {
  5999. "url": "https://www.patreon.com/nunomaduro",
  6000. "type": "patreon"
  6001. }
  6002. ],
  6003. "time": "2022-01-10T16:22:52+00:00"
  6004. },
  6005. {
  6006. "name": "phar-io/manifest",
  6007. "version": "2.0.3",
  6008. "source": {
  6009. "type": "git",
  6010. "url": "https://github.com/phar-io/manifest.git",
  6011. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  6012. },
  6013. "dist": {
  6014. "type": "zip",
  6015. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  6016. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  6017. "shasum": ""
  6018. },
  6019. "require": {
  6020. "ext-dom": "*",
  6021. "ext-phar": "*",
  6022. "ext-xmlwriter": "*",
  6023. "phar-io/version": "^3.0.1",
  6024. "php": "^7.2 || ^8.0"
  6025. },
  6026. "type": "library",
  6027. "extra": {
  6028. "branch-alias": {
  6029. "dev-master": "2.0.x-dev"
  6030. }
  6031. },
  6032. "autoload": {
  6033. "classmap": [
  6034. "src/"
  6035. ]
  6036. },
  6037. "notification-url": "https://packagist.org/downloads/",
  6038. "license": [
  6039. "BSD-3-Clause"
  6040. ],
  6041. "authors": [
  6042. {
  6043. "name": "Arne Blankerts",
  6044. "email": "arne@blankerts.de",
  6045. "role": "Developer"
  6046. },
  6047. {
  6048. "name": "Sebastian Heuer",
  6049. "email": "sebastian@phpeople.de",
  6050. "role": "Developer"
  6051. },
  6052. {
  6053. "name": "Sebastian Bergmann",
  6054. "email": "sebastian@phpunit.de",
  6055. "role": "Developer"
  6056. }
  6057. ],
  6058. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6059. "support": {
  6060. "issues": "https://github.com/phar-io/manifest/issues",
  6061. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  6062. },
  6063. "time": "2021-07-20T11:28:43+00:00"
  6064. },
  6065. {
  6066. "name": "phar-io/version",
  6067. "version": "3.2.1",
  6068. "source": {
  6069. "type": "git",
  6070. "url": "https://github.com/phar-io/version.git",
  6071. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  6072. },
  6073. "dist": {
  6074. "type": "zip",
  6075. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6076. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6077. "shasum": ""
  6078. },
  6079. "require": {
  6080. "php": "^7.2 || ^8.0"
  6081. },
  6082. "type": "library",
  6083. "autoload": {
  6084. "classmap": [
  6085. "src/"
  6086. ]
  6087. },
  6088. "notification-url": "https://packagist.org/downloads/",
  6089. "license": [
  6090. "BSD-3-Clause"
  6091. ],
  6092. "authors": [
  6093. {
  6094. "name": "Arne Blankerts",
  6095. "email": "arne@blankerts.de",
  6096. "role": "Developer"
  6097. },
  6098. {
  6099. "name": "Sebastian Heuer",
  6100. "email": "sebastian@phpeople.de",
  6101. "role": "Developer"
  6102. },
  6103. {
  6104. "name": "Sebastian Bergmann",
  6105. "email": "sebastian@phpunit.de",
  6106. "role": "Developer"
  6107. }
  6108. ],
  6109. "description": "Library for handling version information and constraints",
  6110. "support": {
  6111. "issues": "https://github.com/phar-io/version/issues",
  6112. "source": "https://github.com/phar-io/version/tree/3.2.1"
  6113. },
  6114. "time": "2022-02-21T01:04:05+00:00"
  6115. },
  6116. {
  6117. "name": "phpunit/php-code-coverage",
  6118. "version": "9.2.24",
  6119. "source": {
  6120. "type": "git",
  6121. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6122. "reference": "2cf940ebc6355a9d430462811b5aaa308b174bed"
  6123. },
  6124. "dist": {
  6125. "type": "zip",
  6126. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2cf940ebc6355a9d430462811b5aaa308b174bed",
  6127. "reference": "2cf940ebc6355a9d430462811b5aaa308b174bed",
  6128. "shasum": ""
  6129. },
  6130. "require": {
  6131. "ext-dom": "*",
  6132. "ext-libxml": "*",
  6133. "ext-xmlwriter": "*",
  6134. "nikic/php-parser": "^4.14",
  6135. "php": ">=7.3",
  6136. "phpunit/php-file-iterator": "^3.0.3",
  6137. "phpunit/php-text-template": "^2.0.2",
  6138. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  6139. "sebastian/complexity": "^2.0",
  6140. "sebastian/environment": "^5.1.2",
  6141. "sebastian/lines-of-code": "^1.0.3",
  6142. "sebastian/version": "^3.0.1",
  6143. "theseer/tokenizer": "^1.2.0"
  6144. },
  6145. "require-dev": {
  6146. "phpunit/phpunit": "^9.3"
  6147. },
  6148. "suggest": {
  6149. "ext-pcov": "*",
  6150. "ext-xdebug": "*"
  6151. },
  6152. "type": "library",
  6153. "extra": {
  6154. "branch-alias": {
  6155. "dev-master": "9.2-dev"
  6156. }
  6157. },
  6158. "autoload": {
  6159. "classmap": [
  6160. "src/"
  6161. ]
  6162. },
  6163. "notification-url": "https://packagist.org/downloads/",
  6164. "license": [
  6165. "BSD-3-Clause"
  6166. ],
  6167. "authors": [
  6168. {
  6169. "name": "Sebastian Bergmann",
  6170. "email": "sebastian@phpunit.de",
  6171. "role": "lead"
  6172. }
  6173. ],
  6174. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6175. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6176. "keywords": [
  6177. "coverage",
  6178. "testing",
  6179. "xunit"
  6180. ],
  6181. "support": {
  6182. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6183. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.24"
  6184. },
  6185. "funding": [
  6186. {
  6187. "url": "https://github.com/sebastianbergmann",
  6188. "type": "github"
  6189. }
  6190. ],
  6191. "time": "2023-01-26T08:26:55+00:00"
  6192. },
  6193. {
  6194. "name": "phpunit/php-file-iterator",
  6195. "version": "3.0.6",
  6196. "source": {
  6197. "type": "git",
  6198. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6199. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  6200. },
  6201. "dist": {
  6202. "type": "zip",
  6203. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6204. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6205. "shasum": ""
  6206. },
  6207. "require": {
  6208. "php": ">=7.3"
  6209. },
  6210. "require-dev": {
  6211. "phpunit/phpunit": "^9.3"
  6212. },
  6213. "type": "library",
  6214. "extra": {
  6215. "branch-alias": {
  6216. "dev-master": "3.0-dev"
  6217. }
  6218. },
  6219. "autoload": {
  6220. "classmap": [
  6221. "src/"
  6222. ]
  6223. },
  6224. "notification-url": "https://packagist.org/downloads/",
  6225. "license": [
  6226. "BSD-3-Clause"
  6227. ],
  6228. "authors": [
  6229. {
  6230. "name": "Sebastian Bergmann",
  6231. "email": "sebastian@phpunit.de",
  6232. "role": "lead"
  6233. }
  6234. ],
  6235. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6236. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6237. "keywords": [
  6238. "filesystem",
  6239. "iterator"
  6240. ],
  6241. "support": {
  6242. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6243. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  6244. },
  6245. "funding": [
  6246. {
  6247. "url": "https://github.com/sebastianbergmann",
  6248. "type": "github"
  6249. }
  6250. ],
  6251. "time": "2021-12-02T12:48:52+00:00"
  6252. },
  6253. {
  6254. "name": "phpunit/php-invoker",
  6255. "version": "3.1.1",
  6256. "source": {
  6257. "type": "git",
  6258. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  6259. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  6260. },
  6261. "dist": {
  6262. "type": "zip",
  6263. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6264. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6265. "shasum": ""
  6266. },
  6267. "require": {
  6268. "php": ">=7.3"
  6269. },
  6270. "require-dev": {
  6271. "ext-pcntl": "*",
  6272. "phpunit/phpunit": "^9.3"
  6273. },
  6274. "suggest": {
  6275. "ext-pcntl": "*"
  6276. },
  6277. "type": "library",
  6278. "extra": {
  6279. "branch-alias": {
  6280. "dev-master": "3.1-dev"
  6281. }
  6282. },
  6283. "autoload": {
  6284. "classmap": [
  6285. "src/"
  6286. ]
  6287. },
  6288. "notification-url": "https://packagist.org/downloads/",
  6289. "license": [
  6290. "BSD-3-Clause"
  6291. ],
  6292. "authors": [
  6293. {
  6294. "name": "Sebastian Bergmann",
  6295. "email": "sebastian@phpunit.de",
  6296. "role": "lead"
  6297. }
  6298. ],
  6299. "description": "Invoke callables with a timeout",
  6300. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6301. "keywords": [
  6302. "process"
  6303. ],
  6304. "support": {
  6305. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  6306. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  6307. },
  6308. "funding": [
  6309. {
  6310. "url": "https://github.com/sebastianbergmann",
  6311. "type": "github"
  6312. }
  6313. ],
  6314. "time": "2020-09-28T05:58:55+00:00"
  6315. },
  6316. {
  6317. "name": "phpunit/php-text-template",
  6318. "version": "2.0.4",
  6319. "source": {
  6320. "type": "git",
  6321. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6322. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  6323. },
  6324. "dist": {
  6325. "type": "zip",
  6326. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6327. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6328. "shasum": ""
  6329. },
  6330. "require": {
  6331. "php": ">=7.3"
  6332. },
  6333. "require-dev": {
  6334. "phpunit/phpunit": "^9.3"
  6335. },
  6336. "type": "library",
  6337. "extra": {
  6338. "branch-alias": {
  6339. "dev-master": "2.0-dev"
  6340. }
  6341. },
  6342. "autoload": {
  6343. "classmap": [
  6344. "src/"
  6345. ]
  6346. },
  6347. "notification-url": "https://packagist.org/downloads/",
  6348. "license": [
  6349. "BSD-3-Clause"
  6350. ],
  6351. "authors": [
  6352. {
  6353. "name": "Sebastian Bergmann",
  6354. "email": "sebastian@phpunit.de",
  6355. "role": "lead"
  6356. }
  6357. ],
  6358. "description": "Simple template engine.",
  6359. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6360. "keywords": [
  6361. "template"
  6362. ],
  6363. "support": {
  6364. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  6365. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  6366. },
  6367. "funding": [
  6368. {
  6369. "url": "https://github.com/sebastianbergmann",
  6370. "type": "github"
  6371. }
  6372. ],
  6373. "time": "2020-10-26T05:33:50+00:00"
  6374. },
  6375. {
  6376. "name": "phpunit/php-timer",
  6377. "version": "5.0.3",
  6378. "source": {
  6379. "type": "git",
  6380. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6381. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  6382. },
  6383. "dist": {
  6384. "type": "zip",
  6385. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6386. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6387. "shasum": ""
  6388. },
  6389. "require": {
  6390. "php": ">=7.3"
  6391. },
  6392. "require-dev": {
  6393. "phpunit/phpunit": "^9.3"
  6394. },
  6395. "type": "library",
  6396. "extra": {
  6397. "branch-alias": {
  6398. "dev-master": "5.0-dev"
  6399. }
  6400. },
  6401. "autoload": {
  6402. "classmap": [
  6403. "src/"
  6404. ]
  6405. },
  6406. "notification-url": "https://packagist.org/downloads/",
  6407. "license": [
  6408. "BSD-3-Clause"
  6409. ],
  6410. "authors": [
  6411. {
  6412. "name": "Sebastian Bergmann",
  6413. "email": "sebastian@phpunit.de",
  6414. "role": "lead"
  6415. }
  6416. ],
  6417. "description": "Utility class for timing",
  6418. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6419. "keywords": [
  6420. "timer"
  6421. ],
  6422. "support": {
  6423. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  6424. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  6425. },
  6426. "funding": [
  6427. {
  6428. "url": "https://github.com/sebastianbergmann",
  6429. "type": "github"
  6430. }
  6431. ],
  6432. "time": "2020-10-26T13:16:10+00:00"
  6433. },
  6434. {
  6435. "name": "phpunit/phpunit",
  6436. "version": "9.6.3",
  6437. "source": {
  6438. "type": "git",
  6439. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6440. "reference": "e7b1615e3e887d6c719121c6d4a44b0ab9645555"
  6441. },
  6442. "dist": {
  6443. "type": "zip",
  6444. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e7b1615e3e887d6c719121c6d4a44b0ab9645555",
  6445. "reference": "e7b1615e3e887d6c719121c6d4a44b0ab9645555",
  6446. "shasum": ""
  6447. },
  6448. "require": {
  6449. "doctrine/instantiator": "^1.3.1 || ^2",
  6450. "ext-dom": "*",
  6451. "ext-json": "*",
  6452. "ext-libxml": "*",
  6453. "ext-mbstring": "*",
  6454. "ext-xml": "*",
  6455. "ext-xmlwriter": "*",
  6456. "myclabs/deep-copy": "^1.10.1",
  6457. "phar-io/manifest": "^2.0.3",
  6458. "phar-io/version": "^3.0.2",
  6459. "php": ">=7.3",
  6460. "phpunit/php-code-coverage": "^9.2.13",
  6461. "phpunit/php-file-iterator": "^3.0.5",
  6462. "phpunit/php-invoker": "^3.1.1",
  6463. "phpunit/php-text-template": "^2.0.3",
  6464. "phpunit/php-timer": "^5.0.2",
  6465. "sebastian/cli-parser": "^1.0.1",
  6466. "sebastian/code-unit": "^1.0.6",
  6467. "sebastian/comparator": "^4.0.8",
  6468. "sebastian/diff": "^4.0.3",
  6469. "sebastian/environment": "^5.1.3",
  6470. "sebastian/exporter": "^4.0.5",
  6471. "sebastian/global-state": "^5.0.1",
  6472. "sebastian/object-enumerator": "^4.0.3",
  6473. "sebastian/resource-operations": "^3.0.3",
  6474. "sebastian/type": "^3.2",
  6475. "sebastian/version": "^3.0.2"
  6476. },
  6477. "suggest": {
  6478. "ext-soap": "*",
  6479. "ext-xdebug": "*"
  6480. },
  6481. "bin": [
  6482. "phpunit"
  6483. ],
  6484. "type": "library",
  6485. "extra": {
  6486. "branch-alias": {
  6487. "dev-master": "9.6-dev"
  6488. }
  6489. },
  6490. "autoload": {
  6491. "files": [
  6492. "src/Framework/Assert/Functions.php"
  6493. ],
  6494. "classmap": [
  6495. "src/"
  6496. ]
  6497. },
  6498. "notification-url": "https://packagist.org/downloads/",
  6499. "license": [
  6500. "BSD-3-Clause"
  6501. ],
  6502. "authors": [
  6503. {
  6504. "name": "Sebastian Bergmann",
  6505. "email": "sebastian@phpunit.de",
  6506. "role": "lead"
  6507. }
  6508. ],
  6509. "description": "The PHP Unit Testing framework.",
  6510. "homepage": "https://phpunit.de/",
  6511. "keywords": [
  6512. "phpunit",
  6513. "testing",
  6514. "xunit"
  6515. ],
  6516. "support": {
  6517. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  6518. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.3"
  6519. },
  6520. "funding": [
  6521. {
  6522. "url": "https://phpunit.de/sponsors.html",
  6523. "type": "custom"
  6524. },
  6525. {
  6526. "url": "https://github.com/sebastianbergmann",
  6527. "type": "github"
  6528. },
  6529. {
  6530. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  6531. "type": "tidelift"
  6532. }
  6533. ],
  6534. "time": "2023-02-04T13:37:15+00:00"
  6535. },
  6536. {
  6537. "name": "sebastian/cli-parser",
  6538. "version": "1.0.1",
  6539. "source": {
  6540. "type": "git",
  6541. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  6542. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  6543. },
  6544. "dist": {
  6545. "type": "zip",
  6546. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6547. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6548. "shasum": ""
  6549. },
  6550. "require": {
  6551. "php": ">=7.3"
  6552. },
  6553. "require-dev": {
  6554. "phpunit/phpunit": "^9.3"
  6555. },
  6556. "type": "library",
  6557. "extra": {
  6558. "branch-alias": {
  6559. "dev-master": "1.0-dev"
  6560. }
  6561. },
  6562. "autoload": {
  6563. "classmap": [
  6564. "src/"
  6565. ]
  6566. },
  6567. "notification-url": "https://packagist.org/downloads/",
  6568. "license": [
  6569. "BSD-3-Clause"
  6570. ],
  6571. "authors": [
  6572. {
  6573. "name": "Sebastian Bergmann",
  6574. "email": "sebastian@phpunit.de",
  6575. "role": "lead"
  6576. }
  6577. ],
  6578. "description": "Library for parsing CLI options",
  6579. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  6580. "support": {
  6581. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  6582. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  6583. },
  6584. "funding": [
  6585. {
  6586. "url": "https://github.com/sebastianbergmann",
  6587. "type": "github"
  6588. }
  6589. ],
  6590. "time": "2020-09-28T06:08:49+00:00"
  6591. },
  6592. {
  6593. "name": "sebastian/code-unit",
  6594. "version": "1.0.8",
  6595. "source": {
  6596. "type": "git",
  6597. "url": "https://github.com/sebastianbergmann/code-unit.git",
  6598. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  6599. },
  6600. "dist": {
  6601. "type": "zip",
  6602. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6603. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6604. "shasum": ""
  6605. },
  6606. "require": {
  6607. "php": ">=7.3"
  6608. },
  6609. "require-dev": {
  6610. "phpunit/phpunit": "^9.3"
  6611. },
  6612. "type": "library",
  6613. "extra": {
  6614. "branch-alias": {
  6615. "dev-master": "1.0-dev"
  6616. }
  6617. },
  6618. "autoload": {
  6619. "classmap": [
  6620. "src/"
  6621. ]
  6622. },
  6623. "notification-url": "https://packagist.org/downloads/",
  6624. "license": [
  6625. "BSD-3-Clause"
  6626. ],
  6627. "authors": [
  6628. {
  6629. "name": "Sebastian Bergmann",
  6630. "email": "sebastian@phpunit.de",
  6631. "role": "lead"
  6632. }
  6633. ],
  6634. "description": "Collection of value objects that represent the PHP code units",
  6635. "homepage": "https://github.com/sebastianbergmann/code-unit",
  6636. "support": {
  6637. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  6638. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  6639. },
  6640. "funding": [
  6641. {
  6642. "url": "https://github.com/sebastianbergmann",
  6643. "type": "github"
  6644. }
  6645. ],
  6646. "time": "2020-10-26T13:08:54+00:00"
  6647. },
  6648. {
  6649. "name": "sebastian/code-unit-reverse-lookup",
  6650. "version": "2.0.3",
  6651. "source": {
  6652. "type": "git",
  6653. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6654. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  6655. },
  6656. "dist": {
  6657. "type": "zip",
  6658. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6659. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6660. "shasum": ""
  6661. },
  6662. "require": {
  6663. "php": ">=7.3"
  6664. },
  6665. "require-dev": {
  6666. "phpunit/phpunit": "^9.3"
  6667. },
  6668. "type": "library",
  6669. "extra": {
  6670. "branch-alias": {
  6671. "dev-master": "2.0-dev"
  6672. }
  6673. },
  6674. "autoload": {
  6675. "classmap": [
  6676. "src/"
  6677. ]
  6678. },
  6679. "notification-url": "https://packagist.org/downloads/",
  6680. "license": [
  6681. "BSD-3-Clause"
  6682. ],
  6683. "authors": [
  6684. {
  6685. "name": "Sebastian Bergmann",
  6686. "email": "sebastian@phpunit.de"
  6687. }
  6688. ],
  6689. "description": "Looks up which function or method a line of code belongs to",
  6690. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6691. "support": {
  6692. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  6693. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  6694. },
  6695. "funding": [
  6696. {
  6697. "url": "https://github.com/sebastianbergmann",
  6698. "type": "github"
  6699. }
  6700. ],
  6701. "time": "2020-09-28T05:30:19+00:00"
  6702. },
  6703. {
  6704. "name": "sebastian/comparator",
  6705. "version": "4.0.8",
  6706. "source": {
  6707. "type": "git",
  6708. "url": "https://github.com/sebastianbergmann/comparator.git",
  6709. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  6710. },
  6711. "dist": {
  6712. "type": "zip",
  6713. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  6714. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  6715. "shasum": ""
  6716. },
  6717. "require": {
  6718. "php": ">=7.3",
  6719. "sebastian/diff": "^4.0",
  6720. "sebastian/exporter": "^4.0"
  6721. },
  6722. "require-dev": {
  6723. "phpunit/phpunit": "^9.3"
  6724. },
  6725. "type": "library",
  6726. "extra": {
  6727. "branch-alias": {
  6728. "dev-master": "4.0-dev"
  6729. }
  6730. },
  6731. "autoload": {
  6732. "classmap": [
  6733. "src/"
  6734. ]
  6735. },
  6736. "notification-url": "https://packagist.org/downloads/",
  6737. "license": [
  6738. "BSD-3-Clause"
  6739. ],
  6740. "authors": [
  6741. {
  6742. "name": "Sebastian Bergmann",
  6743. "email": "sebastian@phpunit.de"
  6744. },
  6745. {
  6746. "name": "Jeff Welch",
  6747. "email": "whatthejeff@gmail.com"
  6748. },
  6749. {
  6750. "name": "Volker Dusch",
  6751. "email": "github@wallbash.com"
  6752. },
  6753. {
  6754. "name": "Bernhard Schussek",
  6755. "email": "bschussek@2bepublished.at"
  6756. }
  6757. ],
  6758. "description": "Provides the functionality to compare PHP values for equality",
  6759. "homepage": "https://github.com/sebastianbergmann/comparator",
  6760. "keywords": [
  6761. "comparator",
  6762. "compare",
  6763. "equality"
  6764. ],
  6765. "support": {
  6766. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  6767. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  6768. },
  6769. "funding": [
  6770. {
  6771. "url": "https://github.com/sebastianbergmann",
  6772. "type": "github"
  6773. }
  6774. ],
  6775. "time": "2022-09-14T12:41:17+00:00"
  6776. },
  6777. {
  6778. "name": "sebastian/complexity",
  6779. "version": "2.0.2",
  6780. "source": {
  6781. "type": "git",
  6782. "url": "https://github.com/sebastianbergmann/complexity.git",
  6783. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  6784. },
  6785. "dist": {
  6786. "type": "zip",
  6787. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  6788. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  6789. "shasum": ""
  6790. },
  6791. "require": {
  6792. "nikic/php-parser": "^4.7",
  6793. "php": ">=7.3"
  6794. },
  6795. "require-dev": {
  6796. "phpunit/phpunit": "^9.3"
  6797. },
  6798. "type": "library",
  6799. "extra": {
  6800. "branch-alias": {
  6801. "dev-master": "2.0-dev"
  6802. }
  6803. },
  6804. "autoload": {
  6805. "classmap": [
  6806. "src/"
  6807. ]
  6808. },
  6809. "notification-url": "https://packagist.org/downloads/",
  6810. "license": [
  6811. "BSD-3-Clause"
  6812. ],
  6813. "authors": [
  6814. {
  6815. "name": "Sebastian Bergmann",
  6816. "email": "sebastian@phpunit.de",
  6817. "role": "lead"
  6818. }
  6819. ],
  6820. "description": "Library for calculating the complexity of PHP code units",
  6821. "homepage": "https://github.com/sebastianbergmann/complexity",
  6822. "support": {
  6823. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  6824. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  6825. },
  6826. "funding": [
  6827. {
  6828. "url": "https://github.com/sebastianbergmann",
  6829. "type": "github"
  6830. }
  6831. ],
  6832. "time": "2020-10-26T15:52:27+00:00"
  6833. },
  6834. {
  6835. "name": "sebastian/diff",
  6836. "version": "4.0.4",
  6837. "source": {
  6838. "type": "git",
  6839. "url": "https://github.com/sebastianbergmann/diff.git",
  6840. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  6841. },
  6842. "dist": {
  6843. "type": "zip",
  6844. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  6845. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  6846. "shasum": ""
  6847. },
  6848. "require": {
  6849. "php": ">=7.3"
  6850. },
  6851. "require-dev": {
  6852. "phpunit/phpunit": "^9.3",
  6853. "symfony/process": "^4.2 || ^5"
  6854. },
  6855. "type": "library",
  6856. "extra": {
  6857. "branch-alias": {
  6858. "dev-master": "4.0-dev"
  6859. }
  6860. },
  6861. "autoload": {
  6862. "classmap": [
  6863. "src/"
  6864. ]
  6865. },
  6866. "notification-url": "https://packagist.org/downloads/",
  6867. "license": [
  6868. "BSD-3-Clause"
  6869. ],
  6870. "authors": [
  6871. {
  6872. "name": "Sebastian Bergmann",
  6873. "email": "sebastian@phpunit.de"
  6874. },
  6875. {
  6876. "name": "Kore Nordmann",
  6877. "email": "mail@kore-nordmann.de"
  6878. }
  6879. ],
  6880. "description": "Diff implementation",
  6881. "homepage": "https://github.com/sebastianbergmann/diff",
  6882. "keywords": [
  6883. "diff",
  6884. "udiff",
  6885. "unidiff",
  6886. "unified diff"
  6887. ],
  6888. "support": {
  6889. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6890. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  6891. },
  6892. "funding": [
  6893. {
  6894. "url": "https://github.com/sebastianbergmann",
  6895. "type": "github"
  6896. }
  6897. ],
  6898. "time": "2020-10-26T13:10:38+00:00"
  6899. },
  6900. {
  6901. "name": "sebastian/environment",
  6902. "version": "5.1.5",
  6903. "source": {
  6904. "type": "git",
  6905. "url": "https://github.com/sebastianbergmann/environment.git",
  6906. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  6907. },
  6908. "dist": {
  6909. "type": "zip",
  6910. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  6911. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  6912. "shasum": ""
  6913. },
  6914. "require": {
  6915. "php": ">=7.3"
  6916. },
  6917. "require-dev": {
  6918. "phpunit/phpunit": "^9.3"
  6919. },
  6920. "suggest": {
  6921. "ext-posix": "*"
  6922. },
  6923. "type": "library",
  6924. "extra": {
  6925. "branch-alias": {
  6926. "dev-master": "5.1-dev"
  6927. }
  6928. },
  6929. "autoload": {
  6930. "classmap": [
  6931. "src/"
  6932. ]
  6933. },
  6934. "notification-url": "https://packagist.org/downloads/",
  6935. "license": [
  6936. "BSD-3-Clause"
  6937. ],
  6938. "authors": [
  6939. {
  6940. "name": "Sebastian Bergmann",
  6941. "email": "sebastian@phpunit.de"
  6942. }
  6943. ],
  6944. "description": "Provides functionality to handle HHVM/PHP environments",
  6945. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6946. "keywords": [
  6947. "Xdebug",
  6948. "environment",
  6949. "hhvm"
  6950. ],
  6951. "support": {
  6952. "issues": "https://github.com/sebastianbergmann/environment/issues",
  6953. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  6954. },
  6955. "funding": [
  6956. {
  6957. "url": "https://github.com/sebastianbergmann",
  6958. "type": "github"
  6959. }
  6960. ],
  6961. "time": "2023-02-03T06:03:51+00:00"
  6962. },
  6963. {
  6964. "name": "sebastian/exporter",
  6965. "version": "4.0.5",
  6966. "source": {
  6967. "type": "git",
  6968. "url": "https://github.com/sebastianbergmann/exporter.git",
  6969. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  6970. },
  6971. "dist": {
  6972. "type": "zip",
  6973. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  6974. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  6975. "shasum": ""
  6976. },
  6977. "require": {
  6978. "php": ">=7.3",
  6979. "sebastian/recursion-context": "^4.0"
  6980. },
  6981. "require-dev": {
  6982. "ext-mbstring": "*",
  6983. "phpunit/phpunit": "^9.3"
  6984. },
  6985. "type": "library",
  6986. "extra": {
  6987. "branch-alias": {
  6988. "dev-master": "4.0-dev"
  6989. }
  6990. },
  6991. "autoload": {
  6992. "classmap": [
  6993. "src/"
  6994. ]
  6995. },
  6996. "notification-url": "https://packagist.org/downloads/",
  6997. "license": [
  6998. "BSD-3-Clause"
  6999. ],
  7000. "authors": [
  7001. {
  7002. "name": "Sebastian Bergmann",
  7003. "email": "sebastian@phpunit.de"
  7004. },
  7005. {
  7006. "name": "Jeff Welch",
  7007. "email": "whatthejeff@gmail.com"
  7008. },
  7009. {
  7010. "name": "Volker Dusch",
  7011. "email": "github@wallbash.com"
  7012. },
  7013. {
  7014. "name": "Adam Harvey",
  7015. "email": "aharvey@php.net"
  7016. },
  7017. {
  7018. "name": "Bernhard Schussek",
  7019. "email": "bschussek@gmail.com"
  7020. }
  7021. ],
  7022. "description": "Provides the functionality to export PHP variables for visualization",
  7023. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  7024. "keywords": [
  7025. "export",
  7026. "exporter"
  7027. ],
  7028. "support": {
  7029. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7030. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  7031. },
  7032. "funding": [
  7033. {
  7034. "url": "https://github.com/sebastianbergmann",
  7035. "type": "github"
  7036. }
  7037. ],
  7038. "time": "2022-09-14T06:03:37+00:00"
  7039. },
  7040. {
  7041. "name": "sebastian/global-state",
  7042. "version": "5.0.5",
  7043. "source": {
  7044. "type": "git",
  7045. "url": "https://github.com/sebastianbergmann/global-state.git",
  7046. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  7047. },
  7048. "dist": {
  7049. "type": "zip",
  7050. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  7051. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  7052. "shasum": ""
  7053. },
  7054. "require": {
  7055. "php": ">=7.3",
  7056. "sebastian/object-reflector": "^2.0",
  7057. "sebastian/recursion-context": "^4.0"
  7058. },
  7059. "require-dev": {
  7060. "ext-dom": "*",
  7061. "phpunit/phpunit": "^9.3"
  7062. },
  7063. "suggest": {
  7064. "ext-uopz": "*"
  7065. },
  7066. "type": "library",
  7067. "extra": {
  7068. "branch-alias": {
  7069. "dev-master": "5.0-dev"
  7070. }
  7071. },
  7072. "autoload": {
  7073. "classmap": [
  7074. "src/"
  7075. ]
  7076. },
  7077. "notification-url": "https://packagist.org/downloads/",
  7078. "license": [
  7079. "BSD-3-Clause"
  7080. ],
  7081. "authors": [
  7082. {
  7083. "name": "Sebastian Bergmann",
  7084. "email": "sebastian@phpunit.de"
  7085. }
  7086. ],
  7087. "description": "Snapshotting of global state",
  7088. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  7089. "keywords": [
  7090. "global state"
  7091. ],
  7092. "support": {
  7093. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  7094. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  7095. },
  7096. "funding": [
  7097. {
  7098. "url": "https://github.com/sebastianbergmann",
  7099. "type": "github"
  7100. }
  7101. ],
  7102. "time": "2022-02-14T08:28:10+00:00"
  7103. },
  7104. {
  7105. "name": "sebastian/lines-of-code",
  7106. "version": "1.0.3",
  7107. "source": {
  7108. "type": "git",
  7109. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  7110. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  7111. },
  7112. "dist": {
  7113. "type": "zip",
  7114. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7115. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7116. "shasum": ""
  7117. },
  7118. "require": {
  7119. "nikic/php-parser": "^4.6",
  7120. "php": ">=7.3"
  7121. },
  7122. "require-dev": {
  7123. "phpunit/phpunit": "^9.3"
  7124. },
  7125. "type": "library",
  7126. "extra": {
  7127. "branch-alias": {
  7128. "dev-master": "1.0-dev"
  7129. }
  7130. },
  7131. "autoload": {
  7132. "classmap": [
  7133. "src/"
  7134. ]
  7135. },
  7136. "notification-url": "https://packagist.org/downloads/",
  7137. "license": [
  7138. "BSD-3-Clause"
  7139. ],
  7140. "authors": [
  7141. {
  7142. "name": "Sebastian Bergmann",
  7143. "email": "sebastian@phpunit.de",
  7144. "role": "lead"
  7145. }
  7146. ],
  7147. "description": "Library for counting the lines of code in PHP source code",
  7148. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7149. "support": {
  7150. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7151. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  7152. },
  7153. "funding": [
  7154. {
  7155. "url": "https://github.com/sebastianbergmann",
  7156. "type": "github"
  7157. }
  7158. ],
  7159. "time": "2020-11-28T06:42:11+00:00"
  7160. },
  7161. {
  7162. "name": "sebastian/object-enumerator",
  7163. "version": "4.0.4",
  7164. "source": {
  7165. "type": "git",
  7166. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7167. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  7168. },
  7169. "dist": {
  7170. "type": "zip",
  7171. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  7172. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  7173. "shasum": ""
  7174. },
  7175. "require": {
  7176. "php": ">=7.3",
  7177. "sebastian/object-reflector": "^2.0",
  7178. "sebastian/recursion-context": "^4.0"
  7179. },
  7180. "require-dev": {
  7181. "phpunit/phpunit": "^9.3"
  7182. },
  7183. "type": "library",
  7184. "extra": {
  7185. "branch-alias": {
  7186. "dev-master": "4.0-dev"
  7187. }
  7188. },
  7189. "autoload": {
  7190. "classmap": [
  7191. "src/"
  7192. ]
  7193. },
  7194. "notification-url": "https://packagist.org/downloads/",
  7195. "license": [
  7196. "BSD-3-Clause"
  7197. ],
  7198. "authors": [
  7199. {
  7200. "name": "Sebastian Bergmann",
  7201. "email": "sebastian@phpunit.de"
  7202. }
  7203. ],
  7204. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7205. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7206. "support": {
  7207. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7208. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  7209. },
  7210. "funding": [
  7211. {
  7212. "url": "https://github.com/sebastianbergmann",
  7213. "type": "github"
  7214. }
  7215. ],
  7216. "time": "2020-10-26T13:12:34+00:00"
  7217. },
  7218. {
  7219. "name": "sebastian/object-reflector",
  7220. "version": "2.0.4",
  7221. "source": {
  7222. "type": "git",
  7223. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7224. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  7225. },
  7226. "dist": {
  7227. "type": "zip",
  7228. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7229. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7230. "shasum": ""
  7231. },
  7232. "require": {
  7233. "php": ">=7.3"
  7234. },
  7235. "require-dev": {
  7236. "phpunit/phpunit": "^9.3"
  7237. },
  7238. "type": "library",
  7239. "extra": {
  7240. "branch-alias": {
  7241. "dev-master": "2.0-dev"
  7242. }
  7243. },
  7244. "autoload": {
  7245. "classmap": [
  7246. "src/"
  7247. ]
  7248. },
  7249. "notification-url": "https://packagist.org/downloads/",
  7250. "license": [
  7251. "BSD-3-Clause"
  7252. ],
  7253. "authors": [
  7254. {
  7255. "name": "Sebastian Bergmann",
  7256. "email": "sebastian@phpunit.de"
  7257. }
  7258. ],
  7259. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7260. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7261. "support": {
  7262. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7263. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  7264. },
  7265. "funding": [
  7266. {
  7267. "url": "https://github.com/sebastianbergmann",
  7268. "type": "github"
  7269. }
  7270. ],
  7271. "time": "2020-10-26T13:14:26+00:00"
  7272. },
  7273. {
  7274. "name": "sebastian/recursion-context",
  7275. "version": "4.0.5",
  7276. "source": {
  7277. "type": "git",
  7278. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7279. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  7280. },
  7281. "dist": {
  7282. "type": "zip",
  7283. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  7284. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  7285. "shasum": ""
  7286. },
  7287. "require": {
  7288. "php": ">=7.3"
  7289. },
  7290. "require-dev": {
  7291. "phpunit/phpunit": "^9.3"
  7292. },
  7293. "type": "library",
  7294. "extra": {
  7295. "branch-alias": {
  7296. "dev-master": "4.0-dev"
  7297. }
  7298. },
  7299. "autoload": {
  7300. "classmap": [
  7301. "src/"
  7302. ]
  7303. },
  7304. "notification-url": "https://packagist.org/downloads/",
  7305. "license": [
  7306. "BSD-3-Clause"
  7307. ],
  7308. "authors": [
  7309. {
  7310. "name": "Sebastian Bergmann",
  7311. "email": "sebastian@phpunit.de"
  7312. },
  7313. {
  7314. "name": "Jeff Welch",
  7315. "email": "whatthejeff@gmail.com"
  7316. },
  7317. {
  7318. "name": "Adam Harvey",
  7319. "email": "aharvey@php.net"
  7320. }
  7321. ],
  7322. "description": "Provides functionality to recursively process PHP variables",
  7323. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  7324. "support": {
  7325. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  7326. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  7327. },
  7328. "funding": [
  7329. {
  7330. "url": "https://github.com/sebastianbergmann",
  7331. "type": "github"
  7332. }
  7333. ],
  7334. "time": "2023-02-03T06:07:39+00:00"
  7335. },
  7336. {
  7337. "name": "sebastian/resource-operations",
  7338. "version": "3.0.3",
  7339. "source": {
  7340. "type": "git",
  7341. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7342. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  7343. },
  7344. "dist": {
  7345. "type": "zip",
  7346. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7347. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7348. "shasum": ""
  7349. },
  7350. "require": {
  7351. "php": ">=7.3"
  7352. },
  7353. "require-dev": {
  7354. "phpunit/phpunit": "^9.0"
  7355. },
  7356. "type": "library",
  7357. "extra": {
  7358. "branch-alias": {
  7359. "dev-master": "3.0-dev"
  7360. }
  7361. },
  7362. "autoload": {
  7363. "classmap": [
  7364. "src/"
  7365. ]
  7366. },
  7367. "notification-url": "https://packagist.org/downloads/",
  7368. "license": [
  7369. "BSD-3-Clause"
  7370. ],
  7371. "authors": [
  7372. {
  7373. "name": "Sebastian Bergmann",
  7374. "email": "sebastian@phpunit.de"
  7375. }
  7376. ],
  7377. "description": "Provides a list of PHP built-in functions that operate on resources",
  7378. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7379. "support": {
  7380. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  7381. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  7382. },
  7383. "funding": [
  7384. {
  7385. "url": "https://github.com/sebastianbergmann",
  7386. "type": "github"
  7387. }
  7388. ],
  7389. "time": "2020-09-28T06:45:17+00:00"
  7390. },
  7391. {
  7392. "name": "sebastian/type",
  7393. "version": "3.2.1",
  7394. "source": {
  7395. "type": "git",
  7396. "url": "https://github.com/sebastianbergmann/type.git",
  7397. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  7398. },
  7399. "dist": {
  7400. "type": "zip",
  7401. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  7402. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  7403. "shasum": ""
  7404. },
  7405. "require": {
  7406. "php": ">=7.3"
  7407. },
  7408. "require-dev": {
  7409. "phpunit/phpunit": "^9.5"
  7410. },
  7411. "type": "library",
  7412. "extra": {
  7413. "branch-alias": {
  7414. "dev-master": "3.2-dev"
  7415. }
  7416. },
  7417. "autoload": {
  7418. "classmap": [
  7419. "src/"
  7420. ]
  7421. },
  7422. "notification-url": "https://packagist.org/downloads/",
  7423. "license": [
  7424. "BSD-3-Clause"
  7425. ],
  7426. "authors": [
  7427. {
  7428. "name": "Sebastian Bergmann",
  7429. "email": "sebastian@phpunit.de",
  7430. "role": "lead"
  7431. }
  7432. ],
  7433. "description": "Collection of value objects that represent the types of the PHP type system",
  7434. "homepage": "https://github.com/sebastianbergmann/type",
  7435. "support": {
  7436. "issues": "https://github.com/sebastianbergmann/type/issues",
  7437. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  7438. },
  7439. "funding": [
  7440. {
  7441. "url": "https://github.com/sebastianbergmann",
  7442. "type": "github"
  7443. }
  7444. ],
  7445. "time": "2023-02-03T06:13:03+00:00"
  7446. },
  7447. {
  7448. "name": "sebastian/version",
  7449. "version": "3.0.2",
  7450. "source": {
  7451. "type": "git",
  7452. "url": "https://github.com/sebastianbergmann/version.git",
  7453. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  7454. },
  7455. "dist": {
  7456. "type": "zip",
  7457. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  7458. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  7459. "shasum": ""
  7460. },
  7461. "require": {
  7462. "php": ">=7.3"
  7463. },
  7464. "type": "library",
  7465. "extra": {
  7466. "branch-alias": {
  7467. "dev-master": "3.0-dev"
  7468. }
  7469. },
  7470. "autoload": {
  7471. "classmap": [
  7472. "src/"
  7473. ]
  7474. },
  7475. "notification-url": "https://packagist.org/downloads/",
  7476. "license": [
  7477. "BSD-3-Clause"
  7478. ],
  7479. "authors": [
  7480. {
  7481. "name": "Sebastian Bergmann",
  7482. "email": "sebastian@phpunit.de",
  7483. "role": "lead"
  7484. }
  7485. ],
  7486. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7487. "homepage": "https://github.com/sebastianbergmann/version",
  7488. "support": {
  7489. "issues": "https://github.com/sebastianbergmann/version/issues",
  7490. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  7491. },
  7492. "funding": [
  7493. {
  7494. "url": "https://github.com/sebastianbergmann",
  7495. "type": "github"
  7496. }
  7497. ],
  7498. "time": "2020-09-28T06:39:44+00:00"
  7499. },
  7500. {
  7501. "name": "theseer/tokenizer",
  7502. "version": "1.2.1",
  7503. "source": {
  7504. "type": "git",
  7505. "url": "https://github.com/theseer/tokenizer.git",
  7506. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  7507. },
  7508. "dist": {
  7509. "type": "zip",
  7510. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  7511. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  7512. "shasum": ""
  7513. },
  7514. "require": {
  7515. "ext-dom": "*",
  7516. "ext-tokenizer": "*",
  7517. "ext-xmlwriter": "*",
  7518. "php": "^7.2 || ^8.0"
  7519. },
  7520. "type": "library",
  7521. "autoload": {
  7522. "classmap": [
  7523. "src/"
  7524. ]
  7525. },
  7526. "notification-url": "https://packagist.org/downloads/",
  7527. "license": [
  7528. "BSD-3-Clause"
  7529. ],
  7530. "authors": [
  7531. {
  7532. "name": "Arne Blankerts",
  7533. "email": "arne@blankerts.de",
  7534. "role": "Developer"
  7535. }
  7536. ],
  7537. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7538. "support": {
  7539. "issues": "https://github.com/theseer/tokenizer/issues",
  7540. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  7541. },
  7542. "funding": [
  7543. {
  7544. "url": "https://github.com/theseer",
  7545. "type": "github"
  7546. }
  7547. ],
  7548. "time": "2021-07-28T10:34:58+00:00"
  7549. }
  7550. ],
  7551. "aliases": [],
  7552. "minimum-stability": "dev",
  7553. "stability-flags": [],
  7554. "prefer-stable": true,
  7555. "prefer-lowest": false,
  7556. "platform": {
  7557. "php": "^7.3"
  7558. },
  7559. "platform-dev": [],
  7560. "plugin-api-version": "2.3.0"
  7561. }