composer.lock 297 KB

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